diff --git a/.clang-format b/.clang-format index ddb374f..a690220 100644 --- a/.clang-format +++ b/.clang-format @@ -13,6 +13,8 @@ AccessModifierOffset: -4 # -IndentWidth ConstructorInitializerIndentWidth: 8 # 2 * IndentWidth BreakBeforeBraces: Allman +SeparateDefinitionBlocks: Always +EmptyLineBeforeAccessModifier: Always AllowShortFunctionsOnASingleLine: Inline AlwaysBreakTemplateDeclarations: true @@ -24,3 +26,7 @@ MaxEmptyLinesToKeep: 2 Standard: Cpp11 UseTab: Never +ContinuationIndentWidth: 4 +AlignAfterOpenBracket: true +LambdaBodyIndentation: Signature + diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml index 66e7ee2..ba8933b 100644 --- a/.github/workflows/build_wheels.yml +++ b/.github/workflows/build_wheels.yml @@ -8,7 +8,7 @@ on: env: PYSIDE_VERSION: 6.7.1 - PIP_EXTRA_INDEX_URL: "https://download.qt.io/official_releases/QtForPython/" + #PIP_EXTRA_INDEX_URL: "https://download.qt.io/official_releases/QtForPython/" jobs: build_sdist: @@ -36,7 +36,7 @@ jobs: include: - os: ubuntu-latest arch: x86_64 - - os: windows-latest + - os: windows-2019 arch: x86_64 - os: macos-13 # Intel arch: x86_64 @@ -53,7 +53,7 @@ jobs: run: | echo "GITHUB_WORKSPACE=$GITHUB_WORKSPACE" >> $GITHUB_ENV - name: Build wheels - uses: pypa/cibuildwheel@v2.18.1 + uses: pypa/cibuildwheel@v2.20.0 env: PYSIDE_VERSION: ${{ env.PYSIDE_VERSION }} PIP_EXTRA_INDEX_URL: ${{ env.PIP_EXTRA_INDEX_URL }} @@ -73,7 +73,7 @@ jobs: auditwheel repair -w {dest_dir} --exclude libpyside6.abi3.so.6.7 --exclude libshiboken6.abi3.so.6.7 --exclude libQt6Core.so.6 --exclude libQt6Widgets.so.6 --exclude libQt6Gui.so.6 --exclude libpyside6qml.abi3.so.6.7 --exclude libGLX.so.0 --exclude libOpenGL.so.0 --exclude libxcb.so.1 --only-plat --plat manylinux_2_28_x86_64 {wheel} CIBW_REPAIR_WHEEL_COMMAND_MACOS: CIBW_MANYLINUX_X86_64_IMAGE: manylinux_2_28 - CIBW_SKIP: "*-win32 *i686 *38-* pp* *musllinux*" + CIBW_SKIP: "*-win32 *i686 *38-* pp* *musllinux* *313*" CIBW_BUILD_VERBOSITY: 3 CIBW_ARCH: ${{ matrix.arch }} diff --git a/SciQLopPlots/bindings/bindings.h b/SciQLopPlots/bindings/bindings.h index faae2b8..b2736da 100644 --- a/SciQLopPlots/bindings/bindings.h +++ b/SciQLopPlots/bindings/bindings.h @@ -10,6 +10,15 @@ #include "_QCustomPlot.hpp" #include +#include +#include +#include +#include +#include +#include +#include +#include +#include #include #include #include @@ -20,6 +29,8 @@ #include #include #include +#include +#include #include #include #include @@ -27,6 +38,13 @@ #include #include #include + +#include +#include +#include + +#include + #include #endif // SCIQLOPPLOTS_BINDINGS_H diff --git a/SciQLopPlots/bindings/bindings.xml b/SciQLopPlots/bindings/bindings.xml index 985b567..485a9dd 100644 --- a/SciQLopPlots/bindings/bindings.xml +++ b/SciQLopPlots/bindings/bindings.xml @@ -14,6 +14,14 @@ + + + + + + + + @@ -84,7 +92,9 @@ + + @@ -115,20 +125,28 @@ + + - - - + + + + + + + + + @@ -175,13 +193,6 @@ - - - - - - - @@ -202,6 +213,7 @@ + @@ -228,6 +240,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/SciQLopPlots/bindings/helper_scripts/src_list.py b/SciQLopPlots/bindings/helper_scripts/src_list.py index 264b6e4..a503bef 100755 --- a/SciQLopPlots/bindings/helper_scripts/src_list.py +++ b/SciQLopPlots/bindings/helper_scripts/src_list.py @@ -28,6 +28,7 @@ def find_all_objects(node, found=None): for sp in smart_ptrs: classes = sp.attrib.get('instantiations', '').split(',') for c in classes: + c = c.split('=')[0].strip() found.append(f"{sp.attrib['name']}_{c}") for item in node.findall('namespace-type'): if item.attrib.get('visible', 'true') in ['true', 'auto']: diff --git a/SciQLopPlots/meson.build b/SciQLopPlots/meson.build index d132856..765f870 100644 --- a/SciQLopPlots/meson.build +++ b/SciQLopPlots/meson.build @@ -53,6 +53,9 @@ shiboken_dep = declare_dependency(compile_args: shiboken_build_flags, link_args: moc_headers = [ 'bindings/_QCustomPlot.hpp', + project_source_root + '/include/SciQLopPlots/Debug.hpp', + project_source_root + '/include/SciQLopPlots/Profiling.hpp', + project_source_root + '/include/SciQLopPlots/unique_names_factory.hpp', project_source_root + '/include/SciQLopPlots/enums.hpp', project_source_root + '/include/SciQLopPlots/SciQLopPlotRange.hpp', project_source_root + '/include/SciQLopPlots/SciQLopPlotInterface.hpp', @@ -69,18 +72,51 @@ moc_headers = [ project_source_root + '/include/SciQLopPlots/MultiPlots/TimeAxisSynchronizer.hpp', project_source_root + '/include/SciQLopPlots/MultiPlots/VPlotsAlign.hpp', project_source_root + '/include/SciQLopPlots/Plotables/SciQLopGraphInterface.hpp', + project_source_root + '/include/SciQLopPlots/Plotables/SciQLopGraphComponentInterface.hpp', + project_source_root + '/include/SciQLopPlots/Plotables/SciQLopGraphComponent.hpp', project_source_root + '/include/SciQLopPlots/Plotables/QCPAbstractPlottableWrapper.hpp', project_source_root + '/include/SciQLopPlots/Plotables/SciQLopCurve.hpp', project_source_root + '/include/SciQLopPlots/Plotables/SciQLopLineGraph.hpp', project_source_root + '/include/SciQLopPlots/Plotables/SciQLopColorMap.hpp', - project_source_root + '/include/SciQLopPlots/Plotables/SciQLopLineGraphResampler.hpp', - project_source_root + '/include/SciQLopPlots/Plotables/SciQLopCurveResampler.hpp', - project_source_root + '/include/SciQLopPlots/Plotables/SciQLopColorMapResampler.hpp', + project_source_root + '/include/SciQLopPlots/Plotables/Resamplers/AbstractResampler.hpp', + project_source_root + '/include/SciQLopPlots/Plotables/Resamplers/SciQLopLineGraphResampler.hpp', + project_source_root + '/include/SciQLopPlots/Plotables/Resamplers/SciQLopCurveResampler.hpp', + project_source_root + '/include/SciQLopPlots/Plotables/Resamplers/SciQLopColorMapResampler.hpp', project_source_root + '/include/SciQLopPlots/Items/SciQLopVerticalSpan.hpp', project_source_root + '/include/SciQLopPlots/Items/SciQLopPlotItem.hpp', project_source_root + '/include/SciQLopPlots/Items/SciQLopTracer.hpp', project_source_root + '/include/SciQLopPlots/Items/QCPItemRichText.hpp', project_source_root + '/include/SciQLopPlots/DataProducer/DataProducer.hpp', + project_source_root + '/include/SciQLopPlots/DragNDrop/PlotDragNDropCallback.hpp', + project_source_root + '/include/SciQLopPlots/DragNDrop/PlaceHolderManager.hpp', + project_source_root + '/include/SciQLopPlots/Inspector/InspectorBase.hpp', + project_source_root + '/include/SciQLopPlots/Inspector/Inspectors.hpp', + project_source_root + '/include/SciQLopPlots/Inspector/Model/Model.hpp', + project_source_root + '/include/SciQLopPlots/Inspector/Model/Node.hpp', + project_source_root + '/include/SciQLopPlots/Inspector/Inspectors/SciQLopMultiPlotPanelInspector.hpp', + project_source_root + '/include/SciQLopPlots/Inspector/Inspectors/SciQLopPlotInspector.hpp', + project_source_root + '/include/SciQLopPlots/Inspector/Inspectors/SciQLopGraphInterfaceInspector.hpp', + project_source_root + '/include/SciQLopPlots/Inspector/Inspectors/SciQLopGraphComponentInspector.hpp', + project_source_root + '/include/SciQLopPlots/Inspector/Inspectors/SciQLopColorMapInspector.hpp', + project_source_root + '/include/SciQLopPlots/Inspector/View/TreeView.hpp', + project_source_root + '/include/SciQLopPlots/Inspector/View/InspectorView.hpp', + project_source_root + '/include/SciQLopPlots/Inspector/PropertyDelegateBase.hpp', + project_source_root + '/include/SciQLopPlots/Inspector/PropertyDelegates.hpp', + project_source_root + '/include/SciQLopPlots/Inspector/PropertiesDelegates/SciQLopMultiPlotPanelDelegate.hpp', + project_source_root + '/include/SciQLopPlots/Inspector/View/PropertiesPanel.hpp', + project_source_root + '/include/SciQLopPlots/Inspector/View/PropertiesView.hpp', + project_source_root + '/include/SciQLopPlots/Inspector/PropertiesDelegates/Delegates/ColorDelegate.hpp', + project_source_root + '/include/SciQLopPlots/Inspector/PropertiesDelegates/Delegates/LineDelegate.hpp', + project_source_root + '/include/SciQLopPlots/Inspector/PropertiesDelegates/Delegates/ColorGradientDelegate.hpp', + project_source_root + '/include/SciQLopPlots/Inspector/PropertiesDelegates/SciQLopPlotAxisDelegate.hpp', + project_source_root + '/include/SciQLopPlots/Inspector/PropertiesDelegates/SciQLopPlotDelegate.hpp', + project_source_root + '/include/SciQLopPlots/Inspector/PropertiesDelegates/SciQLopGraphDelegate.hpp', + project_source_root + '/include/SciQLopPlots/Inspector/PropertiesDelegates/SciQLopColorMapDelegate.hpp', + project_source_root + '/include/SciQLopPlots/Inspector/PropertiesDelegates/SciQLopGraphComponentDelegate.hpp', + project_source_root + '/include/SciQLopPlots/Products/ProductsModel.hpp', + project_source_root + '/include/SciQLopPlots/Products/ProductsNode.hpp', + project_source_root + '/include/SciQLopPlots/Products/ProductsView.hpp', + project_source_root + '/include/SciQLopPlots/Icons/icons.hpp', project_source_root + '/qcustomplot-source/qcustomplot.h' ] @@ -91,17 +127,21 @@ headers = moc_headers + \ includes = include_directories(['../include', '../qcustomplot-source']) -moc_files = qtmod.preprocess( - moc_headers : moc_headers, - moc_sources : moc_sources, +moc_files = qtmod.compile_moc( + headers : moc_headers, + sources : moc_sources, include_directories : includes) +resources_files = qtmod.compile_resources(sources : ['../resources/resources.qrc']) sources = moc_files \ + + resources_files \ + sciqlopplots_bindings_src \ + shiboken_generator_out \ + [ + '../src/Profiling.cpp', '../src/PythonInterface.cpp', + '../src/SciQLopPlotInterface.cpp', '../src/SciQLopPlot.cpp', '../src/SciQLopTimeSeriesPlot.cpp', '../src/SciQLopPlotAxis.cpp', @@ -115,18 +155,48 @@ sources = moc_files \ '../src/SciQLopPlotContainer.cpp', '../src/MultiPlotsVSpan.cpp', '../src/SciQLopGraphInterface.cpp', + '../src/SciQLopGraphComponentInterface.cpp', + '../src/SciQLopGraphComponent.cpp', '../src/QCPAbstractPlottableWrapper.cpp', '../src/SciQLopPlotItem.cpp', '../src/SciQLopVerticalSpan.cpp', '../src/SciQLopLineGraph.cpp', - '../src/SciQLopLineGraphResampler.cpp', '../src/SciQLopCurve.cpp', - '../src/SciQLopCurveResampler.cpp', '../src/SciQLopColorMap.cpp', + '../src/AbstractResampler.cpp', + '../src/SciQLopLineGraphResampler.cpp', + '../src/SciQLopCurveResampler.cpp', '../src/SciQLopColorMapResampler.cpp', '../src/SciQLopTracer.cpp', '../src/QCPItemRichText.cpp', '../src/DataProducer.cpp', + '../src/InspectorBase.cpp', + '../src/Inspectors.cpp', + '../src/Model.cpp', + '../src/Node.cpp', + '../src/SciQLopMultiPlotPanelInspector.cpp', + '../src/SciQLopPlotInspector.cpp', + '../src/SciQLopGraphInterfaceInspector.cpp', + '../src/SciQLopGraphComponentInspector.cpp', + '../src/SciQLopColorMapInspector.cpp', + '../src/TreeView.cpp', + '../src/InspectorView.cpp', + '../src/PropertyDelegateBase.cpp', + '../src/SciQLopMultiPlotPanelDelegate.cpp', + '../src/PropertiesPanel.cpp', + '../src/PropertiesView.cpp', + '../src/SciQLopPlotDelegate.cpp', + '../src/SciQLopGraphDelegate.cpp', + '../src/SciQLopColorMapDelegate.cpp', + '../src/SciQLopGraphComponentDelegate.cpp', + '../src/SciQLopPlotAxisDelegate.cpp', + '../src/ColorDelegate.cpp', + '../src/LineDelegate.cpp', + '../src/ColorGradientDelegate.cpp', + '../src/ProductsModel.cpp', + '../src/ProductsNode.cpp', + '../src/ProductsView.cpp', + '../src/icons.cpp', '../qcustomplot-source/qcustomplot.cpp' ] @@ -140,9 +210,19 @@ if get_option('trace_refcount') == true cpp_args += ['-D_TRACE_REF_COUNT'] endif +optional_deps = [] + +if get_option ( 'tracy_enable') + if get_option ( 'buildtype') != 'debugoptimized' + warning ( 'Profiling builds should set -- buildtype = debugoptimized') + endif + tracy = dependency ( 'tracy', static : true ) + optional_deps += [ tracy ] +endif + sciqlopplots_bindings = python3.extension_module('SciQLopPlotsBindings', sources, - dependencies : [ python3_dep, shiboken_dep, qtdeps, cpp_utils_dep, gl_dep, fmt_dep], + dependencies : [ python3_dep, shiboken_dep, qtdeps, cpp_utils_dep, gl_dep, fmt_dep] + optional_deps, cpp_args: cpp_args, subdir : 'SciQLopPlots', install: true, diff --git a/include/SciQLopPlots/Debug.hpp b/include/SciQLopPlots/Debug.hpp new file mode 100644 index 0000000..5ed08b7 --- /dev/null +++ b/include/SciQLopPlots/Debug.hpp @@ -0,0 +1,42 @@ +/*------------------------------------------------------------------------------ +-- This file is a part of the SciQLop Software +-- Copyright (C) 2024, Plasma Physics Laboratory - CNRS +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +-------------------------------------------------------------------------------*/ +/*-- Author : Alexis Jeandet +-- Mail : alexis.jeandet@member.fsf.org +----------------------------------------------------------------------------*/ +#pragma once +#include + +#ifdef DEBUG + +#define WARN_ABSTRACT_METHOD \ + { \ + std::cout << "Abstract method called:" << __PRETTY_FUNCTION__ << std::endl; \ + } + +#define DEBUG_MESSAGE(message) \ + { \ + std::cout << message << std::endl; \ + } + +#else + +#define WARN_ABSTRACT_METHOD +#define DEBUG_MESSAGE(message) + +#endif diff --git a/include/SciQLopPlots/DragNDrop/PlaceHolderManager.hpp b/include/SciQLopPlots/DragNDrop/PlaceHolderManager.hpp new file mode 100644 index 0000000..f512f19 --- /dev/null +++ b/include/SciQLopPlots/DragNDrop/PlaceHolderManager.hpp @@ -0,0 +1,184 @@ +/*------------------------------------------------------------------------------ +-- This file is a part of the SciQLop Software +-- Copyright (C) 2024, Plasma Physics Laboratory - CNRS +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +-------------------------------------------------------------------------------*/ +/*-- Author : Alexis Jeandet +-- Mail : alexis.jeandet@member.fsf.org +----------------------------------------------------------------------------*/ +#pragma once +#include "SciQLopPlots/MultiPlots/SciQLopPlotCollection.hpp" +#include +#include +#include +#include +#include +#include +#include + + +enum class DropLocation +{ + NewPlot, + ExistingPlot, +}; + +struct DropResult +{ + DropLocation location; + int index; +}; + +class PlaceHolder : public SciQLopPlotInterface +{ + Q_OBJECT + +public: + PlaceHolder(QWidget* parent = nullptr) : SciQLopPlotInterface(parent, "PlaceHolder") + { + setStyleSheet("background-color: #BBD5EE; border: 1px solid #2A7FD4"); + setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed); + } +}; + +class PlaceHolderManager : public QObject +{ + Q_OBJECT + + enum class PlaceHolderLocation + { + None, + Top, + Bottom + }; + + PlaceHolder* _place_holder = nullptr; + QWidget* _parent = nullptr; + + PlaceHolderLocation _compute_location(const QPointF& pos) const + { + if (auto index = _interface()->index(pos); index != -1) + { + auto plot = _interface()->plot_at(index); + auto plot_top = plot->geometry().top(); + auto plot_bottom = plot->geometry().bottom(); + auto upper_30_percent = plot_top + 0.3 * plot->geometry().height(); + auto lower_30_percent = plot_bottom - 0.3 * plot->geometry().height(); + if (pos.y() < upper_30_percent) + { + return PlaceHolderLocation::Top; + } + if (pos.y() > lower_30_percent) + { + return PlaceHolderLocation::Bottom; + } + } + return PlaceHolderLocation::None; + } + + SciQLopPlotInterface* _plot_at(const QPointF& pos) const + { + if (auto index = _interface()->index(pos); index != -1) + { + return _interface()->plot_at(index); + } + return nullptr; + } + + inline PlaceHolder* _create_place_holder(int index) + { + auto place_holder = new PlaceHolder(); + place_holder->setMinimumHeight(0.9 * _parent->height() / (1 + _interface()->size())); + _interface()->insert_plot(index, place_holder); + return place_holder; + } + + inline void _remove_place_holder() + { + _interface()->remove_plot(_place_holder); + _place_holder = nullptr; + } + + inline PlaceHolder* _create_place_holder_if_needed(const QPointF& pos) + { + if (_interface()->empty()) + { + return _create_place_holder(0); + } + auto location = _compute_location(pos); + switch (location) + { + case PlaceHolderLocation::Top: + return _create_place_holder(std::max(0, _interface()->index(pos) - 1)); + case PlaceHolderLocation::Bottom: + return _create_place_holder(_interface()->index(pos) + 1); + default: + break; + } + + return nullptr; + } + + inline SciQLopPlotCollectionInterface* _interface() const + { + return dynamic_cast(_parent); + } + + +public: + PlaceHolderManager(QWidget* parent = nullptr) : QObject(parent), _parent { parent } { } + + inline void dragEnterEvent(QDragEnterEvent* event) + { + _place_holder = _create_place_holder_if_needed(event->position()); + } + + inline void dragMoveEvent(QDragMoveEvent* event) + { + if (_place_holder) + { + if (_plot_at(event->position()) != _place_holder) + { + _remove_place_holder(); + return; + } + } + else + { + _place_holder = _create_place_holder_if_needed(event->position()); + } + } + + inline void dragLeaveEvent(QDragLeaveEvent* event) + { + if (_place_holder) + { + _remove_place_holder(); + } + } + + inline DropResult dropEvent(QDropEvent* event) + { + if (_place_holder) + { + int index = _interface()->index(_place_holder); + _remove_place_holder(); + return { DropLocation::NewPlot, index }; + } + return { DropLocation::ExistingPlot, + _interface()->index_from_global_position(QCursor::pos()) }; + } +}; diff --git a/include/SciQLopPlots/DragNDrop/PlotDragNDropCallback.hpp b/include/SciQLopPlots/DragNDrop/PlotDragNDropCallback.hpp new file mode 100644 index 0000000..ee31835 --- /dev/null +++ b/include/SciQLopPlots/DragNDrop/PlotDragNDropCallback.hpp @@ -0,0 +1,48 @@ +/*------------------------------------------------------------------------------ +-- This file is a part of the SciQLop Software +-- Copyright (C) 2024, Plasma Physics Laboratory - CNRS +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +-------------------------------------------------------------------------------*/ +/*-- Author : Alexis Jeandet +-- Mail : alexis.jeandet@member.fsf.org +----------------------------------------------------------------------------*/ +#pragma once + +#include "SciQLopPlots/SciQLopPlotInterface.hpp" +#include +#include + +class PlotDragNDropCallback : public QObject +{ + Q_OBJECT + QString _mime_type; + bool _create_placeholder = false; + +public: + PlotDragNDropCallback( + const QString& mime_type, bool create_placeholder = false, QObject* parent = nullptr) + : QObject(parent), _mime_type(mime_type), _create_placeholder(create_placeholder) + { + } + + inline const QString& mime_type() const { return _mime_type; } + + virtual ~PlotDragNDropCallback() = default; + + inline virtual void call(SciQLopPlotInterface* plot, const QMimeData* mimeData) { } + + inline bool create_placeholder() const { return _create_placeholder; } +}; diff --git a/include/SciQLopPlots/Icons/icons.hpp b/include/SciQLopPlots/Icons/icons.hpp new file mode 100644 index 0000000..4ae8688 --- /dev/null +++ b/include/SciQLopPlots/Icons/icons.hpp @@ -0,0 +1,44 @@ +/*------------------------------------------------------------------------------ +-- This file is a part of the SciQLop Software +-- Copyright (C) 2024, Plasma Physics Laboratory - CNRS +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +-------------------------------------------------------------------------------*/ +/*-- Author : Alexis Jeandet +-- Mail : alexis.jeandet@member.fsf.org +----------------------------------------------------------------------------*/ +#pragma once +#include +#include +#include + +class Icons : public QObject +{ + Q_OBJECT + + QMap m_icons; + + +public: + Icons(QObject* parent = nullptr); + virtual ~Icons() = default; + + static const QIcon& get_icon(const QString& name); + static void add_icon(const QString& name, const QIcon& icon, const QStringList& aliases = {}); + + inline static QStringList icons() { return instance()->m_icons.keys(); } + + static Icons* instance(); +}; diff --git a/include/SciQLopPlots/Inspector/InspectorBase.hpp b/include/SciQLopPlots/Inspector/InspectorBase.hpp new file mode 100644 index 0000000..320670a --- /dev/null +++ b/include/SciQLopPlots/Inspector/InspectorBase.hpp @@ -0,0 +1,46 @@ +/*------------------------------------------------------------------------------ +-- This file is a part of the SciQLop Software +-- Copyright (C) 2024, Plasma Physics Laboratory - CNRS +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +-------------------------------------------------------------------------------*/ +/*-- Author : Alexis Jeandet +-- Mail : alexis.jeandet@member.fsf.org +----------------------------------------------------------------------------*/ +#pragma once +#include +#include +#include + +class PlotsModelNode; + +class InspectorBase : public QObject +{ + Q_OBJECT + +public: + using compatible_type = QObject; + InspectorBase(QObject* parent = nullptr); + virtual ~InspectorBase() = default; + + virtual QList children(QObject* obj); + virtual QObject* child(const QString& name, QObject* obj); + virtual QIcon icon(const QObject* const obj); + virtual QString tooltip(const QObject* const obj); + virtual void connect_node(PlotsModelNode* node, QObject* const obj); + virtual void set_selected(QObject* obj, bool selected); + virtual bool selected(const QObject* obj); + virtual bool deletable(const QObject* obj); +}; diff --git a/include/SciQLopPlots/Inspector/Inspectors.hpp b/include/SciQLopPlots/Inspector/Inspectors.hpp new file mode 100644 index 0000000..dbe077d --- /dev/null +++ b/include/SciQLopPlots/Inspector/Inspectors.hpp @@ -0,0 +1,73 @@ +/*------------------------------------------------------------------------------ +-- This file is a part of the SciQLop Software +-- Copyright (C) 2024, Plasma Physics Laboratory - CNRS +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +-------------------------------------------------------------------------------*/ +/*-- Author : Alexis Jeandet +-- Mail : alexis.jeandet@member.fsf.org +----------------------------------------------------------------------------*/ +#pragma once +#include "SciQLopPlots/Debug.hpp" +#include +#include + +class InspectorBase; + +class Inspectors : public QObject +{ + + Q_OBJECT + + QMap m_inspectors; + + Inspectors() { } + +public: + virtual ~Inspectors() = default; + + inline static Inspectors& instance() + { + static Inspectors instance; + return instance; + } + + inline static int registerInspector(const QString& typeName, InspectorBase* inspector) + { + instance().m_inspectors[typeName] = inspector; + return instance().m_inspectors.size(); + } + + template + inline static auto + registerInspector(InspectorBase* inspector) -> decltype(T::staticMetaObject.className(), int()) + { + return registerInspector(T::staticMetaObject.className(), inspector); + } + + inline static InspectorBase* inspector(const QString& typeName) + { + DEBUG_MESSAGE("Looking for inspector for type : " << typeName.toStdString()); + DEBUG_MESSAGE( + "Available inspectors : " << instance().m_inspectors.keys().join(", ").toStdString()); + return instance().m_inspectors.value(typeName, nullptr); + } + + static InspectorBase* inspector(const QObject* obj); +}; + +#define REGISTER_INSPECTOR(INSPECTOR) \ + static int _id_##INSPECTOR \ + = Inspectors::registerInspector(new INSPECTOR()); diff --git a/include/SciQLopPlots/Inspector/Inspectors/SciQLopColorMapInspector.hpp b/include/SciQLopPlots/Inspector/Inspectors/SciQLopColorMapInspector.hpp new file mode 100644 index 0000000..d0aed58 --- /dev/null +++ b/include/SciQLopPlots/Inspector/Inspectors/SciQLopColorMapInspector.hpp @@ -0,0 +1,59 @@ +/*------------------------------------------------------------------------------ +-- This file is a part of the SciQLop Software +-- Copyright (C) 2024, Plasma Physics Laboratory - CNRS +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +-------------------------------------------------------------------------------*/ +/*-- Author : Alexis Jeandet +-- Mail : alexis.jeandet@member.fsf.org +----------------------------------------------------------------------------*/ +#pragma once +#include "SciQLopPlots/Inspector/InspectorBase.hpp" +#include "SciQLopPlots/Inspector/Inspectors.hpp" +#include "SciQLopPlots/Plotables/SciQLopColorMap.hpp" +#include +#include +#include + +class SciQLopColorMapInspector : public InspectorBase +{ + Q_OBJECT + inline SciQLopColorMap* _colormap(QObject* obj) { return qobject_cast(obj); } + +public: + using compatible_type = SciQLopColorMap; + + SciQLopColorMapInspector() : InspectorBase() { } + + virtual QList children(QObject* obj) Q_DECL_OVERRIDE; + + virtual QObject* child(const QString& name, QObject* obj) Q_DECL_OVERRIDE; + + inline virtual QIcon icon(const QObject* const obj) Q_DECL_OVERRIDE + { + Q_UNUSED(obj); + return QIcon(); + } + + inline virtual QString tooltip(const QObject* const obj) Q_DECL_OVERRIDE + { + Q_UNUSED(obj); + return QString(); + } + + virtual void connect_node(PlotsModelNode* node, QObject* const obj) Q_DECL_OVERRIDE; + + virtual void set_selected(QObject* obj, bool selected) Q_DECL_OVERRIDE; +}; diff --git a/include/SciQLopPlots/Inspector/Inspectors/SciQLopGraphComponentInspector.hpp b/include/SciQLopPlots/Inspector/Inspectors/SciQLopGraphComponentInspector.hpp new file mode 100644 index 0000000..47c827b --- /dev/null +++ b/include/SciQLopPlots/Inspector/Inspectors/SciQLopGraphComponentInspector.hpp @@ -0,0 +1,72 @@ +/*------------------------------------------------------------------------------ +-- This file is a part of the SciQLop Software +-- Copyright (C) 2024, Plasma Physics Laboratory - CNRS +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +-------------------------------------------------------------------------------*/ +/*-- Author : Alexis Jeandet +-- Mail : alexis.jeandet@member.fsf.org +----------------------------------------------------------------------------*/ +#pragma once +#include "SciQLopPlots/Inspector/InspectorBase.hpp" +#include "SciQLopPlots/Inspector/Inspectors.hpp" +#include "SciQLopPlots/Plotables/SciQLopGraphInterface.hpp" +#include +#include +#include + +class SciQLopGraphComponentInspector : public InspectorBase +{ + Q_OBJECT + + inline SciQLopGraphComponentInterface* _component(QObject* obj) + { + return qobject_cast(obj); + } + + inline const SciQLopGraphComponentInterface* _component(const QObject* obj) + { + return qobject_cast(obj); + } + +public: + using compatible_type = SciQLopGraphComponentInterface; + + SciQLopGraphComponentInspector() : InspectorBase() { } + + virtual QList children(QObject* obj) Q_DECL_OVERRIDE; + + virtual QObject* child(const QString& name, QObject* obj) Q_DECL_OVERRIDE; + + inline virtual QIcon icon(const QObject* const obj) Q_DECL_OVERRIDE + { + Q_UNUSED(obj); + return QIcon(); + } + + inline virtual QString tooltip(const QObject* const obj) Q_DECL_OVERRIDE + { + Q_UNUSED(obj); + return QString(); + } + + virtual void connect_node(PlotsModelNode* node, QObject* const obj) Q_DECL_OVERRIDE; + + virtual void set_selected(QObject* obj, bool selected) Q_DECL_OVERRIDE; + + virtual bool selected(const QObject* obj) Q_DECL_OVERRIDE; + + inline virtual bool deletable(const QObject* obj) Q_DECL_OVERRIDE { return false; } +}; diff --git a/include/SciQLopPlots/Inspector/Inspectors/SciQLopGraphInterfaceInspector.hpp b/include/SciQLopPlots/Inspector/Inspectors/SciQLopGraphInterfaceInspector.hpp new file mode 100644 index 0000000..a27cd38 --- /dev/null +++ b/include/SciQLopPlots/Inspector/Inspectors/SciQLopGraphInterfaceInspector.hpp @@ -0,0 +1,69 @@ +/*------------------------------------------------------------------------------ +-- This file is a part of the SciQLop Software +-- Copyright (C) 2024, Plasma Physics Laboratory - CNRS +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +-------------------------------------------------------------------------------*/ +/*-- Author : Alexis Jeandet +-- Mail : alexis.jeandet@member.fsf.org +----------------------------------------------------------------------------*/ +#pragma once +#include "SciQLopPlots/Inspector/InspectorBase.hpp" +#include "SciQLopPlots/Inspector/Inspectors.hpp" +#include "SciQLopPlots/Plotables/SciQLopGraphInterface.hpp" +#include +#include +#include + +class SciQLopGraphInterfaceInspector : public InspectorBase +{ + Q_OBJECT + + inline SciQLopGraphInterface* _graph(QObject* obj) + { + return qobject_cast(obj); + } + + inline const SciQLopGraphInterface* _graph(const QObject* obj) + { + return qobject_cast(obj); + } + +public: + using compatible_type = SciQLopGraphInterface; + + SciQLopGraphInterfaceInspector() : InspectorBase() { } + + virtual QList children(QObject* obj) Q_DECL_OVERRIDE; + + virtual QObject* child(const QString& name, QObject* obj) Q_DECL_OVERRIDE; + + inline virtual QIcon icon(const QObject* const obj) Q_DECL_OVERRIDE + { + Q_UNUSED(obj); + return QIcon(); + } + + inline virtual QString tooltip(const QObject* const obj) Q_DECL_OVERRIDE + { + Q_UNUSED(obj); + return QString(); + } + + virtual void connect_node(PlotsModelNode* node, QObject* const obj) Q_DECL_OVERRIDE; + + virtual void set_selected(QObject* obj, bool selected) Q_DECL_OVERRIDE; + virtual bool selected(const QObject* obj) Q_DECL_OVERRIDE; +}; diff --git a/include/SciQLopPlots/Inspector/Inspectors/SciQLopMultiPlotPanelInspector.hpp b/include/SciQLopPlots/Inspector/Inspectors/SciQLopMultiPlotPanelInspector.hpp new file mode 100644 index 0000000..071fd79 --- /dev/null +++ b/include/SciQLopPlots/Inspector/Inspectors/SciQLopMultiPlotPanelInspector.hpp @@ -0,0 +1,63 @@ +/*------------------------------------------------------------------------------ +-- This file is a part of the SciQLop Software +-- Copyright (C) 2024, Plasma Physics Laboratory - CNRS +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +-------------------------------------------------------------------------------*/ +/*-- Author : Alexis Jeandet +-- Mail : alexis.jeandet@member.fsf.org +----------------------------------------------------------------------------*/ +#pragma once +#include "SciQLopPlots/Inspector/InspectorBase.hpp" +#include "SciQLopPlots/Inspector/Inspectors.hpp" +#include "SciQLopPlots/MultiPlots/SciQLopMultiPlotPanel.hpp" +#include +#include +#include + +class SciQLopMultiPlotPanelInspector : public InspectorBase +{ + Q_OBJECT + + inline SciQLopMultiPlotPanel* _panel(QObject* obj) + { + return qobject_cast(obj); + } + +public: + using compatible_type = SciQLopMultiPlotPanel; + + SciQLopMultiPlotPanelInspector() : InspectorBase() { } + + virtual QList children(QObject* obj) Q_DECL_OVERRIDE; + + virtual QObject* child(const QString& name, QObject* obj) Q_DECL_OVERRIDE; + + inline virtual QIcon icon(const QObject* const obj) Q_DECL_OVERRIDE + { + Q_UNUSED(obj); + return QIcon(); + } + + inline virtual QString tooltip(const QObject* const obj) Q_DECL_OVERRIDE + { + Q_UNUSED(obj); + return QString(); + } + + virtual void connect_node(PlotsModelNode* node, QObject* const obj) Q_DECL_OVERRIDE; + + virtual void set_selected(QObject* obj, bool selected) Q_DECL_OVERRIDE; +}; diff --git a/include/SciQLopPlots/Inspector/Inspectors/SciQLopPlotInspector.hpp b/include/SciQLopPlots/Inspector/Inspectors/SciQLopPlotInspector.hpp new file mode 100644 index 0000000..d461f9d --- /dev/null +++ b/include/SciQLopPlots/Inspector/Inspectors/SciQLopPlotInspector.hpp @@ -0,0 +1,59 @@ +/*------------------------------------------------------------------------------ +-- This file is a part of the SciQLop Software +-- Copyright (C) 2024, Plasma Physics Laboratory - CNRS +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +-------------------------------------------------------------------------------*/ +/*-- Author : Alexis Jeandet +-- Mail : alexis.jeandet@member.fsf.org +----------------------------------------------------------------------------*/ +#pragma once +#include "SciQLopPlots/Inspector/InspectorBase.hpp" +#include "SciQLopPlots/Inspector/Inspectors.hpp" +#include "SciQLopPlots/SciQLopPlot.hpp" +#include +#include +#include + +class SciQLopPlotInspector : public InspectorBase +{ + Q_OBJECT + inline SciQLopPlot* _plot(QObject* obj) { return qobject_cast(obj); } + +public: + using compatible_type = SciQLopPlot; + + SciQLopPlotInspector() : InspectorBase() { } + + virtual QList children(QObject* obj) Q_DECL_OVERRIDE; + + virtual QObject* child(const QString& name, QObject* obj) Q_DECL_OVERRIDE; + + inline virtual QIcon icon(const QObject* const obj) Q_DECL_OVERRIDE + { + Q_UNUSED(obj); + return QIcon(); + } + + inline virtual QString tooltip(const QObject* const obj) Q_DECL_OVERRIDE + { + Q_UNUSED(obj); + return QString(); + } + + virtual void connect_node(PlotsModelNode* node, QObject* const obj) Q_DECL_OVERRIDE; + + virtual void set_selected(QObject* obj, bool selected) Q_DECL_OVERRIDE; +}; diff --git a/include/SciQLopPlots/Inspector/Model/Model.hpp b/include/SciQLopPlots/Inspector/Model/Model.hpp new file mode 100644 index 0000000..8835b66 --- /dev/null +++ b/include/SciQLopPlots/Inspector/Model/Model.hpp @@ -0,0 +1,63 @@ +/*------------------------------------------------------------------------------ +-- This file is a part of the SciQLop Software +-- Copyright (C) 2024, Plasma Physics Laboratory - CNRS +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +-------------------------------------------------------------------------------*/ +/*-- Author : Alexis Jeandet +-- Mail : alexis.jeandet@member.fsf.org +----------------------------------------------------------------------------*/ +#pragma once +#include "SciQLopPlots/Inspector/Model/Node.hpp" +#include +#include + +class PlotsModel : public QAbstractItemModel +{ + Q_OBJECT + PlotsModelNode* m_rootNode; + + Q_SLOT void node_changed(PlotsModelNode* node); + Q_SLOT void node_selection_changed(PlotsModelNode* node, bool selected); + Q_SLOT void children_destroyed(PlotsModelNode* parent, int index); + QModelIndex make_index(PlotsModelNode* node); + + +public: + PlotsModel(QObject* parent = nullptr); + ~PlotsModel() = default; + + QModelIndex index(int row, int column, + const QModelIndex& parent = QModelIndex()) const override; + QModelIndex parent(const QModelIndex& index) const override; + int rowCount(const QModelIndex& parent = QModelIndex()) const override; + int columnCount(const QModelIndex& parent = QModelIndex()) const override; + QVariant data(const QModelIndex& index, int role = Qt::DisplayRole) const override; + Qt::ItemFlags flags(const QModelIndex& index) const override; + + bool removeRows(int row, int count, const QModelIndex& parent = QModelIndex()) override; + + void set_selected(const QList& indexes, bool selected); + + Q_SLOT void addTopLevelNode(QObject* obj); + + static PlotsModel* instance(); + static QObject* object(const QModelIndex& index); + +#ifndef BINDINGS_H + Q_SIGNAL void item_selection_changed(const QModelIndex& index, bool selected); + Q_SIGNAL void top_level_nodes_list_changed(); +#endif // !BINDINGS_H +}; diff --git a/include/SciQLopPlots/Inspector/Model/Node.hpp b/include/SciQLopPlots/Inspector/Model/Node.hpp new file mode 100644 index 0000000..15fd4ea --- /dev/null +++ b/include/SciQLopPlots/Inspector/Model/Node.hpp @@ -0,0 +1,104 @@ +/*------------------------------------------------------------------------------ +-- This file is a part of the SciQLop Software +-- Copyright (C) 2024, Plasma Physics Laboratory - CNRS +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +-------------------------------------------------------------------------------*/ +/*-- Author : Alexis Jeandet +-- Mail : alexis.jeandet@member.fsf.org +----------------------------------------------------------------------------*/ +#pragma once +#include +#include +#include +#include + +class InspectorBase; + +class PlotsModelNode : public QObject +{ + Q_OBJECT + QPointer m_obj; + InspectorBase* m_inspector; + QList m_children; + + void _child_destroyed(PlotsModelNode* child); + PlotsModelNode* _root_node(); + bool _deletable = true; + +public: + PlotsModelNode(QObject* obj, QObject* parent = nullptr); + ~PlotsModelNode() = default; + + PlotsModelNode* insert_child(QObject* obj, int row = -1); + + inline QString name() { return objectName(); } + + PlotsModelNode* child_node(const QString& name); + + inline QList children_nodes() { return m_children; } + + PlotsModelNode* parent_node() { return qobject_cast(parent()); } + + inline PlotsModelNode* child(int row) { return m_children.value(row, nullptr); } + + inline int child_row(PlotsModelNode* child) { return m_children.indexOf(child); } + + int child_row(QObject* obj); + + inline int children_count() { return m_children.size(); } + + bool remove_child(int row); + + QIcon icon(); + QString tooltip(); + + Q_SLOT void setName(const QString& name); + Q_SLOT void update_children(); + + inline bool holds(QObject* obj) + { + if (m_obj) + return m_obj == obj && m_obj->objectName() == obj->objectName(); + return false; + } + + inline bool contains(QObject* obj) + { + for (auto child : m_children) + { + if (child->holds(obj)) + return true; + } + return false; + } + + void set_selected(bool selected); + + inline void set_deletable(bool deletable) { _deletable = deletable; } + + inline bool deletable() { return _deletable; } + + void destroy(); + + inline QObject* object() { return m_obj; } + +#ifndef BINDINGS_H + Q_SIGNAL void nameChanged(PlotsModelNode* node); + Q_SIGNAL void childrenChanged(PlotsModelNode* node); + Q_SIGNAL void childrenDestroyed(PlotsModelNode* parent, int row); + Q_SIGNAL void selectionChanged(PlotsModelNode* node, bool selected); +#endif +}; diff --git a/include/SciQLopPlots/Inspector/PropertiesDelegates/Delegates/ColorDelegate.hpp b/include/SciQLopPlots/Inspector/PropertiesDelegates/Delegates/ColorDelegate.hpp new file mode 100644 index 0000000..34c18b9 --- /dev/null +++ b/include/SciQLopPlots/Inspector/PropertiesDelegates/Delegates/ColorDelegate.hpp @@ -0,0 +1,51 @@ +/*------------------------------------------------------------------------------ +-- This file is a part of the SciQLop Software +-- Copyright (C) 2024, Plasma Physics Laboratory - CNRS +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +-------------------------------------------------------------------------------*/ +/*-- Author : Alexis Jeandet +-- Mail : alexis.jeandet@member.fsf.org +----------------------------------------------------------------------------*/ +#pragma once + +#include +#include + +#include + +class ColorDelegate : public QPushButton +{ + Q_OBJECT + + QColor m_color; + +public: + Q_PROPERTY(QColor color READ color WRITE setColor NOTIFY colorChanged) + + ColorDelegate(QColor color, QWidget* parent = nullptr); + virtual ~ColorDelegate() = default; + + void setColor(const QColor& color); + QColor color() const; + +#ifndef BINDINGS_H + Q_SIGNAL void colorChanged(const QColor& color); +#endif + +protected: + Q_SLOT void pick_color(); + void paintEvent(QPaintEvent* event) override; +}; diff --git a/include/SciQLopPlots/Inspector/PropertiesDelegates/Delegates/ColorGradientDelegate.hpp b/include/SciQLopPlots/Inspector/PropertiesDelegates/Delegates/ColorGradientDelegate.hpp new file mode 100644 index 0000000..be28819 --- /dev/null +++ b/include/SciQLopPlots/Inspector/PropertiesDelegates/Delegates/ColorGradientDelegate.hpp @@ -0,0 +1,63 @@ +/*------------------------------------------------------------------------------ +-- This file is a part of the SciQLop Software +-- Copyright (C) 2024, Plasma Physics Laboratory - CNRS +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +-------------------------------------------------------------------------------*/ +/*-- Author : Alexis Jeandet +-- Mail : alexis.jeandet@member.fsf.org +----------------------------------------------------------------------------*/ +#pragma once +#include "SciQLopPlots/enums.hpp" +#include +#include +#include + +class ColorGradientItemDelegate : public QStyledItemDelegate +{ + Q_OBJECT + + QSize _text_size_hint(const QString& text) const; + QSize _gradient_size_hint() const; + int _h_margin = 5; + int _v_margin = 5; + +public: + ColorGradientItemDelegate(QObject* parent = nullptr); + virtual ~ColorGradientItemDelegate() = default; + + virtual void paint(QPainter* painter, const QStyleOptionViewItem& option, + const QModelIndex& index) const override; + virtual QSize sizeHint(const QStyleOptionViewItem& option, + const QModelIndex& index) const override; +}; + +class ColorGradientDelegate : public QComboBox +{ + Q_OBJECT + + ColorGradient m_gradient; + +public: + ColorGradientDelegate(ColorGradient gradient, QWidget* parent = nullptr); + virtual ~ColorGradientDelegate() = default; + + void setGradient(ColorGradient gradient); + ColorGradient gradient() const; + +#ifndef BINDINGS_H + Q_SIGNAL void gradientChanged(ColorGradient gradient); +#endif +}; diff --git a/include/SciQLopPlots/Inspector/PropertiesDelegates/Delegates/LineDelegate.hpp b/include/SciQLopPlots/Inspector/PropertiesDelegates/Delegates/LineDelegate.hpp new file mode 100644 index 0000000..50e8222 --- /dev/null +++ b/include/SciQLopPlots/Inspector/PropertiesDelegates/Delegates/LineDelegate.hpp @@ -0,0 +1,50 @@ +/*------------------------------------------------------------------------------ +-- This file is a part of the SciQLop Software +-- Copyright (C) 2024, Plasma Physics Laboratory - CNRS +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +-------------------------------------------------------------------------------*/ +/*-- Author : Alexis Jeandet +-- Mail : alexis.jeandet@member.fsf.org +----------------------------------------------------------------------------*/ +#pragma once + +#include +#include + +#include "SciQLopPlots/enums.hpp" +#include +#include +#include + +class LineDelegate : public QWidget +{ + Q_OBJECT + + QPen m_pen; + QFormLayout* m_layout; + GraphLineStyle m_style; + +public: + LineDelegate(QPen pen, GraphLineStyle style, QWidget* parent = nullptr); + virtual ~LineDelegate() = default; + +#ifndef BINDINGS_H + Q_SIGNAL void colorChanged(const QColor& color); + Q_SIGNAL void widthChanged(int width); + Q_SIGNAL void styleChanged(GraphLineStyle style); + Q_SIGNAL void penChanged(const QPen& pen); +#endif +}; diff --git a/include/SciQLopPlots/Inspector/PropertiesDelegates/SciQLopColorMapDelegate.hpp b/include/SciQLopPlots/Inspector/PropertiesDelegates/SciQLopColorMapDelegate.hpp new file mode 100644 index 0000000..b9b3d6a --- /dev/null +++ b/include/SciQLopPlots/Inspector/PropertiesDelegates/SciQLopColorMapDelegate.hpp @@ -0,0 +1,39 @@ +/*------------------------------------------------------------------------------ +-- This file is a part of the SciQLop Software +-- Copyright (C) 2024, Plasma Physics Laboratory - CNRS +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +-------------------------------------------------------------------------------*/ +/*-- Author : Alexis Jeandet +-- Mail : alexis.jeandet@member.fsf.org +----------------------------------------------------------------------------*/ +#pragma once + +#include "SciQLopPlots/Inspector/PropertyDelegateBase.hpp" + +class SciQLopColorMap; + +class SciQLopColorMapDelegate : public PropertyDelegateBase +{ + Q_OBJECT + + SciQLopColorMap* colorMap() const; + +public: + using compatible_type = SciQLopColorMap; + SciQLopColorMapDelegate(SciQLopColorMap* object, QWidget* parent = nullptr); + + virtual ~SciQLopColorMapDelegate() = default; +}; diff --git a/include/SciQLopPlots/Inspector/PropertiesDelegates/SciQLopGraphComponentDelegate.hpp b/include/SciQLopPlots/Inspector/PropertiesDelegates/SciQLopGraphComponentDelegate.hpp new file mode 100644 index 0000000..b5ff6d7 --- /dev/null +++ b/include/SciQLopPlots/Inspector/PropertiesDelegates/SciQLopGraphComponentDelegate.hpp @@ -0,0 +1,42 @@ +/*------------------------------------------------------------------------------ +-- This file is a part of the SciQLop Software +-- Copyright (C) 2024, Plasma Physics Laboratory - CNRS +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +-------------------------------------------------------------------------------*/ +/*-- Author : Alexis Jeandet +-- Mail : alexis.jeandet@member.fsf.org +----------------------------------------------------------------------------*/ +#pragma once +#include "SciQLopPlots/Inspector/PropertyDelegateBase.hpp" +#include + +class SciQLopGraphComponentInterface; +class LineDelegate; + +class SciQLopGraphComponentDelegate : public PropertyDelegateBase +{ + Q_OBJECT + + SciQLopGraphComponentInterface* component() const; + LineDelegate* m_lineDelegate; + +public: + using compatible_type = SciQLopGraphComponentInterface; + SciQLopGraphComponentDelegate(SciQLopGraphComponentInterface* object, + QWidget* parent = nullptr); + + virtual ~SciQLopGraphComponentDelegate() = default; +}; diff --git a/include/SciQLopPlots/Inspector/PropertiesDelegates/SciQLopGraphDelegate.hpp b/include/SciQLopPlots/Inspector/PropertiesDelegates/SciQLopGraphDelegate.hpp new file mode 100644 index 0000000..f88409d --- /dev/null +++ b/include/SciQLopPlots/Inspector/PropertiesDelegates/SciQLopGraphDelegate.hpp @@ -0,0 +1,38 @@ +/*------------------------------------------------------------------------------ +-- This file is a part of the SciQLop Software +-- Copyright (C) 2024, Plasma Physics Laboratory - CNRS +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +-------------------------------------------------------------------------------*/ +/*-- Author : Alexis Jeandet +-- Mail : alexis.jeandet@member.fsf.org +----------------------------------------------------------------------------*/ +#pragma once +#include "SciQLopPlots/Inspector/PropertyDelegateBase.hpp" + +class SciQLopGraphInterface; + +class SciQLopGraphDelegate : public PropertyDelegateBase +{ + Q_OBJECT + + SciQLopGraphInterface* graph() const; + +public: + using compatible_type = SciQLopGraphInterface; + SciQLopGraphDelegate(SciQLopGraphInterface* object, QWidget* parent = nullptr); + + virtual ~SciQLopGraphDelegate() = default; +}; diff --git a/include/SciQLopPlots/Inspector/PropertiesDelegates/SciQLopMultiPlotPanelDelegate.hpp b/include/SciQLopPlots/Inspector/PropertiesDelegates/SciQLopMultiPlotPanelDelegate.hpp new file mode 100644 index 0000000..123db0a --- /dev/null +++ b/include/SciQLopPlots/Inspector/PropertiesDelegates/SciQLopMultiPlotPanelDelegate.hpp @@ -0,0 +1,39 @@ +/*------------------------------------------------------------------------------ +-- This file is a part of the SciQLop Software +-- Copyright (C) 2024, Plasma Physics Laboratory - CNRS +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +-------------------------------------------------------------------------------*/ +/*-- Author : Alexis Jeandet +-- Mail : alexis.jeandet@member.fsf.org +----------------------------------------------------------------------------*/ +#pragma once +#include "SciQLopPlots/Inspector/PropertyDelegateBase.hpp" + +class SciQLopMultiPlotPanel; + +class SciQLopMultiPlotPanelDelegate : public PropertyDelegateBase +{ + Q_OBJECT + + SciQLopMultiPlotPanel* panel() const; + + +public: + using compatible_type = SciQLopMultiPlotPanel; + SciQLopMultiPlotPanelDelegate(SciQLopMultiPlotPanel* object, QWidget* parent = nullptr); + + virtual ~SciQLopMultiPlotPanelDelegate() = default; +}; diff --git a/include/SciQLopPlots/Inspector/PropertiesDelegates/SciQLopPlotAxisDelegate.hpp b/include/SciQLopPlots/Inspector/PropertiesDelegates/SciQLopPlotAxisDelegate.hpp new file mode 100644 index 0000000..0e11c20 --- /dev/null +++ b/include/SciQLopPlots/Inspector/PropertiesDelegates/SciQLopPlotAxisDelegate.hpp @@ -0,0 +1,39 @@ +/*------------------------------------------------------------------------------ +-- This file is a part of the SciQLop Software +-- Copyright (C) 2024, Plasma Physics Laboratory - CNRS +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +-------------------------------------------------------------------------------*/ +/*-- Author : Alexis Jeandet +-- Mail : alexis.jeandet@member.fsf.org +----------------------------------------------------------------------------*/ +#pragma once +#include "SciQLopPlots/Inspector/PropertyDelegateBase.hpp" + +class SciQLopPlotAxisInterface; + +class SciQLopPlotAxisDelegate : public PropertyDelegateBase +{ + Q_OBJECT + + SciQLopPlotAxisInterface* plot() const; + + +public: + using compatible_type = SciQLopPlotAxisInterface; + SciQLopPlotAxisDelegate(SciQLopPlotAxisInterface* object, QWidget* parent = nullptr); + + virtual ~SciQLopPlotAxisDelegate() = default; +}; diff --git a/include/SciQLopPlots/Inspector/PropertiesDelegates/SciQLopPlotDelegate.hpp b/include/SciQLopPlots/Inspector/PropertiesDelegates/SciQLopPlotDelegate.hpp new file mode 100644 index 0000000..5d675af --- /dev/null +++ b/include/SciQLopPlots/Inspector/PropertiesDelegates/SciQLopPlotDelegate.hpp @@ -0,0 +1,39 @@ +/*------------------------------------------------------------------------------ +-- This file is a part of the SciQLop Software +-- Copyright (C) 2024, Plasma Physics Laboratory - CNRS +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +-------------------------------------------------------------------------------*/ +/*-- Author : Alexis Jeandet +-- Mail : alexis.jeandet@member.fsf.org +----------------------------------------------------------------------------*/ +#pragma once +#include "SciQLopPlots/Inspector/PropertyDelegateBase.hpp" + +class SciQLopPlot; + +class SciQLopPlotDelegate : public PropertyDelegateBase +{ + Q_OBJECT + + SciQLopPlot* plot() const; + + +public: + using compatible_type = SciQLopPlot; + SciQLopPlotDelegate(SciQLopPlot* object, QWidget* parent = nullptr); + + virtual ~SciQLopPlotDelegate() = default; +}; diff --git a/include/SciQLopPlots/Inspector/PropertyDelegateBase.hpp b/include/SciQLopPlots/Inspector/PropertyDelegateBase.hpp new file mode 100644 index 0000000..c2bd84d --- /dev/null +++ b/include/SciQLopPlots/Inspector/PropertyDelegateBase.hpp @@ -0,0 +1,66 @@ +/*------------------------------------------------------------------------------ +-- This file is a part of the SciQLop Software +-- Copyright (C) 2024, Plasma Physics Laboratory - CNRS +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +-------------------------------------------------------------------------------*/ +/*-- Author : Alexis Jeandet +-- Mail : alexis.jeandet@member.fsf.org +----------------------------------------------------------------------------*/ +#pragma once +#include +#include +#include +#include +#include +#include + +class PropertyDelegateBase : public QWidget +{ + Q_OBJECT + +protected: + QVBoxLayout* m_layout; + QLabel* m_title; + +protected: + QPointer m_object = nullptr; + + template + static T* as_type(QObject* object) + { + return qobject_cast(object); + } + +public: + PropertyDelegateBase(QObject* object, QWidget* parent = nullptr) + : QWidget(parent), m_object { object } + { + m_layout = new QVBoxLayout(); + setLayout(m_layout); + m_title = new QLabel(); + m_layout->addWidget(m_title); + connect(object, &QObject::objectNameChanged, this, + &PropertyDelegateBase::object_name_changed); + object_name_changed(object->objectName()); + } + + Q_SLOT void object_name_changed(const QString& name) + { + m_title->setText(fmt::format("{} properties", name.toStdString()).c_str()); + } + + virtual ~PropertyDelegateBase() = default; +}; diff --git a/include/SciQLopPlots/Inspector/PropertyDelegates.hpp b/include/SciQLopPlots/Inspector/PropertyDelegates.hpp new file mode 100644 index 0000000..e1c4edf --- /dev/null +++ b/include/SciQLopPlots/Inspector/PropertyDelegates.hpp @@ -0,0 +1,98 @@ +/*------------------------------------------------------------------------------ +-- This file is a part of the SciQLop Software +-- Copyright (C) 2024, Plasma Physics Laboratory - CNRS +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +-------------------------------------------------------------------------------*/ +/*-- Author : Alexis Jeandet +-- Mail : alexis.jeandet@member.fsf.org +----------------------------------------------------------------------------*/ +#pragma once +#include +#include + +class PropertyDelegateBase; + +class PropertyDelegateFactoryInterface +{ +public: + virtual ~PropertyDelegateFactoryInterface() = default; + virtual PropertyDelegateBase* create(QObject* object, QWidget* parent) = 0; +}; + +template +class PropertyDelegateFactory : public PropertyDelegateFactoryInterface +{ + PropertyDelegateBase* create(QObject* object, QWidget* parent) override + { + return new T(qobject_cast(object), parent); + } +}; + +class PropertyDelegates : public QObject +{ + + Q_OBJECT + + QMap m_delegates_factories; + + PropertyDelegates() { } + + inline static int registerDelegate( + const QString& typeName, PropertyDelegateFactoryInterface* delegate) + { + instance().m_delegates_factories[typeName] = delegate; + return instance().m_delegates_factories.size(); + } + +public: + virtual ~PropertyDelegates() = default; + + inline static PropertyDelegates& instance() + { + static PropertyDelegates instance; + return instance; + } + + template + inline static auto registerDelegate() + -> decltype(DelegateType::compatible_type::staticMetaObject.className(), int()) + { + return registerDelegate(DelegateType::compatible_type::staticMetaObject.className(), + new PropertyDelegateFactory()); + } + + inline static PropertyDelegateBase* delegate( + const QString& typeName, QObject* object, QWidget* parent = nullptr) + { + auto factory = instance().m_delegates_factories.value(typeName, nullptr); + return factory ? factory->create(object, parent) : nullptr; + } + + inline static PropertyDelegateBase* delegate(QObject* obj, QWidget* parent = nullptr) + { + auto metaObject = obj->metaObject(); + PropertyDelegateBase* _delegate = nullptr; + do + { + _delegate = delegate(metaObject->className(), obj, parent); + metaObject = metaObject->superClass(); + } while (_delegate == nullptr && metaObject != nullptr); + return _delegate; + } +}; + +#define REGISTER_DELEGATE(DELEGATE) \ + static int _id_##DELEGATE = PropertyDelegates::registerDelegate(); diff --git a/include/SciQLopPlots/Inspector/View/InspectorView.hpp b/include/SciQLopPlots/Inspector/View/InspectorView.hpp new file mode 100644 index 0000000..0224037 --- /dev/null +++ b/include/SciQLopPlots/Inspector/View/InspectorView.hpp @@ -0,0 +1,42 @@ +/*------------------------------------------------------------------------------ +-- This file is a part of the SciQLop Software +-- Copyright (C) 2024, Plasma Physics Laboratory - CNRS +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +-------------------------------------------------------------------------------*/ +/*-- Author : Alexis Jeandet +-- Mail : alexis.jeandet@member.fsf.org +----------------------------------------------------------------------------*/ +#pragma once + +#include "SciQLopPlots/Inspector/View/TreeView.hpp" +#include + +class InspectorView : public QWidget +{ + Q_OBJECT + PlotsTreeView* m_treeView; + void expand_recursively(const QModelIndex& index); + + Q_SLOT void selectionChanged(const QItemSelection& selected, const QItemSelection& deselected); + +public: + InspectorView(QWidget* parent = nullptr); + virtual ~InspectorView() = default; + +#ifndef BINDINGS_H + Q_SIGNAL void objects_selected(const QList& objects); +#endif +}; diff --git a/include/SciQLopPlots/Inspector/View/PropertiesPanel.hpp b/include/SciQLopPlots/Inspector/View/PropertiesPanel.hpp new file mode 100644 index 0000000..9e81652 --- /dev/null +++ b/include/SciQLopPlots/Inspector/View/PropertiesPanel.hpp @@ -0,0 +1,37 @@ +/*------------------------------------------------------------------------------ +-- This file is a part of the SciQLop Software +-- Copyright (C) 2024, Plasma Physics Laboratory - CNRS +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +-------------------------------------------------------------------------------*/ +/*-- Author : Alexis Jeandet +-- Mail : alexis.jeandet@member.fsf.org +----------------------------------------------------------------------------*/ +#pragma once + +#include +class InspectorView; +class PropertiesView; + +class PropertiesPanel : public QWidget +{ + Q_OBJECT + InspectorView* m_inspectorView; + PropertiesView* m_propertiesView; + +public: + PropertiesPanel(QWidget* parent = nullptr); + ~PropertiesPanel() = default; +}; diff --git a/include/SciQLopPlots/Inspector/View/PropertiesView.hpp b/include/SciQLopPlots/Inspector/View/PropertiesView.hpp new file mode 100644 index 0000000..c99e713 --- /dev/null +++ b/include/SciQLopPlots/Inspector/View/PropertiesView.hpp @@ -0,0 +1,36 @@ +/*------------------------------------------------------------------------------ +-- This file is a part of the SciQLop Software +-- Copyright (C) 2024, Plasma Physics Laboratory - CNRS +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +-------------------------------------------------------------------------------*/ +/*-- Author : Alexis Jeandet +-- Mail : alexis.jeandet@member.fsf.org +----------------------------------------------------------------------------*/ +#pragma once + +#include +class PropertyDelegateBase; + +class PropertiesView : public QWidget +{ + Q_OBJECT + PropertyDelegateBase* m_delegateWidget = nullptr; + +public: + Q_SLOT void set_current_objects(const QList& objects); + PropertiesView(QWidget* parent = nullptr); + virtual ~PropertiesView() = default; +}; diff --git a/include/SciQLopPlots/Inspector/View/TreeView.hpp b/include/SciQLopPlots/Inspector/View/TreeView.hpp new file mode 100644 index 0000000..a8d805a --- /dev/null +++ b/include/SciQLopPlots/Inspector/View/TreeView.hpp @@ -0,0 +1,36 @@ +/*------------------------------------------------------------------------------ +-- This file is a part of the SciQLop Software +-- Copyright (C) 2024, Plasma Physics Laboratory - CNRS +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +-------------------------------------------------------------------------------*/ +/*-- Author : Alexis Jeandet +-- Mail : alexis.jeandet@member.fsf.org +----------------------------------------------------------------------------*/ +#pragma once + +#include + +class PlotsTreeView : public QTreeView +{ + Q_OBJECT + +public: + PlotsTreeView(QWidget* parent = nullptr); + virtual ~PlotsTreeView() = default; + +protected: + void keyPressEvent(QKeyEvent* event) override; +}; diff --git a/include/SciQLopPlots/MultiPlots/AxisSynchronizer.hpp b/include/SciQLopPlots/MultiPlots/AxisSynchronizer.hpp index 3a356e7..a246c91 100644 --- a/include/SciQLopPlots/MultiPlots/AxisSynchronizer.hpp +++ b/include/SciQLopPlots/MultiPlots/AxisSynchronizer.hpp @@ -26,8 +26,9 @@ class AxisSynchronizer : public SciQLopPlotCollectionBehavior { Q_OBJECT + protected: - QList _plots; + QList> _plots; std::pair _last_x_range; AxisType m_sync_axis = AxisType::XAxis; @@ -37,7 +38,7 @@ class AxisSynchronizer : public SciQLopPlotCollectionBehavior { } - Q_SLOT virtual void updatePlotList(const QList& plots) override; + Q_SLOT virtual void updatePlotList(const QList>& plots) override; - Q_SLOT virtual void set_axis_range(const SciQLopPlotRange &range); + Q_SLOT virtual void set_axis_range(const SciQLopPlotRange& range); }; diff --git a/include/SciQLopPlots/MultiPlots/SciQLopMultiPlotObject.hpp b/include/SciQLopPlots/MultiPlots/SciQLopMultiPlotObject.hpp index e578d36..9fa1e92 100644 --- a/include/SciQLopPlots/MultiPlots/SciQLopMultiPlotObject.hpp +++ b/include/SciQLopPlots/MultiPlots/SciQLopMultiPlotObject.hpp @@ -25,12 +25,12 @@ #include class SciQLopPlot; - class SciQLopMultiPlotObject : public QObject { Q_OBJECT + protected: - QList m_plots; + QList> m_plots; virtual void addObject(SciQLopPlotInterface* plot); virtual void removeObject(SciQLopPlotInterface* plot); @@ -41,5 +41,5 @@ class SciQLopMultiPlotObject : public QObject virtual ~SciQLopMultiPlotObject() Q_DECL_OVERRIDE; - Q_SLOT virtual void updatePlotList(const QList& plots); + Q_SLOT virtual void updatePlotList(const QList>& plots); }; diff --git a/include/SciQLopPlots/MultiPlots/SciQLopMultiPlotPanel.hpp b/include/SciQLopPlots/MultiPlots/SciQLopMultiPlotPanel.hpp index 3a0c75d..cd9c5a1 100644 --- a/include/SciQLopPlots/MultiPlots/SciQLopMultiPlotPanel.hpp +++ b/include/SciQLopPlots/MultiPlots/SciQLopMultiPlotPanel.hpp @@ -21,89 +21,113 @@ ----------------------------------------------------------------------------*/ #pragma once #include "SciQLopPlotCollection.hpp" +#include "SciQLopPlots/DragNDrop/PlotDragNDropCallback.hpp" +#include "SciQLopPlots/Inspector/InspectorBase.hpp" #include #include +#include #include - -#include "qcustomplot.h" - +#include class SciQLopPlotContainer; class SciQLopPlot; +class PlaceHolderManager; class SciQLopMultiPlotPanel : public QScrollArea, public SciQLopPlotCollectionInterface { Q_OBJECT SciQLopPlotContainer* _container = nullptr; + std::map _accepted_mime_types; + PlotDragNDropCallback* _current_callback = nullptr; + PlaceHolderManager* _place_holder_manager = nullptr; + PlotType _default_plot_type = PlotType::BasicXY; + QUuid _uuid; + bool _selected = false; protected: template auto __plot(T* plot, - Args&&... args) -> decltype(std::declval()->line(std::forward(args)...), void()) + Args&&... args) -> decltype(std::declval()->line(std::forward(args)...)) { if constexpr (graph_type == GraphType::Line) - plot->line(std::forward(args)...); + return plot->line(std::forward(args)...); if constexpr (graph_type == GraphType::ParametricCurve) - plot->parametric_curve(std::forward(args)...); + return plot->parametric_curve(std::forward(args)...); + return nullptr; } template - auto __plot(T* plot, - Args&&... args) -> decltype(std::declval()->colormap(std::forward(args)...), - void()) + auto __plot(T* plot, Args&&... args) + -> decltype(std::declval()->colormap(std::forward(args)...)) { if constexpr (graph_type == GraphType::ColorMap) - plot->colormap(std::forward(args)...); + return plot->colormap(std::forward(args)...); + return nullptr; } - template - QPair _plot(int index, GraphType graph_type, Args&&... args) + template + QPair _plot(int index, GraphType graph_type, Args&&... args) { auto* plot = new T(); if (index == -1) add_plot(plot); else insert_plot(index, plot); + if (graph_type == GraphType::Line) - __plot(plot, std::forward(args)...); + { + return { plot, __plot(plot, std::forward(args)...) }; + } + if (graph_type == GraphType::ParametricCurve) - __plot(plot, std::forward(args)...); + { + return { plot, + __plot(plot, std::forward(args)...) }; + } if (graph_type == GraphType::ColorMap) - __plot(plot, std::forward(args)...); - return { plot, plot->graph(-1) }; + { + return { plot, __plot(plot, std::forward(args)...) }; + } + return { nullptr, nullptr }; } - virtual QPair plot_impl(const PyBuffer& x, - const PyBuffer& y, QStringList labels = QStringList(), - QList colors = QList(), ::PlotType plot_type = ::PlotType::BasicXY, - ::GraphType graph_type = ::GraphType::Line, int index = -1) Q_DECL_OVERRIDE; + virtual QPair + plot_impl(const PyBuffer& x, const PyBuffer& y, QStringList labels = QStringList(), + QList colors = QList(), ::PlotType plot_type = ::PlotType::BasicXY, + ::GraphType graph_type = ::GraphType::Line, int index = -1) Q_DECL_OVERRIDE; + + virtual QPair + plot_impl(const PyBuffer& x, const PyBuffer& y, const PyBuffer& z, + QString name = QStringLiteral("ColorMap"), bool y_log_scale = false, + bool z_log_scale = false, ::PlotType plot_type = ::PlotType::BasicXY, + int index = -1) Q_DECL_OVERRIDE; + + virtual QPair + plot_impl(GetDataPyCallable callable, QStringList labels = QStringList(), + QList colors = QList(), ::GraphType graph_type = ::GraphType::Line, + ::PlotType plot_type = ::PlotType::BasicXY, QObject* sync_with = nullptr, + int index = -1) Q_DECL_OVERRIDE; + + virtual QPair + plot_impl(GetDataPyCallable callable, QString name = QStringLiteral("ColorMap"), + bool y_log_scale = false, bool z_log_scale = false, + ::PlotType plot_type = ::PlotType::BasicXY, QObject* sync_with = nullptr, + int index = -1) Q_DECL_OVERRIDE; - virtual QPair plot_impl(const PyBuffer& x, - const PyBuffer& y, const PyBuffer& z, QString name = QStringLiteral("ColorMap"), - bool y_log_scale = false, bool z_log_scale = false, - ::PlotType plot_type = ::PlotType::BasicXY, int index = -1) Q_DECL_OVERRIDE; - - virtual QPair plot_impl( - GetDataPyCallable callable, QStringList labels = QStringList(), - QList colors = QList(), ::GraphType graph_type = ::GraphType::Line, - ::PlotType plot_type = ::PlotType::BasicXY, QObject* sync_with = nullptr, - int index = -1) Q_DECL_OVERRIDE; +public: + Q_PROPERTY(bool selected READ selected WRITE setSelected NOTIFY selectionChanged FINAL); + Q_PROPERTY(bool empty READ empty FINAL); - virtual QPair plot_impl( - GetDataPyCallable callable, QString name = QStringLiteral("ColorMap"), - bool y_log_scale = false, bool z_log_scale = false, - ::PlotType plot_type = ::PlotType::BasicXY, QObject* sync_with = nullptr, - int index = -1) Q_DECL_OVERRIDE; + SciQLopMultiPlotPanel(QWidget* parent = nullptr, bool synchronize_x = true, + bool synchronize_time = false); -public: - SciQLopMultiPlotPanel( - QWidget* parent = nullptr, bool synchronize_x = true, bool synchronize_time = false); + inline QUuid uuid() const { return _uuid; } void add_plot(SciQLopPlotInterface* plot) Q_DECL_OVERRIDE; void remove_plot(SciQLopPlotInterface* plot) Q_DECL_OVERRIDE; SciQLopPlotInterface* plot_at(int index) const Q_DECL_OVERRIDE; - const QList& plots() const; + QList> plots() const Q_DECL_OVERRIDE; virtual void insert_plot(int index, SciQLopPlotInterface* plot) Q_DECL_OVERRIDE; virtual void move_plot(int from, int to) Q_DECL_OVERRIDE; @@ -111,6 +135,8 @@ class SciQLopMultiPlotPanel : public QScrollArea, public SciQLopPlotCollectionIn void clear() Q_DECL_OVERRIDE; int index(SciQLopPlotInterface* plot) const Q_DECL_OVERRIDE; + int index(const QPointF& pos) const Q_DECL_OVERRIDE; + int index_from_global_position(const QPointF& pos) const Q_DECL_OVERRIDE; int indexOf(QWidget* widget) const; @@ -124,14 +150,18 @@ class SciQLopMultiPlotPanel : public QScrollArea, public SciQLopPlotCollectionIn SciQLopPlotInterface* create_plot(int index = -1, PlotType plot_type = PlotType::BasicXY); + void set_x_axis_range(const SciQLopPlotRange& range) Q_DECL_OVERRIDE; - void set_time_axis_range(const SciQLopPlotRange& range) Q_DECL_OVERRIDE; + const SciQLopPlotRange& x_axis_range() const Q_DECL_OVERRIDE; + void set_time_axis_range(const SciQLopPlotRange& range) Q_DECL_OVERRIDE; + const SciQLopPlotRange& time_axis_range() const Q_DECL_OVERRIDE; inline void set_x_axis_range(double start, double stop) { set_x_axis_range(SciQLopPlotRange(start, stop)); } + inline void set_time_axis_range(double start, double stop) { set_time_axis_range(SciQLopPlotRange(start, stop)); @@ -145,10 +175,26 @@ class SciQLopMultiPlotPanel : public QScrollArea, public SciQLopPlotCollectionIn void register_behavior(SciQLopPlotCollectionBehavior* behavior) Q_DECL_OVERRIDE; void remove_behavior(const QString& type_name) Q_DECL_OVERRIDE; + void add_accepted_mime_type(PlotDragNDropCallback* callback); + + inline bool selected() const { return _selected; } + + void setSelected(bool selected); + + virtual QList color_palette() const noexcept override; + + virtual void set_color_palette(const QList& palette) noexcept override; + #ifndef BINDINGS_H - Q_SIGNAL void plotListChanged(const QList& plots); + Q_SIGNAL void plot_list_changed(const QList>& plots); + Q_SIGNAL void selectionChanged(bool selected); #endif // BINDINGS_H + protected: void keyPressEvent(QKeyEvent* event) override; + void dragEnterEvent(QDragEnterEvent* event) override; + void dragMoveEvent(QDragMoveEvent* event) override; + void dragLeaveEvent(QDragLeaveEvent* event) override; + void dropEvent(QDropEvent* event) override; }; diff --git a/include/SciQLopPlots/MultiPlots/SciQLopPlotCollection.hpp b/include/SciQLopPlots/MultiPlots/SciQLopPlotCollection.hpp index 00dbf7a..047dabf 100644 --- a/include/SciQLopPlots/MultiPlots/SciQLopPlotCollection.hpp +++ b/include/SciQLopPlots/MultiPlots/SciQLopPlotCollection.hpp @@ -30,48 +30,58 @@ #include #include +#include "SciQLopPlots/Debug.hpp" #include "SciQLopPlots/SciQLopPlot.hpp" +Q_DECLARE_METATYPE(QList) + class SciQLopPlotCollectionBehavior : public QObject { Q_OBJECT + public: SciQLopPlotCollectionBehavior(QObject* parent = nullptr) : QObject(parent) { } - inline virtual Q_SLOT void updatePlotList(const QList& plots) { } + + inline virtual Q_SLOT void updatePlotList(const QList>& plots) + { + WARN_ABSTRACT_METHOD; + } }; class SciQLopPlotCollectionInterface { protected: - inline virtual QPair plot_impl(const PyBuffer& x, - const PyBuffer& y, QStringList labels = QStringList(), - QList colors = QList(), ::PlotType plot_type = ::PlotType::BasicXY, - ::GraphType graph_type = ::GraphType::Line, int index = -1) + inline virtual QPair + plot_impl(const PyBuffer& x, const PyBuffer& y, QStringList labels = QStringList(), + QList colors = QList(), ::PlotType plot_type = ::PlotType::BasicXY, + ::GraphType graph_type = ::GraphType::Line, int index = -1) { throw std::runtime_error("Not implemented"); } - inline virtual QPair plot_impl(const PyBuffer& x, - const PyBuffer& y, const PyBuffer& z, QString name = QStringLiteral("ColorMap"), - bool y_log_scale = false, bool z_log_scale = false, - ::PlotType plot_type = ::PlotType::BasicXY, int index = -1) + inline virtual QPair + plot_impl(const PyBuffer& x, const PyBuffer& y, const PyBuffer& z, + QString name = QStringLiteral("ColorMap"), bool y_log_scale = false, + bool z_log_scale = false, ::PlotType plot_type = ::PlotType::BasicXY, int index = -1) { throw std::runtime_error("Not implemented"); } - inline virtual QPair plot_impl( - GetDataPyCallable callable, QStringList labels = QStringList(), - QList colors = QList(), ::GraphType graph_type = ::GraphType::Line, - ::PlotType plot_type = ::PlotType::BasicXY, QObject* sync_with = nullptr, int index = -1) + inline virtual QPair + plot_impl(GetDataPyCallable callable, QStringList labels = QStringList(), + QList colors = QList(), ::GraphType graph_type = ::GraphType::Line, + ::PlotType plot_type = ::PlotType::BasicXY, QObject* sync_with = nullptr, + int index = -1) { throw std::runtime_error("Not implemented"); } - inline virtual QPair plot_impl( - GetDataPyCallable callable, QString name = QStringLiteral("ColorMap"), - bool y_log_scale = false, bool z_log_scale = false, - ::PlotType plot_type = ::PlotType::BasicXY, QObject* sync_with = nullptr, int index = -1) + inline virtual QPair + plot_impl(GetDataPyCallable callable, QString name = QStringLiteral("ColorMap"), + bool y_log_scale = false, bool z_log_scale = false, + ::PlotType plot_type = ::PlotType::BasicXY, QObject* sync_with = nullptr, + int index = -1) { throw std::runtime_error("Not implemented"); } @@ -79,75 +89,136 @@ class SciQLopPlotCollectionInterface public: virtual ~SciQLopPlotCollectionInterface() = default; - inline virtual void add_plot(SciQLopPlotInterface* plot) { } - inline virtual void insert_plot(int index, SciQLopPlotInterface* plot) { } - inline virtual void remove_plot(SciQLopPlotInterface* plot) { } - inline virtual void move_plot(int from, int to) { } - inline virtual void move_plot(SciQLopPlotInterface* plot, int to) { } - inline virtual void clear() { } + inline virtual QList> plots() const + { + WARN_ABSTRACT_METHOD; + return {}; + } + + inline virtual void add_plot(SciQLopPlotInterface* plot) { WARN_ABSTRACT_METHOD; } + + inline virtual void insert_plot(int index, SciQLopPlotInterface* plot) { WARN_ABSTRACT_METHOD; } - inline virtual int index(SciQLopPlotInterface* plot) const { return -1; } + inline virtual void remove_plot(SciQLopPlotInterface* plot) { WARN_ABSTRACT_METHOD; } - inline virtual SciQLopPlotInterface* plot_at(int index) const { return nullptr; } + inline virtual void move_plot(int from, int to) { WARN_ABSTRACT_METHOD; } - inline virtual bool contains(SciQLopPlotInterface* plot) const { return false; } + inline virtual void move_plot(SciQLopPlotInterface* plot, int to) { WARN_ABSTRACT_METHOD; } - inline virtual bool empty() const { return true; } - inline virtual std::size_t size() const { return 0; } + inline virtual void clear() { WARN_ABSTRACT_METHOD; } + + inline virtual int index(SciQLopPlotInterface* plot) const + { + WARN_ABSTRACT_METHOD; + return -1; + } + + inline virtual int index(const QPointF& pos) const + { + WARN_ABSTRACT_METHOD; + return -1; + } + + inline virtual int index_from_global_position(const QPointF& pos) const + { + WARN_ABSTRACT_METHOD; + return -1; + } + + inline virtual SciQLopPlotInterface* plot_at(int index) const + { + WARN_ABSTRACT_METHOD; + return nullptr; + } + + inline virtual bool contains(SciQLopPlotInterface* plot) const + { + WARN_ABSTRACT_METHOD; + return false; + } + + inline virtual bool empty() const + { + WARN_ABSTRACT_METHOD; + return true; + } + + inline virtual std::size_t size() const + { + WARN_ABSTRACT_METHOD; + return 0; + } + + inline virtual QList color_palette() const noexcept + { + WARN_ABSTRACT_METHOD; + return {}; + } + + inline virtual void set_color_palette(const QList& palette) noexcept + { + WARN_ABSTRACT_METHOD; + } virtual void set_x_axis_range(const SciQLopPlotRange& range); + virtual const SciQLopPlotRange& x_axis_range() const; virtual void set_time_axis_range(const SciQLopPlotRange& range); + virtual const SciQLopPlotRange& time_axis_range() const; - inline virtual void register_behavior(SciQLopPlotCollectionBehavior* behavior) { } - inline virtual void remove_behavior(const QString& type_name) { } + inline virtual void register_behavior(SciQLopPlotCollectionBehavior* behavior) + { + WARN_ABSTRACT_METHOD; + } + inline virtual void remove_behavior(const QString& type_name) { WARN_ABSTRACT_METHOD; } - inline virtual QPair line(const PyBuffer& x, - const PyBuffer& y, QStringList labels = QStringList(), - QList colors = QList(), ::PlotType plot_type = ::PlotType::BasicXY, - int index = -1) + inline virtual QPair + line(const PyBuffer& x, const PyBuffer& y, QStringList labels = QStringList(), + QList colors = QList(), ::PlotType plot_type = ::PlotType::BasicXY, + int index = -1) { return plot_impl(x, y, labels, colors, plot_type, ::GraphType::Line, index); } - inline virtual QPair parametric_curve( - const PyBuffer& x, const PyBuffer& y, QStringList labels = QStringList(), - QList colors = QList(), ::PlotType plot_type = ::PlotType::BasicXY, - int index = -1) + inline virtual QPair + parametric_curve(const PyBuffer& x, const PyBuffer& y, QStringList labels = QStringList(), + QList colors = QList(), + ::PlotType plot_type = ::PlotType::BasicXY, int index = -1) { return plot_impl(x, y, labels, colors, plot_type, ::GraphType::ParametricCurve, index); } - inline virtual QPair colormap(const PyBuffer& x, - const PyBuffer& y, const PyBuffer& z, QString name = QStringLiteral("ColorMap"), - bool y_log_scale = false, bool z_log_scale = false, - ::PlotType plot_type = ::PlotType::BasicXY, int index = -1) + inline virtual QPair + colormap(const PyBuffer& x, const PyBuffer& y, const PyBuffer& z, + QString name = QStringLiteral("ColorMap"), bool y_log_scale = false, + bool z_log_scale = false, ::PlotType plot_type = ::PlotType::BasicXY, int index = -1) { return plot_impl(x, y, z, name, y_log_scale, z_log_scale, plot_type, index); } - - inline virtual QPair line( - GetDataPyCallable callable, QStringList labels = QStringList(), - QList colors = QList(), ::PlotType plot_type = ::PlotType::BasicXY, - QObject* sync_with = nullptr, int index = -1) + inline virtual QPair + line(GetDataPyCallable callable, QStringList labels = QStringList(), + QList colors = QList(), ::PlotType plot_type = ::PlotType::BasicXY, + QObject* sync_with = nullptr, int index = -1) { return plot_impl(callable, labels, colors, ::GraphType::Line, plot_type, sync_with, index); } - inline virtual QPair parametric_curve( - GetDataPyCallable callable, QStringList labels = QStringList(), - QList colors = QList(), ::PlotType plot_type = ::PlotType::BasicXY, - QObject* sync_with = nullptr, int index = -1) + inline virtual QPair + parametric_curve(GetDataPyCallable callable, QStringList labels = QStringList(), + QList colors = QList(), + ::PlotType plot_type = ::PlotType::BasicXY, QObject* sync_with = nullptr, + int index = -1) { - return plot_impl( - callable, labels, colors, ::GraphType::ParametricCurve, plot_type, sync_with, index); + return plot_impl(callable, labels, colors, ::GraphType::ParametricCurve, plot_type, + sync_with, index); } - inline virtual QPair colormap( - GetDataPyCallable callable, QString name = QStringLiteral("ColorMap"), - bool y_log_scale = false, bool z_log_scale = false, - ::PlotType plot_type = ::PlotType::BasicXY, QObject* sync_with = nullptr, int index = -1) + inline virtual QPair + colormap(GetDataPyCallable callable, QString name = QStringLiteral("ColorMap"), + bool y_log_scale = false, bool z_log_scale = false, + ::PlotType plot_type = ::PlotType::BasicXY, QObject* sync_with = nullptr, + int index = -1) { return plot_impl(callable, name, y_log_scale, z_log_scale, plot_type, sync_with, index); } @@ -164,41 +235,3 @@ void remove_behavior(Interface_T* interface) { interface->remove_behavior(U::staticMetaObject.className()); } - -class SciQLopPlotCollection : public QObject, public SciQLopPlotCollectionInterface -{ - Q_OBJECT - QList _plots; - - QMap _behaviors; - -public: - SciQLopPlotCollection(QObject* parent = nullptr); - virtual ~SciQLopPlotCollection() = default; - void add_plot(SciQLopPlotInterface* plot) final; - void insert_plot(int index, SciQLopPlotInterface* plot) final; - void remove_plot(SciQLopPlotInterface* plot) final; - void move_plot(int from, int to) final; - void move_plot(SciQLopPlotInterface* plot, int to) final; - void clear() final; - - int index(SciQLopPlotInterface* plot) const final; - - SciQLopPlotInterface* plot_at(int index) const final; - inline const QList& plots() const { return _plots; } - - inline bool contains(SciQLopPlotInterface* plot) const final { return _plots.contains(plot); } - - inline bool empty() const final { return _plots.isEmpty(); } - inline std::size_t size() const final { return _plots.size(); } - - virtual void set_x_axis_range(const SciQLopPlotRange& range) final; - virtual void set_time_axis_range(const SciQLopPlotRange& range) final; - - void register_behavior(SciQLopPlotCollectionBehavior* behavior) final; - void remove_behavior(const QString& type_name) final; - -#ifndef BINDINGS_H - Q_SIGNAL void plotListChanged(const QList& plots); -#endif // BINDINGS_H -}; diff --git a/include/SciQLopPlots/MultiPlots/SciQLopPlotContainer.hpp b/include/SciQLopPlots/MultiPlots/SciQLopPlotContainer.hpp index edc9bb0..eba7864 100644 --- a/include/SciQLopPlots/MultiPlots/SciQLopPlotContainer.hpp +++ b/include/SciQLopPlots/MultiPlots/SciQLopPlotContainer.hpp @@ -29,11 +29,17 @@ class SciQLopPlotInterface; class SciQLopPlotContainer : public QSplitter, public SciQLopPlotCollectionInterface { Q_OBJECT - SciQLopPlotCollection* _plots; + + QMap _behaviors; + QList _color_palette; + SciQLopPlotRange _time_axis_range; + SciQLopPlotRange _x_axis_range; public: + Q_PROPERTY(bool empty READ empty FINAL); + SciQLopPlotContainer(QWidget* parent = nullptr); - virtual ~SciQLopPlotContainer() Q_DECL_OVERRIDE = default; + virtual ~SciQLopPlotContainer(); void insertWidget(int index, QWidget* widget); void addWidget(QWidget* widget); @@ -47,49 +53,93 @@ class SciQLopPlotContainer : public QSplitter, public SciQLopPlotCollectionInter inline int index(SciQLopPlotInterface* plot) const Q_DECL_OVERRIDE { - return _plots->index(plot); + return plots().indexOf(plot); + } + + inline virtual int index(const QPointF& pos) const Q_DECL_OVERRIDE + { + const auto _plots = plots(); + for (decltype(_plots.size()) i = 0; i < _plots.size(); i++) + { + auto plot = _plots[i]; + if (plot->geometry().contains(pos.toPoint())) + return i; + } + return -1; } virtual void clear() Q_DECL_OVERRIDE; inline virtual SciQLopPlotInterface* plot_at(int index) const Q_DECL_OVERRIDE { - return _plots->plot_at(index); + return plots().at(index); } - inline const QList& plots() const { return _plots->plots(); } + virtual inline QList> plots() const Q_DECL_OVERRIDE + { + QList> plots; + plots.reserve(count()); + for (int i = 0; i < count(); i++) + { + if (auto p = qobject_cast(widget(i)); p) + { + plots.emplace_back(p); + } + } + return plots; + } inline virtual bool contains(SciQLopPlotInterface* plot) const Q_DECL_OVERRIDE { - return _plots->contains(plot); + return plots().contains(plot); } - inline virtual bool empty() const Q_DECL_OVERRIDE { return _plots->empty(); } - virtual std::size_t size() const Q_DECL_OVERRIDE { return _plots->size(); } + inline virtual bool empty() const Q_DECL_OVERRIDE { return count() == 0; } + virtual std::size_t size() const Q_DECL_OVERRIDE { return count(); } inline void set_x_axis_range(const SciQLopPlotRange& range) Q_DECL_OVERRIDE { - _plots->set_x_axis_range(range); + _x_axis_range = range; + for (auto plot : plots()) + { + plot->x_axis()->set_range(range); + } } - inline virtual void set_time_axis_range(const SciQLopPlotRange& range) Q_DECL_OVERRIDE + inline virtual const SciQLopPlotRange& x_axis_range() const Q_DECL_OVERRIDE { - _plots->set_time_axis_range(range); + return _x_axis_range; } - - inline void register_behavior(SciQLopPlotCollectionBehavior* behavior) Q_DECL_OVERRIDE + inline virtual void set_time_axis_range(const SciQLopPlotRange& range) Q_DECL_OVERRIDE { - _plots->register_behavior(behavior); + _time_axis_range = range; + for (auto plot : plots()) + { + plot->time_axis()->set_range(range); + } } - inline void remove_behavior(const QString& type_name) Q_DECL_OVERRIDE + + inline virtual const SciQLopPlotRange& time_axis_range() const Q_DECL_OVERRIDE { - _plots->remove_behavior(type_name); + return _time_axis_range; } + + void register_behavior(SciQLopPlotCollectionBehavior* behavior) Q_DECL_OVERRIDE; + + void remove_behavior(const QString& type_name) Q_DECL_OVERRIDE; + void organize_plots(); + inline virtual QList color_palette() const noexcept override { return _color_palette; } + + inline virtual void set_color_palette(const QList& palette) noexcept override + { + _color_palette = palette; + } + #ifndef BINDINGS_H - Q_SIGNAL void plotListChanged(const QList& plots); + Q_SIGNAL void plot_list_changed(const QList>& plots); #endif // BINDINGS_H }; diff --git a/include/SciQLopPlots/MultiPlots/TimeAxisSynchronizer.hpp b/include/SciQLopPlots/MultiPlots/TimeAxisSynchronizer.hpp index c0b0c80..c1c1749 100644 --- a/include/SciQLopPlots/MultiPlots/TimeAxisSynchronizer.hpp +++ b/include/SciQLopPlots/MultiPlots/TimeAxisSynchronizer.hpp @@ -34,5 +34,5 @@ class TimeAxisSynchronizer : public AxisSynchronizer { } - Q_SLOT void updatePlotList(const QList& plots) override; + Q_SLOT void updatePlotList(const QList>& plots) override; }; diff --git a/include/SciQLopPlots/MultiPlots/VPlotsAlign.hpp b/include/SciQLopPlots/MultiPlots/VPlotsAlign.hpp index dddde81..52e8a41 100644 --- a/include/SciQLopPlots/MultiPlots/VPlotsAlign.hpp +++ b/include/SciQLopPlots/MultiPlots/VPlotsAlign.hpp @@ -25,14 +25,13 @@ #include "SciQLopPlotCollection.hpp" - class VPlotsAlign : public SciQLopPlotCollectionBehavior { Q_OBJECT - QList _plots; + QList> _plots; void _recompute_margins(); public: VPlotsAlign(QObject* parent = nullptr); - Q_SLOT void updatePlotList(const QList& plots) override; + Q_SLOT void updatePlotList(const QList>& plots) override; }; diff --git a/include/SciQLopPlots/MultiPlots/XAxisSynchronizer.hpp b/include/SciQLopPlots/MultiPlots/XAxisSynchronizer.hpp index 8fff716..7697de1 100644 --- a/include/SciQLopPlots/MultiPlots/XAxisSynchronizer.hpp +++ b/include/SciQLopPlots/MultiPlots/XAxisSynchronizer.hpp @@ -32,5 +32,5 @@ class XAxisSynchronizer : public AxisSynchronizer public: XAxisSynchronizer(QObject* parent = nullptr) : AxisSynchronizer(AxisType::XAxis, parent) { } - Q_SLOT void updatePlotList(const QList& plots) override; + Q_SLOT void updatePlotList(const QList>& plots) override; }; diff --git a/include/SciQLopPlots/Plotables/QCPAbstractPlottableWrapper.hpp b/include/SciQLopPlots/Plotables/QCPAbstractPlottableWrapper.hpp index 230a799..863c448 100644 --- a/include/SciQLopPlots/Plotables/QCPAbstractPlottableWrapper.hpp +++ b/include/SciQLopPlots/Plotables/QCPAbstractPlottableWrapper.hpp @@ -21,65 +21,84 @@ ----------------------------------------------------------------------------*/ #pragma once +#include "SciQLopPlots/Plotables/SciQLopGraphComponent.hpp" #include "SciQLopPlots/Plotables/SciQLopGraphInterface.hpp" #include +template +inline void _set_selected(T* plottable, bool selected) +{ + if (plottable->selected() != selected) + { + if (selected) + plottable->setSelection(QCPDataSelection(plottable->data()->dataRange())); + else + plottable->setSelection(QCPDataSelection()); + } +} + +inline void set_selected(QCPAbstractPlottable* plottable, bool selected) +{ + if (auto graph = dynamic_cast(plottable); graph != nullptr) + { + _set_selected(graph, selected); + } + else if (auto curve = dynamic_cast(plottable); curve != nullptr) + { + _set_selected(curve, selected); + } +} + class SQPQCPAbstractPlottableWrapper : public SciQLopGraphInterface { Q_OBJECT + protected: - QList m_plottables; - inline QCustomPlot* _plot() const { return qobject_cast(this->parent()); } + QList> m_components; - void _register_plottable(QCPAbstractPlottable* plottable); + void _register_component(SciQLopGraphComponent* component); public: - SQPQCPAbstractPlottableWrapper(QCustomPlot* parent) : SciQLopGraphInterface(parent) { } - virtual ~SQPQCPAbstractPlottableWrapper() + SQPQCPAbstractPlottableWrapper(const QString& prefix, QCustomPlot* parent) + : SciQLopGraphInterface(prefix, parent) { - for (auto plottable : m_plottables) - { - if (_plot()->hasPlottable(plottable)) - _plot()->removePlottable(plottable); - } } - inline void clear_plottables() + virtual ~SQPQCPAbstractPlottableWrapper() { clear_plottables(); } + + inline void clear_plottables() { m_components.clear(); } + + const QList qcp_plottables() const noexcept { - for (auto plottable : m_plottables) - { - if (_plot()->hasPlottable(plottable)) - _plot()->removePlottable(plottable); - } - m_plottables.clear(); + QList plottables; + for (auto component : m_components) + plottables.append(component->plottable()); + return plottables; } - const QList& qcp_plottables() const noexcept { return m_plottables; } - template - inline T* newPlottable(QCPAxis* keyAxis, QCPAxis* valueAxis, const QString& name) + inline SciQLopGraphComponent* newComponent(QCPAxis* keyAxis, QCPAxis* valueAxis, + const QString& name) { - QCPAbstractPlottable* plottable = nullptr; + auto plot = keyAxis->parentPlot(); + SciQLopGraphComponent* component = nullptr; if constexpr (std::is_same_v) { - plottable = _plot()->addGraph(keyAxis, valueAxis); + component = new SciQLopGraphComponent(plot->addGraph(keyAxis, valueAxis), this); } - else if constexpr (std::is_same_v) + else if constexpr (std::is_same_v) { - plottable = new QCPColorMap(keyAxis, valueAxis); + component = new SciQLopGraphComponent(new QCPCurve(keyAxis, valueAxis), this); } - else if constexpr (std::is_same_v) + if (component) { - plottable = new QCPCurve(keyAxis, valueAxis); + component->set_name(name); + _register_component(component); } - else - return nullptr; - _register_plottable(plottable); - plottable->setName(name); - return reinterpret_cast(plottable); + return component; } - std::size_t plottable_count() const noexcept { return std::size(m_plottables); } + std::size_t plottable_count() const noexcept { return std::size(m_components); } virtual void set_visible(bool visible) noexcept override; virtual void set_labels(const QStringList& labels) override; @@ -88,6 +107,36 @@ class SQPQCPAbstractPlottableWrapper : public SciQLopGraphInterface virtual bool visible() const noexcept override; virtual QStringList labels() const noexcept override; + virtual void set_selected(bool selected) noexcept override; + virtual bool selected() const noexcept override; + + virtual SciQLopGraphComponentInterface* component(const QString& name) const noexcept override + { + for (auto component : m_components) + { + if (component->name() == name) + return component; + } + return nullptr; + } + + virtual SciQLopGraphComponentInterface* component(int index) const noexcept override + { + if (index == -1 || static_cast(index) >= plottable_count()) + index = plottable_count() - 1; + return m_components[index]; + } + + virtual QList components() const noexcept override + { + QList components; + components.reserve(std::size(m_components)); + for (auto component : m_components) + components.append(component); + return components; + } + + #ifndef BINDINGS_H Q_SIGNAL void plottable_created(QCPAbstractPlottable*); #endif // BINDINGS_H diff --git a/include/SciQLopPlots/Plotables/Resamplers/AbstractResampler.hpp b/include/SciQLopPlots/Plotables/Resamplers/AbstractResampler.hpp new file mode 100644 index 0000000..6c69c4b --- /dev/null +++ b/include/SciQLopPlots/Plotables/Resamplers/AbstractResampler.hpp @@ -0,0 +1,192 @@ +/*------------------------------------------------------------------------------ +-- This file is a part of the SciQLop Software +-- Copyright (C) 2024, Plasma Physics Laboratory - CNRS +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +-------------------------------------------------------------------------------*/ +/*-- Author : Alexis Jeandet +-- Mail : alexis.jeandet@member.fsf.org +----------------------------------------------------------------------------*/ +#pragma once +#include +#include +#include +#include +#include +#include + +static inline QVector copy_data(const XYView& view, std::size_t column_index) +{ + QVector data(std::size(view)); + for (decltype(std::size(data)) i = 0UL; i < std::size(data); i++) + { + data[i] = QCPGraphData { view.x(i), view.y(i, column_index) }; + } + return data; +} + +struct ResamplerData1d +{ + PyBuffer x; + PyBuffer y; + QCPRange _x_range; + QCPRange _plot_range; + bool new_data = true; +}; + +struct ResamplerData2d +{ + PyBuffer x; + PyBuffer y; + PyBuffer z; + QCPRange _x_range; + QCPRange _plot_range; + bool new_data = true; +}; + +template +class _AbstractResampler +{ + using T = std::conditional_t; + QRecursiveMutex _data_mutex; + QRecursiveMutex _next_data_mutex; + T _data; + T _next_data; + +protected: + inline void _async_resample_callback() + { + { + QMutexLocker locker(&_data_mutex); + { + QMutexLocker locker(&_next_data_mutex); + _data = _next_data; + _next_data.new_data = false; + } + if constexpr (data2d) + { + static_cast(this)->_resample_impl(_data.x, _data.y, _data.z, _data._plot_range, + _data.new_data); + } + else + { + static_cast(this)->_resample_impl(_data.x, _data.y, _data._plot_range, + _data.new_data); + } + } + } + + inline void set_next_plot_range(const QCPRange new_range) + { + QMutexLocker locker(&_next_data_mutex); + _next_data._plot_range = new_range; + } + +public: + template + inline void setData(PyBuffer x, Args... args) + { + { + QCPRange _data_x_range; + const auto len = x.flat_size(); + if (len > 0) + { + _data_x_range.lower = x.data()[0]; + _data_x_range.upper = x.data()[len - 1]; + } + else + { + _data_x_range.lower = std::nan(""); + _data_x_range.upper = std::nan(""); + } + QMutexLocker locker(&_next_data_mutex); + _next_data = T { std::move(x), std::move(args)..., _data_x_range, _data_x_range, true }; + static_cast(this)->resample(_data_x_range); + } + } + + inline QCPRange x_range() + { + QMutexLocker locker(&_data_mutex); + return this->_data._x_range; + } + + QList get_data() + { + if constexpr (data2d) + { + QMutexLocker locker(&_data_mutex); + return { _data.x, _data.y, _data.z }; + } + else + { + QMutexLocker locker(&_data_mutex); + return { _data.x, _data.y }; + } + } +}; + +struct AbstractResampler1d : public QObject, public _AbstractResampler +{ + friend class _AbstractResampler; + +protected: + Q_OBJECT + std::size_t _line_cnt; + + Q_SLOT void _async_resample(); + +#ifndef BINDINGS_H + Q_SIGNAL void _resample_sig(); +#endif + + virtual void _resample_impl(const PyBuffer& x, const PyBuffer& y, const QCPRange new_range, + bool new_data) + = 0; + +public: + AbstractResampler1d(std::size_t line_cnt); + virtual ~AbstractResampler1d() = default; + + void resample(const QCPRange new_range); + + inline void set_line_count(std::size_t line_cnt) { this->_line_cnt = line_cnt; } + + inline std::size_t line_count() const { return _line_cnt; } +}; + +struct AbstractResampler2d : public QObject, public _AbstractResampler +{ + friend class _AbstractResampler; + +protected: + Q_OBJECT + + Q_SLOT void _async_resample(); + +#ifndef BINDINGS_H + Q_SIGNAL void _resample_sig(); +#endif + + virtual void _resample_impl(const PyBuffer& x, const PyBuffer& y, const PyBuffer& z, + const QCPRange new_range, bool new_data) + = 0; + +public: + AbstractResampler2d(); + virtual ~AbstractResampler2d() = default; + + void resample(const QCPRange new_range); +}; diff --git a/include/SciQLopPlots/Plotables/Resamplers/SciQLopColorMapResampler.hpp b/include/SciQLopPlots/Plotables/Resamplers/SciQLopColorMapResampler.hpp new file mode 100644 index 0000000..1ae4f35 --- /dev/null +++ b/include/SciQLopPlots/Plotables/Resamplers/SciQLopColorMapResampler.hpp @@ -0,0 +1,61 @@ +/*------------------------------------------------------------------------------ +-- This file is a part of the SciQLop Software +-- Copyright (C) 2023, Plasma Physics Laboratory - CNRS +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +-------------------------------------------------------------------------------*/ +/*-- Author : Alexis Jeandet +-- Mail : alexis.jeandet@member.fsf.org +----------------------------------------------------------------------------*/ +#pragma once + +#include "SciQLopPlots/Python/PythonInterface.hpp" + +#include "AbstractResampler.hpp" + + +#include +#include +#include +#include + +struct ColormapResampler : public AbstractResampler2d +{ + Q_OBJECT + QAtomicInteger _log_scale = false; + std::size_t _max_x_size = 1000; + std::size_t _max_y_size = 1000; + + void _resample_impl(const PyBuffer& x, const PyBuffer& y, const PyBuffer& z, + const QCPRange new_range, bool new_data); + +public: +#ifndef BINDINGS_H + Q_SIGNAL void setGraphData(QCPColorMapData* data); +#endif // !BINDINGS_H + + ColormapResampler(QCPAxis::ScaleType scale_type); + ~ColormapResampler() = default; + + inline void setScaleType(QCPAxis::ScaleType scale_type) + { + _log_scale.storeRelaxed(scale_type == QCPAxis::stLogarithmic); + } + + inline QCPAxis::ScaleType scaleType() const + { + return _log_scale.loadRelaxed() ? QCPAxis::stLogarithmic : QCPAxis::stLinear; + } +}; diff --git a/include/SciQLopPlots/Plotables/SciQLopCurveResampler.hpp b/include/SciQLopPlots/Plotables/Resamplers/SciQLopCurveResampler.hpp similarity index 96% rename from include/SciQLopPlots/Plotables/SciQLopCurveResampler.hpp rename to include/SciQLopPlots/Plotables/Resamplers/SciQLopCurveResampler.hpp index 74cbea7..0a801af 100644 --- a/include/SciQLopPlots/Plotables/SciQLopCurveResampler.hpp +++ b/include/SciQLopPlots/Plotables/Resamplers/SciQLopCurveResampler.hpp @@ -23,7 +23,7 @@ #include "SciQLopPlots/Python/PythonInterface.hpp" -#include "SciQLopLineGraphResampler.hpp" +#include "AbstractResampler.hpp" #include #include @@ -32,7 +32,7 @@ struct CurveResampler : public AbstractResampler1d { Q_OBJECT - void _resample( + void _resample_impl( const PyBuffer& x, const PyBuffer& y, const QCPRange newRange, bool new_data) override; public: diff --git a/include/SciQLopPlots/Plotables/Resamplers/SciQLopLineGraphResampler.hpp b/include/SciQLopPlots/Plotables/Resamplers/SciQLopLineGraphResampler.hpp new file mode 100644 index 0000000..9a6e96f --- /dev/null +++ b/include/SciQLopPlots/Plotables/Resamplers/SciQLopLineGraphResampler.hpp @@ -0,0 +1,96 @@ +/*------------------------------------------------------------------------------ +-- This file is a part of the SciQLop Software +-- Copyright (C) 2023, Plasma Physics Laboratory - CNRS +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +-------------------------------------------------------------------------------*/ +/*-- Author : Alexis Jeandet +-- Mail : alexis.jeandet@member.fsf.org +----------------------------------------------------------------------------*/ +#pragma once + +#include "SciQLopPlots/Python/PythonInterface.hpp" + +#include "AbstractResampler.hpp" + +#include + +static inline QVector resample(const XYView& view, std::size_t column_index, + std::size_t dest_size) +{ + if (dest_size & 1) + dest_size++; + const auto view_size = std::size(view); + const auto x_0 = view.x(0); + const auto x_1 = view.x(view_size - 1); + auto dx = 2. * (x_1 - x_0) / static_cast(dest_size); + QVector data(dest_size); + { + auto key = x_0; + auto dest_index = 0UL; + auto next_x = x_0 + dx; + data[0].key = key; + data[0].value = std::nan(""); + data[1].key = key + dx / 2.; + data[1].value = std::nan(""); + for (auto view_index = 0UL; view_index < view_size; view_index++) + { + // @todo: A possible optimization would be to use a kind of iterator + // that polymorphic view is not cheap + auto x = view.x(view_index); + auto y = view.y(view_index, column_index); + while (x > next_x && dest_index < dest_size - 4) + { + dest_index += 2; + data[dest_index].key = next_x; + data[dest_index].value = std::nan(""); + data[dest_index + 1].key = next_x + dx / 2.; + data[dest_index + 1].value = std::nan(""); + next_x = dx * (dest_index + 2) + x_0; + } + + if (!std::isnan(y)) [[likely]] + { + // NaN comparison is always false + // Either value is NaN or y is smaller than value + if (!(data[dest_index].value < y)) + data[dest_index].value = y; + // Either value is NaN or y is greater than value + if (!(data[dest_index + 1].value > y)) + data[dest_index + 1].value = y; + } + } + if (dest_index < dest_size - 1) + { + data.resize(dest_index + 2); + } + } + return data; +} + +struct LineGraphResampler : public AbstractResampler1d +{ + Q_OBJECT + + void _resample_impl(const PyBuffer& x, const PyBuffer& y, const QCPRange new_range, + bool new_data) override; + +public: +#ifndef BINDINGS_H + Q_SIGNAL void setGraphData(QList> data); +#endif + + LineGraphResampler(std::size_t line_cnt); +}; diff --git a/include/SciQLopPlots/Plotables/SciQLopColorMap.hpp b/include/SciQLopPlots/Plotables/SciQLopColorMap.hpp index 17cb7c2..5ca6445 100644 --- a/include/SciQLopPlots/Plotables/SciQLopColorMap.hpp +++ b/include/SciQLopPlots/Plotables/SciQLopColorMap.hpp @@ -20,7 +20,9 @@ -- Mail : alexis.jeandet@member.fsf.org ----------------------------------------------------------------------------*/ #pragma once +#include "SciQLopPlots/DataProducer/DataProducer.hpp" #include "SciQLopPlots/Python/PythonInterface.hpp" +#include "SciQLopPlots/SciQLopPlotAxis.hpp" #include "QCPAbstractPlottableWrapper.hpp" #include "SciQLopPlots/enums.hpp" @@ -30,40 +32,155 @@ struct ColormapResampler; class QThread; -class SciQLopColorMap : public SQPQCPAbstractPlottableWrapper +class SciQLopColorMap : public SciQLopColorMapInterface { + bool _selected = false; ColormapResampler* _resampler = nullptr; QThread* _resampler_thread = nullptr; QTimer* _icon_update_timer; QCPRange _data_x_range; - QCPAxis* _keyAxis; - QCPAxis* _valueAxis; - QCPColorMap* _cmap; + SciQLopPlotAxis* _keyAxis; + SciQLopPlotAxis* _valueAxis; + QPointer _cmap; QMutex _data_swap_mutex; bool _auto_scale_y = false; + + ColorGradient _gradient; + Q_OBJECT inline QCustomPlot* _plot() const { return qobject_cast(this->parent()); } void _resample(const QCPRange& newRange); void _cmap_got_destroyed(); + inline QCPPlottableLegendItem* _legend_item() + { + if (_cmap) + { + auto plot = _plot(); + return plot->legend->itemWithPlottable(_cmap.data()); + } + return nullptr; + } + + Q_SLOT void _setGraphData(QCPColorMapData* data); + public: Q_ENUMS(FractionStyle) - explicit SciQLopColorMap(QCustomPlot* parent, QCPAxis* keyAxis, QCPAxis* valueAxis, - const QString& name, DataOrder dataOrder = ::DataOrder::RowMajor); + explicit SciQLopColorMap(QCustomPlot* parent, SciQLopPlotAxis* keyAxis, + SciQLopPlotAxis* valueAxis, const QString& name); virtual ~SciQLopColorMap() override; Q_SLOT virtual void set_data(PyBuffer x, PyBuffer y, PyBuffer z) override; inline QCPColorMap* colorMap() const { return _cmap; } + void set_auto_scale_y(bool auto_scale_y); + inline bool auto_scale_y() const { return _auto_scale_y; } + inline virtual ColorGradient gradient() const noexcept override { return _gradient; } + + inline virtual void set_gradient(ColorGradient gradient) noexcept override + { + _gradient = gradient; + if (_cmap) + { + QCPColorGradient new_gradient; + switch (gradient) + { + + case ColorGradient::Grayscale: + new_gradient = QCPColorGradient::gpGrayscale; + break; + case ColorGradient::Hot: + new_gradient = QCPColorGradient::gpHot; + break; + case ColorGradient::Cold: + new_gradient = QCPColorGradient::gpCold; + break; + case ColorGradient::Night: + new_gradient = QCPColorGradient::gpNight; + break; + case ColorGradient::Candy: + new_gradient = QCPColorGradient::gpCandy; + break; + case ColorGradient::Geography: + new_gradient = QCPColorGradient::gpGeography; + break; + case ColorGradient::Ion: + new_gradient = QCPColorGradient::gpIon; + break; + case ColorGradient::Thermal: + new_gradient = QCPColorGradient::gpThermal; + break; + case ColorGradient::Polar: + new_gradient = QCPColorGradient::gpPolar; + break; + case ColorGradient::Spectrum: + new_gradient = QCPColorGradient::gpSpectrum; + break; + case ColorGradient::Jet: + new_gradient = QCPColorGradient::gpJet; + break; + case ColorGradient::Hues: + new_gradient = QCPColorGradient::gpHues; + break; + } + new_gradient.setNanHandling(QCPColorGradient::nhTransparent); + _cmap->setGradient(new_gradient); + _cmap->rescaleDataRange(true); + } + } + + virtual void set_selected(bool selected) noexcept override; + virtual bool selected() const noexcept override; + + inline virtual void set_name(const QString& name) noexcept override + { + this->setObjectName(name); + if (_cmap) + _cmap->setName(name); + } + + virtual void set_x_axis(SciQLopPlotAxisInterface* axis) noexcept override; + + virtual void set_y_axis(SciQLopPlotAxisInterface* axis) noexcept override; + + virtual SciQLopPlotAxisInterface* x_axis() const noexcept override { return _keyAxis; } + + virtual SciQLopPlotAxisInterface* y_axis() const noexcept override { return _valueAxis; } + + virtual SciQLopPlotAxisInterface* z_axis() const noexcept override { return nullptr; } + + #ifndef BINDINGS_H Q_SIGNAL void auto_scale_y_changed(bool); #endif + private: ::DataOrder _dataOrder = DataOrder::RowMajor; }; + +class SciQLopColorMapFunction : public SciQLopColorMap +{ + Q_OBJECT + SimplePyCallablePipeline* m_pipeline; + + inline Q_SLOT void _set_data(PyBuffer x, PyBuffer y, PyBuffer z) + { + SciQLopColorMap::set_data(x, y, z); + } + +public: + explicit SciQLopColorMapFunction(QCustomPlot* parent, SciQLopPlotAxis* key_axis, + SciQLopPlotAxis* value_axis, GetDataPyCallable&& callable, + const QString& name); + + virtual ~SciQLopColorMapFunction() override = default; + + Q_SLOT virtual void set_data(PyBuffer x, PyBuffer y, PyBuffer z) override; + Q_SLOT virtual void set_data(PyBuffer x, PyBuffer y) override; +}; diff --git a/include/SciQLopPlots/Plotables/SciQLopColorMapResampler.hpp b/include/SciQLopPlots/Plotables/SciQLopColorMapResampler.hpp deleted file mode 100644 index 780b9f8..0000000 --- a/include/SciQLopPlots/Plotables/SciQLopColorMapResampler.hpp +++ /dev/null @@ -1,102 +0,0 @@ -/*------------------------------------------------------------------------------ --- This file is a part of the SciQLop Software --- Copyright (C) 2023, Plasma Physics Laboratory - CNRS --- --- This program is free software; you can redistribute it and/or modify --- it under the terms of the GNU General Public License as published by --- the Free Software Foundation; either version 2 of the License, or --- (at your option) any later version. --- --- This program is distributed in the hope that it will be useful, --- but WITHOUT ANY WARRANTY; without even the implied warranty of --- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the --- GNU General Public License for more details. --- --- You should have received a copy of the GNU General Public License --- along with this program; if not, write to the Free Software --- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA --------------------------------------------------------------------------------*/ -/*-- Author : Alexis Jeandet --- Mail : alexis.jeandet@member.fsf.org -----------------------------------------------------------------------------*/ -#pragma once - -#include "SciQLopPlots/Python/PythonInterface.hpp" - - -#include -#include -#include - - -struct ColormapResampler : public QObject -{ - Q_OBJECT - QMutex _mutex; - QMutex _range_mutex; - PyBuffer _x; - PyBuffer _y; - PyBuffer _z; - QCPRange _data_x_range; - std::size_t _line_cnt; - QCPAxis::ScaleType _scale_type; - QCPColorMapData* _last_data_ptr = nullptr; - std::size_t _max_y_size = 1000; - - - std::vector _optimal_y_scale( - const PyBuffer& x, const PyBuffer& y, QCPAxis::ScaleType scale_type); - - QCPColorMapData* _setDataLinear(const PyBuffer& x, const PyBuffer& y, const PyBuffer& z); - - QCPColorMapData* _setDataLog(const PyBuffer& x, const PyBuffer& y, const PyBuffer& z); - -#ifndef BINDINGS_H - Q_SIGNAL void _resample_sig(const QCPRange& newRange); -#endif // !BINDINGS_H - void _resample_slot(const QCPRange& newRange); - -public: -#ifndef BINDINGS_H - Q_SIGNAL void setGraphData(std::size_t index, QVector data); - Q_SIGNAL void refreshPlot(QCPColorMapData* data); -#endif // !BINDINGS_H - - ColormapResampler(QCPAxis::ScaleType scale_type); - - void resample(const QCPRange& newRange); - - inline QCPRange x_range() - { - QMutexLocker locker(&_mutex); - return this->_data_x_range; - } - - inline void setData(PyBuffer x, PyBuffer y, PyBuffer z, QCPAxis::ScaleType scale_type) - { - const auto len = x.flat_size(); - { - QMutexLocker range_lock { &_range_mutex }; - if (len > 0) - { - _data_x_range.lower = x.data()[0]; - _data_x_range.upper = x.data()[len - 1]; - } - else - { - _data_x_range.lower = std::nan(""); - _data_x_range.upper = std::nan(""); - } - } - { - QMutexLocker data_locker(&_mutex); - - _x = std::move(x); - _y = std::move(y); - _z = std::move(z); - - _scale_type = scale_type; - } - this->resample(_data_x_range); - } -}; diff --git a/include/SciQLopPlots/Plotables/SciQLopCurve.hpp b/include/SciQLopPlots/Plotables/SciQLopCurve.hpp index da1bae3..f98752c 100644 --- a/include/SciQLopPlots/Plotables/SciQLopCurve.hpp +++ b/include/SciQLopPlots/Plotables/SciQLopCurve.hpp @@ -41,7 +41,6 @@ class SciQLopCurve : public SQPQCPAbstractPlottableWrapper inline QCustomPlot* _plot() const { return qobject_cast(this->parent()); } - void _range_changed(const QCPRange& newRange, const QCPRange& oldRange); void _setCurveData(QList> data); @@ -54,27 +53,28 @@ class SciQLopCurve : public SQPQCPAbstractPlottableWrapper void clear_resampler(); void create_resampler(const QStringList& labels); void create_graphs(const QStringList& labels); + inline void create_curves(const QStringList& labels) { create_graphs(labels); } inline QCPCurve* line(std::size_t index) const { if (index < plottable_count()) - return dynamic_cast(m_plottables[index]); + return dynamic_cast(m_components[index]->plottable()); return nullptr; } inline const QList lines() const { QList curves; - for (auto plottable : m_plottables) - curves.append(qobject_cast(plottable)); + for (auto plottable : m_components) + curves.append(qobject_cast(plottable->plottable())); return curves; } public: Q_ENUMS(FractionStyle) - explicit SciQLopCurve( - QCustomPlot* parent, QCPAxis* keyAxis, QCPAxis* valueAxis, const QStringList& labels); + explicit SciQLopCurve(QCustomPlot* parent, QCPAxis* keyAxis, QCPAxis* valueAxis, + const QStringList& labels); explicit SciQLopCurve(QCustomPlot* parent, QCPAxis* keyAxis, QCPAxis* valueAxis); @@ -82,18 +82,23 @@ class SciQLopCurve : public SQPQCPAbstractPlottableWrapper Q_SLOT virtual void set_data(PyBuffer x, PyBuffer y) override; virtual QList data() const noexcept override; + inline std::size_t line_count() const noexcept { return plottable_count(); } }; - class SciQLopCurveFunction : public SciQLopCurve { Q_OBJECT SimplePyCallablePipeline* m_pipeline; + inline Q_SLOT void _set_data(PyBuffer x, PyBuffer y) { SciQLopCurve::set_data(x, y); } + public: explicit SciQLopCurveFunction(QCustomPlot* parent, QCPAxis* key_axis, QCPAxis* value_axis, - GetDataPyCallable&& callable, const QStringList& labels); + GetDataPyCallable&& callable, const QStringList& labels); virtual ~SciQLopCurveFunction() override = default; + + Q_SLOT virtual void set_data(PyBuffer x, PyBuffer y) override; + Q_SLOT virtual void set_data(PyBuffer x, PyBuffer y, PyBuffer z) override; }; diff --git a/include/SciQLopPlots/Plotables/SciQLopGraphComponent.hpp b/include/SciQLopPlots/Plotables/SciQLopGraphComponent.hpp new file mode 100644 index 0000000..cde95c2 --- /dev/null +++ b/include/SciQLopPlots/Plotables/SciQLopGraphComponent.hpp @@ -0,0 +1,288 @@ +/*------------------------------------------------------------------------------ +-- This file is a part of the SciQLop Software +-- Copyright (C) 2023, Plasma Physics Laboratory - CNRS +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +-------------------------------------------------------------------------------*/ +/*-- Author : Alexis Jeandet +-- Mail : alexis.jeandet@member.fsf.org +----------------------------------------------------------------------------*/ +#pragma once + +#include "SciQLopPlots/Plotables/SciQLopGraphComponentInterface.hpp" +#include + +inline QCPScatterStyle::ScatterShape _to_qcp_scatter_shape(GraphMarkerShape marker) +{ + switch (marker) + { + case GraphMarkerShape::Circle: + return QCPScatterStyle::ScatterShape::ssCircle; + case GraphMarkerShape::Square: + return QCPScatterStyle::ScatterShape::ssSquare; + case GraphMarkerShape::Triangle: + return QCPScatterStyle::ScatterShape::ssTriangle; + case GraphMarkerShape::Diamond: + return QCPScatterStyle::ScatterShape::ssDiamond; + case GraphMarkerShape::Star: + return QCPScatterStyle::ScatterShape::ssStar; + case GraphMarkerShape::Plus: + return QCPScatterStyle::ScatterShape::ssPlus; + default: + return QCPScatterStyle::ScatterShape::ssNone; + } +} + +inline GraphMarkerShape _from_qcp_scatter_style(QCPScatterStyle::ScatterShape shape) +{ + switch (shape) + { + case QCPScatterStyle::ssCircle: + return GraphMarkerShape::Circle; + case QCPScatterStyle::ssSquare: + return GraphMarkerShape::Square; + case QCPScatterStyle::ssTriangle: + return GraphMarkerShape::Triangle; + case QCPScatterStyle::ssDiamond: + return GraphMarkerShape::Diamond; + case QCPScatterStyle::ssStar: + return GraphMarkerShape::Star; + case QCPScatterStyle::ssPlus: + return GraphMarkerShape::Plus; + default: + return GraphMarkerShape::NoMarker; + } +} + +inline QCPGraph::LineStyle _to_qcp_line_style(GraphLineStyle style) +{ + switch (style) + { + case GraphLineStyle::Line: + return QCPGraph::LineStyle::lsLine; + case GraphLineStyle::StepLeft: + return QCPGraph::LineStyle::lsStepLeft; + case GraphLineStyle::StepRight: + return QCPGraph::LineStyle::lsStepRight; + case GraphLineStyle::StepCenter: + return QCPGraph::LineStyle::lsStepCenter; + default: + return QCPGraph::LineStyle::lsNone; + } +} + +inline GraphLineStyle _from_qcp_line_style(QCPGraph::LineStyle style) +{ + switch (style) + { + case QCPGraph::LineStyle::lsLine: + return GraphLineStyle::Line; + case QCPGraph::LineStyle::lsStepLeft: + return GraphLineStyle::StepLeft; + case QCPGraph::LineStyle::lsStepRight: + return GraphLineStyle::StepRight; + case QCPGraph::LineStyle::lsStepCenter: + return GraphLineStyle::StepCenter; + default: + return GraphLineStyle::NoLine; + } +} + +class SciQLopGraphComponent : public SciQLopGraphComponentInterface +{ + using graph_or_curve = std::variant; + + template + struct visitor : Ts... + { + using Ts::operator()...; + }; + template + visitor(Ts...) -> visitor; + + Q_OBJECT + QPointer m_plottable; + + inline QCustomPlot* _plot() const + { + if (m_plottable) + return m_plottable->parentPlot(); + return nullptr; + } + + inline graph_or_curve to_variant() const + { + if (auto graph = qobject_cast(m_plottable); graph != nullptr) + return graph; + else if (auto curve = qobject_cast(m_plottable); curve != nullptr) + return curve; + return std::monostate(); + } + + inline QCPPlottableLegendItem* _legend_item() + { + if (m_plottable) + { + auto plot = _plot(); + return plot->legend->itemWithPlottable(m_plottable.data()); + } + return nullptr; + } + + bool m_selected = false; + +public: + SciQLopGraphComponent(QCPAbstractPlottable* plottable, QObject* parent = nullptr); + ~SciQLopGraphComponent(); + + inline QCPAbstractPlottable* plottable() const noexcept { return m_plottable; } + + virtual void set_pen(const QPen& pen) noexcept override; + + inline virtual void set_color(const QColor& color) noexcept override + { + if (m_plottable) + { + auto pen = this->pen(); + pen.setColor(color); + this->set_pen(pen); + } + } + + inline virtual void set_line_style(GraphLineStyle style) noexcept override + { + if (m_plottable) + { + std::visit(visitor { [style](QCPGraph* any) + { any->setLineStyle(_to_qcp_line_style(style)); }, + [style](QCPCurve* any) + { + if (style == GraphLineStyle::NoLine) + any->setLineStyle(QCPCurve::lsNone); + else + any->setLineStyle(QCPCurve::lsLine); + }, + [](std::monostate) {} }, + to_variant()); + } + } + + inline virtual void set_marker_shape(GraphMarkerShape marker) noexcept override + { + if (m_plottable) + { + std::visit(visitor { [marker](auto any) + { + auto scatterStyle = any->scatterStyle(); + scatterStyle.setShape(_to_qcp_scatter_shape(marker)); + any->setScatterStyle(scatterStyle); + }, + [](std::monostate) {} }, + to_variant()); + } + } + + inline virtual void set_marker_pen(const QPen& pen) noexcept override + { + if (m_plottable) + { + std::visit(visitor { [pen](auto any) + { + auto scatterStyle = any->scatterStyle(); + scatterStyle.setPen(pen); + any->setScatterStyle(scatterStyle); + }, + [](std::monostate) {} }, + to_variant()); + } + } + + virtual void set_line_width(const qreal width) noexcept override; + + virtual void set_visible(bool visible) noexcept override; + + virtual void set_name(const QString& name) noexcept override; + + virtual void set_selected(bool selected) noexcept override; + + inline virtual QPen pen() const noexcept override + { + if (m_plottable) + return m_plottable->pen(); + return QPen(); + } + + virtual QColor color() const noexcept override; + + inline virtual GraphLineStyle line_style() const noexcept override + { + if (m_plottable) + { + return std::visit(visitor { [](QCPGraph* any) + { return _from_qcp_line_style(any->lineStyle()); }, + [](QCPCurve* any) + { + if (any->lineStyle() == QCPCurve::lsNone) + return GraphLineStyle::NoLine; + return GraphLineStyle::Line; + }, + [](std::monostate) { return GraphLineStyle::NoLine; } }, + to_variant()); + } + return GraphLineStyle::NoLine; + } + + inline virtual GraphMarkerShape marker_shape() const noexcept override + { + if (m_plottable) + { + return std::visit( + visitor { [](auto any) + { return _from_qcp_scatter_style(any->scatterStyle().shape()); }, + [](std::monostate) { return GraphMarkerShape::NoMarker; } }, + to_variant()); + } + return GraphMarkerShape::NoMarker; + } + + inline virtual QPen marker_pen() const noexcept override + { + if (m_plottable) + { + return std::visit(visitor { [](auto any) { return any->scatterStyle().pen(); }, + [](std::monostate) { return QPen(); } }, + to_variant()); + } + return QPen(); + } + + inline virtual qreal line_width() const noexcept override + { + if (m_plottable) + return m_plottable->pen().widthF(); + return 0; + } + + inline virtual bool visible() const noexcept override + { + if (m_plottable) + return m_plottable->visible(); + return false; + } + + inline virtual QString name() const noexcept override { return this->objectName(); } + + inline virtual bool selected() const noexcept override { return m_selected; } +}; diff --git a/include/SciQLopPlots/Plotables/SciQLopGraphComponentInterface.hpp b/include/SciQLopPlots/Plotables/SciQLopGraphComponentInterface.hpp new file mode 100644 index 0000000..4efb22e --- /dev/null +++ b/include/SciQLopPlots/Plotables/SciQLopGraphComponentInterface.hpp @@ -0,0 +1,124 @@ +/*------------------------------------------------------------------------------ +-- This file is a part of the SciQLop Software +-- Copyright (C) 2024, Plasma Physics Laboratory - CNRS +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +-------------------------------------------------------------------------------*/ +/*-- Author : Alexis Jeandet +-- Mail : alexis.jeandet@member.fsf.org +----------------------------------------------------------------------------*/ +#pragma once + +#include "SciQLopPlots/Debug.hpp" +#include "SciQLopPlots/SciQLopPlotRange.hpp" +#include "SciQLopPlots/enums.hpp" + +#include +#include +#include +#include + +class SciQLopGraphComponentInterface : public QObject +{ + SciQLopPlotRange m_range; + Q_OBJECT + +public: + Q_PROPERTY(bool selected READ selected WRITE set_selected NOTIFY selection_changed) + + SciQLopGraphComponentInterface(QObject* parent = nullptr) : QObject(parent) { } + + virtual ~SciQLopGraphComponentInterface() = default; + + inline virtual void set_pen(const QPen& pen) noexcept { WARN_ABSTRACT_METHOD; } + + inline virtual void set_color(const QColor& color) noexcept { WARN_ABSTRACT_METHOD; } + + inline virtual void set_line_style(GraphLineStyle style) noexcept { WARN_ABSTRACT_METHOD; } + + inline virtual void set_marker_shape(GraphMarkerShape marker) noexcept { WARN_ABSTRACT_METHOD; } + + inline virtual void set_marker_pen(const QPen& pen) noexcept { WARN_ABSTRACT_METHOD; } + + inline virtual void set_line_width(const qreal width) noexcept { WARN_ABSTRACT_METHOD; } + + inline virtual void set_visible(bool visible) noexcept { WARN_ABSTRACT_METHOD; } + + inline virtual void set_name(const QString& name) noexcept { this->setObjectName(name); } + + inline virtual void set_selected(bool selected) noexcept + { + WARN_ABSTRACT_METHOD; + Q_UNUSED(selected); + } + + inline virtual QPen pen() const noexcept + { + WARN_ABSTRACT_METHOD; + return QPen(); + } + + inline virtual QColor color() const noexcept + { + WARN_ABSTRACT_METHOD; + return QColor(); + } + + inline virtual GraphLineStyle line_style() const noexcept + { + WARN_ABSTRACT_METHOD; + return GraphLineStyle::NoLine; + } + + inline virtual GraphMarkerShape marker_shape() const noexcept + { + WARN_ABSTRACT_METHOD; + return GraphMarkerShape::NoMarker; + } + + inline virtual QPen marker_pen() const noexcept + { + WARN_ABSTRACT_METHOD; + return QPen(); + } + + inline virtual qreal line_width() const noexcept + { + WARN_ABSTRACT_METHOD; + return 0; + } + + inline virtual bool visible() const noexcept + { + WARN_ABSTRACT_METHOD; + return false; + } + + inline virtual QString name() const noexcept { return this->objectName(); } + + inline virtual bool selected() const noexcept + { + WARN_ABSTRACT_METHOD; + return false; + } + +#ifndef BINDINGS_H + Q_SIGNAL void visible_changed(bool visible); + Q_SIGNAL void name_changed(const QString& name); + Q_SIGNAL void colors_changed(const QList& colors); + Q_SIGNAL void replot(); + Q_SIGNAL void selection_changed(bool selected); +#endif +}; diff --git a/include/SciQLopPlots/Plotables/SciQLopGraphInterface.hpp b/include/SciQLopPlots/Plotables/SciQLopGraphInterface.hpp index 6be865a..38785f8 100644 --- a/include/SciQLopPlots/Plotables/SciQLopGraphInterface.hpp +++ b/include/SciQLopPlots/Plotables/SciQLopGraphInterface.hpp @@ -20,50 +20,194 @@ -- Mail : alexis.jeandet@member.fsf.org ----------------------------------------------------------------------------*/ #pragma once - #include "SciQLopPlots/Python/PythonInterface.hpp" +#include "SciQLopPlots/Debug.hpp" +#include "SciQLopPlots/Plotables/SciQLopGraphComponentInterface.hpp" #include "SciQLopPlots/SciQLopPlotRange.hpp" +#include "SciQLopPlots/enums.hpp" #include #include #include #include -class SciQLopGraphInterface : public QObject +class SciQLopPlotAxisInterface; + +class SciQLopPlottableInterface : public QObject { - SciQLopPlotRange m_range; Q_OBJECT + +protected: + SciQLopPlotRange m_range; + public: - SciQLopGraphInterface(QObject* parent = nullptr); - virtual ~SciQLopGraphInterface() = default; + Q_PROPERTY(bool selected READ selected WRITE set_selected NOTIFY selection_changed) + + SciQLopPlottableInterface(QObject* parent = nullptr) : QObject(parent) { } + + virtual ~SciQLopPlottableInterface() = default; virtual void set_range(const SciQLopPlotRange& range); - virtual void set_visible(bool visible) noexcept { } - virtual void set_labels(const QStringList& labels) { } + + virtual void set_visible(bool visible) noexcept { WARN_ABSTRACT_METHOD; } + inline virtual void set_name(const QString& name) noexcept { this->setObjectName(name); } - virtual void set_colors(const QList& colors) { } virtual SciQLopPlotRange range() const noexcept { return m_range; } - virtual bool visible() const noexcept { return false; } - virtual QStringList labels() const noexcept { return QStringList(); } + virtual bool visible() const noexcept + { + WARN_ABSTRACT_METHOD; + return false; + } + virtual QString name() const noexcept { return this->objectName(); } - virtual QList colors() const noexcept { return QList(); } - Q_SLOT virtual void set_data(PyBuffer x, PyBuffer y) {}; - Q_SLOT virtual void set_data(PyBuffer x, PyBuffer y, PyBuffer z) {}; + Q_SLOT virtual void set_data(PyBuffer x, PyBuffer y) { WARN_ABSTRACT_METHOD; }; + + Q_SLOT virtual void set_data(PyBuffer x, PyBuffer y, PyBuffer z) { WARN_ABSTRACT_METHOD; }; + + virtual QList data() const noexcept + { + WARN_ABSTRACT_METHOD; + return QList(); + } - virtual QList data() const noexcept { return QList(); } + virtual void set_selected(bool selected) noexcept { WARN_ABSTRACT_METHOD; } + + virtual bool selected() const noexcept + { + WARN_ABSTRACT_METHOD; + return false; + } + + inline virtual void set_x_axis(SciQLopPlotAxisInterface* axis) noexcept + { + WARN_ABSTRACT_METHOD; + } + + inline virtual void set_y_axis(SciQLopPlotAxisInterface* axis) noexcept + { + WARN_ABSTRACT_METHOD; + } + + inline virtual void set_z_axis(SciQLopPlotAxisInterface* axis) noexcept + { + WARN_ABSTRACT_METHOD; + } + + inline virtual SciQLopPlotAxisInterface* x_axis() const noexcept + { + WARN_ABSTRACT_METHOD; + return nullptr; + } + + inline virtual SciQLopPlotAxisInterface* y_axis() const noexcept + { + WARN_ABSTRACT_METHOD; + return nullptr; + } + + inline virtual SciQLopPlotAxisInterface* z_axis() const noexcept + { + WARN_ABSTRACT_METHOD; + return nullptr; + } #ifndef BINDINGS_H Q_SIGNAL void range_changed(SciQLopPlotRange range); Q_SIGNAL void visible_changed(bool visible); - Q_SIGNAL void labels_changed(const QStringList& labels); Q_SIGNAL void name_changed(const QString& name); - Q_SIGNAL void colors_changed(const QList& colors); Q_SIGNAL void replot(); Q_SIGNAL void data_changed(PyBuffer x, PyBuffer y); Q_SIGNAL void data_changed(PyBuffer x, PyBuffer y, PyBuffer z); + Q_SIGNAL void selection_changed(bool selected); +#endif +}; + +class SciQLopGraphInterface : public SciQLopPlottableInterface +{ + Q_OBJECT + +public: + Q_PROPERTY(bool selected READ selected WRITE set_selected NOTIFY selection_changed) + + SciQLopGraphInterface(const QString& prefix = "Graph", QObject* parent = nullptr); + virtual ~SciQLopGraphInterface() = default; + + virtual void set_labels(const QStringList& labels) { WARN_ABSTRACT_METHOD; } + + virtual void set_colors(const QList& colors) { WARN_ABSTRACT_METHOD; } + + virtual QStringList labels() const noexcept + { + WARN_ABSTRACT_METHOD; + return QStringList(); + } + + virtual QList colors() const noexcept + { + WARN_ABSTRACT_METHOD; + return QList(); + } + + virtual SciQLopGraphComponentInterface* component(const QString& name) const noexcept + { + WARN_ABSTRACT_METHOD; + return nullptr; + } + + virtual SciQLopGraphComponentInterface* component(int index) const noexcept + { + WARN_ABSTRACT_METHOD; + return nullptr; + } + + virtual QList components() const noexcept + { + WARN_ABSTRACT_METHOD; + return QList(); + } + +#ifndef BINDINGS_H + Q_SIGNAL void labels_changed(const QStringList& labels); + Q_SIGNAL void colors_changed(const QList& colors); + Q_SIGNAL void component_list_changed(); #endif }; + +class SciQLopColorMapInterface : public SciQLopPlottableInterface +{ + Q_OBJECT + +public: + SciQLopColorMapInterface(QObject* parent = nullptr); + virtual ~SciQLopColorMapInterface() = default; + + inline virtual ColorGradient gradient() const noexcept + { + WARN_ABSTRACT_METHOD; + return ColorGradient::Jet; + } + + inline virtual void set_gradient(ColorGradient gradient) noexcept { WARN_ABSTRACT_METHOD; } + + inline virtual void set_y_log_scale(bool y_log_scale) noexcept { WARN_ABSTRACT_METHOD; } + + inline virtual void set_z_log_scale(bool z_log_scale) noexcept { WARN_ABSTRACT_METHOD; } + + inline virtual bool y_log_scale() const noexcept + { + WARN_ABSTRACT_METHOD; + return false; + } + + inline virtual bool z_log_scale() const noexcept + { + WARN_ABSTRACT_METHOD; + return false; + } + + inline virtual void set_selected(bool selected) noexcept { WARN_ABSTRACT_METHOD; } +}; diff --git a/include/SciQLopPlots/Plotables/SciQLopLineGraph.hpp b/include/SciQLopPlots/Plotables/SciQLopLineGraph.hpp index f0669a2..91bda99 100644 --- a/include/SciQLopPlots/Plotables/SciQLopLineGraph.hpp +++ b/include/SciQLopPlots/Plotables/SciQLopLineGraph.hpp @@ -50,25 +50,26 @@ class SciQLopLineGraph : public SQPQCPAbstractPlottableWrapper void clear_graphs(bool graph_already_removed = false); void clear_resampler(); void create_resampler(const QStringList& labels); + inline const QList lines() const noexcept { QList graphs; - for (auto plottable : m_plottables) - graphs.append(qobject_cast(plottable)); + for (auto plottable : m_components) + graphs.append(qobject_cast(plottable->plottable())); return graphs; } inline QCPGraph* line(std::size_t index) const { if (index < plottable_count()) - return qobject_cast(m_plottables[index]); + return qobject_cast(m_components[index]->plottable()); return nullptr; } public: Q_ENUMS(FractionStyle) explicit SciQLopLineGraph(QCustomPlot* parent, QCPAxis* key_axis, QCPAxis* value_axis, - const QStringList& labels = QStringList()); + const QStringList& labels = QStringList()); virtual ~SciQLopLineGraph() override; @@ -81,7 +82,6 @@ class SciQLopLineGraph : public SQPQCPAbstractPlottableWrapper void create_graphs(const QStringList& labels); }; - class SciQLopLineGraphFunction : public SciQLopLineGraph { Q_OBJECT @@ -91,9 +91,10 @@ class SciQLopLineGraphFunction : public SciQLopLineGraph public: explicit SciQLopLineGraphFunction(QCustomPlot* parent, QCPAxis* key_axis, QCPAxis* value_axis, - GetDataPyCallable&& callable, const QStringList& labels); + GetDataPyCallable&& callable, const QStringList& labels); virtual ~SciQLopLineGraphFunction() override = default; Q_SLOT virtual void set_data(PyBuffer x, PyBuffer y) override; + Q_SLOT virtual void set_data(PyBuffer x, PyBuffer y, PyBuffer z) override; }; diff --git a/include/SciQLopPlots/Plotables/SciQLopLineGraphResampler.hpp b/include/SciQLopPlots/Plotables/SciQLopLineGraphResampler.hpp deleted file mode 100644 index d75a40d..0000000 --- a/include/SciQLopPlots/Plotables/SciQLopLineGraphResampler.hpp +++ /dev/null @@ -1,163 +0,0 @@ -/*------------------------------------------------------------------------------ --- This file is a part of the SciQLop Software --- Copyright (C) 2023, Plasma Physics Laboratory - CNRS --- --- This program is free software; you can redistribute it and/or modify --- it under the terms of the GNU General Public License as published by --- the Free Software Foundation; either version 2 of the License, or --- (at your option) any later version. --- --- This program is distributed in the hope that it will be useful, --- but WITHOUT ANY WARRANTY; without even the implied warranty of --- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the --- GNU General Public License for more details. --- --- You should have received a copy of the GNU General Public License --- along with this program; if not, write to the Free Software --- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA --------------------------------------------------------------------------------*/ -/*-- Author : Alexis Jeandet --- Mail : alexis.jeandet@member.fsf.org -----------------------------------------------------------------------------*/ -#pragma once - -#include "SciQLopPlots/Python/PythonInterface.hpp" - - -#include -#include - - -template -static inline QVector resample(const XYView& view, std::size_t column_index) -{ - static_assert(dest_size % 2 == 0); - const auto x_0 = view.x(0); - const auto x_1 = view.x(std::size(view) - 1); - auto dx = 2. * (x_1 - x_0) / dest_size; - QVector data(dest_size); - std::size_t data_index = 0UL; - std::size_t view_index = 0UL; - - for (auto bucket = 0UL; bucket < dest_size / 2; bucket++) - { - { - const auto bucket_start_x = view.x(view_index); - double bucket_max_x = std::min(bucket_start_x + dx, x_1); - double max_value = std::nan(""); - double min_value = std::nan(""); - auto current_x = bucket_start_x; - while (current_x < bucket_max_x && view_index < std::size(view)) - { - current_x = view.x(view_index); - auto v = view.y(view_index++, column_index); - max_value = std::fmax(max_value, v); - min_value = std::fmin(min_value, v); - } - data[data_index++] = QCPGraphData { bucket_start_x, min_value }; - data[data_index++] = QCPGraphData { bucket_start_x + dx / 2., max_value }; - } - } - return data; -} - -static inline QVector copy_data(const XYView& view, std::size_t column_index) -{ - QVector data(std::size(view)); - for (auto i = 0UL; i < std::size(data); i++) - { - data[i] = QCPGraphData { view.x(i), view.y(i, column_index) }; - } - return data; -} - -struct ResamplerData -{ - PyBuffer x; - PyBuffer y; - QCPRange _x_range; - QCPRange _plot_range; - bool new_data = true; -}; - -struct AbstractResampler1d : public QObject -{ -protected: - Q_OBJECT - QRecursiveMutex _data_mutex; - QRecursiveMutex _next_data_mutex; - ResamplerData _data; - ResamplerData _next_data; - std::size_t _line_cnt; -#ifndef BINDINGS_H - Q_SIGNAL void _resample_sig(); -#endif - void _resample_slot(); - - virtual void _resample( - const PyBuffer& x, const PyBuffer& y, const QCPRange new_range, bool new_data) - = 0; - -public: - AbstractResampler1d(std::size_t line_cnt); - - void resample(const QCPRange new_range); - - inline QCPRange x_range() - { - QMutexLocker locker(&_data_mutex); - auto rng = this->_data._x_range; - return rng; - } - - inline void set_line_count(std::size_t line_cnt) - { - QMutexLocker locker(&_data_mutex); - this->_line_cnt = line_cnt; - } - - inline void setData(PyBuffer x, PyBuffer y) - { - { - QCPRange _data_x_range; - const auto len = x.flat_size(); - if (len > 0) - { - _data_x_range.lower = x.data()[0]; - _data_x_range.upper = x.data()[len - 1]; - } - else - { - _data_x_range.lower = std::nan(""); - _data_x_range.upper = std::nan(""); - } - QMutexLocker locker(&_next_data_mutex); - _next_data - = ResamplerData { std::move(x), std::move(y), _data_x_range, _data_x_range, true }; - this->resample(_data_x_range); - } - } - - inline std::size_t line_count() const { return _line_cnt; } - - QList get_data() - { - QMutexLocker locker(&_data_mutex); - return { _data.x, _data.y }; - } -}; - -struct LineGraphResampler : public AbstractResampler1d -{ - Q_OBJECT - - void _resample( - const PyBuffer& x, const PyBuffer& y, const QCPRange new_range, bool new_data) override; - -public: -#ifndef BINDINGS_H - Q_SIGNAL void setGraphData(QList> data); -#endif - - LineGraphResampler(std::size_t line_cnt); -}; diff --git a/include/SciQLopPlots/Products/ProductsModel.hpp b/include/SciQLopPlots/Products/ProductsModel.hpp new file mode 100644 index 0000000..15e07b1 --- /dev/null +++ b/include/SciQLopPlots/Products/ProductsModel.hpp @@ -0,0 +1,69 @@ +/*------------------------------------------------------------------------------ +-- This file is a part of the SciQLop Software +-- Copyright (C) 2024, Plasma Physics Laboratory - CNRS +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +-------------------------------------------------------------------------------*/ +/*-- Author : Alexis Jeandet +-- Mail : alexis.jeandet@member.fsf.org +----------------------------------------------------------------------------*/ +#pragma once +#include "SciQLopPlots/Products/ProductsNode.hpp" +#include +#include +#include +#include + +inline constexpr auto PRODUCT_FILTER_ROLE = Qt::UserRole + 1; + +class ProductsModel : public QAbstractItemModel +{ + Q_OBJECT + ProductsModelNode* m_rootNode; + QStringListModel* m_completer_model; + + QModelIndex make_index(ProductsModelNode* node); + + void _add_to_completer(const QString& value); + void _add_to_completer(ProductsModelNode* node); + + void _insert_node(ProductsModelNode* node, ProductsModelNode* parent); + +public: + ProductsModel(QObject* parent = nullptr); + ~ProductsModel() = default; + + QModelIndex index(int row, int column, + const QModelIndex& parent = QModelIndex()) const override; + QModelIndex parent(const QModelIndex& index) const override; + int rowCount(const QModelIndex& parent = QModelIndex()) const override; + int columnCount(const QModelIndex& parent = QModelIndex()) const override; + QVariant data(const QModelIndex& index, int role = Qt::DisplayRole) const override; + Qt::ItemFlags flags(const QModelIndex& index) const override; + + QMimeData* mimeData(const QModelIndexList& indexes) const override; + + static QList decode_mime_data(const QMimeData* mime_data); + + inline QStringListModel* completer_model() const { return m_completer_model; } + + Q_SLOT void add_node(QStringList path, ProductsModelNode* obj); + + static ProductsModelNode* node(const QStringList& path); + + inline static QString mime_type() { return "application/x-product"; } + + static ProductsModel* instance(); +}; diff --git a/include/SciQLopPlots/Products/ProductsNode.hpp b/include/SciQLopPlots/Products/ProductsNode.hpp new file mode 100644 index 0000000..55cf613 --- /dev/null +++ b/include/SciQLopPlots/Products/ProductsNode.hpp @@ -0,0 +1,111 @@ +/*------------------------------------------------------------------------------ +-- This file is a part of the SciQLop Software +-- Copyright (C) 2024, Plasma Physics Laboratory - CNRS +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +-------------------------------------------------------------------------------*/ +/*-- Author : Alexis Jeandet +-- Mail : alexis.jeandet@member.fsf.org +----------------------------------------------------------------------------*/ +#pragma once +#include "SciQLopPlots/enums.hpp" +#include +#include +#include +#include + +enum class ProductsModelNodeType +{ + ROOT, + PARAMETER, + FOLDER +}; + +class ProductsModelNode : public QObject +{ + Q_OBJECT + QList m_children; + ProductsModelNodeType m_node_type; + + ProductsModelNode* _root_node(); + + QMap m_metadata; + + QString m_icon; + QString m_tooltip; + QString m_raw_text; + + ParameterType m_parameter_type; + QString m_provider; + +public: + ProductsModelNode(const QString& name, const QMap& metadata = {}, + const QString& icon = "", QObject* parent = nullptr); + + ProductsModelNode(const QString& name, const QString& provider, + const QMap& metadata, ProductsModelNodeType node_type, + ParameterType parameter_type, const QString& icon = "", + QObject* parent = nullptr); + + virtual ~ProductsModelNode() = default; + + ProductsModelNode* parent_node() { return qobject_cast(parent()); } + + inline ProductsModelNode* child(int row) { return m_children.value(row, nullptr); } + + inline ProductsModelNode* child(const QString& name) + { + for (auto child : m_children) + { + if (child->objectName() == name) + return child; + } + return nullptr; + } + + inline int child_row(ProductsModelNode* child) { return m_children.indexOf(child); } + + inline int children_count() { return m_children.size(); } + + inline QList children_nodes() { return m_children; } + + void add_child(ProductsModelNode* child); + + QStringList path(); + + void set_icon(const QString& name); + + const QIcon& icon(); + + void set_tooltip(const QString& tooltip); + + inline const QString& tooltip() const noexcept { return m_tooltip; } + + const QMap& metadata() const noexcept { return m_metadata; } + + inline const QVariant metadata(const QString& key) const noexcept { return m_metadata[key]; } + + inline ProductsModelNodeType node_type() const noexcept { return m_node_type; } + + inline QString name() const noexcept { return objectName(); } + + inline const QString& raw_text() const noexcept { return m_raw_text; } + + QStringList completions() const noexcept; + + inline ParameterType parameter_type() const noexcept { return m_parameter_type; } + + inline const QString& provider() const noexcept { return m_provider; } +}; diff --git a/include/SciQLopPlots/Products/ProductsView.hpp b/include/SciQLopPlots/Products/ProductsView.hpp new file mode 100644 index 0000000..11703ae --- /dev/null +++ b/include/SciQLopPlots/Products/ProductsView.hpp @@ -0,0 +1,46 @@ +/*------------------------------------------------------------------------------ +-- This file is a part of the SciQLop Software +-- Copyright (C) 2024, Plasma Physics Laboratory - CNRS +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +-------------------------------------------------------------------------------*/ +/*-- Author : Alexis Jeandet +-- Mail : alexis.jeandet@member.fsf.org +----------------------------------------------------------------------------*/ +#pragma once +#include +#include + +class QLineEdit; +class QTreeView; +class QCompleter; +class QSortFilterProxyModel; +class QTimer; + +class ProductsView : public QWidget +{ + Q_OBJECT + QTreeView* m_tree_view; + QLineEdit* m_search_line_edit; + QCompleter* m_completer; + QSortFilterProxyModel* m_proxy_model; + QTimer* m_search_timer; + + Q_SLOT void update_filter(); + +public: + ProductsView(QWidget* parent = nullptr); + virtual ~ProductsView() = default; +}; diff --git a/include/SciQLopPlots/Profiling.hpp b/include/SciQLopPlots/Profiling.hpp new file mode 100644 index 0000000..3000c79 --- /dev/null +++ b/include/SciQLopPlots/Profiling.hpp @@ -0,0 +1,51 @@ +/*------------------------------------------------------------------------------ +-- This file is a part of the SciQLop Software +-- Copyright (C) 2024, Plasma Physics Laboratory - CNRS +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +-------------------------------------------------------------------------------*/ +/*-- Author : Alexis Jeandet +-- Mail : alexis.jeandet@member.fsf.org +----------------------------------------------------------------------------*/ +#pragma once + +#ifdef TRACY_ENABLE + +#include +#define PROFILE_HERE ZoneScoped +#define PROFILE_HERE_N(name) ZoneScopedN(name) +#define PROFILE_HERE_NC(name, color) ZoneScopedNC(name, color) +#define PROFILE_PASS_VALUE(value) ZoneValue(value) + + +#ifdef PROFILE_MEMORY + +#include +#include + +void* operator new(std::size_t n); + +void operator delete(void* ptr) noexcept; + +#endif + +#else + +#define PROFILE_HERE +#define PROFILE_HERE_N(name) +#define PROFILE_HERE_NC(name, color) +#define PROFILE_PASS_VALUE(value) + +#endif diff --git a/include/SciQLopPlots/Python/PythonInterface.hpp b/include/SciQLopPlots/Python/PythonInterface.hpp index d2ed78f..c116de7 100644 --- a/include/SciQLopPlots/Python/PythonInterface.hpp +++ b/include/SciQLopPlots/Python/PythonInterface.hpp @@ -27,7 +27,6 @@ #include #include -#include #include #include @@ -42,35 +41,70 @@ extern "C" #endif } - struct ArrayViewBase { virtual ~ArrayViewBase() = default; virtual double operator[](std::pair index) const = 0; - virtual std::unique_ptr view( - std::size_t first_row = 0, std::size_t last_row = 0) const + virtual std::unique_ptr view(std::size_t first_row = 0, + std::size_t last_row = 0) const = 0; virtual std::size_t flat_size() const noexcept = 0; + virtual std::size_t size(int index = 0) const noexcept = 0; +}; + +struct ArrayView1D : public ArrayViewBase +{ +private: + double* ptr; + std::size_t start; // first row + std::size_t stop; // last row + std::size_t _size; + +public: + ArrayView1D(double* ptr, std::size_t start, std::size_t stop) + : ptr(ptr), start(start), stop(stop), _size(stop - start) + { + } + + inline double operator[](std::pair index) const override + { + return ptr[index.first + start]; + } + + std::unique_ptr view(std::size_t first_row = 0, + std::size_t last_row = 0) const override + { + if (last_row == 0) + last_row = stop - start; + return std::make_unique(ptr, first_row + start, last_row + start); + } + + inline std::size_t flat_size() const noexcept override { return _size; } + + inline std::size_t size(int index = 0) const noexcept override { return _size; } }; template struct ArrayView2D : public ArrayViewBase { +private: double* ptr; std::size_t n_rows; std::size_t n_cols; std::size_t start; // first row std::size_t stop; // last row + std::size_t _flat_size; - ArrayView2D( - double* ptr, std::size_t n_rows, std::size_t n_cols, std::size_t start, std::size_t stop) +public: + ArrayView2D(double* ptr, std::size_t n_rows, std::size_t n_cols, std::size_t start, + std::size_t stop) : ptr(ptr) , n_rows(n_rows) , n_cols(std::max(n_cols, std::size_t { 1UL })) , start(start) , stop(stop) + , _flat_size((stop - start) * n_cols) { - assert(stop <= n_rows); } inline double operator[](std::pair index) const override @@ -85,15 +119,23 @@ struct ArrayView2D : public ArrayViewBase } } - std::unique_ptr view( - std::size_t first_row = 0, std::size_t last_row = 0) const override + std::unique_ptr view(std::size_t first_row = 0, + std::size_t last_row = 0) const override { if (last_row == 0) last_row = n_rows; - return std::make_unique>(ptr, n_rows, n_cols, first_row, last_row); + return std::make_unique>(ptr, n_rows, n_cols, first_row + start, + last_row + start); } - inline std::size_t flat_size() const noexcept override { return (stop - start) * n_cols; } + inline std::size_t flat_size() const noexcept override { return _flat_size; } + + inline std::size_t size(int index = 0) const noexcept override + { + if (index == 0) + return stop - start; + return n_cols; + } }; @@ -136,18 +178,18 @@ struct PyBuffer std::size_t ndim() const; - std::size_t size(std::size_t index = 0); + std::size_t size(std::size_t index = 0) const; std::size_t flat_size() const; double* data() const; inline auto operator[](std::size_t position) { return data()[position]; } + inline const auto operator[](std::size_t position) const { return data()[position]; } std::vector to_std_vect(); - inline auto begin() noexcept { return data(); } inline auto end() noexcept { return data() + flat_size(); } @@ -161,17 +203,20 @@ struct PyBuffer inline const auto cend() const noexcept { return data() + flat_size(); } inline auto front() { return *begin(); } + inline auto back() { return *(end() - 1); } bool row_major() const; - inline std::unique_ptr view( - std::size_t first_row = 0, std::size_t last_row = 0) const + inline std::unique_ptr view(std::size_t first_row = 0, + std::size_t last_row = 0) const { if (last_row == 0) last_row = shape()[0]; if (is_valid()) { + if (ndim() == 1) + return std::make_unique(data(), first_row, last_row); if (row_major()) return std::make_unique>( data(), shape()[0], ndim() == 1 ? 0 : shape()[1], first_row, last_row); @@ -181,10 +226,10 @@ struct PyBuffer } return nullptr; } + PyObject* py_object() const; }; - namespace std { @@ -210,7 +255,6 @@ inline auto cend(const PyBuffer& v) } - struct XYView { private: @@ -218,8 +262,8 @@ struct XYView std::unique_ptr _y; public: - explicit XYView( - const PyBuffer& x, const PyBuffer& y, std::size_t start = 0, std::size_t stop = 0) + explicit XYView(const PyBuffer& x, const PyBuffer& y, std::size_t start = 0, + std::size_t stop = 0) { this->_x = x.view(start, stop); this->_y = y.view(start, stop); @@ -236,17 +280,97 @@ struct XYView } inline double x(std::size_t i) const { return (*_x)[{ i, 0 }]; } + inline double y(std::size_t i, std::size_t j) const { return (*_y)[{ i, j }]; } inline std::size_t size() const { return std::size(*_x); } }; +struct XYZView +{ +private: + std::unique_ptr _x; + std::unique_ptr _y; + std::unique_ptr _z; + bool _y_is_2d; + + inline void _init_views(const PyBuffer& x, const PyBuffer& y, const PyBuffer& z, + std::size_t start, std::size_t stop) + { + _y_is_2d = (y.ndim() == 2) ? 1 : 0; + this->_x = x.view(start, stop); + this->_z = z.view(start, stop); + if (_y_is_2d) + { + this->_y = y.view(start, stop); + } + else + { + this->_y = y.view(); + } + } + +public: + explicit XYZView(const PyBuffer& x, const PyBuffer& y, const PyBuffer& z, std::size_t start = 0, + std::size_t stop = 0) + { + _init_views(x, y, z, start, stop); + } + + explicit XYZView(const PyBuffer& x, const PyBuffer& y, const PyBuffer& z, double x_start, + double x_stop) + { + std::size_t start_index = std::distance( + x.data(), std::upper_bound(x.data(), x.data() + x.flat_size(), x_start)); + std::size_t stop_index + = std::distance(x.data(), std::lower_bound(x.data(), x.data() + x.flat_size(), x_stop)); + _init_views(x, y, z, start_index, stop_index); + } + + inline double x(std::size_t i) const { return (*_x)[{ i, 0 }]; } + + inline double y(std::size_t i, std::size_t j) const + { + if (_y_is_2d) + { + return (*_y)[{ i, j }]; + } + return (*_y)[{ j, 0 }]; + } + + inline double z(std::size_t i, std::size_t j) const { return (*_z)[{ i, j }]; } + + inline std::size_t size() const { return std::size(*_x); } + + inline bool y_is_2d() const { return _y_is_2d; } + + inline std::pair y_shape() const + { + if (_y_is_2d) + { + return { _y->size(0), _y->size(1) }; + } + return { 1UL, _y->size(0) }; + } + + inline std::pair z_shape() const + { + return { _z->size(0), _z->size(1) }; + } +}; + namespace std { inline std::size_t size(const XYView& view) { return view.size(); } + +inline std::size_t size(const XYZView& view) +{ + return view.size(); +} + } struct _GetDataPyCallable_impl; diff --git a/include/SciQLopPlots/SciQLopPlot.hpp b/include/SciQLopPlots/SciQLopPlot.hpp index b5594f8..d231c8d 100644 --- a/include/SciQLopPlots/SciQLopPlot.hpp +++ b/include/SciQLopPlots/SciQLopPlot.hpp @@ -20,6 +20,7 @@ -- Mail : alexis.jeandet@member.fsf.org ----------------------------------------------------------------------------*/ #pragma once +#include "SciQLopPlots/Inspector/InspectorBase.hpp" #include "SciQLopPlots/Items/SciQLopPlotItem.hpp" #include "SciQLopPlots/Items/SciQLopTracer.hpp" #include "SciQLopPlots/Plotables/SciQLopColorMap.hpp" @@ -47,7 +48,8 @@ class SciQLopPlot : public QCustomPlot QList m_axes; bool m_replot_pending = false; - QList m_plottables; + QList m_plottables; + SciQLopColorMap* m_color_map = nullptr; public: #ifndef BINDINGS_H @@ -56,6 +58,7 @@ class SciQLopPlot : public QCustomPlot Q_SIGNAL void x2_axis_range_changed(SciQLopPlotRange range); Q_SIGNAL void y_axis_range_changed(SciQLopPlotRange range); Q_SIGNAL void y2_axis_range_changed(SciQLopPlotRange range); + Q_SIGNAL void plotables_list_changed(); #endif explicit SciQLopPlot(QWidget* parent = nullptr); @@ -68,16 +71,21 @@ class SciQLopPlot : public QCustomPlot return _new_plottable_wrapper(this->xAxis, this->yAxis, std::forward(args)...); } - SQPQCPAbstractPlottableWrapper* sqp_plottable(int index = -1); - SQPQCPAbstractPlottableWrapper* sqp_plottable(const QString& name); + SciQLopPlottableInterface* sqp_plottable(int index = -1); + SciQLopPlottableInterface* sqp_plottable(const QString& name); + const QList& sqp_plottables() const; - SciQLopColorMap* addSciQLopColorMap( - const QString& name, bool y_log_scale = false, bool z_log_scale = false); + SciQLopColorMap* add_color_map(const QString& name, bool y_log_scale = false, + bool z_log_scale = false); + SciQLopColorMapFunction* add_color_map(GetDataPyCallable&& callable, const QString& name, + bool y_log_scale = false, bool z_log_scale = false); inline void set_scroll_factor(double factor) noexcept { m_scroll_factor = factor; } + inline double scroll_factor() const noexcept { return m_scroll_factor; } inline bool has_colormap() { return m_color_scale->visible(); } + inline QCPColorScale* color_scale() const noexcept { return m_color_scale; } void minimize_margins(); @@ -94,7 +102,7 @@ class SciQLopPlot : public QCustomPlot return axisRect()->axis(type); } - inline SciQLopPlotAxis* axis(int index) const noexcept + inline SciQLopPlotAxisInterface* axis(int index) const noexcept { if (index < m_axes.size()) return m_axes[index]; @@ -176,6 +184,7 @@ class SciQLopPlot : public QCustomPlot void replot(QCustomPlot::RefreshPriority priority = rpQueuedReplot); + protected: virtual void mousePressEvent(QMouseEvent* event) override; virtual void mouseMoveEvent(QMouseEvent* event) override; @@ -192,20 +201,24 @@ class SciQLopPlot : public QCustomPlot bool _update_mouse_cursor(QMouseEvent* event); bool _handle_tool_tip(QEvent* event); QCPGraph* _nearest_graph(const QPointF& pos); - std::optional> _nearest_data_point( - const QPointF& pos, QCPGraph* graph); + std::optional> _nearest_data_point(const QPointF& pos, + QCPGraph* graph); template T* _new_plottable_wrapper(Args&&... args) { - SQPQCPAbstractPlottableWrapper* plottable = new T(this, std::forward(args)...); + SciQLopGraphInterface* plottable = new T(this, std::forward(args)...); _register_plottable_wrapper(plottable); return reinterpret_cast(plottable); } - void _register_plottable_wrapper(SQPQCPAbstractPlottableWrapper* plottable); + void _register_plottable_wrapper(SciQLopPlottableInterface* plottable); void _register_plottable(QCPAbstractPlottable* plotable); + SciQLopGraphInterface* plottable_wrapper(QCPAbstractPlottable* plottable); + + void _configure_color_map(SciQLopColorMap* cmap, bool y_log_scale, bool z_log_scale); + QCPAbstractPlottable* plottable(const QString& name) const; void _legend_double_clicked(QCPLegend* legend, QCPAbstractLegendItem* item, QMouseEvent* event); @@ -217,16 +230,18 @@ class SciQLopPlot : public QCustomPlot }; } - class SciQLopPlot : public SciQLopPlotInterface { Q_OBJECT + protected: SciQLopPlotDummyAxis* m_time_axis = nullptr; _impl::SciQLopPlot* m_impl = nullptr; - void _connect_callable_sync(SQPQCPAbstractPlottableWrapper* plottable, QObject* sync_with); + QList m_color_palette; + int m_color_palette_index = 0; + void _connect_callable_sync(SciQLopPlottableInterface* plottable, QObject* sync_with); virtual QList selected_axes() const noexcept override { @@ -238,25 +253,31 @@ class SciQLopPlot : public SciQLopPlotInterface return m_impl->axis_at(m_impl->mapFrom(this, pos)); } - void _configure_plotable(SQPQCPAbstractPlottableWrapper* plottable, const QStringList& labels, - const QList& colors); + void _configure_plotable(SciQLopGraphInterface* plottable, const QStringList& labels, + const QList& colors); virtual SciQLopGraphInterface* plot_impl(const PyBuffer& x, const PyBuffer& y, - QStringList labels = QStringList(), QList colors = QList(), + QStringList labels = QStringList(), + QList colors = QList(), - ::GraphType graph_type = ::GraphType::Line) override; + ::GraphType graph_type = ::GraphType::Line) override; - virtual SciQLopGraphInterface* plot_impl(const PyBuffer& x, const PyBuffer& y, - const PyBuffer& z, QString name = QStringLiteral("ColorMap"), bool y_log_scale = false, - bool z_log_scale = false) override; + virtual SciQLopColorMapInterface* plot_impl(const PyBuffer& x, const PyBuffer& y, + const PyBuffer& z, + QString name = QStringLiteral("ColorMap"), + bool y_log_scale = false, + bool z_log_scale = false) override; virtual SciQLopGraphInterface* plot_impl(GetDataPyCallable callable, - QStringList labels = QStringList(), QList colors = QList(), - ::GraphType graph_type = ::GraphType::Line, QObject* sync_with = nullptr) override; + QStringList labels = QStringList(), + QList colors = QList(), + ::GraphType graph_type = ::GraphType::Line, + QObject* sync_with = nullptr) override; - virtual SciQLopGraphInterface* plot_impl(GetDataPyCallable callable, - QString name = QStringLiteral("ColorMap"), bool y_log_scale = false, - bool z_log_scale = false, QObject* sync_with = nullptr) override; + virtual SciQLopColorMapInterface* plot_impl(GetDataPyCallable callable, + QString name = QStringLiteral("ColorMap"), + bool y_log_scale = false, bool z_log_scale = false, + QObject* sync_with = nullptr) override; public: explicit SciQLopPlot(QWidget* parent = nullptr); @@ -274,8 +295,8 @@ class SciQLopPlot : public SciQLopPlotInterface void minimize_margins() override; inline bool has_colormap() { return m_impl->has_colormap(); } - inline QCPColorScale* color_scale() const noexcept { return m_impl->color_scale(); } + inline QCPColorScale* color_scale() const noexcept { return m_impl->color_scale(); } inline int calculateAutoMargin(QCP::MarginSide side) { @@ -299,7 +320,7 @@ class SciQLopPlot : public SciQLopPlotInterface inline virtual SciQLopPlotAxisInterface* z_axis() const noexcept Q_DECL_OVERRIDE { - return nullptr; + return m_impl->axis(4); } inline virtual SciQLopPlotAxisInterface* x2_axis() const noexcept Q_DECL_OVERRIDE @@ -315,10 +336,17 @@ class SciQLopPlot : public SciQLopPlotInterface void replot(bool immediate = false) override; - virtual SciQLopGraphInterface* graph(int index = -1) override; - virtual SciQLopGraphInterface* graph(const QString& name) override; -}; + virtual SciQLopPlottableInterface* plottable(int index = -1) override; + virtual SciQLopPlottableInterface* plottable(const QString& name) override; + virtual QList plottables() const noexcept override; + inline virtual QList color_palette() const noexcept override { return m_color_palette; } + + inline virtual void set_color_palette(const QList& palette) noexcept override + { + m_color_palette = palette; + } +}; inline QList only_sciqlopplots(const QList& plots) { @@ -330,3 +358,18 @@ inline QList only_sciqlopplots(const QList& } return filtered; } + +inline QList> +only_sciqlopplots(const QList>& plots) +{ + QList> filtered; + for (auto& plot : plots) + { + if (!plot.isNull()) + { + if (auto p = dynamic_cast(plot.data())) + filtered.append(p); + } + } + return filtered; +} diff --git a/include/SciQLopPlots/SciQLopPlotAxis.hpp b/include/SciQLopPlots/SciQLopPlotAxis.hpp index 574f4fc..75d7299 100644 --- a/include/SciQLopPlots/SciQLopPlotAxis.hpp +++ b/include/SciQLopPlots/SciQLopPlotAxis.hpp @@ -24,6 +24,7 @@ #include #include class QCPAxis; +class QCPColorScale; class SciQLopPlotAxisInterface : public QObject @@ -102,5 +103,33 @@ class SciQLopPlotAxis : public SciQLopPlotAxisInterface void rescale() noexcept override; - QCPAxis* qcp_axis() const noexcept; + virtual QCPAxis* qcp_axis() const noexcept; +}; +class SciQLopPlotColorScaleAxis : public SciQLopPlotAxis +{ + Q_OBJECT + QPointer m_axis; + +public: + explicit SciQLopPlotColorScaleAxis(QCPColorScale* axis, QObject* parent = nullptr); + virtual ~SciQLopPlotColorScaleAxis() = default; + + void set_range(const SciQLopPlotRange& range) noexcept override; + void set_visible(bool visible) noexcept override; + void set_log(bool log) noexcept override; + void set_label(const QString& label) noexcept override; + SciQLopPlotRange range() const noexcept override; + bool visible() const noexcept override; + bool log() const noexcept override; + QString label() const noexcept override; + Qt::Orientation orientation() const noexcept override; + Qt::Axis axis() const noexcept override; + Qt::AnchorPoint anchor() const noexcept override; + bool selected() const noexcept override; + + void rescale() noexcept override; + + + QCPAxis* qcp_axis() const noexcept override; + QCPColorScale* qcp_colorscale() const noexcept; }; diff --git a/include/SciQLopPlots/SciQLopPlotInterface.hpp b/include/SciQLopPlots/SciQLopPlotInterface.hpp index d8c9a74..e594eb8 100644 --- a/include/SciQLopPlots/SciQLopPlotInterface.hpp +++ b/include/SciQLopPlots/SciQLopPlotInterface.hpp @@ -20,59 +20,118 @@ -- Mail : alexis.jeandet@member.fsf.org ----------------------------------------------------------------------------*/ #pragma once +#include "SciQLopPlots/Debug.hpp" #include "SciQLopPlots/Plotables/SciQLopGraphInterface.hpp" #include "SciQLopPlots/Python/PythonInterface.hpp" #include "SciQLopPlots/SciQLopPlotAxis.hpp" #include "SciQLopPlots/SciQLopPlotRange.hpp" #include "SciQLopPlots/enums.hpp" +#include "SciQLopPlots/unique_names_factory.hpp" +#include #include +#include #include -class SciQLopPlotInterface : public QWidget +class SciQLopPlotInterface : public QFrame { + Q_OBJECT + + protected: QList m_axes_to_rescale; QList m_frozen_axes; + QUuid m_uuid; + bool m_selected = false; inline virtual SciQLopGraphInterface* plot_impl(const PyBuffer& x, const PyBuffer& y, - QStringList labels = QStringList(), QList colors = QList(), - ::GraphType graph_type = ::GraphType::Line) + QStringList labels = QStringList(), + QList colors = QList(), + ::GraphType graph_type = ::GraphType::Line) { throw std::runtime_error("Not implemented"); } - inline virtual SciQLopGraphInterface* plot_impl(const PyBuffer& x, const PyBuffer& y, - const PyBuffer& z, QString name = QStringLiteral("ColorMap"), bool y_log_scale = false, - bool z_log_scale = false) + inline virtual SciQLopColorMapInterface* plot_impl(const PyBuffer& x, const PyBuffer& y, + const PyBuffer& z, + QString name = QStringLiteral("ColorMap"), + bool y_log_scale = false, + bool z_log_scale = false) { throw std::runtime_error("Not implemented"); } inline virtual SciQLopGraphInterface* plot_impl(GetDataPyCallable callable, - QStringList labels = QStringList(), QList colors = QList(), - ::GraphType graph_type = ::GraphType::Line, QObject* sync_with = nullptr) + QStringList labels = QStringList(), + QList colors = QList(), + ::GraphType graph_type = ::GraphType::Line, + QObject* sync_with = nullptr) { throw std::runtime_error("Not implemented"); } - inline virtual SciQLopGraphInterface* plot_impl(GetDataPyCallable callable, - QString name = QStringLiteral("ColorMap"), bool y_log_scale = false, - bool z_log_scale = false, QObject* sync_with = nullptr) + inline virtual SciQLopColorMapInterface* + plot_impl(GetDataPyCallable callable, QString name = QStringLiteral("ColorMap"), + bool y_log_scale = false, bool z_log_scale = false, QObject* sync_with = nullptr) { throw std::runtime_error("Not implemented"); } public: - SciQLopPlotInterface(QWidget* parent = nullptr) : QWidget(parent) { } + Q_PROPERTY(bool selected READ selected WRITE set_selected NOTIFY selection_changed FINAL) + + SciQLopPlotInterface(QWidget* parent = nullptr, const QString& name = "") + : QFrame(parent), m_uuid(QUuid::createUuid()) + { + if (!name.isEmpty()) + setObjectName(name); + else + setObjectName(UniqueNamesFactory::unique_name("Plot")); + } + virtual ~SciQLopPlotInterface() = default; - inline virtual SciQLopPlotAxisInterface* time_axis() const noexcept { return nullptr; } - inline virtual SciQLopPlotAxisInterface* x_axis() const noexcept { return nullptr; } - inline virtual SciQLopPlotAxisInterface* y_axis() const noexcept { return nullptr; } - inline virtual SciQLopPlotAxisInterface* z_axis() const noexcept { return nullptr; } - inline virtual SciQLopPlotAxisInterface* y2_axis() const noexcept { return nullptr; } - inline virtual SciQLopPlotAxisInterface* x2_axis() const noexcept { return nullptr; } + inline QUuid uuid() const noexcept + { + WARN_ABSTRACT_METHOD; + return m_uuid; + } + + inline virtual SciQLopPlotAxisInterface* time_axis() const noexcept + { + WARN_ABSTRACT_METHOD; + return nullptr; + } + + inline virtual SciQLopPlotAxisInterface* x_axis() const noexcept + { + WARN_ABSTRACT_METHOD; + return nullptr; + } + + inline virtual SciQLopPlotAxisInterface* y_axis() const noexcept + { + WARN_ABSTRACT_METHOD; + return nullptr; + } + + inline virtual SciQLopPlotAxisInterface* z_axis() const noexcept + { + WARN_ABSTRACT_METHOD; + return nullptr; + } + + inline virtual SciQLopPlotAxisInterface* y2_axis() const noexcept + { + WARN_ABSTRACT_METHOD; + return nullptr; + } + + inline virtual SciQLopPlotAxisInterface* x2_axis() const noexcept + { + WARN_ABSTRACT_METHOD; + return nullptr; + } inline virtual SciQLopPlotAxisInterface* axis(AxisType axis) const noexcept { @@ -113,19 +172,24 @@ class SciQLopPlotInterface : public QWidget return nullptr; } + virtual void set_scroll_factor(double factor) noexcept { WARN_ABSTRACT_METHOD; } - virtual void set_scroll_factor(double factor) noexcept { } - virtual double scroll_factor() const noexcept { return std::nan(""); } + virtual double scroll_factor() const noexcept + { + WARN_ABSTRACT_METHOD; + return std::nan(""); + } - virtual void enable_cursor(bool enable = true) noexcept { } - virtual void enable_legend(bool show = true) noexcept { } + virtual void enable_cursor(bool enable = true) noexcept { WARN_ABSTRACT_METHOD; } - virtual void minimize_margins() { } + virtual void enable_legend(bool show = true) noexcept { WARN_ABSTRACT_METHOD; } - virtual void replot(bool immediate = false) { } + virtual void minimize_margins() { WARN_ABSTRACT_METHOD; } + virtual void replot(bool immediate = false) { WARN_ABSTRACT_METHOD; } inline virtual void rescale_axes() noexcept { rescale_axes(m_axes_to_rescale); } + inline virtual void rescale_axes(const QList& axes) noexcept { for (auto ax : axes) @@ -134,57 +198,81 @@ class SciQLopPlotInterface : public QWidget } } - inline virtual SciQLopGraphInterface* line(const PyBuffer& x, const PyBuffer& y, - QStringList labels = QStringList(), QList colors = QList()) + QStringList labels = QStringList(), + QList colors = QList()) { return plot_impl(x, y, labels, colors, ::GraphType::Line); } inline virtual SciQLopGraphInterface* parametric_curve(const PyBuffer& x, const PyBuffer& y, - QStringList labels = QStringList(), QList colors = QList()) + QStringList labels = QStringList(), + QList colors = QList()) { return plot_impl(x, y, labels, colors, ::GraphType::ParametricCurve); } - inline virtual SciQLopGraphInterface* colormap(const PyBuffer& x, const PyBuffer& y, - const PyBuffer& z, QString name = QStringLiteral("ColorMap"), bool y_log_scale = false, - bool z_log_scale = false) + inline virtual SciQLopColorMapInterface* colormap(const PyBuffer& x, const PyBuffer& y, + const PyBuffer& z, + QString name = QStringLiteral("ColorMap"), + bool y_log_scale = false, + bool z_log_scale = false) { return plot_impl(x, y, z, name, y_log_scale, z_log_scale); } - inline virtual SciQLopGraphInterface* line(GetDataPyCallable callable, - QStringList labels = QStringList(), QList colors = QList(), - QObject* sync_with = nullptr) + QStringList labels = QStringList(), + QList colors = QList(), + QObject* sync_with = nullptr) { return plot_impl(callable, labels, colors, ::GraphType::Line, sync_with); } + inline virtual SciQLopGraphInterface* parametric_curve(GetDataPyCallable callable, - QStringList labels = QStringList(), QList colors = QList(), - QObject* sync_with = nullptr) + QStringList labels = QStringList(), + QList colors = QList(), + QObject* sync_with = nullptr) { return plot_impl(callable, labels, colors, ::GraphType::ParametricCurve, sync_with); } - inline virtual SciQLopGraphInterface* colormap(GetDataPyCallable callable, - QString name = QStringLiteral("ColorMap"), bool y_log_scale = false, - bool z_log_scale = false, QObject* sync_with = nullptr) + + inline virtual SciQLopColorMapInterface* + colormap(GetDataPyCallable callable, QString name = QStringLiteral("ColorMap"), + bool y_log_scale = false, bool z_log_scale = false, QObject* sync_with = nullptr) { return plot_impl(callable, name, y_log_scale, z_log_scale, sync_with); } - - inline virtual SciQLopGraphInterface* graph(int index = -1) + inline virtual SciQLopPlottableInterface* plottable(int index = -1) { throw std::runtime_error("Not implemented"); } - inline virtual SciQLopGraphInterface* graph(const QString& name) + inline virtual SciQLopPlottableInterface* plottable(const QString& name) { throw std::runtime_error("Not implemented"); } + inline bool selected() const noexcept { return m_selected; } + + void set_selected(bool selected) noexcept; + + virtual QList plottables() const noexcept + { + WARN_ABSTRACT_METHOD; + return {}; + } + + virtual QList color_palette() const noexcept + { + WARN_ABSTRACT_METHOD; + return {}; + } + + virtual void set_color_palette(const QList& colors) noexcept { WARN_ABSTRACT_METHOD; } + + #ifndef BINDINGS_H Q_SIGNAL void scroll_factor_changed(double factor); Q_SIGNAL void x_axis_range_changed(SciQLopPlotRange range); @@ -193,12 +281,16 @@ class SciQLopPlotInterface : public QWidget Q_SIGNAL void z_axis_range_changed(SciQLopPlotRange range); Q_SIGNAL void y2_axis_range_changed(SciQLopPlotRange range); Q_SIGNAL void time_axis_range_changed(SciQLopPlotRange range); + Q_SIGNAL void selection_changed(bool selected); + Q_SIGNAL void graph_list_changed(); #endif + protected: inline virtual QList axes_to_rescale() const noexcept { return m_axes_to_rescale; } + inline virtual void set_axes_to_rescale(QList&& axes) { m_axes_to_rescale = axes; @@ -206,8 +298,17 @@ class SciQLopPlotInterface : public QWidget inline void freeze_axis(SciQLopPlotAxisInterface* axis) noexcept { m_frozen_axes.append(axis); } - virtual QList selected_axes() const noexcept { return {}; } - virtual SciQLopPlotAxisInterface* axis_at(const QPointF& pos) const noexcept { return nullptr; } + virtual QList selected_axes() const noexcept + { + WARN_ABSTRACT_METHOD; + return {}; + } + + virtual SciQLopPlotAxisInterface* axis_at(const QPointF& pos) const noexcept + { + WARN_ABSTRACT_METHOD; + return nullptr; + } inline virtual void keyPressEvent(QKeyEvent* event) override { diff --git a/include/SciQLopPlots/SciQLopTimeSeriesPlot.hpp b/include/SciQLopPlots/SciQLopTimeSeriesPlot.hpp index cb59ec6..8ce64ef 100644 --- a/include/SciQLopPlots/SciQLopTimeSeriesPlot.hpp +++ b/include/SciQLopPlots/SciQLopTimeSeriesPlot.hpp @@ -23,7 +23,6 @@ #include "SciQLopPlots/SciQLopPlot.hpp" - class SciQLopTimeSeriesPlot : public SciQLopPlot { Q_OBJECT @@ -33,6 +32,7 @@ class SciQLopTimeSeriesPlot : public SciQLopPlot virtual ~SciQLopTimeSeriesPlot() Q_DECL_OVERRIDE = default; inline QList unity(const QList& views) { return views; } + inline PyBuffer unity(const PyBuffer& view) { return view; } inline virtual SciQLopPlotAxisInterface* time_axis() const noexcept override @@ -67,3 +67,18 @@ inline QList only_sciqlop_timeserieplots( } return filtered; } + +inline QList> only_sciqlop_timeserieplots( + const QList>& plots) +{ + QList> filtered; + for (auto& plot : plots) + { + if (!plot.isNull()) + { + if (auto p = dynamic_cast(plot.data())) + filtered.append(p); + } + } + return filtered; +} diff --git a/include/SciQLopPlots/enums.hpp b/include/SciQLopPlots/enums.hpp index 8f926cc..ba1e86f 100644 --- a/include/SciQLopPlots/enums.hpp +++ b/include/SciQLopPlots/enums.hpp @@ -20,6 +20,17 @@ -- Mail : alexis.jeandet@member.fsf.org ----------------------------------------------------------------------------*/ #pragma once +#include +#include + +enum class ParameterType +{ + NotAParameter, + Scalar, + Vector, + Multicomponents, + Spectrogram +}; enum class AxisType { @@ -48,3 +59,139 @@ enum class PlotType BasicXY, TimeSeries }; + +enum class GraphMarkerShape +{ + NoMarker, + Circle, + Square, + Triangle, + Diamond, + Star, + Plus, + Cross, + X, + Custom +}; + + +enum class GraphLineStyle +{ + NoLine, + Line, + StepLeft, + StepRight, + StepCenter +}; + +Q_DECLARE_METATYPE(GraphLineStyle); + +enum class ColorGradient +{ + Grayscale, + Hot, + Cold, + Night, + Candy, + Geography, + Ion, + Thermal, + Polar, + Spectrum, + Jet, + Hues +}; + +Q_DECLARE_METATYPE(ColorGradient); + +inline GraphLineStyle graph_line_style_from_string(const QString& str) +{ + if (str == "Line") + return GraphLineStyle::Line; + if (str == "StepLeft") + return GraphLineStyle::StepLeft; + if (str == "StepRight") + return GraphLineStyle::StepRight; + if (str == "StepCenter") + return GraphLineStyle::StepCenter; + return GraphLineStyle::NoLine; +} + +inline QString graph_line_style_to_string(GraphLineStyle style) +{ + switch (style) + { + case GraphLineStyle::Line: + return "Line"; + case GraphLineStyle::StepLeft: + return "StepLeft"; + case GraphLineStyle::StepRight: + return "StepRight"; + case GraphLineStyle::StepCenter: + return "StepCenter"; + default: + return "NoLine"; + } +} + +inline ColorGradient color_gradient_from_string(const QString& str) +{ + if (str == "Grayscale") + return ColorGradient::Grayscale; + if (str == "Hot") + return ColorGradient::Hot; + if (str == "Cold") + return ColorGradient::Cold; + if (str == "Night") + return ColorGradient::Night; + if (str == "Candy") + return ColorGradient::Candy; + if (str == "Geography") + return ColorGradient::Geography; + if (str == "Ion") + return ColorGradient::Ion; + if (str == "Thermal") + return ColorGradient::Thermal; + if (str == "Polar") + return ColorGradient::Polar; + if (str == "Spectrum") + return ColorGradient::Spectrum; + if (str == "Jet") + return ColorGradient::Jet; + if (str == "Hues") + return ColorGradient::Hues; + return ColorGradient::Grayscale; +} + +inline QString color_gradient_to_string(ColorGradient gradient) +{ + switch (gradient) + { + case ColorGradient::Grayscale: + return "Grayscale"; + case ColorGradient::Hot: + return "Hot"; + case ColorGradient::Cold: + return "Cold"; + case ColorGradient::Night: + return "Night"; + case ColorGradient::Candy: + return "Candy"; + case ColorGradient::Geography: + return "Geography"; + case ColorGradient::Ion: + return "Ion"; + case ColorGradient::Thermal: + return "Thermal"; + case ColorGradient::Polar: + return "Polar"; + case ColorGradient::Spectrum: + return "Spectrum"; + case ColorGradient::Jet: + return "Jet"; + case ColorGradient::Hues: + return "Hues"; + default: + return "Grayscale"; + } +} diff --git a/include/SciQLopPlots/unique_names_factory.hpp b/include/SciQLopPlots/unique_names_factory.hpp new file mode 100644 index 0000000..6ae284f --- /dev/null +++ b/include/SciQLopPlots/unique_names_factory.hpp @@ -0,0 +1,60 @@ +/*------------------------------------------------------------------------------ +-- This file is a part of the SciQLop Software +-- Copyright (C) 2024, Plasma Physics Laboratory - CNRS +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +-------------------------------------------------------------------------------*/ +/*-- Author : Alexis Jeandet +-- Mail : alexis.jeandet@member.fsf.org +----------------------------------------------------------------------------*/ +#pragma once +#include +#include +#include + +class UniqueNamesFactory +{ + UniqueNamesFactory() { } + + QMap> _used_names; + + inline QString _unique_name(const QString& prefix) + { + if (!_used_names.contains(prefix)) + { + _used_names.insert(prefix, QSet()); + } + QString name = prefix; + int i = 0; + while (_used_names[prefix].contains(name)) + { + name = prefix + QString::number(i++); + } + _used_names[prefix].insert(name); + return name; + } + +public: + inline static UniqueNamesFactory& instance() + { + static UniqueNamesFactory instance; + return instance; + } + + inline static QString unique_name(const QString& prefix) + { + return instance()._unique_name(prefix); + } +}; diff --git a/meson.build b/meson.build index 8ff93e1..d16480d 100644 --- a/meson.build +++ b/meson.build @@ -15,9 +15,25 @@ extra_files=files( 'Docker/build.sh', 'README.md', 'COPYING', 'tests/sanity/signal_and_slots.sh', - 'tests/manual-tests/common.py' + 'tests/manual-tests/common.py', + 'resources/resources.qrc', + 'resources/README.md' ) +if get_option('buildtype').startswith('release') + add_project_arguments('-DNDEBUG', language : ['cpp']) +else + add_project_arguments('-DDEBUG', language : ['cpp']) +endif + +# enables fast-math optimizations +#if meson.get_compiler('c').get_id() == 'msvc' +# add_project_arguments('/fp:fast', language: 'cpp') +#else +# add_project_arguments('-ffast-math', language: 'cpp') +#endif + + subdir('SciQLopPlots') subdir('tests') diff --git a/meson_options.txt b/meson_options.txt index f58a459..a144d9e 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -1 +1,2 @@ option('trace_refcount', type : 'boolean', value : false) +option('tracy_enable', type : 'boolean', value : false , description : 'Enable profiling') diff --git a/pyproject.toml b/pyproject.toml index 8bf6cd3..9cf6339 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,9 +5,9 @@ requires = [ "numpy", "meson-python>=0.14.0", "meson", - "shiboken6==6.7.1", - "pyside6==6.7.1", - "shiboken6_generator==6.7.1" + "shiboken6==6.7.3", + "pyside6==6.7.3", + "shiboken6_generator==6.7.3" ] build-backend = 'mesonpy' @@ -31,7 +31,7 @@ classifiers = [ "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", ] -dependencies = ['numpy', 'pyside6==6.7.1', 'shiboken6==6.7.1'] +dependencies = ['numpy', 'pyside6==6.7.3', 'shiboken6==6.7.3'] dynamic = [ 'version', ] diff --git a/resources/README.md b/resources/README.md new file mode 100644 index 0000000..16f1be3 --- /dev/null +++ b/resources/README.md @@ -0,0 +1,3 @@ +# Note about adding new icons: + +Take icons from [here](https://material.io/resources/icons/?style=baseline) and add them to the `icons` folder. Then add the icon to the `resources.qrc` file. diff --git a/resources/icons/Cluster_mission_logo_pillars.jpg b/resources/icons/Cluster_mission_logo_pillars.jpg new file mode 100644 index 0000000..d565e62 Binary files /dev/null and b/resources/icons/Cluster_mission_logo_pillars.jpg differ diff --git a/resources/icons/JupyterConsole.png b/resources/icons/JupyterConsole.png new file mode 100644 index 0000000..cf5f81f Binary files /dev/null and b/resources/icons/JupyterConsole.png differ diff --git a/resources/icons/Jupyter_logo.png b/resources/icons/Jupyter_logo.png new file mode 100644 index 0000000..dad53a6 Binary files /dev/null and b/resources/icons/Jupyter_logo.png differ diff --git a/resources/icons/MPL.png b/resources/icons/MPL.png new file mode 100644 index 0000000..0525b82 Binary files /dev/null and b/resources/icons/MPL.png differ diff --git a/resources/icons/NASA.jpg b/resources/icons/NASA.jpg new file mode 100644 index 0000000..e43ecc8 Binary files /dev/null and b/resources/icons/NASA.jpg differ diff --git a/resources/icons/Python-logo-notext.png b/resources/icons/Python-logo-notext.png new file mode 100644 index 0000000..ac31c80 Binary files /dev/null and b/resources/icons/Python-logo-notext.png differ diff --git a/resources/icons/QCP.png b/resources/icons/QCP.png new file mode 100644 index 0000000..bb08d07 Binary files /dev/null and b/resources/icons/QCP.png differ diff --git a/resources/icons/SciQLop.ico b/resources/icons/SciQLop.ico new file mode 100644 index 0000000..5207716 Binary files /dev/null and b/resources/icons/SciQLop.ico differ diff --git a/resources/icons/SciQLop.png b/resources/icons/SciQLop.png new file mode 100644 index 0000000..c6b1bc4 Binary files /dev/null and b/resources/icons/SciQLop.png differ diff --git a/resources/icons/amda.png b/resources/icons/amda.png new file mode 100644 index 0000000..e2ae640 Binary files /dev/null and b/resources/icons/amda.png differ diff --git a/resources/icons/logo_speasy.png b/resources/icons/logo_speasy.png new file mode 100644 index 0000000..6b4a8f9 Binary files /dev/null and b/resources/icons/logo_speasy.png differ diff --git a/resources/icons/plot_panel_128.png b/resources/icons/plot_panel_128.png new file mode 100644 index 0000000..53275aa Binary files /dev/null and b/resources/icons/plot_panel_128.png differ diff --git a/resources/icons/sciqlop2PNG_1024.png b/resources/icons/sciqlop2PNG_1024.png new file mode 100644 index 0000000..62a9a01 Binary files /dev/null and b/resources/icons/sciqlop2PNG_1024.png differ diff --git a/resources/icons/theme/add.png b/resources/icons/theme/add.png new file mode 100644 index 0000000..b18861c Binary files /dev/null and b/resources/icons/theme/add.png differ diff --git a/resources/icons/theme/add_graph.png b/resources/icons/theme/add_graph.png new file mode 100644 index 0000000..ea85b9f Binary files /dev/null and b/resources/icons/theme/add_graph.png differ diff --git a/resources/icons/theme/arrow_drop_down.png b/resources/icons/theme/arrow_drop_down.png new file mode 100644 index 0000000..4381f4b Binary files /dev/null and b/resources/icons/theme/arrow_drop_down.png differ diff --git a/resources/icons/theme/arrow_drop_up.png b/resources/icons/theme/arrow_drop_up.png new file mode 100644 index 0000000..3edcb09 Binary files /dev/null and b/resources/icons/theme/arrow_drop_up.png differ diff --git a/resources/icons/theme/arrow_right.png b/resources/icons/theme/arrow_right.png new file mode 100644 index 0000000..b4d4efb Binary files /dev/null and b/resources/icons/theme/arrow_right.png differ diff --git a/resources/icons/theme/catalogue.png b/resources/icons/theme/catalogue.png new file mode 100644 index 0000000..bcc7499 Binary files /dev/null and b/resources/icons/theme/catalogue.png differ diff --git a/resources/icons/theme/check_box_checked.png b/resources/icons/theme/check_box_checked.png new file mode 100644 index 0000000..19dae28 Binary files /dev/null and b/resources/icons/theme/check_box_checked.png differ diff --git a/resources/icons/theme/check_box_unchecked.png b/resources/icons/theme/check_box_unchecked.png new file mode 100644 index 0000000..b54b1ec Binary files /dev/null and b/resources/icons/theme/check_box_unchecked.png differ diff --git a/resources/icons/theme/close.png b/resources/icons/theme/close.png new file mode 100644 index 0000000..cc65668 Binary files /dev/null and b/resources/icons/theme/close.png differ diff --git a/resources/icons/theme/close_small.png b/resources/icons/theme/close_small.png new file mode 100644 index 0000000..652081e Binary files /dev/null and b/resources/icons/theme/close_small.png differ diff --git a/resources/icons/theme/dataSourceRoot.png b/resources/icons/theme/dataSourceRoot.png new file mode 100644 index 0000000..e0e4f32 Binary files /dev/null and b/resources/icons/theme/dataSourceRoot.png differ diff --git a/resources/icons/theme/delete.png b/resources/icons/theme/delete.png new file mode 100644 index 0000000..1a21ef9 Binary files /dev/null and b/resources/icons/theme/delete.png differ diff --git a/resources/icons/theme/detach_tab.png b/resources/icons/theme/detach_tab.png new file mode 100644 index 0000000..d3b068e Binary files /dev/null and b/resources/icons/theme/detach_tab.png differ diff --git a/resources/icons/theme/expand_more.png b/resources/icons/theme/expand_more.png new file mode 100644 index 0000000..ca76ba5 Binary files /dev/null and b/resources/icons/theme/expand_more.png differ diff --git a/resources/icons/theme/folder_copy.png b/resources/icons/theme/folder_copy.png new file mode 100644 index 0000000..5f4a64a Binary files /dev/null and b/resources/icons/theme/folder_copy.png differ diff --git a/resources/icons/theme/folder_open.png b/resources/icons/theme/folder_open.png new file mode 100644 index 0000000..92a2468 Binary files /dev/null and b/resources/icons/theme/folder_open.png differ diff --git a/resources/icons/theme/fullscreen.png b/resources/icons/theme/fullscreen.png new file mode 100644 index 0000000..f9dfcff Binary files /dev/null and b/resources/icons/theme/fullscreen.png differ diff --git a/resources/icons/theme/fullscreen_exit.png b/resources/icons/theme/fullscreen_exit.png new file mode 100644 index 0000000..70426e0 Binary files /dev/null and b/resources/icons/theme/fullscreen_exit.png differ diff --git a/resources/icons/theme/push_pin.png b/resources/icons/theme/push_pin.png new file mode 100644 index 0000000..1daa0ab Binary files /dev/null and b/resources/icons/theme/push_pin.png differ diff --git a/resources/icons/theme/push_pin_filled.png b/resources/icons/theme/push_pin_filled.png new file mode 100644 index 0000000..555fd8b Binary files /dev/null and b/resources/icons/theme/push_pin_filled.png differ diff --git a/resources/icons/theme/push_pin_grad.png b/resources/icons/theme/push_pin_grad.png new file mode 100644 index 0000000..1140def Binary files /dev/null and b/resources/icons/theme/push_pin_grad.png differ diff --git a/resources/icons/theme/radio_button_checked.png b/resources/icons/theme/radio_button_checked.png new file mode 100644 index 0000000..9339501 Binary files /dev/null and b/resources/icons/theme/radio_button_checked.png differ diff --git a/resources/icons/theme/radio_button_unchecked.png b/resources/icons/theme/radio_button_unchecked.png new file mode 100644 index 0000000..0498a59 Binary files /dev/null and b/resources/icons/theme/radio_button_unchecked.png differ diff --git a/resources/icons/theme/remove.png b/resources/icons/theme/remove.png new file mode 100644 index 0000000..fd59283 Binary files /dev/null and b/resources/icons/theme/remove.png differ diff --git a/resources/icons/theme/save.png b/resources/icons/theme/save.png new file mode 100644 index 0000000..1615b7d Binary files /dev/null and b/resources/icons/theme/save.png differ diff --git a/resources/icons/theme/search.png b/resources/icons/theme/search.png new file mode 100644 index 0000000..ba21abf Binary files /dev/null and b/resources/icons/theme/search.png differ diff --git a/resources/icons/theme/time.png b/resources/icons/theme/time.png new file mode 100644 index 0000000..7115ee2 Binary files /dev/null and b/resources/icons/theme/time.png differ diff --git a/resources/icons/theme/zoom.png b/resources/icons/theme/zoom.png new file mode 100644 index 0000000..1ea1b87 Binary files /dev/null and b/resources/icons/theme/zoom.png differ diff --git a/resources/resources.qrc b/resources/resources.qrc new file mode 100644 index 0000000..e5a1288 --- /dev/null +++ b/resources/resources.qrc @@ -0,0 +1,43 @@ + + + icons/theme/dataSourceRoot.png + icons/theme/delete.png + icons/theme/time.png + icons/theme/zoom.png + icons/theme/search.png + icons/theme/catalogue.png + icons/theme/add.png + icons/theme/add_graph.png + icons/theme/remove.png + icons/theme/save.png + icons/theme/folder_open.png + icons/theme/folder_copy.png + icons/theme/close.png + icons/theme/close_small.png + icons/theme/push_pin.png + icons/theme/push_pin_filled.png + icons/theme/push_pin_grad.png + icons/theme/detach_tab.png + icons/theme/arrow_drop_down.png + icons/theme/arrow_drop_up.png + icons/theme/arrow_right.png + icons/theme/expand_more.png + icons/theme/fullscreen.png + icons/theme/fullscreen_exit.png + icons/theme/radio_button_checked.png + icons/theme/radio_button_unchecked.png + icons/theme/check_box_checked.png + icons/theme/check_box_unchecked.png + icons/SciQLop.png + icons/MPL.png + icons/QCP.png + icons/Python-logo-notext.png + icons/Jupyter_logo.png + icons/JupyterConsole.png + icons/logo_speasy.png + icons/NASA.jpg + icons/amda.png + icons/Cluster_mission_logo_pillars.jpg + icons/plot_panel_128.png + + diff --git a/src/AbstractResampler.cpp b/src/AbstractResampler.cpp new file mode 100644 index 0000000..7687ad4 --- /dev/null +++ b/src/AbstractResampler.cpp @@ -0,0 +1,57 @@ +/*------------------------------------------------------------------------------ +-- This file is a part of the SciQLop Software +-- Copyright (C) 2024, Plasma Physics Laboratory - CNRS +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +-------------------------------------------------------------------------------*/ +/*-- Author : Alexis Jeandet +-- Mail : alexis.jeandet@member.fsf.org +----------------------------------------------------------------------------*/ +#include "SciQLopPlots/Plotables/Resamplers/AbstractResampler.hpp" + + +void AbstractResampler1d::_async_resample() +{ + _async_resample_callback(); +} + +AbstractResampler1d::AbstractResampler1d(std::size_t line_cnt) : _line_cnt { line_cnt } +{ + connect(this, &AbstractResampler1d::_resample_sig, this, &AbstractResampler1d::_async_resample, + Qt::QueuedConnection); +} + +void AbstractResampler1d::resample(const QCPRange new_range) +{ + this->set_next_plot_range(new_range); + emit _resample_sig(); +} + +void AbstractResampler2d::_async_resample() +{ + _async_resample_callback(); +} + +AbstractResampler2d::AbstractResampler2d() +{ + connect(this, &AbstractResampler2d::_resample_sig, this, &AbstractResampler2d::_async_resample, + Qt::QueuedConnection); +} + +void AbstractResampler2d::resample(const QCPRange new_range) +{ + this->set_next_plot_range(new_range); + emit _resample_sig(); +} diff --git a/src/AxisSynchronizer.cpp b/src/AxisSynchronizer.cpp index ad4cf5f..ce05f93 100644 --- a/src/AxisSynchronizer.cpp +++ b/src/AxisSynchronizer.cpp @@ -22,89 +22,98 @@ #include "SciQLopPlots/MultiPlots/AxisSynchronizer.hpp" -void AxisSynchronizer::updatePlotList(const QList& plots) +void AxisSynchronizer::updatePlotList(const QList>& plots) { - for (auto plot : plots) + for (auto& plot : plots) { - if (!_plots.contains(plot)) + if (!plot.isNull()) { - switch (m_sync_axis) + if (!_plots.contains(plot)) { - case AxisType::XAxis: - connect(plot, &SciQLopPlotInterface::x_axis_range_changed, this, - &AxisSynchronizer::set_axis_range); - break; - case AxisType::YAxis: - connect(plot, &SciQLopPlotInterface::y_axis_range_changed, this, - &AxisSynchronizer::set_axis_range); - break; - case AxisType::ZAxis: - connect(plot, &SciQLopPlotInterface::z_axis_range_changed, this, - &AxisSynchronizer::set_axis_range); - break; - case AxisType::TimeAxis: - connect(plot, &SciQLopPlotInterface::time_axis_range_changed, this, - &AxisSynchronizer::set_axis_range); - break; - default: - break; + switch (m_sync_axis) + { + case AxisType::XAxis: + connect(plot, &SciQLopPlotInterface::x_axis_range_changed, this, + &AxisSynchronizer::set_axis_range); + break; + case AxisType::YAxis: + connect(plot, &SciQLopPlotInterface::y_axis_range_changed, this, + &AxisSynchronizer::set_axis_range); + break; + case AxisType::ZAxis: + connect(plot, &SciQLopPlotInterface::z_axis_range_changed, this, + &AxisSynchronizer::set_axis_range); + break; + case AxisType::TimeAxis: + connect(plot, &SciQLopPlotInterface::time_axis_range_changed, this, + &AxisSynchronizer::set_axis_range); + break; + default: + break; + } + } + } + } + for (auto& plot : _plots) + { + if (!plot.isNull()) + { + if (!plots.contains(plot)) + { + switch (m_sync_axis) + { + case AxisType::XAxis: + disconnect(plot, &SciQLopPlotInterface::x_axis_range_changed, this, + &AxisSynchronizer::set_axis_range); + break; + case AxisType::YAxis: + disconnect(plot, &SciQLopPlotInterface::y_axis_range_changed, this, + &AxisSynchronizer::set_axis_range); + break; + case AxisType::ZAxis: + disconnect(plot, &SciQLopPlotInterface::z_axis_range_changed, this, + &AxisSynchronizer::set_axis_range); + break; + case AxisType::TimeAxis: + disconnect(plot, &SciQLopPlotInterface::time_axis_range_changed, this, + &AxisSynchronizer::set_axis_range); + break; + default: + break; + } } } } + _plots = plots; +} + +void AxisSynchronizer::set_axis_range(const SciQLopPlotRange& range) +{ for (auto plot : _plots) { - if (!plots.contains(plot)) + if (!plot.isNull()) { switch (m_sync_axis) { case AxisType::XAxis: - disconnect(plot, &SciQLopPlotInterface::x_axis_range_changed, this, - &AxisSynchronizer::set_axis_range); + if (auto axis = plot->x_axis()) + axis->set_range(range); break; case AxisType::YAxis: - disconnect(plot, &SciQLopPlotInterface::y_axis_range_changed, this, - &AxisSynchronizer::set_axis_range); + if (auto axis = plot->y_axis()) + axis->set_range(range); break; case AxisType::ZAxis: - disconnect(plot, &SciQLopPlotInterface::z_axis_range_changed, this, - &AxisSynchronizer::set_axis_range); + if (auto axis = plot->z_axis()) + axis->set_range(range); break; case AxisType::TimeAxis: - disconnect(plot, &SciQLopPlotInterface::time_axis_range_changed, this, - &AxisSynchronizer::set_axis_range); + if (auto axis = plot->time_axis()) + axis->set_range(range); break; default: break; } } } - _plots = plots; -} - -void AxisSynchronizer::set_axis_range(const SciQLopPlotRange& range) -{ - for (auto plot : _plots) - { - switch (m_sync_axis) - { - case AxisType::XAxis: - if (auto axis = plot->x_axis()) - axis->set_range(range); - break; - case AxisType::YAxis: - if (auto axis = plot->y_axis()) - axis->set_range(range); - break; - case AxisType::ZAxis: - if (auto axis = plot->z_axis()) - axis->set_range(range); - break; - case AxisType::TimeAxis: - if (auto axis = plot->time_axis()) - axis->set_range(range); - break; - default: - break; - } - } } diff --git a/src/ColorDelegate.cpp b/src/ColorDelegate.cpp new file mode 100644 index 0000000..7ebf723 --- /dev/null +++ b/src/ColorDelegate.cpp @@ -0,0 +1,73 @@ +/*------------------------------------------------------------------------------ +-- This file is a part of the SciQLop Software +-- Copyright (C) 2024, Plasma Physics Laboratory - CNRS +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +-------------------------------------------------------------------------------*/ +/*-- Author : Alexis Jeandet +-- Mail : alexis.jeandet@member.fsf.org +----------------------------------------------------------------------------*/ +#include "SciQLopPlots/Inspector/PropertiesDelegates/Delegates/ColorDelegate.hpp" + +#include +#include + +ColorDelegate::ColorDelegate(QColor color, QWidget* parent) : QPushButton(parent) +{ + setAutoFillBackground(false); + setFlat(true); + setColor(color); + connect(this, &QPushButton::clicked, this, &ColorDelegate::pick_color); +} + +void ColorDelegate::setColor(const QColor& color) +{ + if (m_color != color) + { + m_color = color; + QPalette palette; + palette.setColor(QPalette::Button, m_color); + setPalette(palette); + emit colorChanged(m_color); + } +} + +QColor ColorDelegate::color() const +{ + return m_color; +} + +void ColorDelegate::pick_color() +{ + QColorDialog dialog; + dialog.setCurrentColor(m_color); + if (dialog.exec() == QDialog::Accepted) + { + if (dialog.selectedColor().isValid()) + { + setColor(dialog.selectedColor()); + } + } +} + +void ColorDelegate::paintEvent(QPaintEvent* event) +{ + QPushButton::paintEvent(event); + QPainter painter(this); + painter.setRenderHint(QPainter::Antialiasing); + painter.setPen(Qt::black); + painter.setBrush(m_color); + painter.drawRect(rect().adjusted(2, 2, -2, -2)); +} diff --git a/src/ColorGradientDelegate.cpp b/src/ColorGradientDelegate.cpp new file mode 100644 index 0000000..2a9d053 --- /dev/null +++ b/src/ColorGradientDelegate.cpp @@ -0,0 +1,185 @@ +/*------------------------------------------------------------------------------ +-- This file is a part of the SciQLop Software +-- Copyright (C) 2024, Plasma Physics Laboratory - CNRS +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +-------------------------------------------------------------------------------*/ +/*-- Author : Alexis Jeandet +-- Mail : alexis.jeandet@member.fsf.org +----------------------------------------------------------------------------*/ +#include "SciQLopPlots/Inspector/PropertiesDelegates/Delegates/ColorGradientDelegate.hpp" +#include "qcustomplot.h" +#include + +static QCPColorGradient ColorGradien_to_QCPColorGradient(ColorGradient gradient) +{ + switch (gradient) + { + case ColorGradient::Grayscale: + return QCPColorGradient::gpGrayscale; + case ColorGradient::Hot: + return QCPColorGradient::gpHot; + case ColorGradient::Cold: + return QCPColorGradient::gpCold; + case ColorGradient::Night: + return QCPColorGradient::gpNight; + case ColorGradient::Candy: + return QCPColorGradient::gpCandy; + case ColorGradient::Geography: + return QCPColorGradient::gpGeography; + case ColorGradient::Ion: + return QCPColorGradient::gpIon; + case ColorGradient::Thermal: + return QCPColorGradient::gpThermal; + case ColorGradient::Polar: + return QCPColorGradient::gpPolar; + case ColorGradient::Spectrum: + return QCPColorGradient::gpSpectrum; + case ColorGradient::Jet: + return QCPColorGradient::gpJet; + case ColorGradient::Hues: + return QCPColorGradient::gpHues; + } + return QCPColorGradient::gpJet; +} + +inline QSize expanded(QSize size, int w, int h) +{ + return QSize(size.width() + 2 * w, size.height() + 2 * h); +} + +ColorGradientDelegate::ColorGradientDelegate(ColorGradient gradient, QWidget* parent) + : QComboBox(parent) +{ + setItemDelegate(new ColorGradientItemDelegate(this)); + connect(this, QOverload::of(&QComboBox::currentIndexChanged), this, [this](int index) + { emit gradientChanged(this->itemData(index).value()); }); + addItem(color_gradient_to_string(ColorGradient::Grayscale), + QVariant::fromValue(ColorGradient::Grayscale)); + addItem(color_gradient_to_string(ColorGradient::Hot), QVariant::fromValue(ColorGradient::Hot)); + addItem(color_gradient_to_string(ColorGradient::Cold), + QVariant::fromValue(ColorGradient::Cold)); + addItem(color_gradient_to_string(ColorGradient::Night), + QVariant::fromValue(ColorGradient::Night)); + addItem(color_gradient_to_string(ColorGradient::Candy), + QVariant::fromValue(ColorGradient::Candy)); + addItem(color_gradient_to_string(ColorGradient::Geography), + QVariant::fromValue(ColorGradient::Geography)); + addItem(color_gradient_to_string(ColorGradient::Ion), QVariant::fromValue(ColorGradient::Ion)); + addItem(color_gradient_to_string(ColorGradient::Thermal), + QVariant::fromValue(ColorGradient::Thermal)); + addItem(color_gradient_to_string(ColorGradient::Polar), + QVariant::fromValue(ColorGradient::Polar)); + addItem(color_gradient_to_string(ColorGradient::Spectrum), + QVariant::fromValue(ColorGradient::Spectrum)); + addItem(color_gradient_to_string(ColorGradient::Jet), QVariant::fromValue(ColorGradient::Jet)); + addItem(color_gradient_to_string(ColorGradient::Hues), + QVariant::fromValue(ColorGradient::Hues)); + setGradient(gradient); +} + +void ColorGradientDelegate::setGradient(ColorGradient gradient) +{ + m_gradient = gradient; + setCurrentIndex(findData(QVariant::fromValue(gradient))); + emit gradientChanged(gradient); +} + +ColorGradient ColorGradientDelegate::gradient() const +{ + return m_gradient; +} + +QSize ColorGradientItemDelegate::_text_size_hint(const QString& text) const +{ + return expanded(qobject_cast(parent())->fontMetrics().size(0, text), _h_margin, + _v_margin); +} + +QSize ColorGradientItemDelegate::_gradient_size_hint() const +{ + return _text_size_hint("000000000"); +} + +ColorGradientItemDelegate::ColorGradientItemDelegate(QObject* parent) : QStyledItemDelegate(parent) +{ +} + +void ColorGradientItemDelegate::paint(QPainter* painter, const QStyleOptionViewItem& option, + const QModelIndex& index) const +{ + if (index.isValid()) + { + auto data = index.data(Qt::UserRole); + if (data.canConvert()) + { + auto gradient = ColorGradien_to_QCPColorGradient(data.value()); + auto sh = _gradient_size_hint(); + auto tx = _text_size_hint(index.data().toString()); + auto rect = option.rect; + if (option.state & QStyle::State_Selected) + { + painter->fillRect(rect, option.palette.highlight()); + } + rect.adjust(+5, 0, -5, 0); + painter->save(); + painter->translate(rect.x(), rect.y() + tx.height()); + if (option.state & QStyle::State_Selected) + { + painter->setPen(option.palette.highlightedText().color()); + } + painter->drawText(0, 0, index.data().toString()); + painter->restore(); + painter->resetTransform(); + painter->save(); + painter->translate(rect.width() - _h_margin - sh.width(), rect.y()); + auto width = sh.width(); + for (auto i = 0; i < width; i++) + { + painter->setPen(gradient.color(double(i) / width, QCPRange(0, 1))); + painter->drawLine(i, 0, i, sh.height()); + } + painter->restore(); + } + else + { + QStyledItemDelegate::paint(painter, option, index); + } + } + else + { + QStyledItemDelegate::paint(painter, option, index); + } +} + +QSize ColorGradientItemDelegate::sizeHint(const QStyleOptionViewItem& option, + const QModelIndex& index) const +{ + if (index.isValid()) + { + auto data = index.data(Qt::UserRole); + if (data.canConvert()) + { + auto tx = _text_size_hint(index.data().toString()); + auto sh = _gradient_size_hint(); + return QSize(tx.width() + sh.width(), std::max(tx.height(), sh.height())); + } + else + { + return QStyledItemDelegate::sizeHint(option, index); + } + } + return QStyledItemDelegate::sizeHint(option, index); +} diff --git a/src/InspectorBase.cpp b/src/InspectorBase.cpp new file mode 100644 index 0000000..24f6342 --- /dev/null +++ b/src/InspectorBase.cpp @@ -0,0 +1,79 @@ +/*------------------------------------------------------------------------------ +-- This file is a part of the SciQLop Software +-- Copyright (C) 2024, Plasma Physics Laboratory - CNRS +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +-------------------------------------------------------------------------------*/ +/*-- Author : Alexis Jeandet +-- Mail : alexis.jeandet@member.fsf.org +----------------------------------------------------------------------------*/ +#include "SciQLopPlots/Inspector/InspectorBase.hpp" +#include "SciQLopPlots/Inspector/Inspectors.hpp" +#include "SciQLopPlots/Inspector/Model/Node.hpp" +#include + +REGISTER_INSPECTOR(InspectorBase) + +InspectorBase::InspectorBase(QObject* parent) { } + +QList InspectorBase::children(QObject* obj) +{ + if (obj != nullptr) + return obj->children(); + return {}; +} + +QObject* InspectorBase::child(const QString& name, QObject* obj) +{ + if (obj != nullptr) + return obj->findChild(name); + return nullptr; +} + +QIcon InspectorBase::icon(const QObject* const obj) +{ + Q_UNUSED(obj); + return QIcon(); +} + +QString InspectorBase::tooltip(const QObject* const obj) +{ + Q_UNUSED(obj); + return QString(); +} + +void InspectorBase::connect_node(PlotsModelNode* node, QObject* const obj) +{ + connect(obj, &QObject::destroyed, node, [node]() { delete node; }); + connect(obj, &QObject::objectNameChanged, node, &PlotsModelNode::setName); +} + +void InspectorBase::set_selected(QObject* obj, bool selected) +{ + Q_UNUSED(obj); + Q_UNUSED(selected); +} + +bool InspectorBase::selected(const QObject* obj) +{ + Q_UNUSED(obj); + return false; +} + +bool InspectorBase::deletable(const QObject* obj) +{ + Q_UNUSED(obj); + return true; +} diff --git a/src/InspectorView.cpp b/src/InspectorView.cpp new file mode 100644 index 0000000..a894b87 --- /dev/null +++ b/src/InspectorView.cpp @@ -0,0 +1,75 @@ +/*------------------------------------------------------------------------------ +-- This file is a part of the SciQLop Software +-- Copyright (C) 2024, Plasma Physics Laboratory - CNRS +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +-------------------------------------------------------------------------------*/ +/*-- Author : Alexis Jeandet +-- Mail : alexis.jeandet@member.fsf.org +----------------------------------------------------------------------------*/ +#include "SciQLopPlots/Inspector/View/InspectorView.hpp" +#include "SciQLopPlots/Inspector/Model/Model.hpp" +#include +#include + +void InspectorView::expand_recursively(const QModelIndex& index) +{ + auto parent = index.parent(); + while (parent.isValid()) + { + m_treeView->setExpanded(parent, true); + parent = parent.parent(); + } +} + +void InspectorView::selectionChanged( + const QItemSelection& selected, const QItemSelection& deselected) +{ + PlotsModel::instance()->set_selected(selected.indexes(), true); + PlotsModel::instance()->set_selected(deselected.indexes(), false); + auto selected_objects = QList(); + for (const auto& index : selected.indexes()) + { + auto object = PlotsModel::object(index); + if (object) + selected_objects.append(object); + } + emit objects_selected(selected_objects); +} + +InspectorView::InspectorView(QWidget* parent) : QWidget(parent) +{ + m_treeView = new PlotsTreeView(this); + m_treeView->setModel(PlotsModel::instance()); + QVBoxLayout* layout = new QVBoxLayout(this); + layout->addWidget(m_treeView); + setLayout(layout); + + auto selectionModel = m_treeView->selectionModel(); + connect(selectionModel, &QItemSelectionModel::selectionChanged, this, + &InspectorView::selectionChanged); + + connect(PlotsModel::instance(), &PlotsModel::item_selection_changed, selectionModel, + [selectionModel, this](const QModelIndex& index, bool selected) + { + if (selected) + { + this->expand_recursively(index); + selectionModel->select(index, QItemSelectionModel::Select); + } + else + selectionModel->select(index, QItemSelectionModel::Deselect); + }); +} diff --git a/src/Inspectors.cpp b/src/Inspectors.cpp new file mode 100644 index 0000000..04919d1 --- /dev/null +++ b/src/Inspectors.cpp @@ -0,0 +1,40 @@ +/*------------------------------------------------------------------------------ +-- This file is a part of the SciQLop Software +-- Copyright (C) 2024, Plasma Physics Laboratory - CNRS +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +-------------------------------------------------------------------------------*/ +/*-- Author : Alexis Jeandet +-- Mail : alexis.jeandet@member.fsf.org +----------------------------------------------------------------------------*/ +#include "SciQLopPlots/Inspector/Inspectors.hpp" +#include "SciQLopPlots/Debug.hpp" +#include "SciQLopPlots/Inspector/InspectorBase.hpp" + +InspectorBase* Inspectors::inspector(const QObject* obj) +{ + auto metaObject = obj->metaObject(); + InspectorBase* _inspector = nullptr; + do + { + _inspector = inspector(metaObject->className()); + metaObject = metaObject->superClass(); + } while (_inspector == nullptr && metaObject != nullptr); + if (_inspector) + { + DEBUG_MESSAGE("Inspector found:" << _inspector->metaObject()->className()); + } + return _inspector; +} diff --git a/src/LineDelegate.cpp b/src/LineDelegate.cpp new file mode 100644 index 0000000..408909f --- /dev/null +++ b/src/LineDelegate.cpp @@ -0,0 +1,70 @@ +/*------------------------------------------------------------------------------ +-- This file is a part of the SciQLop Software +-- Copyright (C) 2024, Plasma Physics Laboratory - CNRS +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +-------------------------------------------------------------------------------*/ +/*-- Author : Alexis Jeandet +-- Mail : alexis.jeandet@member.fsf.org +----------------------------------------------------------------------------*/ +#include "SciQLopPlots/Inspector/PropertiesDelegates/Delegates/LineDelegate.hpp" +#include "SciQLopPlots/Inspector/PropertiesDelegates/Delegates/ColorDelegate.hpp" +#include +#include + +LineDelegate::LineDelegate(QPen pen, GraphLineStyle style, QWidget* parent) : QWidget(parent) +{ + m_pen = pen; + m_layout = new QFormLayout(); + setLayout(m_layout); + + auto width = new QSpinBox(); + m_layout->addRow("Width", width); + width->setValue(pen.width()); + connect(width, QOverload::of(&QSpinBox::valueChanged), this, + [this](int value) + { + m_pen.setWidth(value); + emit widthChanged(value); + emit penChanged(m_pen); + }); + + auto style_qcb = new QComboBox(); + m_layout->addRow("Style", style_qcb); + style_qcb->addItem(graph_line_style_to_string(GraphLineStyle::Line), + QVariant::fromValue(GraphLineStyle::Line)); + style_qcb->addItem(graph_line_style_to_string(GraphLineStyle::StepCenter), + QVariant::fromValue(GraphLineStyle::StepCenter)); + style_qcb->addItem(graph_line_style_to_string(GraphLineStyle::StepLeft), + QVariant::fromValue(GraphLineStyle::StepLeft)); + style_qcb->addItem(graph_line_style_to_string(GraphLineStyle::StepRight), + QVariant::fromValue(GraphLineStyle::StepRight)); + style_qcb->addItem(graph_line_style_to_string(GraphLineStyle::NoLine), + QVariant::fromValue(GraphLineStyle::NoLine)); + style_qcb->setCurrentIndex(style_qcb->findData(QVariant::fromValue(style))); + connect(style_qcb, QOverload::of(&QComboBox::currentIndexChanged), this, + [this, style_qcb](int index) + { emit styleChanged(style_qcb->itemData(index).value()); }); + + auto color = new ColorDelegate(pen.color()); + m_layout->addRow("Color", color); + connect(color, &ColorDelegate::colorChanged, this, + [this](const QColor& color) + { + m_pen.setColor(color); + emit colorChanged(color); + emit penChanged(m_pen); + }); +} diff --git a/src/Model.cpp b/src/Model.cpp new file mode 100644 index 0000000..bc09cb4 --- /dev/null +++ b/src/Model.cpp @@ -0,0 +1,196 @@ +/*------------------------------------------------------------------------------ +-- This file is a part of the SciQLop Software +-- Copyright (C) 2024, Plasma Physics Laboratory - CNRS +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +-------------------------------------------------------------------------------*/ +/*-- Author : Alexis Jeandet +-- Mail : alexis.jeandet@member.fsf.org +----------------------------------------------------------------------------*/ +#include "SciQLopPlots/Inspector/Model/Model.hpp" +#include + +void PlotsModel::node_changed(PlotsModelNode* node) +{ + auto index = make_index(node); + if (index.isValid()) + emit dataChanged(index, index); +} + +void PlotsModel::node_selection_changed(PlotsModelNode* node, bool selected) +{ + auto index = make_index(node); + if (index.isValid()) + emit item_selection_changed(index, selected); +} + +void PlotsModel::children_destroyed(PlotsModelNode* parent, int index) +{ + beginRemoveRows(make_index(parent), index, index); + endRemoveRows(); +} + +PlotsModel::PlotsModel(QObject* parent) +{ + m_rootNode = new PlotsModelNode(this); + connect(m_rootNode, &PlotsModelNode::childrenChanged, this, &PlotsModel::node_changed, + Qt::DirectConnection); + connect(m_rootNode, &PlotsModelNode::childrenDestroyed, this, &PlotsModel::children_destroyed, + Qt::DirectConnection); + connect(m_rootNode, &PlotsModelNode::nameChanged, this, &PlotsModel::node_changed); + connect(m_rootNode, &PlotsModelNode::selectionChanged, this, + &PlotsModel::node_selection_changed); +} + +QModelIndex PlotsModel::index(int row, int column, const QModelIndex& parent) const +{ + if (hasIndex(row, column, parent)) + { + PlotsModelNode* parentNode; + if (!parent.isValid()) + parentNode = m_rootNode; + else + parentNode = static_cast(parent.internalPointer()); + PlotsModelNode* childNode = parentNode->child(row); + if (childNode) + return createIndex(row, column, childNode); + } + return QModelIndex(); +} + +QModelIndex PlotsModel::parent(const QModelIndex& index) const +{ + if (index.isValid()) + { + PlotsModelNode* childNode = static_cast(index.internalPointer()); + PlotsModelNode* parentNode = childNode->parent_node(); + if (parentNode != m_rootNode) + { + if (parentNode != nullptr) + { + PlotsModelNode* grandparentNode = parentNode->parent_node(); + if (grandparentNode != nullptr) + return createIndex(grandparentNode->child_row(parentNode), 0, parentNode); + return createIndex(0, 0, parentNode); + } + } + } + return QModelIndex(); +} + +int PlotsModel::rowCount(const QModelIndex& parent) const +{ + if (parent.column() > 0) + return 0; + PlotsModelNode* parentNode; + if (!parent.isValid()) + parentNode = m_rootNode; + else + parentNode = static_cast(parent.internalPointer()); + return parentNode->children_count(); +} + +int PlotsModel::columnCount(const QModelIndex& parent) const +{ + return 1; +} + +QVariant PlotsModel::data(const QModelIndex& index, int role) const +{ + if (index.isValid()) + { + PlotsModelNode* node = static_cast(index.internalPointer()); + switch (role) + { + case Qt::DisplayRole: + return node->name(); + case Qt::UserRole: + return node->name(); + case Qt::DecorationRole: + return node->icon(); + case Qt::ToolTipRole: + return node->tooltip(); + default: + break; + } + } + return QVariant(); +} + +Qt::ItemFlags PlotsModel::flags(const QModelIndex& index) const +{ + if (!index.isValid()) + return Qt::ItemIsEnabled; + return QAbstractItemModel::flags(index); +} + +bool PlotsModel::removeRows(int row, int count, const QModelIndex& parent) +{ + bool result = true; + if (auto node = static_cast(parent.internalPointer()); node != nullptr) + { + beginRemoveRows(parent, row, row + count - 1); + for (int index = row + count - 1; index >= row; --index) + { + auto child = node->child(index); + if (child != nullptr && child->deletable()) + node->remove_child(index); + else + result = false; + } + endRemoveRows(); + } + return result; +} + +void PlotsModel::set_selected(const QList& indexes, bool selected) +{ + for (auto index : indexes) + { + auto node = static_cast(index.internalPointer()); + if (node != nullptr) + node->set_selected(selected); + } +} + +void PlotsModel::addTopLevelNode(QObject* obj) +{ + beginInsertRows(QModelIndex(), m_rootNode->children_count(), m_rootNode->children_count()); + m_rootNode->insert_child(obj); + endInsertRows(); + Q_EMIT top_level_nodes_list_changed(); +} + +Q_APPLICATION_STATIC(PlotsModel, _plots_model); + +PlotsModel* PlotsModel::instance() +{ + return _plots_model(); +} + +QObject* PlotsModel::object(const QModelIndex& index) +{ + if (auto node = static_cast(index.internalPointer()); node != nullptr) + return node->object(); + return nullptr; +} + +QModelIndex PlotsModel::make_index(PlotsModelNode* node) +{ + auto parent_node = node->parent_node(); + if (parent_node == nullptr) + return QModelIndex(); + return createIndex(parent_node->child_row(node), 0, node); +} diff --git a/src/MultiPlotsVSpan.cpp b/src/MultiPlotsVSpan.cpp index 41c8e2c..2cad005 100644 --- a/src/MultiPlotsVSpan.cpp +++ b/src/MultiPlotsVSpan.cpp @@ -21,7 +21,6 @@ ----------------------------------------------------------------------------*/ #include "SciQLopPlots/MultiPlots/MultiPlotsVSpan.hpp" - void MultiPlotsVerticalSpan::select_lower_border(bool selected) { if (_lower_border_selected != selected) @@ -60,15 +59,15 @@ void MultiPlotsVerticalSpan::addObject(SciQLopPlotInterface* plot) new_span->set_read_only(_read_only); new_span->set_tool_tip(_tool_tip); QObject::connect(new_span, &SciQLopVerticalSpan::range_changed, this, - &MultiPlotsVerticalSpan::set_range); + &MultiPlotsVerticalSpan::set_range); QObject::connect(new_span, &SciQLopVerticalSpan::selectionChanged, this, - &MultiPlotsVerticalSpan::set_selected); + &MultiPlotsVerticalSpan::set_selected); QObject::connect(new_span, &SciQLopVerticalSpan::lower_border_selection_changed, this, - &MultiPlotsVerticalSpan::select_lower_border); + &MultiPlotsVerticalSpan::select_lower_border); QObject::connect(new_span, &SciQLopVerticalSpan::upper_border_selection_changed, this, - &MultiPlotsVerticalSpan::select_upper_border); + &MultiPlotsVerticalSpan::select_upper_border); QObject::connect(new_span, &SciQLopVerticalSpan::delete_requested, this, - &MultiPlotsVerticalSpan::delete_requested); + &MultiPlotsVerticalSpan::delete_requested); _spans.append(new_span); } } @@ -77,7 +76,7 @@ void MultiPlotsVerticalSpan::removeObject(SciQLopPlotInterface* plot) { if (auto scp = dynamic_cast(plot); scp) { - for (auto i = 0UL; i < std::size(_spans); ++i) + for (decltype(std::size(_spans)) i = 0UL; i < std::size(_spans); ++i) { if (_spans[i]->parentPlot() == scp->qcp_plot()) { diff --git a/src/Node.cpp b/src/Node.cpp new file mode 100644 index 0000000..9b55ac1 --- /dev/null +++ b/src/Node.cpp @@ -0,0 +1,172 @@ +/*------------------------------------------------------------------------------ +-- This file is a part of the SciQLop Software +-- Copyright (C) 2024, Plasma Physics Laboratory - CNRS +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +-------------------------------------------------------------------------------*/ +/*-- Author : Alexis Jeandet +-- Mail : alexis.jeandet@member.fsf.org +----------------------------------------------------------------------------*/ +#include "SciQLopPlots/Inspector/Model/Node.hpp" +#include "SciQLopPlots/Inspector/InspectorBase.hpp" +#include "SciQLopPlots/Inspector/Inspectors.hpp" + +void PlotsModelNode::_child_destroyed(PlotsModelNode* child) +{ + auto index = m_children.indexOf(child); + m_children.removeOne(child); + emit childrenDestroyed(this, index); +} + +PlotsModelNode* PlotsModelNode::_root_node() +{ + PlotsModelNode* node = this; + while (node->parent_node() != nullptr) + node = node->parent_node(); + return node; +} + +PlotsModelNode::PlotsModelNode(QObject* obj, QObject* parent) : QObject(parent), m_obj(obj) +{ + if (obj != nullptr) + { + setObjectName(obj->objectName()); + connect(this, &PlotsModelNode::objectNameChanged, this, + [this]() { emit nameChanged(this); }); + connect(obj, &QObject::destroyed, this, &PlotsModelNode::destroy, Qt::DirectConnection); + m_inspector = Inspectors::inspector(obj); + if (m_inspector != nullptr) + { + set_deletable(m_inspector->deletable(obj)); + m_inspector->connect_node(this, obj); + for (auto child : m_inspector->children(obj)) + { + insert_child(child); + } + } + } +} + +PlotsModelNode* PlotsModelNode::insert_child(QObject* obj, int row) +{ + PlotsModelNode* node = new PlotsModelNode(obj, this); + if (row == -1) + m_children.append(node); + else + m_children.insert(row, node); + connect( + node, &QObject::destroyed, this, [this, node]() { _child_destroyed(node); }, + Qt::DirectConnection); + connect(node, &PlotsModelNode::childrenChanged, _root_node(), &PlotsModelNode::childrenChanged); + connect(node, &PlotsModelNode::nameChanged, _root_node(), &PlotsModelNode::nameChanged); + connect(node, &PlotsModelNode::selectionChanged, _root_node(), + &PlotsModelNode::selectionChanged); + emit childrenChanged(this); + return node; +} + +PlotsModelNode* PlotsModelNode::child_node(const QString& name) +{ + for (auto child : m_children) + { + if (child->name() == name) + return child; + } + return nullptr; +} + +int PlotsModelNode::child_row(QObject* obj) +{ + for (int i = 0; i < children_count(); i++) + { + if (m_children[i]->holds(obj)) + return i; + } + return -1; +} + +bool PlotsModelNode::remove_child(int row) +{ + if (row < 0 || row >= m_children.size()) + return false; + auto child = m_children.at(row); + m_children.removeAt(row); + child->destroy(); + emit childrenDestroyed(this, row); + return true; +} + +QIcon PlotsModelNode::icon() +{ + if (m_inspector == nullptr || m_obj == nullptr) + return QIcon(); + return m_inspector->icon(m_obj); +} + +QString PlotsModelNode::tooltip() +{ + if (m_inspector == nullptr || m_obj == nullptr) + return QString(); + return m_inspector->tooltip(m_obj); +} + +void PlotsModelNode::setName(const QString& name) +{ + if (objectName() != name) + { + setObjectName(name); + } + if (m_obj && m_obj->objectName() != name) + m_obj->setObjectName(name); +} + +void PlotsModelNode::update_children() +{ + if (m_inspector != nullptr) + { + auto new_children = m_inspector->children(m_obj.data()); + for (auto child : new_children) + { + if (!contains(child)) + insert_child(child); + } + for (auto child : m_children) + { + if (!new_children.contains(child->m_obj.data())) + delete child; + } + } + emit childrenChanged(this); +} + +void PlotsModelNode::set_selected(bool selected) +{ + if (m_inspector && m_obj) + { + m_inspector->set_selected(m_obj.data(), selected); + emit selectionChanged(this, selected); + } +} + +void PlotsModelNode::destroy() +{ + while (!m_children.isEmpty()) + { + remove_child(0); + } + if (m_obj) + m_obj->deleteLater(); + deleteLater(); +} diff --git a/src/ProductsModel.cpp b/src/ProductsModel.cpp new file mode 100644 index 0000000..80546a3 --- /dev/null +++ b/src/ProductsModel.cpp @@ -0,0 +1,228 @@ +/*------------------------------------------------------------------------------ +-- This file is a part of the SciQLop Software +-- Copyright (C) 2024, Plasma Physics Laboratory - CNRS +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +-------------------------------------------------------------------------------*/ +/*-- Author : Alexis Jeandet +-- Mail : alexis.jeandet@member.fsf.org +----------------------------------------------------------------------------*/ +#include "SciQLopPlots/Products/ProductsModel.hpp" +#include "SciQLopPlots/Products/ProductsNode.hpp" +#include +#include + +QModelIndex ProductsModel::make_index(ProductsModelNode* node) +{ + auto parent_node = node->parent_node(); + if (parent_node == nullptr) + return QModelIndex(); + return createIndex(parent_node->child_row(node), 0, node); +} + +void ProductsModel::_add_to_completer(const QString& value) +{ + if (m_completer_model->stringList().contains(value)) + return; + m_completer_model->insertRow(m_completer_model->rowCount()); + m_completer_model->setData(m_completer_model->index(m_completer_model->rowCount() - 1), value); +} + +void ProductsModel::_add_to_completer(ProductsModelNode* node) +{ + for (auto str : node->completions()) + _add_to_completer(str); +} + +void ProductsModel::_insert_node(ProductsModelNode* node, ProductsModelNode* parent) +{ + beginInsertRows(make_index(parent), parent->children_count(), parent->children_count()); + parent->add_child(node); + _add_to_completer(node); + endInsertRows(); +} + +ProductsModel::ProductsModel(QObject* parent) : QAbstractItemModel(parent) +{ + m_rootNode = new ProductsModelNode("root", {}, "", this); + m_completer_model = new QStringListModel(this); +} + +QModelIndex ProductsModel::index(int row, int column, const QModelIndex& parent) const +{ + if (hasIndex(row, column, parent)) + { + ProductsModelNode* parentNode; + if (!parent.isValid()) + parentNode = m_rootNode; + else + parentNode = static_cast(parent.internalPointer()); + ProductsModelNode* childNode = parentNode->child(row); + if (childNode) + return createIndex(row, column, childNode); + } + return QModelIndex(); +} + +QModelIndex ProductsModel::parent(const QModelIndex& index) const +{ + if (index.isValid()) + { + ProductsModelNode* childNode = static_cast(index.internalPointer()); + ProductsModelNode* parentNode = childNode->parent_node(); + if (parentNode != m_rootNode) + { + if (parentNode != nullptr) + { + ProductsModelNode* grandparentNode = parentNode->parent_node(); + if (grandparentNode != nullptr) + return createIndex(grandparentNode->child_row(parentNode), 0, parentNode); + return createIndex(0, 0, parentNode); + } + } + } + return QModelIndex(); +} + +int ProductsModel::rowCount(const QModelIndex& parent) const +{ + if (parent.column() > 0) + return 0; + ProductsModelNode* parentNode; + if (!parent.isValid()) + parentNode = m_rootNode; + else + parentNode = static_cast(parent.internalPointer()); + return parentNode->children_count(); +} + +int ProductsModel::columnCount(const QModelIndex& parent) const +{ + return 1; +} + +QVariant ProductsModel::data(const QModelIndex& index, int role) const +{ + if (index.isValid()) + { + ProductsModelNode* node = static_cast(index.internalPointer()); + switch (role) + { + case Qt::DisplayRole: + return node->name(); + case Qt::UserRole: + return node->name(); + case Qt::DecorationRole: + return node->icon(); + case Qt::ToolTipRole: + return node->tooltip(); + case PRODUCT_FILTER_ROLE: + return node->raw_text(); + default: + break; + } + } + return QVariant(); +} + +Qt::ItemFlags ProductsModel::flags(const QModelIndex& index) const +{ + if (index.isValid()) + { + auto node = static_cast(index.internalPointer()); + if (node->node_type() == ProductsModelNodeType::PARAMETER) + return Qt::ItemIsEnabled | Qt::ItemIsDragEnabled | Qt::ItemIsSelectable; + return Qt::ItemIsEnabled | Qt::ItemIsSelectable; + } + return QAbstractItemModel::flags(index); +} + +QMimeData* ProductsModel::mimeData(const QModelIndexList& indexes) const +{ + if (indexes.isEmpty()) + return nullptr; + auto mimeData = new QMimeData(); + QByteArray encodedData; + QDataStream stream(&encodedData, QIODevice::WriteOnly); + for (const auto& index : indexes) + { + if (index.isValid()) + { + auto node = static_cast(index.internalPointer()); + stream << node->path(); + } + } + mimeData->setData(mime_type(), encodedData); + return mimeData; +} + +QList ProductsModel::decode_mime_data(const QMimeData* mime_data) +{ + QList data; + if (mime_data->hasFormat(mime_type())) + { + QByteArray encodedData = mime_data->data(mime_type()); + QDataStream stream(&encodedData, QIODevice::ReadOnly); + while (!stream.atEnd()) + { + QStringList path; + stream >> path; + data.append(path); + } + } + return data; +} + +void ProductsModel::add_node(QStringList path, ProductsModelNode* obj) +{ + auto parent = m_rootNode; + for (const auto& name : path) + { + auto node = parent->child(name); + if (node == nullptr) + { + node = new ProductsModelNode(name); + _insert_node(node, parent); + } + parent = node; + } + _insert_node(obj, parent); +} + +ProductsModelNode* ProductsModel::node(const QStringList& path) +{ + if (!path.isEmpty()) + { + auto parent = ProductsModel::instance()->m_rootNode; + auto without_root = path; + without_root.removeFirst(); + for (const auto& name : without_root) + { + auto node = parent->child(name); + if (node == nullptr) + return nullptr; + parent = node; + } + return parent; + } + return nullptr; +} + +Q_APPLICATION_STATIC(ProductsModel, _products_model); + +ProductsModel* ProductsModel::instance() +{ + return _products_model(); +} diff --git a/src/ProductsNode.cpp b/src/ProductsNode.cpp new file mode 100644 index 0000000..a602dee --- /dev/null +++ b/src/ProductsNode.cpp @@ -0,0 +1,114 @@ +/*------------------------------------------------------------------------------ +-- This file is a part of the SciQLop Software +-- Copyright (C) 2024, Plasma Physics Laboratory - CNRS +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +-------------------------------------------------------------------------------*/ +/*-- Author : Alexis Jeandet +-- Mail : alexis.jeandet@member.fsf.org +----------------------------------------------------------------------------*/ +#include "SciQLopPlots/Products/ProductsNode.hpp" +#include "SciQLopPlots/Icons/icons.hpp" +#include "fmt/core.h" + +ProductsModelNode* ProductsModelNode::_root_node() +{ + ProductsModelNode* node = this; + while (node->parent_node() != nullptr) + node = node->parent_node(); + return node; +} + +ProductsModelNode::ProductsModelNode(const QString& name, const QMap& metadata, + const QString& icon, QObject* parent) + : ProductsModelNode(name, "", metadata, ProductsModelNodeType::FOLDER, + ParameterType::NotAParameter, icon, parent) +{ +} + +ProductsModelNode::ProductsModelNode(const QString& name, const QString& provider, + const QMap& metadata, + ProductsModelNodeType node_type, ParameterType parameter_type, + const QString& icon, QObject* parent) + : QObject(parent) + , m_node_type(node_type) + , m_metadata(metadata) + , m_icon(icon) + , m_parameter_type(parameter_type) + , m_provider(provider) +{ + this->setObjectName(name); + m_tooltip.append(fmt::format("

{}

", name.toStdString()).c_str()); + m_raw_text.append(name); + for (auto [key, value] : metadata.asKeyValueRange()) + { + m_tooltip.append( + fmt::format("
{}: {}", key.toStdString(), value.toString().toStdString()) + .c_str()); + m_raw_text.append(key + ": " + value.toString()); + } +} + +void ProductsModelNode::add_child(ProductsModelNode* child) +{ + for (auto node : m_children) + { + if (node->name() == child->name()) + { + m_children.removeOne(node); + } + } + m_children.append(child); + child->setParent(this); +} + +QStringList ProductsModelNode::path() +{ + QStringList path; + ProductsModelNode* node = this; + while (node != nullptr) + { + path.prepend(node->objectName()); + node = node->parent_node(); + } + return path; +} + +void ProductsModelNode::set_icon(const QString& name) +{ + m_icon = name; +} + +const QIcon& ProductsModelNode::icon() +{ + return Icons::get_icon(m_icon); +} + +void ProductsModelNode::set_tooltip(const QString& tooltip) +{ + m_tooltip = tooltip; +} + +QStringList ProductsModelNode::completions() const noexcept +{ + QStringList completions; + completions.append(this->name()); + for (auto [key, value] : m_metadata.asKeyValueRange()) + { + if (auto v = value.toString(); v.size() < 100) + completions.append(key + ": " + v); + } + return completions; +} diff --git a/src/ProductsView.cpp b/src/ProductsView.cpp new file mode 100644 index 0000000..db72c2d --- /dev/null +++ b/src/ProductsView.cpp @@ -0,0 +1,86 @@ +/*------------------------------------------------------------------------------ +-- This file is a part of the SciQLop Software +-- Copyright (C) 2024, Plasma Physics Laboratory - CNRS +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +-------------------------------------------------------------------------------*/ +/*-- Author : Alexis Jeandet +-- Mail : alexis.jeandet@member.fsf.org +----------------------------------------------------------------------------*/ +#include "SciQLopPlots/Products/ProductsView.hpp" +#include "SciQLopPlots/Products/ProductsModel.hpp" +#include +#include +#include +#include +#include +#include +#include + +#include + +void ProductsView::update_filter() +{ + m_proxy_model->setFilterRegularExpression( + QRegularExpression(".*" + QRegularExpression::escape(m_search_line_edit->text()) + ".*")); +} + +ProductsView::ProductsView(QWidget* parent) +{ + this->setWindowTitle("Products"); + auto layout = new QVBoxLayout(this); + m_search_timer = new QTimer(this); + m_search_timer->setSingleShot(true); + m_search_timer->setInterval(500); + connect(m_search_timer, &QTimer::timeout, this, &ProductsView::update_filter); + + m_search_line_edit = new QLineEdit(this); + m_search_line_edit->setClearButtonEnabled(true); + m_search_line_edit->setPlaceholderText("Search..."); + m_search_line_edit->addAction(QIcon(":/icons/theme/search.png"), QLineEdit::LeadingPosition); + m_completer = new QCompleter(this); + m_completer->setModel(ProductsModel::instance()->completer_model()); + m_completer->setCaseSensitivity(Qt::CaseInsensitive); + m_completer->setFilterMode(Qt::MatchContains); + m_completer->setCompletionMode(QCompleter::PopupCompletion); + m_completer->setModelSorting(QCompleter::CaseInsensitivelySortedModel); + m_search_line_edit->setCompleter(m_completer); + layout->addWidget(m_search_line_edit); + + m_proxy_model = new QSortFilterProxyModel(this); + m_proxy_model->setSourceModel(ProductsModel::instance()); + m_proxy_model->setFilterCaseSensitivity(Qt::CaseInsensitive); + m_proxy_model->setFilterKeyColumn(0); + m_proxy_model->setFilterRole(PRODUCT_FILTER_ROLE); + m_proxy_model->setSortCaseSensitivity(Qt::CaseInsensitive); + m_proxy_model->setRecursiveFilteringEnabled(true); + m_proxy_model->setDynamicSortFilter(true); + + connect(m_search_line_edit, &QLineEdit::textChanged, this, + [this]() { m_search_timer->start(); }); + + + m_tree_view = new QTreeView(this); + m_tree_view->setModel(m_proxy_model); + m_tree_view->setHeaderHidden(true); + m_tree_view->setSelectionBehavior(QAbstractItemView::SelectRows); + m_tree_view->setSelectionMode(QAbstractItemView::SingleSelection); + m_tree_view->setEditTriggers(QAbstractItemView::NoEditTriggers); + m_tree_view->setRootIsDecorated(true); + m_tree_view->setAlternatingRowColors(true); + m_tree_view->setDragEnabled(true); + layout->addWidget(m_tree_view); + this->setLayout(layout); +} diff --git a/src/Profiling.cpp b/src/Profiling.cpp new file mode 100644 index 0000000..e3053e9 --- /dev/null +++ b/src/Profiling.cpp @@ -0,0 +1,41 @@ +/*------------------------------------------------------------------------------ +-- This file is a part of the SciQLop Software +-- Copyright (C) 2024, Plasma Physics Laboratory - CNRS +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +-------------------------------------------------------------------------------*/ +/*-- Author : Alexis Jeandet +-- Mail : alexis.jeandet@member.fsf.org +----------------------------------------------------------------------------*/ +#include "SciQLopPlots/Profiling.hpp" + +#ifdef TRACY_ENABLE +#ifdef PROFILE_MEMORY +#include + +void* operator new(std::size_t n) +{ + void* ptr = malloc(n); + TracyAlloc(ptr, n); + return ptr; +} + +void operator delete(void* ptr) noexcept +{ + TracyFree(ptr); + free(ptr); +} +#endif +#endif diff --git a/src/PropertiesPanel.cpp b/src/PropertiesPanel.cpp new file mode 100644 index 0000000..227a40e --- /dev/null +++ b/src/PropertiesPanel.cpp @@ -0,0 +1,41 @@ +/*------------------------------------------------------------------------------ +-- This file is a part of the SciQLop Software +-- Copyright (C) 2024, Plasma Physics Laboratory - CNRS +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +-------------------------------------------------------------------------------*/ +/*-- Author : Alexis Jeandet +-- Mail : alexis.jeandet@member.fsf.org +----------------------------------------------------------------------------*/ +#include "SciQLopPlots/Inspector/View/PropertiesPanel.hpp" +#include "SciQLopPlots/Inspector/View/InspectorView.hpp" +#include "SciQLopPlots/Inspector/View/PropertiesView.hpp" +#include +#include + +PropertiesPanel::PropertiesPanel(QWidget* parent) +{ + this->setWindowTitle("Properties"); + auto splitter = new QSplitter(Qt::Vertical, this); + splitter->setChildrenCollapsible(false); + setLayout(new QVBoxLayout(this)); + layout()->addWidget(splitter); + m_inspectorView = new InspectorView(this); + m_propertiesView = new PropertiesView(this); + splitter->addWidget(m_inspectorView); + splitter->addWidget(m_propertiesView); + connect(m_inspectorView, &InspectorView::objects_selected, m_propertiesView, + &PropertiesView::set_current_objects); +} diff --git a/src/PropertiesView.cpp b/src/PropertiesView.cpp new file mode 100644 index 0000000..455015d --- /dev/null +++ b/src/PropertiesView.cpp @@ -0,0 +1,49 @@ +/*------------------------------------------------------------------------------ +-- This file is a part of the SciQLop Software +-- Copyright (C) 2024, Plasma Physics Laboratory - CNRS +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +-------------------------------------------------------------------------------*/ +/*-- Author : Alexis Jeandet +-- Mail : alexis.jeandet@member.fsf.org +----------------------------------------------------------------------------*/ +#include "SciQLopPlots/Inspector/View/PropertiesView.hpp" +#include "SciQLopPlots/Inspector/PropertyDelegateBase.hpp" +#include "SciQLopPlots/Inspector/PropertyDelegates.hpp" +#include + +void PropertiesView::set_current_objects(const QList& objects) +{ + if (m_delegateWidget) + { + delete m_delegateWidget; + m_delegateWidget = nullptr; + } + if (!objects.isEmpty()) + { + auto first = objects.first(); + auto delegate = PropertyDelegates::delegate(first, this); + if (delegate) + { + m_delegateWidget = delegate; + this->layout()->addWidget(m_delegateWidget); + } + } +} + +PropertiesView::PropertiesView(QWidget* parent) +{ + this->setLayout(new QVBoxLayout(this)); +} diff --git a/src/PropertyDelegateBase.cpp b/src/PropertyDelegateBase.cpp new file mode 100644 index 0000000..5c19a46 --- /dev/null +++ b/src/PropertyDelegateBase.cpp @@ -0,0 +1,22 @@ +/*------------------------------------------------------------------------------ +-- This file is a part of the SciQLop Software +-- Copyright (C) 2024, Plasma Physics Laboratory - CNRS +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +-------------------------------------------------------------------------------*/ +/*-- Author : Alexis Jeandet +-- Mail : alexis.jeandet@member.fsf.org +----------------------------------------------------------------------------*/ +#include "SciQLopPlots/Inspector/PropertyDelegateBase.hpp" diff --git a/src/PythonInterface.cpp b/src/PythonInterface.cpp index c0a374a..efafa50 100644 --- a/src/PythonInterface.cpp +++ b/src/PythonInterface.cpp @@ -58,11 +58,12 @@ extern "C" #define SKIP_PYTHON_INTERFACE_CPP #include "SciQLopPlots/Python/PythonInterface.hpp" - struct PyAutoScopedGIL { PyGILState_STATE gstate; + PyAutoScopedGIL() { gstate = PyGILState_Ensure(); } + ~PyAutoScopedGIL() { PyGILState_Release(gstate); } }; @@ -77,7 +78,6 @@ inline void _inc_ref(PyObject* obj) PyGILState_Release(state); } - inline void _dec_ref(PyObject* obj) { auto scoped_gil = PyAutoScopedGIL(); @@ -99,16 +99,21 @@ struct PyObjectWrapper { private: std::shared_ptr _py_obj = nullptr; + inline void share(const PyObjectWrapper& other) { this->_py_obj = other._py_obj; } public: inline PyObjectWrapper() : _py_obj { nullptr } { } + inline PyObjectWrapper(const PyObjectWrapper& other) : _py_obj { nullptr } { this->share(other); } + inline PyObjectWrapper(PyObjectWrapper&& other) : _py_obj { nullptr } { this->share(other); } + explicit PyObjectWrapper(PyObject* obj) : _py_obj { nullptr } { this->set_obj(obj); } + ~PyObjectWrapper() { } inline PyObjectWrapper& operator=(PyObjectWrapper&& other) @@ -116,6 +121,7 @@ struct PyObjectWrapper this->share(other); return *this; } + inline PyObjectWrapper& operator=(const PyObjectWrapper& other) { this->share(other); @@ -131,12 +137,11 @@ struct PyObjectWrapper } } - inline PyObject* py_object() const { return _py_obj.get(); } + inline bool is_null() const { return _py_obj == nullptr; } }; - struct _PyBuffer_impl : PyObjectWrapper { Py_buffer buffer = { 0 }; @@ -146,7 +151,9 @@ struct _PyBuffer_impl : PyObjectWrapper bool is_row_major = true; _PyBuffer_impl() = default; + explicit _PyBuffer_impl(PyObject* obj) { this->init_buffer(obj); } + ~_PyBuffer_impl() { this->release(); } inline void init_buffer(PyObject* obj) @@ -155,7 +162,8 @@ struct _PyBuffer_impl : PyObjectWrapper { auto scoped_gil = PyAutoScopedGIL(); this->is_valid = PyObject_GetBuffer(obj, &this->buffer, - PyBUF_SIMPLE | PyBUF_READ | PyBUF_ANY_CONTIGUOUS | PyBUF_FORMAT) + PyBUF_SIMPLE | PyBUF_READ | PyBUF_ANY_CONTIGUOUS + | PyBUF_FORMAT) == 0; } if (!this->is_valid) @@ -187,7 +195,6 @@ struct _PyBuffer_impl : PyObjectWrapper } }; - void PyBuffer::share(const PyBuffer& other) { this->_impl = other._impl; @@ -250,11 +257,12 @@ std::size_t PyBuffer::ndim() const return 0; } -std::size_t PyBuffer::size(std::size_t index) +std::size_t PyBuffer::size(std::size_t index) const { if (is_valid()) { - if (static_cast(index) < std::size(this->_impl->shape)) + if (static_cast_impl->shape))>(index) + < std::size(this->_impl->shape)) { return this->_impl->shape[index]; } @@ -297,7 +305,6 @@ PyObject* PyBuffer::py_object() const return nullptr; } - void PyBuffer::release() { } std::size_t PyBuffer::flat_size() const @@ -309,7 +316,6 @@ std::size_t PyBuffer::flat_size() const return 0; } - struct _GetDataPyCallable_impl { PyObjectWrapper _py_obj; @@ -318,6 +324,7 @@ struct _GetDataPyCallable_impl _GetDataPyCallable_impl() = default; _GetDataPyCallable_impl(const _GetDataPyCallable_impl&) = default; _GetDataPyCallable_impl(_GetDataPyCallable_impl&&) = default; + _GetDataPyCallable_impl(PyObject* obj) { this->_init_callable(obj); } ~_GetDataPyCallable_impl() { } @@ -325,7 +332,6 @@ struct _GetDataPyCallable_impl _GetDataPyCallable_impl& operator=(const _GetDataPyCallable_impl&) = default; _GetDataPyCallable_impl& operator=(_GetDataPyCallable_impl&&) = default; - inline void _init_callable(PyObject* obj) { this->_py_obj.set_obj(obj); @@ -445,7 +451,6 @@ struct _GetDataPyCallable_impl } }; - void GetDataPyCallable::steal(GetDataPyCallable& other) { if (is_valid()) @@ -484,7 +489,6 @@ GetDataPyCallable::GetDataPyCallable(GetDataPyCallable&& other) steal(other); } - GetDataPyCallable& GetDataPyCallable::operator=(const GetDataPyCallable& other) { if (this != &other) diff --git a/src/QCPAbstractPlottableWrapper.cpp b/src/QCPAbstractPlottableWrapper.cpp index 891fe4a..2065cea 100644 --- a/src/QCPAbstractPlottableWrapper.cpp +++ b/src/QCPAbstractPlottableWrapper.cpp @@ -22,29 +22,30 @@ #include "SciQLopPlots/Plotables/QCPAbstractPlottableWrapper.hpp" -void SQPQCPAbstractPlottableWrapper::_register_plottable(QCPAbstractPlottable* plottable) +void SQPQCPAbstractPlottableWrapper::_register_component(SciQLopGraphComponent* component) { - connect(plottable, &QCPAbstractPlottable::destroyed, this, - [this, plottable]() { m_plottables.removeOne(plottable); }); - m_plottables.append(plottable); + m_components.append(component); + connect(component, &SciQLopGraphComponent::replot, this, + &SQPQCPAbstractPlottableWrapper::replot); + Q_EMIT this->component_list_changed(); } void SQPQCPAbstractPlottableWrapper::set_visible(bool visible) noexcept { - for (auto plottable : m_plottables) + for (auto plottable : m_components) { - plottable->setVisible(visible); + plottable->set_visible(visible); } Q_EMIT visible_changed(visible); } void SQPQCPAbstractPlottableWrapper::set_labels(const QStringList& labels) { - if (std::size(labels) == std::size(m_plottables)) + if (std::size(labels) == std::size(m_components)) { - for (std::size_t i = 0; i < std::size(m_plottables); ++i) + for (decltype(std::size(m_components)) i = 0UL; i < std::size(m_components); ++i) { - m_plottables[i]->setName(labels[i]); + m_components[i]->set_name(labels[i]); } Q_EMIT labels_changed(labels); } @@ -56,13 +57,11 @@ void SQPQCPAbstractPlottableWrapper::set_labels(const QStringList& labels) void SQPQCPAbstractPlottableWrapper::set_colors(const QList& colors) { - if (std::size(colors) == std::size(m_plottables)) + if (std::size(colors) == std::size(m_components)) { - for (std::size_t i = 0; i < std::size(m_plottables); ++i) + for (decltype(std::size(m_components)) i = 0; i < std::size(m_components); ++i) { - auto pen = m_plottables[i]->pen(); - pen.setColor(colors[i]); - m_plottables[i]->setPen(pen); + m_components[i]->set_color(colors[i]); } Q_EMIT colors_changed(colors); } @@ -74,17 +73,47 @@ void SQPQCPAbstractPlottableWrapper::set_colors(const QList& colors) bool SQPQCPAbstractPlottableWrapper::visible() const noexcept { - if (std::empty(m_plottables)) - return false; - return m_plottables[0]->visible(); + // True if at least one plottable is visible + for (const auto& plottable : m_components) + { + if (plottable->visible()) + return true; + } + return false; } QStringList SQPQCPAbstractPlottableWrapper::labels() const noexcept { QStringList labels; - for (const auto plottable : m_plottables) + for (const auto& plottable : m_components) { labels.append(plottable->name()); } return labels; } + +void SQPQCPAbstractPlottableWrapper::set_selected(bool selected) noexcept +{ + bool changed = false; + for (auto plottable : m_components) + { + if (plottable->selected() != selected) + { + plottable->set_selected(selected); + changed = true; + } + } + if (changed) + Q_EMIT selection_changed(selected); +} + +bool SQPQCPAbstractPlottableWrapper::selected() const noexcept +{ + // True if at least one plottable is selected + for (const auto& plottable : m_components) + { + if (plottable->selected()) + return true; + } + return false; +} diff --git a/src/SciQLopColorMap.cpp b/src/SciQLopColorMap.cpp index aab6239..f119e43 100644 --- a/src/SciQLopColorMap.cpp +++ b/src/SciQLopColorMap.cpp @@ -21,7 +21,7 @@ ----------------------------------------------------------------------------*/ #include "SciQLopPlots/Plotables/SciQLopColorMap.hpp" -#include "SciQLopPlots/Plotables/SciQLopColorMapResampler.hpp" +#include "SciQLopPlots/Plotables/Resamplers/SciQLopColorMapResampler.hpp" #include void SciQLopColorMap::_cmap_got_destroyed() @@ -29,18 +29,29 @@ void SciQLopColorMap::_cmap_got_destroyed() this->_cmap = nullptr; } -SciQLopColorMap::SciQLopColorMap(QCustomPlot* parent, QCPAxis* keyAxis, QCPAxis* valueAxis, - const QString& name, ::DataOrder dataOrder) - : SQPQCPAbstractPlottableWrapper(parent) +void SciQLopColorMap::_setGraphData(QCPColorMapData* data) +{ + if (this->_cmap) + { + this->_cmap->setData(data, false); + Q_EMIT this->replot(); + this->_icon_update_timer->start(); + } +} + +SciQLopColorMap::SciQLopColorMap(QCustomPlot* parent, SciQLopPlotAxis* keyAxis, + SciQLopPlotAxis* valueAxis, const QString& name) + : SciQLopColorMapInterface(parent) , _icon_update_timer { new QTimer(this) } , _keyAxis { keyAxis } , _valueAxis { valueAxis } - , _dataOrder { dataOrder } { - this->_cmap = this->newPlottable(keyAxis, valueAxis, name); + this->_cmap = new QCPColorMap(this->_keyAxis->qcp_axis(), this->_valueAxis->qcp_axis()); connect(this->_cmap, &QCPColorMap::destroyed, this, &SciQLopColorMap::_cmap_got_destroyed); + this->set_gradient(ColorGradient::Jet); + this->set_name(name); - this->_resampler = new ColormapResampler(_valueAxis->scaleType()); + this->_resampler = new ColormapResampler(_valueAxis->qcp_axis()->scaleType()); this->_resampler_thread = new QThread(); this->_resampler->moveToThread(this->_resampler_thread); this->_resampler_thread->start(QThread::LowPriority); @@ -49,21 +60,18 @@ SciQLopColorMap::SciQLopColorMap(QCustomPlot* parent, QCPAxis* keyAxis, QCPAxis* connect( this->_icon_update_timer, &QTimer::timeout, this->_cmap, [this]() { this->_cmap->updateLegendIcon(); }, Qt::QueuedConnection); - connect( - this->_resampler, &ColormapResampler::refreshPlot, this, - [this](QCPColorMapData* data) - { - this->colorMap()->setData(data, false); - if (this->_auto_scale_y) - { - this->_valueAxis->rescale(true); - } - this->_plot()->replot(QCustomPlot::rpQueuedReplot); - this->_icon_update_timer->start(); - }, - Qt::QueuedConnection); + connect(this->_valueAxis->qcp_axis(), &QCPAxis::scaleTypeChanged, this->_resampler, + &ColormapResampler::setScaleType, Qt::DirectConnection); + connect(this->_resampler, &ColormapResampler::setGraphData, this, + &SciQLopColorMap::_setGraphData, Qt::QueuedConnection); this->colorMap()->updateLegendIcon(); this->colorMap()->setLayer(parent->layer("background")); + + if (auto legend_item = _legend_item(); legend_item) + { + connect(legend_item, &QCPAbstractLegendItem::selectionChanged, this, + &SciQLopColorMap::set_selected); + } } SciQLopColorMap::~SciQLopColorMap() @@ -72,19 +80,24 @@ SciQLopColorMap::~SciQLopColorMap() this->_plot()->removePlottable(this->colorMap()); connect(this->_resampler_thread, &QThread::finished, this->_resampler, &QThread::deleteLater); - disconnect(this->_resampler, &ColormapResampler::refreshPlot, nullptr, nullptr); this->_resampler_thread->quit(); this->_resampler_thread->wait(); delete this->_resampler_thread; this->_resampler = nullptr; this->_resampler_thread = nullptr; + + if (auto legend_item = _legend_item(); legend_item) + { + connect(legend_item, &QCPAbstractLegendItem::selectionChanged, this, + &SciQLopColorMap::set_selected); + } } void SciQLopColorMap::set_data(PyBuffer x, PyBuffer y, PyBuffer z) { if (this->_cmap) { - this->_resampler->setData(x, y, z, _valueAxis->scaleType()); + this->_resampler->setData(x, y, z); } Q_EMIT data_changed(x, y, z); } @@ -94,3 +107,60 @@ void SciQLopColorMap::set_auto_scale_y(bool auto_scale_y) _auto_scale_y = auto_scale_y; Q_EMIT auto_scale_y_changed(auto_scale_y); } + +void SciQLopColorMap::set_selected(bool selected) noexcept +{ + if (_selected != selected) + { + _selected = selected; + auto legend_item = _legend_item(); + if (legend_item && legend_item->selected() != selected) + legend_item->setSelected(selected); + emit selection_changed(selected); + } +} + +bool SciQLopColorMap::selected() const noexcept +{ + return _selected; +} + +void SciQLopColorMap::set_x_axis(SciQLopPlotAxisInterface* axis) noexcept +{ + if (auto qcp_axis = dynamic_cast(axis)) + { + this->_keyAxis = qcp_axis; + this->_cmap->setKeyAxis(this->_keyAxis->qcp_axis()); + } +} + +void SciQLopColorMap::set_y_axis(SciQLopPlotAxisInterface* axis) noexcept +{ + if (auto qcp_axis = dynamic_cast(axis)) + { + this->_valueAxis = qcp_axis; + this->_cmap->setValueAxis(this->_valueAxis->qcp_axis()); + } +} + +SciQLopColorMapFunction::SciQLopColorMapFunction(QCustomPlot* parent, SciQLopPlotAxis* key_axis, + SciQLopPlotAxis* value_axis, + GetDataPyCallable&& callable, const QString& name) + : SciQLopColorMap(parent, key_axis, value_axis, name) +{ + m_pipeline = new SimplePyCallablePipeline(std::move(callable), this); + connect(m_pipeline, &SimplePyCallablePipeline::new_data_3d, this, + &SciQLopColorMapFunction::_set_data); + connect(this, &SciQLopColorMap::range_changed, m_pipeline, + &SimplePyCallablePipeline::set_range); +} + +void SciQLopColorMapFunction::set_data(PyBuffer x, PyBuffer y, PyBuffer z) +{ + m_pipeline->set_data(x, y, z); +} + +void SciQLopColorMapFunction::set_data(PyBuffer x, PyBuffer y) +{ + m_pipeline->set_data(x, y); +} diff --git a/src/SciQLopColorMapDelegate.cpp b/src/SciQLopColorMapDelegate.cpp new file mode 100644 index 0000000..08e68bf --- /dev/null +++ b/src/SciQLopColorMapDelegate.cpp @@ -0,0 +1,42 @@ +/*------------------------------------------------------------------------------ +-- This file is a part of the SciQLop Software +-- Copyright (C) 2024, Plasma Physics Laboratory - CNRS +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +-------------------------------------------------------------------------------*/ + +/*-- Author : Alexis Jeandet +-- Mail : alexis.jeandet@member.fsf.org +----------------------------------------------------------------------------*/ +#include "SciQLopPlots/Inspector/PropertiesDelegates/SciQLopColorMapDelegate.hpp" +#include "SciQLopPlots/Inspector/PropertiesDelegates/Delegates/ColorGradientDelegate.hpp" +#include "SciQLopPlots/Inspector/PropertyDelegates.hpp" +#include "SciQLopPlots/Plotables/SciQLopColorMap.hpp" + +REGISTER_DELEGATE(SciQLopColorMapDelegate); + +SciQLopColorMap* SciQLopColorMapDelegate::colorMap() const +{ + return as_type(m_object); +} + +SciQLopColorMapDelegate::SciQLopColorMapDelegate(SciQLopColorMap* object, QWidget* parent) + : PropertyDelegateBase(object, parent) +{ + ColorGradientDelegate* gradient = new ColorGradientDelegate(colorMap()->gradient(), this); + m_layout->addWidget(gradient); + connect(gradient, &ColorGradientDelegate::gradientChanged, this, + [this](ColorGradient gradient) { colorMap()->set_gradient(gradient); }); +} diff --git a/src/SciQLopColorMapInspector.cpp b/src/SciQLopColorMapInspector.cpp new file mode 100644 index 0000000..dd129d6 --- /dev/null +++ b/src/SciQLopColorMapInspector.cpp @@ -0,0 +1,60 @@ +/*------------------------------------------------------------------------------ +-- This file is a part of the SciQLop Software +-- Copyright (C) 2024, Plasma Physics Laboratory - CNRS +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +-------------------------------------------------------------------------------*/ + +/*-- Author : Alexis Jeandet +-- Mail : alexis.jeandet@member.fsf.org +----------------------------------------------------------------------------*/ +#include "SciQLopPlots/Inspector/Inspectors/SciQLopColorMapInspector.hpp" +#include "SciQLopPlots/Inspector/Inspectors.hpp" +#include "SciQLopPlots/Inspector/Model/Node.hpp" +#include "SciQLopPlots/Plotables/SciQLopColorMap.hpp" + + +REGISTER_INSPECTOR(SciQLopColorMapInspector); + +QList SciQLopColorMapInspector::children(QObject* obj) +{ + Q_UNUSED(obj); + return {}; +} + +QObject* SciQLopColorMapInspector::child(const QString& name, QObject* obj) +{ + Q_UNUSED(name); + Q_UNUSED(obj); + return nullptr; +} + +void SciQLopColorMapInspector::connect_node(PlotsModelNode* node, QObject* const obj) +{ + InspectorBase::connect_node(node, obj); + if (auto cmap = _colormap(obj); cmap) + { + connect(cmap, &SciQLopColorMap::selection_changed, node, &PlotsModelNode::set_selected); + } +} + +void SciQLopColorMapInspector::set_selected(QObject* obj, bool selected) +{ + auto colormap = _colormap(obj); + if (colormap) + { + colormap->set_selected(selected); + } +} diff --git a/src/SciQLopColorMapResampler.cpp b/src/SciQLopColorMapResampler.cpp index 6f40e3d..3122e2a 100644 --- a/src/SciQLopColorMapResampler.cpp +++ b/src/SciQLopColorMapResampler.cpp @@ -20,118 +20,235 @@ -- Mail : alexis.jeandet@member.fsf.org ----------------------------------------------------------------------------*/ -#include "SciQLopPlots/Plotables/SciQLopColorMapResampler.hpp" +#include "SciQLopPlots/Plotables/Resamplers/SciQLopColorMapResampler.hpp" #include +#include +#include "SciQLopPlots/Profiling.hpp" -std::vector ColormapResampler::_optimal_y_scale( - const PyBuffer& x, const PyBuffer& y, QCPAxis::ScaleType scale_type) +inline std::vector _generate_range(double start, double end, std::size_t n, + bool log = false) { - using namespace cpp_utils; - std::vector new_y(this->_max_y_size); - auto y_min = *containers::min(y); - auto y_max = *containers::max(y); + std::vector range(n); + if (log) + { + auto step = std::log10((end - start)) / n; + std::generate(std::begin(range), std::end(range), + [start, step, i = 0]() mutable { return start * std::pow(10, i++ * step); }); + } + else + { + auto step = (end - start) / n; + std::generate(std::begin(range), std::end(range), + [start, step, i = 0]() mutable { return start + i++ * step; }); + } + return range; +} - if (scale_type == QCPAxis::ScaleType::stLinear) +inline double _nan_safe_min(const double a, const double b) +{ + if (std::isnan(a)) { - std::generate(std::begin(new_y), std::end(new_y), - [start = y_min, step = (y_max - y_min) / this->_max_y_size, i = 0]() mutable - { - i++; - return start + i * step; - }); + return b; } - else if (scale_type == QCPAxis::ScaleType::stLogarithmic) + if (std::isnan(b)) { - std::generate(std::begin(new_y), std::end(new_y), - [start = y_min, step = (y_max - y_min) / this->_max_y_size, i = 0]() mutable - { - i++; - return start * std::pow(10, i * step); - }); + return a; } - return new_y; + return std::min(a, b); } -QCPColorMapData* ColormapResampler::_setDataLinear( - const PyBuffer& x, const PyBuffer& y, const PyBuffer& z) +inline double _nan_safe_max(const double a, const double b) { + if (std::isnan(a)) + { + return b; + } + if (std::isnan(b)) + { + return a; + } + return std::max(a, b); +} - using namespace cpp_utils; - auto data = new QCPColorMapData(std::size(x), std::size(y), - { *containers::min(x), *containers::max(x) }, { *containers::min(y), *containers::max(y) }); - auto it = std::cbegin(z); - for (const auto i : x) +inline std::pair _y_bounds(const XYZView& v, std::size_t row, std::size_t n_cols, + double min = std::nan(""), double max = std::nan("")) +{ { - for (const auto j : y) + auto j = 0UL; + auto val = v.y(row, j); + while (std::isnan(val) && j < n_cols) { - if (it != std::cend(z)) - { - data->setData(i, j, *it); - it++; - } + j++; + val = v.y(row, j); + } + min = _nan_safe_min(val, min); + } + { + auto j = n_cols - 1; + auto val = v.y(row, j); + while (std::isnan(val) && j > 0) + { + j--; + val = v.y(row, j); } + max = _nan_safe_max(val, max); } - return data; + + return { min, max }; } -QCPColorMapData* ColormapResampler::_setDataLog( - const PyBuffer& x, const PyBuffer& y, const PyBuffer& z) +inline std::pair _y_bounds(const XYZView& v) { using namespace cpp_utils; - auto data = new QCPColorMapData(std::size(x), std::size(y), - { *containers::min(x), *containers::max(x) }, { *containers::min(y), *containers::max(y) }); - auto it = std::cbegin(z); - for (auto i = 0UL; i < std::size(x); i++) + auto shape = v.y_shape(); + if (!v.y_is_2d()) { - for (auto j = 0UL; j < std::size(y); j++) + return _y_bounds(v, 0, shape.second); + } + else + { + auto bounds = std::pair { std::nan(""), std::nan("") }; + for (auto i = 0UL; i < shape.first; i++) { - if (it != std::cend(z)) - { - data->setCell(i, j, *it); - it++; - } + bounds = _y_bounds(v, i, shape.second, bounds.first, bounds.second); } + return bounds; } - return data; } -void ColormapResampler::_resample_slot(const QCPRange& newRange) +template +inline void _divide(QCPColorMapData* data, const T& avg_count, const std::size_t n_x, + const std::size_t n_y) { + PROFILE_HERE; + for (auto i = 0UL; i < n_x; i++) { - QMutexLocker lock { &_range_mutex }; - if (this->_data_x_range != newRange) - return; - } - _mutex.lock(); - auto x = std::move(_x); - auto y = std::move(_y); - auto z = std::move(_z); - _mutex.unlock(); - if (std::size(x) && std::size(y) && std::size(z)) - { - if (this->_scale_type == QCPAxis::stLinear) + for (auto j = 0UL; j < n_y; j++) { - emit this->refreshPlot(this->_setDataLinear(x, y, z)); + auto count = avg_count[i * n_y + j]; + if (count != 0) + { + data->setCell(i, j, data->cell(i, j) / count); + } + else + { + data->setCell(i, j, std::nan("")); + } } - else + } +} + +template +inline void _average_value(const XYZView& view, QCPColorMapData* data, T& avg_count, + std::size_t x_src_idx, std::size_t x_dest_idx, std::size_t y_src_idx, + std::size_t y_dest_idx, std::size_t n_y) +{ + auto z_val = view.z(x_src_idx, y_src_idx); + data->setCell(x_dest_idx, y_dest_idx, data->cell(x_dest_idx, y_dest_idx) + z_val); + avg_count[x_dest_idx * n_y + y_dest_idx] += 1; +} + +template +inline void _y_loop(const XYZView& view, QCPColorMapData* data, const T& y_axis, T& avg_count, + std::size_t x_src_idx, std::size_t x_dest_idx) +{ + auto n_y = std::size(y_axis); + auto y_dest_idx = 0UL; + for (auto y_src_idx = 0UL; y_src_idx < view.z_shape().second; y_src_idx++) + { + auto y_val = view.y(x_src_idx, y_src_idx); + while (y_dest_idx < (n_y - 1) && y_val > y_axis[y_dest_idx]) { - emit this->refreshPlot(this->_setDataLog(x, y, z)); + if (y_src_idx > 0 && y_src_idx != view.z_shape().second - 1) + _average_value(view, data, avg_count, x_src_idx, x_dest_idx, y_src_idx - 1, + y_dest_idx, n_y); + y_dest_idx++; } + _average_value(view, data, avg_count, x_src_idx, x_dest_idx, y_src_idx, y_dest_idx, n_y); } - else +} + +template +inline void _x_loop(const XYZView& view, QCPColorMapData* data, const T& x_axis, const T& y_axis, + T& avg_count) +{ + PROFILE_HERE; + const auto n_x = std::size(x_axis); + const auto view_size = std::size(view); + auto x_dest_idx = 0UL; + auto x_val = view.x(0); + auto dx = view.x(1) - x_val; + auto prev_x_val = x_val - dx; + auto prev_dx = dx; + for (auto x_src_idx = 0UL; x_src_idx < view_size; x_src_idx++) { - emit this->refreshPlot(new QCPColorMapData(0, 0, { 0., 0. }, { 0., 0. })); + x_val = view.x(x_src_idx); + dx = x_val - prev_x_val; + while (x_dest_idx < (n_x - 1) && x_val > x_axis[x_dest_idx]) + { + if (x_src_idx < std::size(view) - 1) + { + auto next_dx = view.x(x_src_idx + 1) - x_val; + if (((next_dx < (1.5 * dx)) && (dx < 1.5 * prev_dx)) + || dx == 0.) // data gap criterion (50%) increase in dx + { + _y_loop(view, data, y_axis, avg_count, x_src_idx, x_dest_idx); + } + } + x_dest_idx++; + } + _y_loop(view, data, y_axis, avg_count, x_src_idx, x_dest_idx); + prev_x_val = x_val; + prev_dx = dx; } } -ColormapResampler::ColormapResampler(QCPAxis::ScaleType scale_type) : _scale_type { scale_type } +template +inline void _copy_and_average(const XYZView& view, QCPColorMapData* data, const T& x_axis, + const T& y_axis) +{ + PROFILE_HERE; + auto n_x = std::size(x_axis); + auto n_y = std::size(y_axis); + std::vector avg_count(n_x * n_y, 0); + _x_loop(view, data, x_axis, y_axis, avg_count); + _divide(data, avg_count, n_x, n_y); +} + +auto _generate_axes(const XYZView& view, std::size_t max_x_size, std::size_t max_y_size, bool log) { - connect(this, &ColormapResampler::_resample_sig, this, &ColormapResampler::_resample_slot, - Qt::QueuedConnection); + auto y_bounds = _y_bounds(view); + auto x_bounds = std::pair { view.x(0), view.x(std::size(view) - 1) }; + auto n_y = std::min(max_y_size, view.y_shape().second * 2); + auto n_x = std::min(max_x_size, std::size(view) * 2); + auto x_axis = _generate_range(x_bounds.first, x_bounds.second, n_x); + auto y_axis = _generate_range(y_bounds.first, y_bounds.second, n_y, log); + return std::pair { x_axis, y_axis }; +} + +void ColormapResampler::_resample_impl(const PyBuffer& x, const PyBuffer& y, const PyBuffer& z, + const QCPRange new_range, bool new_data) +{ + PROFILE_HERE_N("ColormapResampler::_resample_impl"); + if (x.data() != nullptr && x.flat_size()) + { + const auto view = XYZView(x, y, z, new_range.lower, new_range.upper); + if (std::size(view) > 10) // less does not make much sense + { + auto [x_axis, y_axis] = _generate_axes(view, this->_max_x_size, this->_max_y_size, + _log_scale.loadRelaxed()); + QCPColorMapData* data = new QCPColorMapData(std::size(x_axis), std::size(y_axis), + { x_axis.front(), x_axis.back() }, + { y_axis.front(), y_axis.back() }); + _copy_and_average(view, data, x_axis, y_axis); + data->recalculateDataBounds(); + Q_EMIT setGraphData(data); + } + } } -void ColormapResampler::resample(const QCPRange& newRange) +ColormapResampler::ColormapResampler(QCPAxis::ScaleType scale_type) + : AbstractResampler2d {}, _log_scale { scale_type == QCPAxis::stLogarithmic } { - emit this->_resample_sig(newRange); } diff --git a/src/SciQLopCurve.cpp b/src/SciQLopCurve.cpp index 5fbffd0..000288d 100644 --- a/src/SciQLopCurve.cpp +++ b/src/SciQLopCurve.cpp @@ -20,7 +20,7 @@ -- Mail : alexis.jeandet@member.fsf.org ----------------------------------------------------------------------------*/ #include "SciQLopPlots/Plotables/SciQLopCurve.hpp" -#include "SciQLopPlots/Plotables/SciQLopCurveResampler.hpp" +#include "SciQLopPlots/Plotables/Resamplers/SciQLopCurveResampler.hpp" void SciQLopCurve::_range_changed(const QCPRange& newRange, const QCPRange& oldRange) { @@ -61,20 +61,23 @@ void SciQLopCurve::create_resampler(const QStringList& labels) this->_resampler->moveToThread(this->_resampler_thread); this->_resampler_thread->start(QThread::LowPriority); connect(this->_resampler, &CurveResampler::setGraphData, this, &SciQLopCurve::_setCurveData, - Qt::QueuedConnection); + Qt::QueuedConnection); } - -SciQLopCurve::SciQLopCurve( - QCustomPlot* parent, QCPAxis* keyAxis, QCPAxis* valueAxis, const QStringList& labels) - : SQPQCPAbstractPlottableWrapper(parent), _keyAxis { keyAxis }, _valueAxis { valueAxis } +SciQLopCurve::SciQLopCurve(QCustomPlot* parent, QCPAxis* keyAxis, QCPAxis* valueAxis, + const QStringList& labels) + : SQPQCPAbstractPlottableWrapper("Curve", parent) + , _keyAxis { keyAxis } + , _valueAxis { valueAxis } { create_resampler(labels); this->create_graphs(labels); } SciQLopCurve::SciQLopCurve(QCustomPlot* parent, QCPAxis* keyAxis, QCPAxis* valueAxis) - : SQPQCPAbstractPlottableWrapper(parent), _keyAxis { keyAxis }, _valueAxis { valueAxis } + : SQPQCPAbstractPlottableWrapper("Curve", parent) + , _keyAxis { keyAxis } + , _valueAxis { valueAxis } { create_resampler({}); } @@ -102,18 +105,29 @@ void SciQLopCurve::create_graphs(const QStringList& labels) clear_curves(); for (const auto& label : labels) { - this->newPlottable(_keyAxis, _valueAxis, label); + this->newComponent(_keyAxis, _valueAxis, label); } _resampler->set_line_count(plottable_count()); } SciQLopCurveFunction::SciQLopCurveFunction(QCustomPlot* parent, QCPAxis* key_axis, - QCPAxis* value_axis, GetDataPyCallable&& callable, const QStringList& labels) + QCPAxis* value_axis, GetDataPyCallable&& callable, + const QStringList& labels) : SciQLopCurve(parent, key_axis, value_axis, labels) { m_pipeline = new SimplePyCallablePipeline(std::move(callable), this); - connect( - m_pipeline, &SimplePyCallablePipeline::new_data_2d, this, &SciQLopCurveFunction::set_data); - connect( - this, &SciQLopLineGraph::range_changed, m_pipeline, &SimplePyCallablePipeline::set_range); + connect(m_pipeline, &SimplePyCallablePipeline::new_data_2d, this, + &SciQLopCurveFunction::_set_data); + connect(this, &SciQLopLineGraph::range_changed, m_pipeline, + &SimplePyCallablePipeline::set_range); +} + +void SciQLopCurveFunction::set_data(PyBuffer x, PyBuffer y) +{ + m_pipeline->set_data(x, y); +} + +void SciQLopCurveFunction::set_data(PyBuffer x, PyBuffer y, PyBuffer z) +{ + m_pipeline->set_data(x, y, z); } diff --git a/src/SciQLopCurveResampler.cpp b/src/SciQLopCurveResampler.cpp index c1cbdb4..3134919 100644 --- a/src/SciQLopCurveResampler.cpp +++ b/src/SciQLopCurveResampler.cpp @@ -19,7 +19,7 @@ /*-- Author : Alexis Jeandet -- Mail : alexis.jeandet@member.fsf.org ----------------------------------------------------------------------------*/ -#include "SciQLopPlots/Plotables/SciQLopCurveResampler.hpp" +#include "SciQLopPlots/Plotables/Resamplers/SciQLopCurveResampler.hpp" QVector curve_copy_data( const double* x, const double* y, std::size_t x_size, const int y_incr) @@ -35,7 +35,7 @@ QVector curve_copy_data( } -void CurveResampler::_resample( +void CurveResampler::_resample_impl( const PyBuffer& x, const PyBuffer& y, const QCPRange newRange, bool new_data) { if (x.data() != nullptr && x.flat_size() > 0 && new_data) diff --git a/src/SciQLopGraphComponent.cpp b/src/SciQLopGraphComponent.cpp new file mode 100644 index 0000000..13ffbe0 --- /dev/null +++ b/src/SciQLopGraphComponent.cpp @@ -0,0 +1,140 @@ +/*------------------------------------------------------------------------------ +-- This file is a part of the SciQLop Software +-- Copyright (C) 2024, Plasma Physics Laboratory - CNRS +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +-------------------------------------------------------------------------------*/ +/*-- Author : Alexis Jeandet +-- Mail : alexis.jeandet@member.fsf.org +----------------------------------------------------------------------------*/ +#include "SciQLopPlots/Plotables/SciQLopGraphComponent.hpp" + +SciQLopGraphComponent::SciQLopGraphComponent(QCPAbstractPlottable* plottable, QObject* parent) + : SciQLopGraphComponentInterface(parent), m_plottable(plottable) +{ + if (m_plottable) + { + this->setObjectName(m_plottable->name()); + if (auto legend_item = _legend_item(); legend_item) + { + connect(legend_item, &QCPAbstractLegendItem::selectionChanged, this, + &SciQLopGraphComponent::set_selected); + } + if (auto graph = qobject_cast(m_plottable); graph) + { + // Disable adaptive sampling because it does not play well with SciQLopPlots resamplers + graph->setAdaptiveSampling(false); + } + connect(plottable, QOverload::of(&QCPAbstractPlottable::selectionChanged), this, + &SciQLopGraphComponent::set_selected); + } +} + +SciQLopGraphComponent::~SciQLopGraphComponent() +{ + if (m_plottable) + { + if (QCustomPlot* plot = dynamic_cast(m_plottable->parentPlot()); + plot && plot->hasPlottable(m_plottable.data())) + { + plot->removePlottable(m_plottable.data()); + } + } +} + +void SciQLopGraphComponent::set_pen(const QPen& pen) noexcept +{ + if (m_plottable) + { + m_plottable->setPen(pen); + QPen selectionPen = pen; + selectionPen.setColor(Qt::darkGray); + selectionPen.setWidthF(pen.widthF() + 3); + m_plottable->selectionDecorator()->setPen(selectionPen); + emit replot(); + } +} + +void SciQLopGraphComponent::set_line_width(const qreal width) noexcept +{ + if (m_plottable) + { + auto pen = m_plottable->pen(); + pen.setWidthF(width); + m_plottable->setPen(pen); + emit replot(); + } +} + +void SciQLopGraphComponent::set_visible(bool visible) noexcept +{ + if (m_plottable) + { + m_plottable->setVisible(visible); + emit visible_changed(visible); + emit replot(); + } +} + +void SciQLopGraphComponent::set_name(const QString& name) noexcept +{ + this->setObjectName(name); + if (m_plottable && m_plottable->name() != name) + { + m_plottable->setName(name); + emit name_changed(name); + } +} + +void SciQLopGraphComponent::set_selected(bool selected) noexcept +{ + if (m_plottable) + { + if (m_selected != selected) + { + m_selected = selected; + std::visit(visitor { [selected](auto any) + { + if (selected) + { + any->setSelection( + QCPDataSelection(any->data()->dataRange())); + } + else + { + any->setSelection(QCPDataSelection()); + } + }, + [](std::monostate) {} }, + to_variant()); + emit selection_changed(selected); + emit replot(); + } + if (auto legend_item = _legend_item(); legend_item && legend_item->selected() != selected) + { + legend_item->setSelected(selected); + emit replot(); + } + } +} + +QColor SciQLopGraphComponent::color() const noexcept +{ + if (m_plottable) + { + return m_plottable->pen().color(); + } + return QColor(); +} diff --git a/src/SciQLopGraphComponentDelegate.cpp b/src/SciQLopGraphComponentDelegate.cpp new file mode 100644 index 0000000..6dc06bf --- /dev/null +++ b/src/SciQLopGraphComponentDelegate.cpp @@ -0,0 +1,45 @@ +/*------------------------------------------------------------------------------ +-- This file is a part of the SciQLop Software +-- Copyright (C) 2024, Plasma Physics Laboratory - CNRS +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +-------------------------------------------------------------------------------*/ +/*-- Author : Alexis Jeandet +-- Mail : alexis.jeandet@member.fsf.org +----------------------------------------------------------------------------*/ +#include "SciQLopPlots/Inspector/PropertiesDelegates/SciQLopGraphComponentDelegate.hpp" + +#include "SciQLopPlots/Inspector/PropertiesDelegates/Delegates/LineDelegate.hpp" +#include "SciQLopPlots/Inspector/PropertyDelegates.hpp" +#include "SciQLopPlots/Plotables/SciQLopGraphComponentInterface.hpp" + +REGISTER_DELEGATE(SciQLopGraphComponentDelegate); + +SciQLopGraphComponentInterface* SciQLopGraphComponentDelegate::component() const +{ + return as_type(m_object); +} + +SciQLopGraphComponentDelegate::SciQLopGraphComponentDelegate(SciQLopGraphComponentInterface* object, + QWidget* parent) + : PropertyDelegateBase(object, parent) +{ + m_lineDelegate = new LineDelegate(object->pen(), object->line_style(), this); + m_layout->addWidget(m_lineDelegate); + connect(m_lineDelegate, &LineDelegate::penChanged, object, + &SciQLopGraphComponentInterface::set_pen); + connect(m_lineDelegate, &LineDelegate::styleChanged, object, + &SciQLopGraphComponentInterface::set_line_style); +} diff --git a/src/SciQLopGraphComponentInspector.cpp b/src/SciQLopGraphComponentInspector.cpp new file mode 100644 index 0000000..b10b030 --- /dev/null +++ b/src/SciQLopGraphComponentInspector.cpp @@ -0,0 +1,63 @@ +/*------------------------------------------------------------------------------ +-- This file is a part of the SciQLop Software +-- Copyright (C) 2024, Plasma Physics Laboratory - CNRS +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +-------------------------------------------------------------------------------*/ +/*-- Author : Alexis Jeandet +-- Mail : alexis.jeandet@member.fsf.org +----------------------------------------------------------------------------*/ +#include "SciQLopPlots/Inspector/Inspectors/SciQLopGraphComponentInspector.hpp" +#include "SciQLopPlots/Inspector/Inspectors.hpp" +#include "SciQLopPlots/Inspector/Model/Node.hpp" + +REGISTER_INSPECTOR(SciQLopGraphComponentInspector) + +QList SciQLopGraphComponentInspector::children(QObject* obj) +{ + return {}; +} + +QObject* SciQLopGraphComponentInspector::child(const QString& name, QObject* obj) +{ + return nullptr; +} + +void SciQLopGraphComponentInspector::connect_node(PlotsModelNode* node, QObject* const obj) +{ + InspectorBase::connect_node(node, obj); + if (auto component = _component(obj); component) + { + connect(component, &SciQLopGraphComponentInterface::selection_changed, node, + &PlotsModelNode::set_selected); + } +} + +void SciQLopGraphComponentInspector::set_selected(QObject* obj, bool selected) +{ + if (auto component = _component(obj); component) + { + component->set_selected(selected); + } +} + +bool SciQLopGraphComponentInspector::selected(const QObject* obj) +{ + if (auto component = _component(obj); component) + { + return component->selected(); + } + return false; +} diff --git a/src/SciQLopGraphComponentInterface.cpp b/src/SciQLopGraphComponentInterface.cpp new file mode 100644 index 0000000..e69de29 diff --git a/src/SciQLopGraphDelegate.cpp b/src/SciQLopGraphDelegate.cpp new file mode 100644 index 0000000..e3e5eb7 --- /dev/null +++ b/src/SciQLopGraphDelegate.cpp @@ -0,0 +1,36 @@ +/*------------------------------------------------------------------------------ +-- This file is a part of the SciQLop Software +-- Copyright (C) 2024, Plasma Physics Laboratory - CNRS +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +-------------------------------------------------------------------------------*/ +/*-- Author : Alexis Jeandet +-- Mail : alexis.jeandet@member.fsf.org +----------------------------------------------------------------------------*/ +#include "SciQLopPlots/Inspector/PropertiesDelegates/SciQLopGraphDelegate.hpp" +#include "SciQLopPlots/Inspector/PropertyDelegates.hpp" +#include "SciQLopPlots/Plotables/SciQLopGraphInterface.hpp" + +REGISTER_DELEGATE(SciQLopGraphDelegate); + +SciQLopGraphInterface* SciQLopGraphDelegate::graph() const +{ + return as_type(m_object); +} + +SciQLopGraphDelegate::SciQLopGraphDelegate(SciQLopGraphInterface* object, QWidget* parent) + : PropertyDelegateBase(object, parent) +{ +} diff --git a/src/SciQLopGraphInterface.cpp b/src/SciQLopGraphInterface.cpp index 87e799b..99b7fdb 100644 --- a/src/SciQLopGraphInterface.cpp +++ b/src/SciQLopGraphInterface.cpp @@ -20,13 +20,16 @@ -- Mail : alexis.jeandet@member.fsf.org ----------------------------------------------------------------------------*/ #include "SciQLopPlots/Plotables/SciQLopGraphInterface.hpp" +#include "SciQLopPlots/unique_names_factory.hpp" -SciQLopGraphInterface::SciQLopGraphInterface(QObject* parent) : QObject(parent) +SciQLopGraphInterface::SciQLopGraphInterface(const QString& prefix, QObject* parent) + : SciQLopPlottableInterface(parent) { connect(this, &QObject::objectNameChanged, this, &SciQLopGraphInterface::name_changed); + setObjectName(UniqueNamesFactory::unique_name(prefix)); } -void SciQLopGraphInterface::set_range(const SciQLopPlotRange& range) +void SciQLopPlottableInterface::set_range(const SciQLopPlotRange& range) { if (m_range != range) { @@ -34,3 +37,9 @@ void SciQLopGraphInterface::set_range(const SciQLopPlotRange& range) Q_EMIT range_changed(range); } } + +SciQLopColorMapInterface::SciQLopColorMapInterface(QObject* parent) + : SciQLopPlottableInterface(parent) +{ + setObjectName(UniqueNamesFactory::unique_name("ColorMap")); +} diff --git a/src/SciQLopGraphInterfaceInspector.cpp b/src/SciQLopGraphInterfaceInspector.cpp new file mode 100644 index 0000000..64eff6c --- /dev/null +++ b/src/SciQLopGraphInterfaceInspector.cpp @@ -0,0 +1,77 @@ +/*------------------------------------------------------------------------------ +-- This file is a part of the SciQLop Software +-- Copyright (C) 2024, Plasma Physics Laboratory - CNRS +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +-------------------------------------------------------------------------------*/ +/*-- Author : Alexis Jeandet +-- Mail : alexis.jeandet@member.fsf.org +----------------------------------------------------------------------------*/ +#include "SciQLopPlots/Inspector/Inspectors/SciQLopGraphInterfaceInspector.hpp" +#include "SciQLopPlots/Inspector/Inspectors.hpp" +#include "SciQLopPlots/Inspector/Model/Node.hpp" + +REGISTER_INSPECTOR(SciQLopGraphInterfaceInspector) + +QList SciQLopGraphInterfaceInspector::children(QObject* obj) +{ + QList children; + if (auto graph = _graph(obj); graph) + { + for (auto component : graph->components()) + { + children.append(component); + } + } + return children; +} + +QObject* SciQLopGraphInterfaceInspector::child(const QString& name, QObject* obj) +{ + if (auto graph = _graph(obj); graph) + { + return graph->component(name); + } + return nullptr; +} + +void SciQLopGraphInterfaceInspector::connect_node(PlotsModelNode* node, QObject* const obj) +{ + InspectorBase::connect_node(node, obj); + if (auto graph = _graph(obj); graph) + { + connect(graph, &SciQLopGraphInterface::selection_changed, node, + &PlotsModelNode::set_selected); + connect(graph, &SciQLopGraphInterface::component_list_changed, node, + &PlotsModelNode::update_children); + } +} + +void SciQLopGraphInterfaceInspector::set_selected(QObject* obj, bool selected) +{ + if (auto graph = _graph(obj); graph != nullptr && selected != graph->selected()) + { + graph->set_selected(selected); + } +} + +bool SciQLopGraphInterfaceInspector::selected(const QObject* obj) +{ + if (auto graph = _graph(obj); graph) + { + return graph->selected(); + } + return false; +} diff --git a/src/SciQLopLineGraph.cpp b/src/SciQLopLineGraph.cpp index eaa56ea..2595ed5 100644 --- a/src/SciQLopLineGraph.cpp +++ b/src/SciQLopLineGraph.cpp @@ -20,7 +20,7 @@ -- Mail : alexis.jeandet@member.fsf.org ----------------------------------------------------------------------------*/ #include "SciQLopPlots/Plotables/SciQLopLineGraph.hpp" -#include "SciQLopPlots/Plotables/SciQLopLineGraphResampler.hpp" +#include "SciQLopPlots/Plotables/Resamplers/SciQLopLineGraphResampler.hpp" void SciQLopLineGraph::create_graphs(const QStringList& labels) { @@ -28,13 +28,11 @@ void SciQLopLineGraph::create_graphs(const QStringList& labels) clear_graphs(); for (const auto& label : labels) { - const auto graph = this->newPlottable(_keyAxis, _valueAxis, label); - graph->setAdaptiveSampling(true); + this->newComponent(_keyAxis, _valueAxis, label); } _resampler->set_line_count(plottable_count()); } - void SciQLopLineGraph::_setGraphData(QList> data) { for (std::size_t i = 0; i < plottable_count(); i++) @@ -48,9 +46,11 @@ void SciQLopLineGraph::_setGraphData(QList> data) Q_EMIT this->replot(); } -SciQLopLineGraph::SciQLopLineGraph( - QCustomPlot* parent, QCPAxis* key_axis, QCPAxis* value_axis, const QStringList& labels) - : SQPQCPAbstractPlottableWrapper(parent), _keyAxis { key_axis }, _valueAxis { value_axis } +SciQLopLineGraph::SciQLopLineGraph(QCustomPlot* parent, QCPAxis* key_axis, QCPAxis* value_axis, + const QStringList& labels) + : SQPQCPAbstractPlottableWrapper("Line", parent) + , _keyAxis { key_axis } + , _valueAxis { value_axis } { create_resampler(labels); if (!labels.isEmpty()) @@ -58,7 +58,7 @@ SciQLopLineGraph::SciQLopLineGraph( this->create_graphs(labels); } connect(key_axis, QOverload::of(&QCPAxis::rangeChanged), this->_resampler, - &LineGraphResampler::resample); + &LineGraphResampler::resample); } void SciQLopLineGraph::clear_graphs(bool graph_already_removed) @@ -70,7 +70,7 @@ void SciQLopLineGraph::clear_resampler() { connect(this->_resampler_thread, &QThread::finished, this->_resampler, &QThread::deleteLater); disconnect(this->_resampler, &LineGraphResampler::setGraphData, this, - &SciQLopLineGraph::_setGraphData); + &SciQLopLineGraph::_setGraphData); this->_resampler_thread->quit(); this->_resampler_thread->wait(); delete this->_resampler_thread; @@ -85,10 +85,9 @@ void SciQLopLineGraph::create_resampler(const QStringList& labels) this->_resampler->moveToThread(this->_resampler_thread); this->_resampler_thread->start(QThread::LowPriority); connect(this->_resampler, &LineGraphResampler::setGraphData, this, - &SciQLopLineGraph::_setGraphData, Qt::QueuedConnection); + &SciQLopLineGraph::_setGraphData, Qt::QueuedConnection); } - SciQLopLineGraph::~SciQLopLineGraph() { clear_graphs(); @@ -107,17 +106,24 @@ QList SciQLopLineGraph::data() const noexcept } SciQLopLineGraphFunction::SciQLopLineGraphFunction(QCustomPlot* parent, QCPAxis* key_axis, - QCPAxis* value_axis, GetDataPyCallable&& callable, const QStringList& labels) + QCPAxis* value_axis, + GetDataPyCallable&& callable, + const QStringList& labels) : SciQLopLineGraph(parent, key_axis, value_axis, labels) { m_pipeline = new SimplePyCallablePipeline(std::move(callable), this); connect(m_pipeline, &SimplePyCallablePipeline::new_data_2d, this, - &SciQLopLineGraphFunction::_set_data); - connect( - this, &SciQLopLineGraph::range_changed, m_pipeline, &SimplePyCallablePipeline::set_range); + &SciQLopLineGraphFunction::_set_data); + connect(this, &SciQLopLineGraph::range_changed, m_pipeline, + &SimplePyCallablePipeline::set_range); } void SciQLopLineGraphFunction::set_data(PyBuffer x, PyBuffer y) { m_pipeline->set_data(x, y); } + +void SciQLopLineGraphFunction::set_data(PyBuffer x, PyBuffer y, PyBuffer z) +{ + m_pipeline->set_data(x, y, z); +} diff --git a/src/SciQLopLineGraphResampler.cpp b/src/SciQLopLineGraphResampler.cpp index a9f123a..22c64de 100644 --- a/src/SciQLopLineGraphResampler.cpp +++ b/src/SciQLopLineGraphResampler.cpp @@ -20,42 +20,17 @@ -- Mail : alexis.jeandet@member.fsf.org ----------------------------------------------------------------------------*/ -#include "SciQLopPlots/Plotables/SciQLopLineGraphResampler.hpp" +#include "SciQLopPlots/Plotables/Resamplers/SciQLopLineGraphResampler.hpp" +#include "SciQLopPlots/Profiling.hpp" LineGraphResampler::LineGraphResampler(std::size_t line_cnt) : AbstractResampler1d { line_cnt } { } - -void AbstractResampler1d::_resample_slot() +void LineGraphResampler::_resample_impl(const PyBuffer& x, const PyBuffer& y, + const QCPRange new_range, bool new_data) { - { - QMutexLocker locker(&_data_mutex); - { - QMutexLocker locker(&_next_data_mutex); - _data = _next_data; - _next_data.new_data = false; - } - this->_resample(_data.x, _data.y, _data._plot_range, _data.new_data); - } -} -AbstractResampler1d::AbstractResampler1d(std::size_t line_cnt) : _line_cnt { line_cnt } -{ - connect(this, &AbstractResampler1d::_resample_sig, this, &AbstractResampler1d::_resample_slot, - Qt::QueuedConnection); -} - -void AbstractResampler1d::resample(const QCPRange new_range) -{ - { - QMutexLocker locker(&_next_data_mutex); - _next_data._plot_range = new_range; - } - emit _resample_sig(); -} - -void LineGraphResampler::_resample( - const PyBuffer& x, const PyBuffer& y, const QCPRange new_range, bool new_data) -{ + PROFILE_HERE_N("LineGraphResampler::_resample_impl"); + PROFILE_PASS_VALUE(x.flat_size()); if (x.data() != nullptr && x.flat_size() > 0) { const auto view = XYView(x, y, new_range.lower, new_range.upper); @@ -66,7 +41,7 @@ void LineGraphResampler::_resample( { if (std::size(view) > 10000) { - data.emplace_back(::resample<10000>(view, line_index)); + data.emplace_back(::resample(view, line_index, 10000)); } else { diff --git a/src/SciQLopMultiPlotObject.cpp b/src/SciQLopMultiPlotObject.cpp index ae440ce..bf9a613 100644 --- a/src/SciQLopMultiPlotObject.cpp +++ b/src/SciQLopMultiPlotObject.cpp @@ -30,9 +30,10 @@ void SciQLopMultiPlotObject::removeObject(SciQLopPlotInterface* plot) { } void SciQLopMultiPlotObject::replotAll() { - for (auto* plot : m_plots) + for (auto& plot : m_plots) { - plot->replot(QCustomPlot::rpQueuedReplot); + if (plot) + plot->replot(false); } } @@ -41,27 +42,27 @@ SciQLopMultiPlotObject::SciQLopMultiPlotObject(SciQLopPlotCollectionInterface* p { if (auto qobj = dynamic_cast(parent); qobj) connect(dynamic_cast(parent), - SIGNAL(plotListChanged(const QList&)), this, - SLOT(updatePlotList(const QList&))); + SIGNAL(plot_list_changed(const QList>&)), this, + SLOT(updatePlotList(const QList>&))); else throw std::runtime_error("Invalid parent type"); } SciQLopMultiPlotObject::~SciQLopMultiPlotObject() { } -void SciQLopMultiPlotObject::updatePlotList(const QList& plots) +void SciQLopMultiPlotObject::updatePlotList(const QList>& plots) { - for (auto* plot : plots) + for (auto& plot : plots) { - if (!m_plots.contains(plot)) + if (!m_plots.contains(plot) && !plot.isNull()) { m_plots.append(plot); addObject(plot); } } - for (auto* plot : m_plots) + for (auto& plot : m_plots) { - if (!plots.contains(plot)) + if (!plots.contains(plot) && !plot.isNull()) { m_plots.removeOne(plot); removeObject(plot); diff --git a/src/SciQLopMultiPlotPanel.cpp b/src/SciQLopMultiPlotPanel.cpp index 95b453a..34d4ec5 100644 --- a/src/SciQLopMultiPlotPanel.cpp +++ b/src/SciQLopMultiPlotPanel.cpp @@ -21,6 +21,12 @@ ----------------------------------------------------------------------------*/ #include "SciQLopPlots/SciQLopPlot.hpp" #include "SciQLopPlots/SciQLopTimeSeriesPlot.hpp" +#include "SciQLopPlots/unique_names_factory.hpp" + +#include "SciQLopPlots/DragNDrop/PlaceHolderManager.hpp" + +#include "SciQLopPlots/Inspector/Inspectors.hpp" +#include "SciQLopPlots/Inspector/Model/Model.hpp" #include "SciQLopPlots/MultiPlots/SciQLopMultiPlotPanel.hpp" #include "SciQLopPlots/MultiPlots/SciQLopPlotCollection.hpp" @@ -29,15 +35,18 @@ #include "SciQLopPlots/MultiPlots/VPlotsAlign.hpp" #include "SciQLopPlots/MultiPlots/XAxisSynchronizer.hpp" +#include + #include -SciQLopMultiPlotPanel::SciQLopMultiPlotPanel( - QWidget* parent, bool synchronize_x, bool synchronize_time) - : QScrollArea { nullptr } +SciQLopMultiPlotPanel::SciQLopMultiPlotPanel(QWidget* parent, bool synchronize_x, + bool synchronize_time) + : QScrollArea { nullptr }, _uuid { QUuid::createUuid() } { _container = new SciQLopPlotContainer(this); - connect(_container, &SciQLopPlotContainer::plotListChanged, this, - &SciQLopMultiPlotPanel::plotListChanged); + _place_holder_manager = new PlaceHolderManager(this); + connect(_container, &SciQLopPlotContainer::plot_list_changed, this, + &SciQLopMultiPlotPanel::plot_list_changed); setWidget(_container); this->setWidgetResizable(true); @@ -45,7 +54,14 @@ SciQLopMultiPlotPanel::SciQLopMultiPlotPanel( if (synchronize_x) ::register_behavior(_container); if (synchronize_time) + { ::register_behavior(_container); + _default_plot_type = PlotType::TimeSeries; + } + this->setAcceptDrops(true); + setObjectName(UniqueNamesFactory::unique_name("Panel")); + + PlotsModel::instance()->addTopLevelNode(this); } void SciQLopMultiPlotPanel::add_plot(SciQLopPlotInterface* plot) @@ -63,7 +79,7 @@ SciQLopPlotInterface* SciQLopMultiPlotPanel::plot_at(int index) const return _container->plot_at(index); } -const QList& SciQLopMultiPlotPanel::plots() const +QList> SciQLopMultiPlotPanel::plots() const { return _container->plots(); } @@ -93,6 +109,16 @@ int SciQLopMultiPlotPanel::index(SciQLopPlotInterface* plot) const return _container->index(plot); } +int SciQLopMultiPlotPanel::index(const QPointF& pos) const +{ + return _container->index(_container->mapFromParent(pos)); +} + +int SciQLopMultiPlotPanel::index_from_global_position(const QPointF& pos) const +{ + return _container->index(_container->mapFromGlobal(pos)); +} + int SciQLopMultiPlotPanel::indexOf(QWidget* widget) const { return _container->indexOf(widget); @@ -149,11 +175,21 @@ void SciQLopMultiPlotPanel::set_x_axis_range(const SciQLopPlotRange& range) _container->set_x_axis_range(range); } +const SciQLopPlotRange& SciQLopMultiPlotPanel::x_axis_range() const +{ + return _container->x_axis_range(); +} + void SciQLopMultiPlotPanel::set_time_axis_range(const SciQLopPlotRange& range) { _container->set_time_axis_range(range); } +const SciQLopPlotRange& SciQLopMultiPlotPanel::time_axis_range() const +{ + return _container->time_axis_range(); +} + void SciQLopMultiPlotPanel::register_behavior(SciQLopPlotCollectionBehavior* behavior) { _container->register_behavior(behavior); @@ -164,17 +200,41 @@ void SciQLopMultiPlotPanel::remove_behavior(const QString& type_name) _container->remove_behavior(type_name); } -QPair SciQLopMultiPlotPanel::plot_impl( - const PyBuffer& x, const PyBuffer& y, QStringList labels, QList colors, - PlotType plot_type, GraphType graph_type, int index) +void SciQLopMultiPlotPanel::add_accepted_mime_type(PlotDragNDropCallback* callback) +{ + _accepted_mime_types[callback->mime_type()] = callback; +} + +void SciQLopMultiPlotPanel::setSelected(bool selected) +{ + _selected = selected; + emit selectionChanged(selected); +} + +QList SciQLopMultiPlotPanel::color_palette() const noexcept +{ + return _container->color_palette(); +} + +void SciQLopMultiPlotPanel::set_color_palette(const QList& palette) noexcept +{ + _container->set_color_palette(palette); +} + +QPair +SciQLopMultiPlotPanel::plot_impl(const PyBuffer& x, const PyBuffer& y, QStringList labels, + QList colors, PlotType plot_type, GraphType graph_type, + int index) { switch (plot_type) { case ::PlotType::BasicXY: - return _plot(index, graph_type, x, y, labels, colors); + return _plot(index, graph_type, x, y, labels, + colors); break; case ::PlotType::TimeSeries: - return _plot(index, graph_type, x, y, labels, colors); + return _plot(index, graph_type, x, y, + labels, colors); break; default: break; @@ -182,18 +242,19 @@ QPair SciQLopMultiPlotPanel::plot return { nullptr, nullptr }; } -QPair SciQLopMultiPlotPanel::plot_impl( - const PyBuffer& x, const PyBuffer& y, const PyBuffer& z, QString name, bool y_log_scale, - bool z_log_scale, PlotType plot_type, int index) +QPair +SciQLopMultiPlotPanel::plot_impl(const PyBuffer& x, const PyBuffer& y, const PyBuffer& z, + QString name, bool y_log_scale, bool z_log_scale, + PlotType plot_type, int index) { switch (plot_type) { case ::PlotType::BasicXY: - return _plot( - index, GraphType::ColorMap, x, y, z, name, y_log_scale, z_log_scale); + return _plot(index, GraphType::ColorMap, x, y, z, + name, y_log_scale, z_log_scale); break; case ::PlotType::TimeSeries: - return _plot( + return _plot( index, GraphType::ColorMap, x, y, z, name, y_log_scale, z_log_scale); break; default: @@ -202,18 +263,20 @@ QPair SciQLopMultiPlotPanel::plot return { nullptr, nullptr }; } -QPair SciQLopMultiPlotPanel::plot_impl( - GetDataPyCallable callable, QStringList labels, QList colors, GraphType graph_type, - PlotType plot_type, QObject* sync_with, int index) +QPair +SciQLopMultiPlotPanel::plot_impl(GetDataPyCallable callable, QStringList labels, + QList colors, GraphType graph_type, PlotType plot_type, + QObject* sync_with, int index) { switch (plot_type) { case ::PlotType::BasicXY: - return _plot(index, graph_type, callable, labels, colors, sync_with); + return _plot(index, graph_type, callable, labels, + colors, sync_with); break; case ::PlotType::TimeSeries: - return _plot( - index, graph_type, callable, labels, colors, sync_with); + return _plot(index, graph_type, callable, + labels, colors, sync_with); break; default: break; @@ -221,18 +284,19 @@ QPair SciQLopMultiPlotPanel::plot return { nullptr, nullptr }; } -QPair SciQLopMultiPlotPanel::plot_impl( - GetDataPyCallable callable, QString name, bool y_log_scale, bool z_log_scale, - PlotType plot_type, QObject* sync_with, int index) +QPair +SciQLopMultiPlotPanel::plot_impl(GetDataPyCallable callable, QString name, bool y_log_scale, + bool z_log_scale, PlotType plot_type, QObject* sync_with, + int index) { switch (plot_type) { case ::PlotType::BasicXY: - return _plot( + return _plot( index, GraphType::ColorMap, callable, name, y_log_scale, z_log_scale, sync_with); break; case ::PlotType::TimeSeries: - return _plot( + return _plot( index, GraphType::ColorMap, callable, name, y_log_scale, z_log_scale, sync_with); break; default: @@ -241,7 +305,6 @@ QPair SciQLopMultiPlotPanel::plot return { nullptr, nullptr }; } - void SciQLopMultiPlotPanel::keyPressEvent(QKeyEvent* event) { switch (event->key()) @@ -256,3 +319,60 @@ void SciQLopMultiPlotPanel::keyPressEvent(QKeyEvent* event) if (!event->isAccepted()) QScrollArea::keyPressEvent(event); } + +void SciQLopMultiPlotPanel::dragEnterEvent(QDragEnterEvent* event) +{ + using namespace cpp_utils; + const auto formats = event->mimeData()->formats(); + for (const auto& format : formats) + { + if (containers::contains(_accepted_mime_types, format)) + { + event->acceptProposedAction(); + _current_callback = _accepted_mime_types[format]; + if (_current_callback->create_placeholder()) + _place_holder_manager->dragEnterEvent(event); + return; + } + } + _current_callback = nullptr; +} + +void SciQLopMultiPlotPanel::dragMoveEvent(QDragMoveEvent* event) +{ + if (_current_callback) + { + if (_current_callback->create_placeholder()) + _place_holder_manager->dragMoveEvent(event); + event->acceptProposedAction(); + } +} + +void SciQLopMultiPlotPanel::dragLeaveEvent(QDragLeaveEvent* event) +{ + if (_current_callback && _current_callback->create_placeholder()) + _place_holder_manager->dragLeaveEvent(event); + _current_callback = nullptr; +} + +void SciQLopMultiPlotPanel::dropEvent(QDropEvent* event) +{ + if (_current_callback) + { + SciQLopPlotInterface* drop_plot = nullptr; + auto drop_result = _place_holder_manager->dropEvent(event); + if (drop_result.location == DropLocation::NewPlot) + { + drop_plot = create_plot(drop_result.index, _default_plot_type); + } + else + { + drop_plot = plot_at(drop_result.index); + } + + event->acceptProposedAction(); + if (drop_plot) + _current_callback->call(drop_plot, event->mimeData()); + _current_callback = nullptr; + } +} diff --git a/src/SciQLopMultiPlotPanelDelegate.cpp b/src/SciQLopMultiPlotPanelDelegate.cpp new file mode 100644 index 0000000..816999d --- /dev/null +++ b/src/SciQLopMultiPlotPanelDelegate.cpp @@ -0,0 +1,39 @@ +/*------------------------------------------------------------------------------ +-- This file is a part of the SciQLop Software +-- Copyright (C) 2024, Plasma Physics Laboratory - CNRS +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +-------------------------------------------------------------------------------*/ +/*-- Author : Alexis Jeandet +-- Mail : alexis.jeandet@member.fsf.org +----------------------------------------------------------------------------*/ +#include "SciQLopPlots/Inspector/PropertiesDelegates/SciQLopMultiPlotPanelDelegate.hpp" +#include "SciQLopPlots/Inspector/PropertyDelegates.hpp" +#include "SciQLopPlots/MultiPlots/SciQLopMultiPlotPanel.hpp" +#include +#include + +REGISTER_DELEGATE(SciQLopMultiPlotPanelDelegate); + +SciQLopMultiPlotPanel* SciQLopMultiPlotPanelDelegate::panel() const +{ + return as_type(m_object); +} + +SciQLopMultiPlotPanelDelegate::SciQLopMultiPlotPanelDelegate(SciQLopMultiPlotPanel* object, + QWidget* parent) + : PropertyDelegateBase(object, parent) +{ +} diff --git a/src/SciQLopMultiPlotPanelInspector.cpp b/src/SciQLopMultiPlotPanelInspector.cpp new file mode 100644 index 0000000..62678cd --- /dev/null +++ b/src/SciQLopMultiPlotPanelInspector.cpp @@ -0,0 +1,65 @@ +/*------------------------------------------------------------------------------ +-- This file is a part of the SciQLop Software +-- Copyright (C) 2024, Plasma Physics Laboratory - CNRS +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +-------------------------------------------------------------------------------*/ +/*-- Author : Alexis Jeandet +-- Mail : alexis.jeandet@member.fsf.org +----------------------------------------------------------------------------*/ +#include "SciQLopPlots/Inspector/Inspectors/SciQLopMultiPlotPanelInspector.hpp" +#include "SciQLopPlots/Inspector/Model/Node.hpp" +#include "SciQLopPlots/MultiPlots/SciQLopMultiPlotPanel.hpp" + +REGISTER_INSPECTOR(SciQLopMultiPlotPanelInspector) + +QList SciQLopMultiPlotPanelInspector::children(QObject* obj) +{ + QList children; + if (auto panel = _panel(obj); panel) + { + for (auto plot : panel->plots()) + { + children.append(plot); + } + } + return children; +} + +QObject* SciQLopMultiPlotPanelInspector::child(const QString& name, QObject* obj) +{ + if (auto panel = _panel(obj); panel) + { + for (auto plot : panel->plots()) + { + if (plot->objectName() == name) + return plot; + } + } + return nullptr; +} + +void SciQLopMultiPlotPanelInspector::connect_node(PlotsModelNode* node, QObject* const obj) +{ + InspectorBase::connect_node(node, obj); + connect(_panel(obj), &SciQLopMultiPlotPanel::plot_list_changed, node, + &PlotsModelNode::update_children); +} + +void SciQLopMultiPlotPanelInspector::set_selected(QObject* obj, bool selected) +{ + if (auto panel = _panel(obj); panel) + panel->setSelected(selected); +} diff --git a/src/SciQLopPlot.cpp b/src/SciQLopPlot.cpp index 2af48c9..3619644 100644 --- a/src/SciQLopPlot.cpp +++ b/src/SciQLopPlot.cpp @@ -20,37 +20,17 @@ -- Mail : alexis.jeandet@member.fsf.org ----------------------------------------------------------------------------*/ #include "SciQLopPlots/SciQLopPlot.hpp" +#include "SciQLopPlots/Inspector/Inspectors.hpp" +#include "SciQLopPlots/Inspector/Model/Model.hpp" #include "SciQLopPlots/Items/SciQLopPlotItem.hpp" #include "SciQLopPlots/constants.hpp" + #include #include #include #include -#include - -template -inline void _set_selected(T* plottable, bool selected) -{ - if (plottable->selected() != selected) - { - if (selected) - plottable->setSelection(QCPDataSelection(plottable->data()->dataRange())); - else - plottable->setSelection(QCPDataSelection()); - } -} +#include -inline void _set_selected(QCPAbstractPlottable* plottable, bool selected) -{ - if (auto graph = dynamic_cast(plottable); graph != nullptr) - { - _set_selected(graph, selected); - } - else if (auto curve = dynamic_cast(plottable); curve != nullptr) - { - _set_selected(curve, selected); - } -} namespace _impl { @@ -61,14 +41,14 @@ SciQLopPlot::SciQLopPlot(QWidget* parent) : QCustomPlot { parent } this->m_replot_timer->setSingleShot(true); this->m_replot_timer->setInterval(10); connect(this->m_replot_timer, &QTimer::timeout, this, - [this]() { QCustomPlot::replot(rpQueuedReplot); }); + [this]() { QCustomPlot::replot(rpQueuedReplot); }); connect(this, &QCustomPlot::afterReplot, this, [this]() { m_replot_pending = false; }); using namespace Constants; this->addLayer(LayersNames::Spans, this->layer(LayersNames::Main), QCustomPlot::limAbove); this->layer(LayersNames::Spans)->setMode(QCPLayer::lmBuffered); this->layer(LayersNames::Spans)->setVisible(true); - this->addLayer( - LayersNames::SpansBorders, this->layer(LayersNames::Spans), QCustomPlot::limAbove); + this->addLayer(LayersNames::SpansBorders, this->layer(LayersNames::Spans), + QCustomPlot::limAbove); this->layer(LayersNames::SpansBorders)->setMode(QCPLayer::lmBuffered); this->layer(LayersNames::SpansBorders)->setVisible(true); this->setFocusPolicy(Qt::StrongFocus); @@ -78,29 +58,33 @@ SciQLopPlot::SciQLopPlot(QWidget* parent) : QCustomPlot { parent } this->m_tracer = new TracerWithToolTip(this); this->setMouseTracking(true); this->setInteractions(QCP::iRangeDrag | QCP::iRangeZoom | QCP::iSelectPlottables - | QCP::iSelectAxes | QCP::iSelectLegend | QCP::iSelectItems | QCP::iMultiSelect); + | QCP::iSelectAxes | QCP::iSelectLegend | QCP::iSelectItems + | QCP::iMultiSelect); connect(this, &QCustomPlot::legendDoubleClick, this, &SciQLopPlot::_legend_double_clicked); connect(this->xAxis, QOverload::of(&QCPAxis::rangeChanged), this, - [this](const QCPRange& range) - { Q_EMIT x_axis_range_changed({ range.lower, range.upper }); }); + [this](const QCPRange& range) + { Q_EMIT x_axis_range_changed({ range.lower, range.upper }); }); connect(this->xAxis2, QOverload::of(&QCPAxis::rangeChanged), this, - [this](const QCPRange& range) - { Q_EMIT x2_axis_range_changed({ range.lower, range.upper }); }); + [this](const QCPRange& range) + { Q_EMIT x2_axis_range_changed({ range.lower, range.upper }); }); connect(this->yAxis, QOverload::of(&QCPAxis::rangeChanged), this, - [this](const QCPRange& range) - { Q_EMIT y_axis_range_changed({ range.lower, range.upper }); }); + [this](const QCPRange& range) + { Q_EMIT y_axis_range_changed({ range.lower, range.upper }); }); connect(this->yAxis2, QOverload::of(&QCPAxis::rangeChanged), this, - [this](const QCPRange& range) - { Q_EMIT y2_axis_range_changed({ range.lower, range.upper }); }); + [this](const QCPRange& range) + { Q_EMIT y2_axis_range_changed({ range.lower, range.upper }); }); + + m_color_scale = new QCPColorScale(this); + m_color_scale->setVisible(false); this->m_axes.append(new SciQLopPlotAxis(this->xAxis, this)); this->m_axes.append(new SciQLopPlotAxis(this->yAxis, this)); this->m_axes.append(new SciQLopPlotAxis(this->xAxis2, this)); this->m_axes.append(new SciQLopPlotAxis(this->yAxis2, this)); - m_color_scale = new QCPColorScale(this); - m_color_scale->setVisible(false); + this->m_axes.append(new SciQLopPlotColorScaleAxis(this->m_color_scale, this)); + #ifdef QCUSTOMPLOT_USE_OPENGL setOpenGl(true, 4); #endif @@ -126,14 +110,14 @@ QCPColorMap* SciQLopPlot::addColorMap() return cm; } -SQPQCPAbstractPlottableWrapper* SciQLopPlot::sqp_plottable(int index) +SciQLopPlottableInterface* SciQLopPlot::sqp_plottable(int index) { if (index == -1 || index >= std::size(m_plottables)) index = std::size(m_plottables) - 1; return m_plottables[index]; } -SQPQCPAbstractPlottableWrapper* SciQLopPlot::sqp_plottable(const QString& name) +SciQLopPlottableInterface* SciQLopPlot::sqp_plottable(const QString& name) { for (auto p : m_plottables) { @@ -143,35 +127,34 @@ SQPQCPAbstractPlottableWrapper* SciQLopPlot::sqp_plottable(const QString& name) return nullptr; } +const QList& SciQLopPlot::sqp_plottables() const +{ + return m_plottables; +} -SciQLopColorMap* SciQLopPlot::addSciQLopColorMap( - const QString& name, bool y_log_scale, bool z_log_scale) +SciQLopColorMap* SciQLopPlot::add_color_map(const QString& name, bool y_log_scale, bool z_log_scale) { - if (!m_color_scale->visible()) + if (m_color_map == nullptr) { - if (y_log_scale) - { - set_axis_log(QCPAxis::atRight, true); - } - set_axis_visible(QCPAxis::atRight, true); - auto cmap = this->_new_plottable_wrapper(this->xAxis, this->yAxis2, name); - m_color_scale->setVisible(true); - plotLayout()->addElement(0, 1, m_color_scale); - cmap->colorMap()->setColorScale(m_color_scale); - cmap->colorMap()->setInterpolate(false); - if (z_log_scale) - { - cmap->colorMap()->setDataScaleType(QCPAxis::stLogarithmic); - m_color_scale->setDataScaleType(QCPAxis::stLogarithmic); - m_color_scale->axis()->setTicker( - QSharedPointer(new QCPAxisTickerLog)); - } + m_color_map = new SciQLopColorMap(this, this->m_axes[0], this->m_axes[3], name); + _configure_color_map(m_color_map, y_log_scale, z_log_scale); + _register_plottable_wrapper(m_color_map); + return m_color_map; + } + return nullptr; +} - auto gradient = QCPColorGradient(QCPColorGradient::gpJet); - gradient.setNanHandling(QCPColorGradient::nhTransparent); - cmap->colorMap()->setGradient(gradient); - cmap->set_auto_scale_y(true); - return cmap; +SciQLopColorMapFunction* SciQLopPlot::add_color_map(GetDataPyCallable&& callable, + const QString& name, bool y_log_scale, + bool z_log_scale) +{ + if (m_color_map == nullptr) + { + m_color_map = new SciQLopColorMapFunction(this, this->m_axes[0], this->m_axes[3], + std::move(callable), name); + _configure_color_map(m_color_map, y_log_scale, z_log_scale); + _register_plottable_wrapper(m_color_map); + return qobject_cast(m_color_map); } return nullptr; } @@ -194,7 +177,7 @@ void SciQLopPlot::minimize_margins() QMargins SciQLopPlot::minimal_axis_margins() { return QMargins(_minimal_margin(QCP::msLeft), _minimal_margin(QCP::msTop), - _minimal_margin(QCP::msRight), _minimal_margin(QCP::msBottom)); + _minimal_margin(QCP::msRight), _minimal_margin(QCP::msBottom)); } void SciQLopPlot::replot(RefreshPriority priority) @@ -213,7 +196,6 @@ void SciQLopPlot::replot(RefreshPriority priority) } } - void SciQLopPlot::mousePressEvent(QMouseEvent* event) { QCustomPlot::mousePressEvent(event); @@ -248,8 +230,8 @@ void SciQLopPlot::mouseReleaseEvent(QMouseEvent* event) void SciQLopPlot::_wheel_zoom(QCPAxis* axis, const double wheelSteps, const QPointF& pos) { const auto factor = qPow(axis->axisRect()->rangeZoomFactor(axis->orientation()), wheelSteps); - axis->scaleRange( - factor, axis->pixelToCoord(axis->orientation() == Qt::Horizontal ? pos.x() : pos.y())); + axis->scaleRange(factor, + axis->pixelToCoord(axis->orientation() == Qt::Horizontal ? pos.x() : pos.y())); } int SciQLopPlot::_minimal_margin(QCP::MarginSide side) @@ -257,11 +239,25 @@ int SciQLopPlot::_minimal_margin(QCP::MarginSide side) return 0; } - void SciQLopPlot::_wheel_pan(QCPAxis* axis, const double wheelSteps, const QPointF& pos) { - axis->moveRange(wheelSteps * m_scroll_factor * QApplication::wheelScrollLines() / 100. - * axis->range().size()); + if (axis->scaleType() == QCPAxis::stLinear) + { + axis->moveRange(wheelSteps * m_scroll_factor * QApplication::wheelScrollLines() / 100. + * axis->range().size()); + } + else + { + auto size = log10(axis->range().upper) - log10(axis->range().lower); + if (wheelSteps > 0) + axis->moveRange(std::pow( + 10, wheelSteps * m_scroll_factor * QApplication::wheelScrollLines() / 100. * size)); + else + axis->moveRange(1. + / std::pow(10, + -wheelSteps * m_scroll_factor + * QApplication::wheelScrollLines() / 100. * size)); + } } void SciQLopPlot::wheelEvent(QWheelEvent* event) @@ -299,14 +295,14 @@ void SciQLopPlot::keyPressEvent(QKeyEvent* event) { auto items = selectedItems(); std::for_each(items.begin(), items.end(), - [event](auto item) - { - if (auto sciItem = dynamic_cast(item); - sciItem != nullptr) - { - sciItem->keyPressEvent(event); - } - }); + [event](auto item) + { + if (auto sciItem = dynamic_cast(item); + sciItem != nullptr) + { + sciItem->keyPressEvent(event); + } + }); if (event->key() == Qt::Key_Escape) { for (auto item : items) @@ -334,7 +330,6 @@ void SciQLopPlot::keyPressEvent(QKeyEvent* event) QCustomPlot::keyPressEvent(event); } - bool SciQLopPlot::event(QEvent* event) { auto r = QCustomPlot::event(event); @@ -418,8 +413,8 @@ QCPGraph* SciQLopPlot::_nearest_graph(const QPointF& pos) return plottableAt(pos, false); } -std::optional> SciQLopPlot::_nearest_data_point( - const QPointF& pos, QCPGraph* graph) +std::optional> SciQLopPlot::_nearest_data_point(const QPointF& pos, + QCPGraph* graph) { QCPGraphDataContainer::const_iterator it = graph->data()->constEnd(); QVariant details; @@ -435,38 +430,44 @@ std::optional> SciQLopPlot::_nearest_data_point( return std::nullopt; } -void SciQLopPlot::_register_plottable_wrapper(SQPQCPAbstractPlottableWrapper* plottable) +void SciQLopPlot::_register_plottable_wrapper(SciQLopPlottableInterface* plottable) { - for (auto qcp_plottable : plottable->qcp_plottables()) - { - _register_plottable(qcp_plottable); - } m_plottables.append(plottable); - connect(plottable, &SQPQCPAbstractPlottableWrapper::plottable_created, this, - &SciQLopPlot::_register_plottable); - connect(plottable, &SQPQCPAbstractPlottableWrapper::destroyed, this, - [this, plottable]() { m_plottables.removeOne(plottable); }); - connect(plottable, &SQPQCPAbstractPlottableWrapper::replot, this, [this]() { this->replot(); }); + connect(plottable, &SciQLopGraphInterface::destroyed, this, + [this, plottable]() + { + m_plottables.removeOne(plottable); + emit this->plotables_list_changed(); + }); + connect(plottable, &SciQLopGraphInterface::replot, this, [this]() { this->replot(); }); + emit this->plotables_list_changed(); } -void SciQLopPlot::_register_plottable(QCPAbstractPlottable* plotable) +void SciQLopPlot::_configure_color_map(SciQLopColorMap* cmap, bool y_log_scale, bool z_log_scale) { - connect(plotable, QOverload::of(&QCPAbstractPlottable::selectionChanged), this, - [this, plotable](bool selected) + if (!m_color_scale->visible()) + { + if (y_log_scale) { - auto item = this->legend->itemWithPlottable(plotable); - if (item && item->selected() != selected) - item->setSelected(selected); - }); + set_axis_log(QCPAxis::atRight, true); + } + set_axis_visible(QCPAxis::atRight, true); + m_color_scale->setVisible(true); + plotLayout()->addElement(0, 1, m_color_scale); + cmap->colorMap()->setColorScale(m_color_scale); + cmap->colorMap()->setInterpolate(false); + if (z_log_scale) + { + cmap->colorMap()->setDataScaleType(QCPAxis::stLogarithmic); + m_color_scale->setDataScaleType(QCPAxis::stLogarithmic); + m_color_scale->axis()->setTicker( + QSharedPointer(new QCPAxisTickerLog)); + } - if (auto legend_item = this->legend->itemWithPlottable(plotable); legend_item) - { - connect(legend_item, &QCPAbstractLegendItem::selectionChanged, this, - [this, plotable](bool selected) - { - _set_selected(plotable, selected); - this->replot(rpQueuedReplot); - }); + auto gradient = QCPColorGradient(QCPColorGradient::gpJet); + gradient.setNanHandling(QCPColorGradient::nhTransparent); + cmap->colorMap()->setGradient(gradient); + cmap->set_auto_scale_y(true); } } @@ -480,8 +481,8 @@ QCPAbstractPlottable* SciQLopPlot::plottable(const QString& name) const return nullptr; } -void SciQLopPlot::_legend_double_clicked( - QCPLegend* legend, QCPAbstractLegendItem* item, QMouseEvent* event) +void SciQLopPlot::_legend_double_clicked(QCPLegend* legend, QCPAbstractLegendItem* item, + QMouseEvent* event) { if (auto legend_item = dynamic_cast(item); legend_item != nullptr) { @@ -502,28 +503,34 @@ void SciQLopPlot::_legend_double_clicked( } } - -void SciQLopPlot::_configure_plotable(SQPQCPAbstractPlottableWrapper* plottable, - const QStringList& labels, const QList& colors) +void SciQLopPlot::_configure_plotable(SciQLopGraphInterface* plottable, const QStringList& labels, + const QList& colors) { if (plottable) { - if (std::size(colors) <= plottable->plottable_count()) + if (std::size(colors) == std::size(plottable->components())) + { + plottable->set_colors(colors); + } + else { - for (std::size_t i = 0; i < std::size(colors); i++) + for (auto& component : plottable->components()) { - plottable->qcp_plottables()[i]->setPen(QPen(colors[i])); + component->set_color(m_color_palette[m_color_palette_index]); + m_color_palette_index = (m_color_palette_index + 1) % std::size(m_color_palette); } } + if (std::size(labels) == std::size(plottable->components())) + plottable->set_labels(labels); } } -SciQLopPlot::SciQLopPlot(QWidget* parent) +SciQLopPlot::SciQLopPlot(QWidget* parent) : SciQLopPlotInterface(parent) { m_impl = new _impl::SciQLopPlot(this); this->m_time_axis = new SciQLopPlotDummyAxis(this); connect(this->m_time_axis, &SciQLopPlotDummyAxis::range_changed, this, - &SciQLopPlot::time_axis_range_changed); + &SciQLopPlot::time_axis_range_changed); // connect(m_impl, &_impl::SciQLopPlot::x2_axis_range_changed, this, // &SciQLopPlot::time_axis_range_changed); @@ -531,18 +538,21 @@ SciQLopPlot::SciQLopPlot(QWidget* parent) this->setLayout(new QVBoxLayout); this->layout()->addWidget(m_impl); connect(m_impl, &_impl::SciQLopPlot::x_axis_range_changed, this, - &SciQLopPlot::x_axis_range_changed); + &SciQLopPlot::x_axis_range_changed); connect(m_impl, &_impl::SciQLopPlot::x2_axis_range_changed, this, - &SciQLopPlot::x2_axis_range_changed); + &SciQLopPlot::x2_axis_range_changed); connect(m_impl, &_impl::SciQLopPlot::y_axis_range_changed, this, - &SciQLopPlot::y_axis_range_changed); + &SciQLopPlot::y_axis_range_changed); connect(m_impl, &_impl::SciQLopPlot::y2_axis_range_changed, this, - &SciQLopPlot::y2_axis_range_changed); + &SciQLopPlot::y2_axis_range_changed); connect(m_impl, &_impl::SciQLopPlot::scroll_factor_changed, this, - &SciQLopPlot::scroll_factor_changed); + &SciQLopPlot::scroll_factor_changed); + + connect(m_impl, &_impl::SciQLopPlot::plotables_list_changed, this, + &SciQLopPlot::graph_list_changed); set_axes_to_rescale( - QList { x_axis(), x2_axis(), y_axis(), y2_axis() }); + QList { x_axis(), x2_axis(), y_axis(), y2_axis(), z_axis() }); this->enable_legend(true); this->minimize_margins(); } @@ -589,7 +599,8 @@ void SciQLopPlot::replot(bool immediate) } SciQLopGraphInterface* SciQLopPlot::plot_impl(const PyBuffer& x, const PyBuffer& y, - QStringList labels, QList colors, GraphType graph_type) + QStringList labels, QList colors, + GraphType graph_type) { SQPQCPAbstractPlottableWrapper* plottable = nullptr; switch (graph_type) @@ -612,48 +623,48 @@ SciQLopGraphInterface* SciQLopPlot::plot_impl(const PyBuffer& x, const PyBuffer& return plottable; } -SciQLopGraphInterface* SciQLopPlot::plot_impl(const PyBuffer& x, const PyBuffer& y, - const PyBuffer& z, QString name, bool y_log_scale, bool z_log_scale) +SciQLopColorMapInterface* SciQLopPlot::plot_impl(const PyBuffer& x, const PyBuffer& y, + const PyBuffer& z, QString name, bool y_log_scale, + bool z_log_scale) { - auto cm = m_impl->addSciQLopColorMap(name, y_log_scale, z_log_scale); + auto cm = m_impl->add_color_map(name, y_log_scale, z_log_scale); cm->set_data(std::move(x), std::move(y), std::move(z)); return cm; } -void SciQLopPlot::_connect_callable_sync( - SQPQCPAbstractPlottableWrapper* plottable, QObject* sync_with) +void SciQLopPlot::_connect_callable_sync(SciQLopPlottableInterface* plottable, QObject* sync_with) { if (sync_with != nullptr) { if (auto axis = qobject_cast(sync_with); axis != nullptr) { connect(axis, &SciQLopPlotAxisInterface::range_changed, plottable, - &SQPQCPAbstractPlottableWrapper::set_range); + &SciQLopGraphInterface::set_range); } if (auto graph = qobject_cast(sync_with); graph != nullptr) { connect(graph, QOverload::of(&SciQLopGraphInterface::data_changed), - plottable, - QOverload::of(&SQPQCPAbstractPlottableWrapper::set_data), - Qt::QueuedConnection); + plottable, QOverload::of(&SciQLopGraphInterface::set_data), + Qt::QueuedConnection); - connect(graph, + connect( + graph, QOverload::of(&SciQLopGraphInterface::data_changed), plottable, - QOverload::of( - &SQPQCPAbstractPlottableWrapper::set_data), + QOverload::of(&SciQLopGraphInterface::set_data), Qt::QueuedConnection); } } else { connect(this->x_axis(), &SciQLopPlotAxisInterface::range_changed, plottable, - &SQPQCPAbstractPlottableWrapper::set_range); + &SQPQCPAbstractPlottableWrapper::set_range); } } SciQLopGraphInterface* SciQLopPlot::plot_impl(GetDataPyCallable callable, QStringList labels, - QList colors, GraphType graph_type, QObject* sync_with) + QList colors, GraphType graph_type, + QObject* sync_with) { SQPQCPAbstractPlottableWrapper* plottable = nullptr; switch (graph_type) @@ -676,21 +687,30 @@ SciQLopGraphInterface* SciQLopPlot::plot_impl(GetDataPyCallable callable, QStrin return plottable; } -SciQLopGraphInterface* SciQLopPlot::plot_impl(GetDataPyCallable callable, QString name, - bool y_log_scale, bool z_log_scale, QObject* sync_with) +SciQLopColorMapInterface* SciQLopPlot::plot_impl(GetDataPyCallable callable, QString name, + bool y_log_scale, bool z_log_scale, + QObject* sync_with) { - SQPQCPAbstractPlottableWrapper* plotable = nullptr; - plotable = m_impl->addSciQLopColorMap(name, y_log_scale, z_log_scale); + SciQLopColorMapInterface* plotable = nullptr; + plotable = m_impl->add_color_map(std::move(callable), name, y_log_scale, z_log_scale); + if (plotable) + { + _connect_callable_sync(plotable, sync_with); + } return plotable; } - -SciQLopGraphInterface* SciQLopPlot::graph(int index) +SciQLopPlottableInterface* SciQLopPlot::plottable(int index) { return m_impl->sqp_plottable(index); } -SciQLopGraphInterface* SciQLopPlot::graph(const QString& name) +SciQLopPlottableInterface* SciQLopPlot::plottable(const QString& name) { return m_impl->sqp_plottable(name); } + +QList SciQLopPlot::plottables() const noexcept +{ + return m_impl->sqp_plottables(); +} diff --git a/src/SciQLopPlotAxis.cpp b/src/SciQLopPlotAxis.cpp index 53692ee..662910e 100644 --- a/src/SciQLopPlotAxis.cpp +++ b/src/SciQLopPlotAxis.cpp @@ -27,8 +27,8 @@ SciQLopPlotAxis::SciQLopPlotAxis(QCPAxis* axis, QObject* parent) : SciQLopPlotAxisInterface(parent), m_axis(axis) { connect(axis, QOverload::of(&QCPAxis::rangeChanged), this, - [this](const QCPRange& range) - { Q_EMIT range_changed(SciQLopPlotRange { range.lower, range.upper }); }); + [this](const QCPRange& range) + { Q_EMIT range_changed(SciQLopPlotRange { range.lower, range.upper }); }); } void SciQLopPlotAxis::set_range(const SciQLopPlotRange& range) noexcept @@ -53,7 +53,7 @@ void SciQLopPlotAxis::set_visible(bool visible) noexcept void SciQLopPlotAxis::set_log(bool log) noexcept { - if (!m_axis.isNull() && m_axis->scaleType() == QCPAxis::stLogarithmic != log) + if (!m_axis.isNull() && (m_axis->scaleType() == QCPAxis::stLogarithmic) != log) { if (log) { @@ -177,3 +177,128 @@ void SciQLopPlotDummyAxis::set_range(const SciQLopPlotRange& range) noexcept Q_EMIT this->range_changed(range); } } + +SciQLopPlotColorScaleAxis::SciQLopPlotColorScaleAxis(QCPColorScale* axis, QObject* parent) + : SciQLopPlotAxis(axis->axis(), parent), m_axis(axis) +{ + connect(axis, QOverload::of(&QCPColorScale::dataRangeChanged), this, + [this](const QCPRange& range) + { Q_EMIT range_changed(SciQLopPlotRange { range.lower, range.upper }); }); +} + +void SciQLopPlotColorScaleAxis::set_range(const SciQLopPlotRange& range) noexcept +{ + if (!m_axis.isNull() + && (m_axis->dataRange().lower != range.start() + || m_axis->dataRange().upper != range.stop())) + { + m_axis->setDataRange(QCPRange(range.start(), range.stop())); + m_axis->parentPlot()->replot(QCustomPlot::rpQueuedReplot); + } +} + +void SciQLopPlotColorScaleAxis::set_visible(bool visible) noexcept +{ + if (!m_axis.isNull() && m_axis->visible() != visible) + { + m_axis->setVisible(visible); + m_axis->parentPlot()->replot(QCustomPlot::rpQueuedReplot); + Q_EMIT visible_changed(visible); + } +} + +void SciQLopPlotColorScaleAxis::set_log(bool log) noexcept +{ + if (!m_axis.isNull() && (m_axis->dataScaleType() == QCPAxis::stLogarithmic) != log) + { + if (log) + { + m_axis->setDataScaleType(QCPAxis::stLogarithmic); + m_axis.data()->axis()->setTicker( + QSharedPointer(new QCPAxisTickerLog)); + } + else + { + m_axis->setDataScaleType(QCPAxis::stLinear); + m_axis.data()->axis()->setTicker(QSharedPointer(new QCPAxisTicker)); + } + m_axis->parentPlot()->replot(QCustomPlot::rpQueuedReplot); + Q_EMIT log_changed(log); + } +} + +void SciQLopPlotColorScaleAxis::set_label(const QString& label) noexcept +{ + if (!m_axis.isNull() && m_axis->label() != label) + { + m_axis->setLabel(label); + m_axis->parentPlot()->replot(QCustomPlot::rpQueuedReplot); + Q_EMIT label_changed(label); + } +} + +SciQLopPlotRange SciQLopPlotColorScaleAxis::range() const noexcept +{ + if (m_axis.isNull()) + return SciQLopPlotRange(); + return SciQLopPlotRange(m_axis->dataRange().lower, m_axis->dataRange().upper); +} + +bool SciQLopPlotColorScaleAxis::visible() const noexcept +{ + if (m_axis.isNull()) + return false; + return m_axis->visible(); +} + +bool SciQLopPlotColorScaleAxis::log() const noexcept +{ + if (m_axis.isNull()) + return false; + return m_axis->dataScaleType() == QCPAxis::stLogarithmic; +} + +QString SciQLopPlotColorScaleAxis::label() const noexcept +{ + if (m_axis.isNull()) + return QString(); + return m_axis->label(); +} + +Qt::Orientation SciQLopPlotColorScaleAxis::orientation() const noexcept +{ + return Qt::Vertical; +} + +Qt::Axis SciQLopPlotColorScaleAxis::axis() const noexcept +{ + return Qt::ZAxis; +} + +Qt::AnchorPoint SciQLopPlotColorScaleAxis::anchor() const noexcept +{ + return Qt::AnchorLeft; +} + +bool SciQLopPlotColorScaleAxis::selected() const noexcept +{ + if (m_axis.isNull()) + return false; + return m_axis->axis()->selectedParts().testFlag(QCPAxis::spAxis); +} + +void SciQLopPlotColorScaleAxis::rescale() noexcept +{ + if (!m_axis.isNull()) + { + m_axis->rescaleDataRange(true); + m_axis->parentPlot()->replot(QCustomPlot::rpQueuedReplot); + } +} + +QCPAxis* SciQLopPlotColorScaleAxis::qcp_axis() const noexcept +{ + if (m_axis.isNull()) + return nullptr; + return m_axis->axis(); +} diff --git a/src/SciQLopPlotAxisDelegate.cpp b/src/SciQLopPlotAxisDelegate.cpp new file mode 100644 index 0000000..280aaf7 --- /dev/null +++ b/src/SciQLopPlotAxisDelegate.cpp @@ -0,0 +1,31 @@ +/*------------------------------------------------------------------------------ +-- This file is a part of the SciQLop Software +-- Copyright (C) 2024, Plasma Physics Laboratory - CNRS +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +-------------------------------------------------------------------------------*/ +/*-- Author : Alexis Jeandet +-- Mail : alexis.jeandet@member.fsf.org +----------------------------------------------------------------------------*/ +#include "SciQLopPlots/Inspector/PropertiesDelegates/SciQLopPlotAxisDelegate.hpp" +#include "SciQLopPlots/Inspector/PropertyDelegates.hpp" +#include "SciQLopPlots/SciQLopPlotAxis.hpp" + +SciQLopPlotAxisDelegate::SciQLopPlotAxisDelegate(SciQLopPlotAxisInterface* object, QWidget* parent) + : PropertyDelegateBase(object, parent) +{ +} + +REGISTER_DELEGATE(SciQLopPlotAxisDelegate) diff --git a/src/SciQLopPlotCollection.cpp b/src/SciQLopPlotCollection.cpp index a281199..ba63418 100644 --- a/src/SciQLopPlotCollection.cpp +++ b/src/SciQLopPlotCollection.cpp @@ -24,89 +24,26 @@ #include "SciQLopPlots/MultiPlots/SciQLopPlotCollection.hpp" -SciQLopPlotCollection::SciQLopPlotCollection(QObject* parent) : QObject(parent) { } - -void SciQLopPlotCollection::add_plot(SciQLopPlotInterface* plot) -{ - insert_plot(_plots.size(), plot); -} - -void SciQLopPlotCollection::insert_plot(int index, SciQLopPlotInterface* plot) -{ - _plots.insert(index, plot); - emit plotListChanged(_plots); -} - -void SciQLopPlotCollection::remove_plot(SciQLopPlotInterface* plot) -{ - _plots.removeOne(plot); - emit plotListChanged(_plots); -} - -SciQLopPlotInterface* SciQLopPlotCollection::plot_at(int index) const -{ - return _plots.at(index); -} - -void SciQLopPlotCollection::set_x_axis_range(const SciQLopPlotRange& range) -{ - for (auto* plot : _plots) - { - plot->x_axis()->set_range(range); - } -} - -void SciQLopPlotCollection::set_time_axis_range(const SciQLopPlotRange& range) -{ - for (auto* plot : _plots) - { - plot->time_axis()->set_range(range); - } -} - -void SciQLopPlotCollection::register_behavior(SciQLopPlotCollectionBehavior* behavior) -{ - behavior->setParent(this); - _behaviors[behavior->metaObject()->className()] = behavior; - behavior->updatePlotList(_plots); - connect(this, &SciQLopPlotCollection::plotListChanged, behavior, - &SciQLopPlotCollectionBehavior::updatePlotList); -} - -void SciQLopPlotCollection::remove_behavior(const QString& type_name) +void SciQLopPlotCollectionInterface::set_x_axis_range(const SciQLopPlotRange& range) { - if (_behaviors.contains(type_name)) - { - disconnect(this, &SciQLopPlotCollection::plotListChanged, _behaviors[type_name], - &SciQLopPlotCollectionBehavior::updatePlotList); - delete _behaviors[type_name]; - _behaviors.remove(type_name); - } + WARN_ABSTRACT_METHOD; } - -void SciQLopPlotCollection::clear() +const SciQLopPlotRange& SciQLopPlotCollectionInterface::x_axis_range() const { - _plots.clear(); - emit plotListChanged(_plots); + WARN_ABSTRACT_METHOD; + static SciQLopPlotRange r {}; + return r; } -int SciQLopPlotCollection::index(SciQLopPlotInterface* plot) const +void SciQLopPlotCollectionInterface::set_time_axis_range(const SciQLopPlotRange& range) { - return _plots.indexOf(plot); + WARN_ABSTRACT_METHOD; } -void SciQLopPlotCollection::move_plot(int from, int to) +const SciQLopPlotRange& SciQLopPlotCollectionInterface::time_axis_range() const { - _plots.move(from, to); - emit plotListChanged(_plots); + WARN_ABSTRACT_METHOD; + static SciQLopPlotRange r {}; + return r; } - -void SciQLopPlotCollection::move_plot(SciQLopPlotInterface* plot, int to) -{ - move_plot(_plots.indexOf(plot), to); -} - -void SciQLopPlotCollectionInterface::set_x_axis_range(const SciQLopPlotRange& range) { } - -void SciQLopPlotCollectionInterface::set_time_axis_range(const SciQLopPlotRange& range) { } diff --git a/src/SciQLopPlotContainer.cpp b/src/SciQLopPlotContainer.cpp index 4cc856b..ce614a4 100644 --- a/src/SciQLopPlotContainer.cpp +++ b/src/SciQLopPlotContainer.cpp @@ -24,8 +24,7 @@ #include "SciQLopPlots/MultiPlots/SciQLopPlotContainer.hpp" -SciQLopPlotContainer::SciQLopPlotContainer(QWidget* parent) - : QSplitter(Qt::Vertical, parent), _plots(new SciQLopPlotCollection(this)) +SciQLopPlotContainer::SciQLopPlotContainer(QWidget* parent) : QSplitter(Qt::Vertical, parent) { this->setLayout(new QVBoxLayout(this)); this->setContentsMargins(0, 0, 0, 0); @@ -33,16 +32,18 @@ SciQLopPlotContainer::SciQLopPlotContainer(QWidget* parent) this->layout()->setSpacing(0); this->setChildrenCollapsible(false); setProperty("empty", true); - connect(_plots, &SciQLopPlotCollection::plotListChanged, this, - &SciQLopPlotContainer::plotListChanged); } +SciQLopPlotContainer::~SciQLopPlotContainer() { } + void SciQLopPlotContainer::insertWidget(int index, QWidget* widget) { QSplitter::insertWidget(index, widget); if (auto* plot = qobject_cast(widget); plot) { - _plots->insert_plot(index, plot); + if (plot->color_palette().empty()) + plot->set_color_palette(_color_palette); + emit plot_list_changed(plots()); } } @@ -63,14 +64,13 @@ void SciQLopPlotContainer::add_plot(SciQLopPlotInterface* plot) void SciQLopPlotContainer::move_plot(int from, int to) { - auto* plot = _plots->plot_at(from); - _plots->move_plot(from, to); - QSplitter::insertWidget(to, plot); + move_plot(plot_at(from), to); } void SciQLopPlotContainer::move_plot(SciQLopPlotInterface* plot, int to) { - move_plot(_plots->plots().indexOf(plot), to); + QSplitter::insertWidget(to, plot); + emit plot_list_changed(plots()); } void SciQLopPlotContainer::remove_plot(SciQLopPlotInterface* plot) @@ -80,13 +80,14 @@ void SciQLopPlotContainer::remove_plot(SciQLopPlotInterface* plot) void SciQLopPlotContainer::remove_plot(SciQLopPlotInterface* plot, bool destroy) { - if (_plots->contains(plot)) + if (indexOf(plot) != -1) { - removeWidget(plot, destroy); + plot->setParent(nullptr); if (destroy) plot->deleteLater(); - if (_plots->empty()) + if (empty()) setProperty("empty", true); + emit plot_list_changed(plots()); } } @@ -104,13 +105,34 @@ void SciQLopPlotContainer::removeWidget(QWidget* widget, bool destroy) void SciQLopPlotContainer::clear() { - _plots->clear(); while (QSplitter::count()) { auto* widget = this->widget(0); widget->setParent(nullptr); widget->deleteLater(); } + setProperty("empty", true); + emit plot_list_changed({}); +} + +void SciQLopPlotContainer::register_behavior(SciQLopPlotCollectionBehavior* behavior) +{ + behavior->setParent(this); + _behaviors[behavior->metaObject()->className()] = behavior; + behavior->updatePlotList(plots()); + connect(this, &SciQLopPlotContainer::plot_list_changed, behavior, + &SciQLopPlotCollectionBehavior::updatePlotList); +} + +void SciQLopPlotContainer::remove_behavior(const QString& type_name) +{ + if (_behaviors.contains(type_name)) + { + disconnect(this, &SciQLopPlotContainer::plot_list_changed, _behaviors[type_name], + &SciQLopPlotCollectionBehavior::updatePlotList); + delete _behaviors[type_name]; + _behaviors.remove(type_name); + } } void SciQLopPlotContainer::organize_plots() @@ -119,6 +141,6 @@ void SciQLopPlotContainer::organize_plots() const auto total_height = std::accumulate(std::cbegin(_sizes), std::cend(_sizes), 0); const auto per_widget_height = total_height / std::size(_sizes); std::transform(std::cbegin(_sizes), std::cend(_sizes), std::begin(_sizes), - [per_widget_height](int height) { return per_widget_height; }); + [per_widget_height](int height) { return per_widget_height; }); setSizes(_sizes); } diff --git a/src/SciQLopPlotDelegate.cpp b/src/SciQLopPlotDelegate.cpp new file mode 100644 index 0000000..804016e --- /dev/null +++ b/src/SciQLopPlotDelegate.cpp @@ -0,0 +1,37 @@ +/*------------------------------------------------------------------------------ +-- This file is a part of the SciQLop Software +-- Copyright (C) 2024, Plasma Physics Laboratory - CNRS +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +-------------------------------------------------------------------------------*/ +/*-- Author : Alexis Jeandet +-- Mail : alexis.jeandet@member.fsf.org +----------------------------------------------------------------------------*/ + +#include "SciQLopPlots/Inspector/PropertiesDelegates/SciQLopPlotDelegate.hpp" +#include "SciQLopPlots/Inspector/PropertyDelegates.hpp" +#include "SciQLopPlots/SciQLopPlot.hpp" + +REGISTER_DELEGATE(SciQLopPlotDelegate); + +SciQLopPlot* SciQLopPlotDelegate::plot() const +{ + return as_type(m_object); +} + +SciQLopPlotDelegate::SciQLopPlotDelegate(SciQLopPlot* object, QWidget* parent) + : PropertyDelegateBase(object, parent) +{ +} diff --git a/src/SciQLopPlotInspector.cpp b/src/SciQLopPlotInspector.cpp new file mode 100644 index 0000000..7524d1a --- /dev/null +++ b/src/SciQLopPlotInspector.cpp @@ -0,0 +1,64 @@ +/*------------------------------------------------------------------------------ +-- This file is a part of the SciQLop Software +-- Copyright (C) 2024, Plasma Physics Laboratory - CNRS +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +-------------------------------------------------------------------------------*/ +/*-- Author : Alexis Jeandet +-- Mail : alexis.jeandet@member.fsf.org +----------------------------------------------------------------------------*/ +#include "SciQLopPlots/Inspector/Inspectors/SciQLopPlotInspector.hpp" +#include "SciQLopPlots/Inspector/Inspectors.hpp" +#include "SciQLopPlots/Inspector/Model/Node.hpp" +#include "SciQLopPlots/SciQLopPlot.hpp" + +REGISTER_INSPECTOR(SciQLopPlotInspector) + +QList SciQLopPlotInspector::children(QObject* obj) +{ + QList children; + if (auto plot = _plot(obj); plot) + { + for (auto c : plot->plottables()) + { + children.append(c); + } + } + return children; +} + +QObject* SciQLopPlotInspector::child(const QString& name, QObject* obj) +{ + if (auto plot = _plot(obj); plot) + { + return plot->plottable(name); + } + return nullptr; +} + +void SciQLopPlotInspector::connect_node(PlotsModelNode* node, QObject* const obj) +{ + InspectorBase::connect_node(node, obj); + if (auto plot = _plot(obj); plot) + { + connect(plot, &SciQLopPlot::graph_list_changed, node, &PlotsModelNode::update_children); + } +} + +void SciQLopPlotInspector::set_selected(QObject* obj, bool selected) +{ + if (auto plot = _plot(obj); plot) + plot->set_selected(selected); +} diff --git a/src/SciQLopPlotInterface.cpp b/src/SciQLopPlotInterface.cpp new file mode 100644 index 0000000..06216fa --- /dev/null +++ b/src/SciQLopPlotInterface.cpp @@ -0,0 +1,34 @@ +/*------------------------------------------------------------------------------ +-- This file is a part of the SciQLop Software +-- Copyright (C) 2024, Plasma Physics Laboratory - CNRS +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +-------------------------------------------------------------------------------*/ +/*-- Author : Alexis Jeandet +-- Mail : alexis.jeandet@member.fsf.org +----------------------------------------------------------------------------*/ + +#include "SciQLopPlots/SciQLopPlotInterface.hpp" + +void SciQLopPlotInterface::set_selected(bool selected) noexcept +{ + if (m_selected != selected) + { + m_selected = selected; + Q_EMIT selection_changed(selected); + // to ensure that the style is updated + this->update(); + } +} diff --git a/src/SciQLopTracer.cpp b/src/SciQLopTracer.cpp index 7a68cdd..245a94d 100644 --- a/src/SciQLopTracer.cpp +++ b/src/SciQLopTracer.cpp @@ -51,15 +51,15 @@ std::string _render_value(const double value, const QCPAxis* const axis) if (duration > 60 * 60 * 24) return fmt::format("{:%Y-%m-%d %H:%M}", datetime); if (duration > 60 * 60) - return fmt::format( - "{:%H:%M:%S}", std::chrono::floor(datetime)); + return fmt::format("{:%H:%M:%S}", + std::chrono::floor(datetime)); return fmt::format("{:%M:%S}", std::chrono::floor(datetime)); } return _render_value(value); } -std::optional> _nearest_data_point( - const QPointF& pos, const QCPGraph* graph) +std::optional> _nearest_data_point(const QPointF& pos, + const QCPGraph* graph) { QCPGraphDataContainer::const_iterator it = graph->data()->constEnd(); QVariant details; @@ -75,9 +75,8 @@ std::optional> _nearest_data_point( return std::nullopt; } - -std::optional> _nearest_data_point( - const QPointF& pos, const QCPCurve* curve) +std::optional> _nearest_data_point(const QPointF& pos, + const QCPCurve* curve) { auto it = curve->data()->constEnd(); QVariant details; @@ -99,8 +98,8 @@ double _discretize(const double value, const double lower, const double upper, c return (floor((value - lower) / q) + 0.5) * q + lower; } -double _nearest_axis_value( - const double value, const QCPRange& range, const QCPAxis::ScaleType scale_type, const int count) +double _nearest_axis_value(const double value, const QCPRange& range, + const QCPAxis::ScaleType scale_type, const int count) { if (scale_type == QCPAxis::stLinear) { @@ -108,26 +107,50 @@ double _nearest_axis_value( } else // log scale { - return std::pow( - 10., _discretize(log10(value), log10(range.lower), log10(range.upper), count)); + return std::pow(10., + _discretize(log10(value), log10(range.lower), log10(range.upper), count)); } } -std::optional> _nearest_data_point( - const QPointF& pos, const QCPColorMap* colormap) +int _log_scale_index(const double value, const QCPRange& range, const int count) { + return static_cast(count * (log10(value) - log10(range.lower)) + / (log10(range.upper) - log10(range.lower))); +} + +std::optional> _nearest_data_point(const QPointF& pos, + const QCPColorMap* colormap) +{ + + const auto key = _nearest_axis_value( + colormap->keyAxis()->pixelToCoord(pos.x()), colormap->data()->keyRange(), + colormap->keyAxis()->scaleType(), colormap->data()->keySize()); + const auto value = _nearest_axis_value( + colormap->valueAxis()->pixelToCoord(pos.y()), colormap->data()->valueRange(), + colormap->valueAxis()->scaleType(), colormap->data()->valueSize()); - const auto key = _nearest_axis_value(colormap->keyAxis()->pixelToCoord(pos.x()), - colormap->data()->keyRange(), colormap->keyAxis()->scaleType(), - colormap->data()->keySize()); - const auto value = _nearest_axis_value(colormap->valueAxis()->pixelToCoord(pos.y()), - colormap->data()->valueRange(), colormap->valueAxis()->scaleType(), - colormap->data()->valueSize()); - const auto data = colormap->data()->data(key, value); + int keyIndex, valueIndex; + if (colormap->keyAxis()->scaleType() == QCPAxis::stLogarithmic) + { + keyIndex = _log_scale_index(key, colormap->data()->keyRange(), colormap->data()->keySize()); + } + else + { + colormap->data()->coordToCell(key, value, &keyIndex, nullptr); + } + if (colormap->valueAxis()->scaleType() == QCPAxis::stLogarithmic) + { + valueIndex = _log_scale_index(value, colormap->data()->valueRange(), + colormap->data()->valueSize()); + } + else + { + colormap->data()->coordToCell(key, value, nullptr, &valueIndex); + } + const auto data = colormap->data()->cell(keyIndex, valueIndex); return std::make_tuple(key, value, data); } - PlotQuadrant _quadrant(const QPointF& pos, const QCPAxisRect* axisRect) { const auto rect = axisRect->rect(); @@ -165,7 +188,6 @@ void _update_tooltip_alignment(QCPItemRichText* tooltip, const PlotQuadrant quad } // namespace _impl - TracerWithToolTip::TracerWithToolTip(QCustomPlot* parent) : m_tooltip(new QCPItemRichText(parent)), m_tracer(new SciQLopTracer(parent)) { @@ -198,12 +220,13 @@ void TracerWithToolTip::update_position(const QPointF& pos, bool replot) auto keyAxis = m_tracer->plotable()->keyAxis(); auto valueAxis = m_tracer->plotable()->valueAxis(); if (!std::isnan(m_data)) - m_tooltip->setHtml(fmt::format("x: {}
y: {}
z: {}", - _impl::_render_value(m_x, keyAxis), _impl::_render_value(m_y, valueAxis), - _impl::_render_value(m_data))); + m_tooltip->setHtml(fmt::format( + "x: {}
y: {}
z: {}", _impl::_render_value(m_x, keyAxis), + _impl::_render_value(m_y, valueAxis), _impl::_render_value(m_data))); else m_tooltip->setHtml(fmt::format("x: {}
y: {}", - _impl::_render_value(m_x, keyAxis), _impl::_render_value(m_y, valueAxis))); + _impl::_render_value(m_x, keyAxis), + _impl::_render_value(m_y, valueAxis))); if (replot) this->replot(); } @@ -275,19 +298,19 @@ double SciQLopTracer::selectTest(const QPointF& pos, bool onlySelectable, QVaria { if (clipRect().intersects( QRectF(center - QPointF(w, w), center + QPointF(w, w)).toRect())) - return qSqrt(qMin(QCPVector2D(pos).distanceSquaredToLine( - center + QPointF(-w, 0), center + QPointF(w, 0)), - QCPVector2D(pos).distanceSquaredToLine( - center + QPointF(0, -w), center + QPointF(0, w)))); + return qSqrt(qMin(QCPVector2D(pos).distanceSquaredToLine(center + QPointF(-w, 0), + center + QPointF(w, 0)), + QCPVector2D(pos).distanceSquaredToLine(center + QPointF(0, -w), + center + QPointF(0, w)))); break; } case TracerStyle::tsCrosshair: { - return qSqrt( - qMin(QCPVector2D(pos).distanceSquaredToLine(QCPVector2D(clip.left(), center.y()), - QCPVector2D(clip.right(), center.y())), - QCPVector2D(pos).distanceSquaredToLine(QCPVector2D(center.x(), clip.top()), - QCPVector2D(center.x(), clip.bottom())))); + return qSqrt(qMin( + QCPVector2D(pos).distanceSquaredToLine(QCPVector2D(clip.left(), center.y()), + QCPVector2D(clip.right(), center.y())), + QCPVector2D(pos).distanceSquaredToLine(QCPVector2D(center.x(), clip.top()), + QCPVector2D(center.x(), clip.bottom())))); } case TracerStyle::tsCircle: { @@ -425,8 +448,8 @@ void QCPAbstractPlottableDataLocator::setPosition(const QPointF& pos) } } -std::tuple QCPAbstractPlottableDataLocator::locate_data_graph( - const QPointF& pos, QCPGraph* graph) +std::tuple +QCPAbstractPlottableDataLocator::locate_data_graph(const QPointF& pos, QCPGraph* graph) { if (auto data = _impl::_nearest_data_point(pos, graph); data.has_value()) { @@ -435,8 +458,8 @@ std::tuple QCPAbstractPlottableDataLocator::locate_data_ return std::make_tuple(std::nan(""), std::nan(""), std::nan("")); } -std::tuple QCPAbstractPlottableDataLocator::locate_data_curve( - const QPointF& pos, QCPCurve* curve) +std::tuple +QCPAbstractPlottableDataLocator::locate_data_curve(const QPointF& pos, QCPCurve* curve) { if (auto data = _impl::_nearest_data_point(pos, curve); data.has_value()) { @@ -445,8 +468,8 @@ std::tuple QCPAbstractPlottableDataLocator::locate_data_ return std::make_tuple(std::nan(""), std::nan(""), std::nan("")); } -std::tuple QCPAbstractPlottableDataLocator::locate_data_colormap( - const QPointF& pos, QCPColorMap* colormap) +std::tuple +QCPAbstractPlottableDataLocator::locate_data_colormap(const QPointF& pos, QCPColorMap* colormap) { return *_impl::_nearest_data_point(pos, colormap); } diff --git a/src/TimeAxisSynchronizer.cpp b/src/TimeAxisSynchronizer.cpp index 4546c4e..9e98d03 100644 --- a/src/TimeAxisSynchronizer.cpp +++ b/src/TimeAxisSynchronizer.cpp @@ -26,7 +26,7 @@ void TimeAxisSynchronizer::_display_x_axis_only_last_plot() { auto ts_plots = only_sciqlop_timeserieplots(_plots); - for (auto* plot : ts_plots) + for (auto& plot : ts_plots) { plot->x_axis()->set_visible(false); } @@ -36,7 +36,7 @@ void TimeAxisSynchronizer::_display_x_axis_only_last_plot() } } -void TimeAxisSynchronizer::updatePlotList(const QList& plots) +void TimeAxisSynchronizer::updatePlotList(const QList>& plots) { AxisSynchronizer::updatePlotList(plots); _display_x_axis_only_last_plot(); diff --git a/src/TreeView.cpp b/src/TreeView.cpp new file mode 100644 index 0000000..de1d3ac --- /dev/null +++ b/src/TreeView.cpp @@ -0,0 +1,50 @@ +/*------------------------------------------------------------------------------ +-- This file is a part of the SciQLop Software +-- Copyright (C) 2024, Plasma Physics Laboratory - CNRS +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +-------------------------------------------------------------------------------*/ +/*-- Author : Alexis Jeandet +-- Mail : alexis.jeandet@member.fsf.org +----------------------------------------------------------------------------*/ +#include "SciQLopPlots/Inspector/View/TreeView.hpp" +#include +#include + +PlotsTreeView::PlotsTreeView(QWidget* parent) : QTreeView(parent) +{ + header()->setVisible(false); + setAlternatingRowColors(true); + setSelectionMode(QAbstractItemView::ExtendedSelection); +} + +void PlotsTreeView::keyPressEvent(QKeyEvent* event) +{ + if (event->key() == Qt::Key_Delete) + { + QModelIndexList indexes = selectionModel()->selectedIndexes(); + for (const QModelIndex& index : indexes) + { + if (index.isValid()) + { + model()->removeRow(index.row(), index.parent()); + } + } + } + else + { + QTreeView::keyPressEvent(event); + } +} diff --git a/src/VPlotsAlign.cpp b/src/VPlotsAlign.cpp index ef38ffb..291b5ef 100644 --- a/src/VPlotsAlign.cpp +++ b/src/VPlotsAlign.cpp @@ -32,12 +32,11 @@ class UnProtectedQCPAxisRect : public QCPAxisRect } }; - void VPlotsAlign::_recompute_margins() { std::size_t max_left_margin = 0UL; std::size_t max_right_pos = 1000000000UL; - for (auto p : _plots) + for (auto& p : _plots) { auto ar = reinterpret_cast(p->qcp_plot()->axisRect()); std::size_t left_margin = ar->calculateAutoMargin(QCP::MarginSide::msLeft); @@ -51,7 +50,7 @@ void VPlotsAlign::_recompute_margins() max_left_margin = std::max(max_left_margin, left_margin); max_right_pos = std::min(max_right_pos, p->width() - cmw); } - for (auto p : _plots) + for (auto& p : _plots) { auto ar = reinterpret_cast(p->qcp_plot()->axisRect()); std::size_t new_right_margin = p->width() - max_right_pos; @@ -76,14 +75,14 @@ void VPlotsAlign::_recompute_margins() VPlotsAlign::VPlotsAlign(QObject* parent) : SciQLopPlotCollectionBehavior(parent) { } -void VPlotsAlign::updatePlotList(const QList& plots) +void VPlotsAlign::updatePlotList(const QList>& plots) { _plots = only_sciqlopplots(plots); if (!_plots.isEmpty()) { _recompute_margins(); } - for (auto p : _plots) + for (auto& p : _plots) { connect(p, &SciQLopPlot::y_axis_range_changed, this, [this](SciQLopPlotRange) { _recompute_margins(); }); diff --git a/src/XAxisSynchronizer.cpp b/src/XAxisSynchronizer.cpp index 5a88542..d737024 100644 --- a/src/XAxisSynchronizer.cpp +++ b/src/XAxisSynchronizer.cpp @@ -25,9 +25,10 @@ void XAxisSynchronizer::_display_x_axis_only_last_plot() { - for (auto* plot : _plots) + for (auto& plot : _plots) { - plot->x_axis()->set_visible(false); + if (!plot.isNull()) + plot->x_axis()->set_visible(false); } if (!_plots.isEmpty()) { @@ -35,7 +36,7 @@ void XAxisSynchronizer::_display_x_axis_only_last_plot() } } -void XAxisSynchronizer::updatePlotList(const QList& plots) +void XAxisSynchronizer::updatePlotList(const QList>& plots) { AxisSynchronizer::updatePlotList(plots); _display_x_axis_only_last_plot(); diff --git a/src/icons.cpp b/src/icons.cpp new file mode 100644 index 0000000..4c53528 --- /dev/null +++ b/src/icons.cpp @@ -0,0 +1,63 @@ +/*------------------------------------------------------------------------------ +-- This file is a part of the SciQLop Software +-- Copyright (C) 2024, Plasma Physics Laboratory - CNRS +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 2 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program; if not, write to the Free Software +-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +-------------------------------------------------------------------------------*/ +/*-- Author : Alexis Jeandet +-- Mail : alexis.jeandet@member.fsf.org +----------------------------------------------------------------------------*/ +#include "SciQLopPlots/Icons/icons.hpp" +#include +#include +#include + +Icons::Icons(QObject* parent) : QObject(parent) +{ + m_icons[""] = QIcon(); + for (const auto& entry : QDir(":/icons/theme").entryInfoList(QDir::Files)) + { + m_icons[entry.fileName()] = QIcon(entry.filePath()); + m_icons[entry.baseName()] = QIcon(entry.filePath()); + m_icons[entry.filePath()] = QIcon(entry.filePath()); + } +} + +const QIcon& Icons::get_icon(const QString& name) +{ + if (!instance()->m_icons.contains(name)) + { + if (!QFile::exists(name)) + return instance()->m_icons[""]; + instance()->m_icons[name] = QIcon(name); + } + return instance()->m_icons[name]; +} + +void Icons::add_icon(const QString& name, const QIcon& icon, const QStringList& aliases) +{ + instance()->m_icons[name] = icon; + for (const auto& alias : aliases) + { + instance()->m_icons[alias] = icon; + } +} + +Q_APPLICATION_STATIC(Icons, _icons); + +Icons* Icons::instance() +{ + return _icons(); +} diff --git a/subprojects/fmt.wrap b/subprojects/fmt.wrap index 42b6159..fd50847 100644 --- a/subprojects/fmt.wrap +++ b/subprojects/fmt.wrap @@ -1,13 +1,13 @@ [wrap-file] -directory = fmt-11.0.1 -source_url = https://github.com/fmtlib/fmt/archive/11.0.1.tar.gz -source_filename = fmt-11.0.1.tar.gz -source_hash = 7d009f7f89ac84c0a83f79ed602463d092fbf66763766a907c97fd02b100f5e9 -patch_filename = fmt_11.0.1-1_patch.zip -patch_url = https://wrapdb.mesonbuild.com/v2/fmt_11.0.1-1/get_patch -patch_hash = 0a8b93d1ee6d84a82d3872a9bfb4c3977d8a53f7f484d42d1f7ed63ed496d549 -source_fallback_url = https://github.com/mesonbuild/wrapdb/releases/download/fmt_11.0.1-1/fmt-11.0.1.tar.gz -wrapdb_version = 11.0.1-1 +directory = fmt-11.0.2 +source_url = https://github.com/fmtlib/fmt/archive/11.0.2.tar.gz +source_filename = fmt-11.0.2.tar.gz +source_hash = 6cb1e6d37bdcb756dbbe59be438790db409cdb4868c66e888d5df9f13f7c027f +patch_filename = fmt_11.0.2-1_patch.zip +patch_url = https://wrapdb.mesonbuild.com/v2/fmt_11.0.2-1/get_patch +patch_hash = 90c9e3b8e8f29713d40ca949f6f93ad115d78d7fb921064112bc6179e6427c5e +source_fallback_url = https://github.com/mesonbuild/wrapdb/releases/download/fmt_11.0.2-1/fmt-11.0.2.tar.gz +wrapdb_version = 11.0.2-1 [provide] fmt = fmt_dep diff --git a/tests/manual-tests/All/main.py b/tests/manual-tests/All/main.py index ac9758f..07e3c2c 100644 --- a/tests/manual-tests/All/main.py +++ b/tests/manual-tests/All/main.py @@ -1,6 +1,6 @@ from SciQLopPlots import SciQLopPlot, MultiPlotsVerticalSpan,SciQLopMultiPlotPanel, SciQLopVerticalSpan, \ - SciQLopTimeSeriesPlot, GraphType, PlotType, AxisType, SciQLopPlotRange -from PySide6.QtWidgets import QMainWindow, QApplication, QScrollArea,QWidget, QVBoxLayout, QTabWidget, QDockWidget + SciQLopTimeSeriesPlot, GraphType, PlotType, AxisType, SciQLopPlotRange, PlotsModel, InspectorView +from PySide6.QtWidgets import QMainWindow, QApplication, QScrollArea,QWidget, QVBoxLayout, QTabWidget, QDockWidget, QTreeView from PySide6.QtGui import QPen, QColorConstants, QColor, QBrush from PySide6.QtCore import Qt, QTimer, QObject, QThread, Signal import sys, os @@ -196,13 +196,13 @@ def __init__(self,parent): class RealTimeAudio(SciQLopMultiPlotPanel): class AudioDataProducer(QThread): update_signal = Signal(np.ndarray, np.ndarray) - def __init__(self,parent=None, size=2**10): + def __init__(self,parent=None, size=2**10, sample_rate=192000): super().__init__(parent) self.moveToThread(self) try: import sounddevice as sd self._sd = sd - sd.default.samplerate = 44100 + sd.default.samplerate = sample_rate sd.default.channels = 1 self._size = size self.x = np.arange(self._size, dtype=np.float64) @@ -224,17 +224,42 @@ def run(self): while True: self.sleep(1) - - def __init__(self,parent): + class AudioSpectrogram: + def __init__(self, size, fft_size, sample_rate, roll=True): + self._size = size + self._x = np.arange(size, dtype=np.float64) + self._y = np.fft.fftfreq(fft_size, 1./sample_rate)[1:fft_size//2] + self._cutof = np.where(self._y>20000)[0][0] + self._y = self._y[:self._cutof] + self._z = np.zeros((size,len(self._y)), dtype=np.float64) + self._last_x = len(self._z)-1 + self._roll = roll + + def __call__(self, x, y, *args): + try: + self._z[self._last_x] = y[:self._cutof] + if self._roll: + self._z = np.roll(self._z, -1, axis=0) + else: + self._last_x = (self._last_x + 1) % self._size + return self._x, self._y, self._z + except Exception as e: + print(f"Error: {e}") + return None + + def __init__(self, parent): SciQLopMultiPlotPanel.__init__(self,parent, synchronize_x=False, synchronize_time=True) (self._plot,self._graph) = self.plot(np.arange(10)*1., np.arange(10)*1.,labels=["Audio"], colors=[QColorConstants.Blue]) - size = 2**10 - plot, _ = self.plot(lambda x,y:fft(x,y,size),index=0,labels=["FFT"], colors=[QColorConstants.Red], sync_with=self._graph) + size = 2**12 + sample_rate = 48000 + plot, self._fft_graph = self.plot(lambda x,y:fft(x,y,size),index=0,labels=["FFT"], colors=[QColorConstants.Red], sync_with=self._graph) plot.x_axis().set_log(True) plot.x_axis().set_range(0.01, 1) plot.y_axis().set_log(True) plot.y_axis().set_range(1., 1e-4) - self._data_producer = RealTimeAudio.AudioDataProducer(size=size) + self._audio_spec = RealTimeAudio.AudioSpectrogram(300,size,sample_rate) + plot, _ = self.plot(self._audio_spec, name="Spectrogram",graph_type=GraphType.ColorMap, plot_type=PlotType.BasicXY, sync_with=self._fft_graph,y_log_scale=False,z_log_scale=True) + self._data_producer = RealTimeAudio.AudioDataProducer(size=size, sample_rate=sample_rate) self._data_producer.update_signal.connect(lambda x,y: self._graph.set_data(x,y)) diff --git a/tests/manual-tests/DragNDrop/main.py b/tests/manual-tests/DragNDrop/main.py new file mode 100644 index 0000000..fd5dd34 --- /dev/null +++ b/tests/manual-tests/DragNDrop/main.py @@ -0,0 +1,74 @@ +from SciQLopPlots import SciQLopPlot, \ + MultiPlotsVerticalSpan ,SciQLopMultiPlotPanel, SciQLopVerticalSpan, \ + SciQLopTimeSeriesPlot, PlotType, AxisType, GraphType, PlotDragNDropCallback +from PySide6.QtWidgets import QMainWindow, QApplication, QListWidget ,QWidget, QSplitter, QHBoxLayout, QTabWidget, QDockWidget +from PySide6.QtGui import QColorConstants +from PySide6.QtCore import Qt, QMimeData +import sys, os +import numpy as np +from datetime import datetime, timezone +import threading +from typing import Dict, Any + +sys.path.append(os.path.join(os.path.dirname(__file__), "..")) +from common import MainWindow + + +os.environ['QT_API'] = 'PySide6' + +class DNDSource(QListWidget): + def __init__(self, parent=None): + super().__init__(parent) + self.addItems(["Cos", "Sin", "Rand"]) + self.setDragEnabled(True) + + def mimeData(self, items): + mime_data = QMimeData() + mime_data.setData("text/plain", (";".join([item.text() for item in items])).encode()) + return mime_data + + +class MyCallback(PlotDragNDropCallback): + def __init__(self,parent, source): + super().__init__("text/plain", True, parent) + self.source = source + + def call(self, plot, mime_data:QMimeData): + print(f"Called with plot {plot}, {mime_data}") + data = mime_data.data("text/plain").data().decode() + print(data) + x = np.linspace(0, 2*np.pi, 100) + if data == "Cos": + plot.plot(x, np.cos(x), labels=["cos"], colors=[QColorConstants.DarkGreen]) + elif data == "Sin": + plot.plot(x, np.sin(x), labels=["sin"], colors=[QColorConstants.DarkBlue]) + elif data == "Rand": + plot.plot(x, np.random.rand(len(x)), labels=["rand"], colors=[QColorConstants.DarkRed]) + + + +class DNDTarget(SciQLopMultiPlotPanel): + def __init__(self, parent=None, source=None): + super().__init__(parent,synchronize_x=False, synchronize_time=True) + self._callback = MyCallback(self, source=source) + self.add_accepted_mime_type(self._callback) + + +class DNDTest(QSplitter): + def __init__(self, parent=None): + super().__init__(parent) + self.setAcceptDrops(True) + self.source = DNDSource(self) + self.addWidget(self.source) + self.target = DNDTarget(self, source=self.source) + self.addWidget(self.target) + + +if __name__ == '__main__': + QApplication.setAttribute(Qt.AA_UseDesktopOpenGL, True) + QApplication.setAttribute(Qt.AA_ShareOpenGLContexts, True) + app = QApplication(sys.argv) + w = MainWindow() + w.add_tab(DNDTest(w), "DND Test") + w.show() + app.exec() diff --git a/tests/manual-tests/MicroSciQLop/main.py b/tests/manual-tests/MicroSciQLop/main.py index 96d6a5e..614652d 100644 --- a/tests/manual-tests/MicroSciQLop/main.py +++ b/tests/manual-tests/MicroSciQLop/main.py @@ -1,6 +1,6 @@ from SciQLopPlots import SciQLopPlot, \ MultiPlotsVerticalSpan ,SciQLopMultiPlotPanel, SciQLopVerticalSpan, \ - SciQLopTimeSeriesPlot, PlotType, AxisType + SciQLopTimeSeriesPlot, PlotType, AxisType, GraphType from PySide6.QtWidgets import QMainWindow, QApplication, QScrollArea,QWidget, QVBoxLayout, QTabWidget, QDockWidget from PySide6.QtGui import QColorConstants from PySide6.QtCore import Qt @@ -47,7 +47,7 @@ def __setattr__(self, key, value): exit() -def spz_get_data(start, stop): +def mms1_fgm_b_gse_srvy_l2(start, stop): try: v=spz.get_data(spz.inventories.tree.cda.MMS.MMS1.FGM.MMS1_FGM_SRVY_L2.mms1_fgm_b_gse_srvy_l2, start, stop) if v is None: @@ -59,6 +59,27 @@ def spz_get_data(start, stop): print(f"Error: {e}") return None +def mms1_spectro(product, start, stop): + try: + v=spz.get_data(product, start, stop) + if v is None: + return None + x=(v.time.astype(np.int64)/1e9).astype(np.float64) + return x, v.axes[1].values.astype(np.float64) ,v.values.astype(np.float64) + except Exception as e: + print(f"Error: {e}") + return None + +def mms1_edp_hmfe_dsl_brst_l2(start, stop): + try: + v=spz.get_data(spz.inventories.tree.cda.MMS.MMS1.ADP_SDP.MMS1_EDP_BRST_L2_HMFE.mms1_edp_hmfe_dsl_brst_l2, start, stop) + if v is None: + return None + x=(v.time.astype(np.int64)/1e9).astype(np.float64) + return x, v.values.astype(np.float64) + except Exception as e: + print(f"Error: {e}") + return None class Spectrum: def __init__(self, fft_size): @@ -89,18 +110,50 @@ def __call__(self, x, y): class MMS(SciQLopMultiPlotPanel): def __init__(self,parent): SciQLopMultiPlotPanel.__init__(self,parent, synchronize_x=False, synchronize_time=True) - _, graph = self.plot(spz_get_data, + self.plot(lambda start, stop: mms1_spectro('cda/MMS1_FPI_FAST_L2_DIS-MOMS/mms1_dis_energyspectr_omni_fast', start, stop), + name="mms1_dis_energyspectr_omni_fast", + graph_type=GraphType.ColorMap, + plot_type=PlotType.TimeSeries, + y_log_scale=True, + z_log_scale=True) + _, graph = self.plot(mms1_fgm_b_gse_srvy_l2, labels=['Bx GSE', 'By GSE', 'Bz GSE', 'Bt'], colors=[QColorConstants.Red, QColorConstants.Green, QColorConstants.Blue, QColorConstants.Black], plot_type=PlotType.TimeSeries) self._fft = Spectrum(2**9) - p,_=self.plot(self._fft, index=0, labels=['Spectrum'], colors=[QColorConstants.Red], plot_type=PlotType.BasicXY, sync_with=graph) + p,_=self.plot(self._fft, index=1, labels=['Spectrum'], colors=[QColorConstants.Red], plot_type=PlotType.BasicXY, sync_with=graph) p.x_axis().set_log(True) p.x_axis().set_range(0.1, 2) p.y_axis().set_log(True) p.y_axis().set_range(1., 1e-4) self.set_time_axis_range(datetime(2019,2,17,12,33,0,0,timezone.utc), datetime(2019,2,17,12,34,0,0,timezone.utc)) +class MMS_Spectro_Only(SciQLopMultiPlotPanel): + def __init__(self,parent): + SciQLopMultiPlotPanel.__init__(self,parent, synchronize_x=False, synchronize_time=True) + self.plot(lambda start, stop: mms1_spectro('cda/MMS1_FPI_FAST_L2_DIS-MOMS/mms1_dis_energyspectr_omni_fast', start, stop), + name="mms1_dis_energyspectr_omni_fast", + graph_type=GraphType.ColorMap, + plot_type=PlotType.TimeSeries, + y_log_scale=True, + z_log_scale=True) + self.plot(lambda start, stop: mms1_spectro('cda/MMS1_FPI_BRST_L2_DIS-MOMS/mms1_dis_energyspectr_omni_brst', start, stop), + name="mms1_dis_energyspectr_omni_brst", + graph_type=GraphType.ColorMap, + plot_type=PlotType.TimeSeries, + y_log_scale=True, + z_log_scale=True) + self.set_time_axis_range(datetime(2019,2,17,12,33,0,0,timezone.utc), datetime(2019,2,17,12,34,0,0,timezone.utc)) + +class MMS_edp_hmfe(SciQLopMultiPlotPanel): + def __init__(self,parent): + SciQLopMultiPlotPanel.__init__(self,parent, synchronize_x=False, synchronize_time=True) + _, graph = self.plot(mms1_edp_hmfe_dsl_brst_l2, + labels=['Ex', 'Ey', 'Ez'], + colors=[QColorConstants.Red, QColorConstants.Green, QColorConstants.Blue], + plot_type=PlotType.TimeSeries) + + self.set_time_axis_range(datetime(2023,10,20,7,0,0,0,timezone.utc), datetime(2023,10,20,9,0,0,0,timezone.utc)) if __name__ == '__main__': from speasy.core.cache import _cache @@ -110,5 +163,7 @@ def __init__(self,parent): app = QApplication(sys.argv) w = MainWindow() w.add_tab(MMS(w), "MMS") + w.add_tab(MMS_Spectro_Only(w), "MMS Spectro Only") + w.add_tab(MMS_edp_hmfe(w), "MMS EDP HMFE") w.show() app.exec() diff --git a/tests/manual-tests/Products/main.py b/tests/manual-tests/Products/main.py new file mode 100644 index 0000000..07fa449 --- /dev/null +++ b/tests/manual-tests/Products/main.py @@ -0,0 +1,57 @@ +from SciQLopPlots import SciQLopPlot, SciQLopMultiPlotPanel, ProductsModel, Icons, ProductsModelNode, ProductsModelNodeType, ProductsView, ParameterType +from PySide6.QtWidgets import QMainWindow, QApplication +from PySide6.QtCore import Qt +import sys +import os +import json + +os.environ['QT_API'] = 'PySide6' + +sys.path.append(os.path.join(os.path.dirname(__file__), "..")) +from common import MainWindow + +__HERE__ = os.path.dirname(__file__) + + +def filter_metadata(json_node): + meta = {} + for k, v in json_node.items(): + if k.startswith("__spz_"): + continue + if not isinstance(v, dict): + meta[k] = v + return meta + +def filter_children(json_node): + children = {} + for k, v in json_node.items(): + if isinstance(v, dict): + children[k] = v + return children + +def load_node(path, json_node): + if json_node["__spz_type__"] == "ParameterIndex": + node = ProductsModelNode(json_node["__spz_uid__"],"", filter_metadata(json_node), ProductsModelNodeType.PARAMETER, ParameterType.Multicomponents, "", None) + else: + node = ProductsModelNode(json_node["__spz_uid__"], filter_metadata(json_node), "folder_open") + + ProductsModel.instance().add_node(path, node) + for k, v in filter_children(json_node).items(): + load_node(path + [k], v) + +def load_products(): + with open(os.path.join(__HERE__, "products.json")) as f: + products = json.load(f) + load_node([], products) + + +if __name__ == '__main__': + QApplication.setAttribute(Qt.AA_UseDesktopOpenGL, True) + QApplication.setAttribute(Qt.AA_ShareOpenGLContexts, True) + app = QApplication(sys.argv) + w = MainWindow() + w.add_tab(ProductsView(w), "Products") + load_products() + + w.show() + app.exec() diff --git a/tests/manual-tests/Products/products.json b/tests/manual-tests/Products/products.json new file mode 100644 index 0000000..01bc32f --- /dev/null +++ b/tests/manual-tests/Products/products.json @@ -0,0 +1 @@ +{"Catalogs": {"SharedCatalogs": {"BepiColombo_Cruise_Science_WG": {"BepiCoordObs_Windows_of_Opportunities": {"__spz_name__": "BepiCoordObs_Windows_of_Opportunities", "__spz_provider__": "amda", "__spz_type__": "CatalogIndex", "__spz_uid__": "sharedcatalog_21", "created": "2020-07-03T14:48:14", "description": " BepiColombo coordinated observations catalogue is made in the framework of the ESA/JAXA working group: \"BepiColombo's cruise phase coordinated observations\". It includes potential windows of opportunities for coordinated measurements with different spacecraft in the inner and outer heliosphere from 01/10/2020 until 31/12/2025. The spacecraft comprise of BepiColombo (Bepi), Solar Orbiter (SolO), Parker Solar Probe (PSP), Stereo A and Juice. In addition to these missions, planets were also added: Venus, Earth, Mars and Jupiter. This investigation was done using AMDA's \"Data Mining\" and \"Statistics\" tools. The latest kernels for the objects ephemeris were used at the time the catalogue was generated (june 2020).\n \n Columns of the catalogue are:\n \n Start_time End_time Geometry Spacecraft SolarWind_speed BepiColombo_flybys SolarOrbiter_flybys Juice_flybys min_bepi_r_sun max_bepi_r_sun avg_bepi_r_sun min_bepi_lon_hee max_bepi_lon_hee avg_bepi_lon_hee min_bepi_lat_hee max_bepi_lat_hee avg_bepi_lat_hee min_so_r_sun max_so_r_sun avg_so_r_sun min_so_lon_hee max_so_lon_hee avg_so_lon_hee min_so_lat_hee max_so_lat_hee avg_so_lat_hee min_psp_r_sun max_psp_r_sun avg_psp_r_sun min_psp_lon_hee max_psp_lon_hee avg_psp_lon_hee min_psp_lat_hee max_psp_lat_hee avg_psp_lat_hee min_sta_r_hee max_sta_r_hee avg_sta_r_hee min_sta_lon_hee max_sta_lon_hee avg_sta_lon_hee min_sta_lat_hee max_sta_lat_hee avg_sta_lat_hee min_juice_cruise_r max_juice_cruise_r avg_juice_cruise_r min_juice_cruise_lon_hee max_juice_cruise_lon_hee avg_juice_cruise_lon_hee min_juice_cruise_lat_hee max_juice_cruise_lat_hee avg_juice_cruise_lat_hee min_r_venus max_r_venus avg_r_venus min_venus_lon_hee max_venus_lon_hee avg_venus_lon_hee min_venus_lat_hee max_venus_lat_hee avg_venus_lat_hee min_r_earth max_r_earth avg_r_earth min_earth_lon_hee max_earth_lon_hee avg_earth_lon_hee min_earth_lat_hee max_earth_lat_hee avg_earth_lat_hee min_r_mars max_r_mars avg_r_mars min_mars_lon_hee max_mars_lon_hee avg_mars_lon_hee min_mars_lat_hee max_mars_lat_hee avg_mars_lat_hee min_r_jupiter max_r_jupiter avg_r_jupiter min_jupiter_lon_hee max_jupiter_lon_hee avg_jupiter_lon_hee min_jupiter_lat_hee max_jupiter_lat_hee avg_jupiter_lat_hee", "id": "sharedcatalog_21", "is_public": "True", "name": "BepiCoordObs_Windows_of_Opportunities", "nbIntervals": "1174", "nbParam": "87", "sharedBy": "genot", "sharedDate": "2020-07-03T14:48:41+00:00", "surveyStart": "2020-09-01T00:00:00", "surveyStop": "2025-10-30T18:30:00", "xmlid": "sharedcatalog_21"}, "__spz_name__": "BepiColombo_Cruise_Science_WG", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "BepiColombo_Cruise_Science_WG_catalog", "is_public": "True", "name": "BepiColombo_Cruise_Science_WG", "xmlid": "BepiColombo_Cruise_Science_WG_catalog"}, "EARTH": {"Dst_Ji2012": {"__spz_name__": "Dst_Ji2012", "__spz_provider__": "amda", "__spz_type__": "CatalogIndex", "__spz_uid__": "sharedcatalog_38", "contact": "vincent.genot@irap.omp.eu", "created": "2022-10-18T12:59:13.000000", "description": "Catalogue from Ji et al., 2012 J. Geophys. Res., 117, A03209\nhttps://doi.org/10.1029/2011JA016872\n\nThe start times are defined as the times when there were noticeable decrease of Dst values after the corresponding interplanetary shocks (Storm Sudden Commencements, SSC) by checking the variation of the solar wind data (velocity, density, and magnetic field). The end times are defined as the times when the Dst just recovers to above \u221250 nT after the minimum Dst.\n\nDst min values are in nT.\nAbbreviations are sMC, MC preceded by a fast shock; SH, sheath field; CIR, corotating interaction region; nonMC, ICME that does not show the signature of a magnetic cloud.", "id": "sharedcatalog_38", "is_public": "True", "name": "Dst_Ji2012", "nbIntervals": "63", "nbParam": "2", "sharedBy": "genot", "sharedDate": "2022-10-18T13:07:27+00:00", "surveyStart": "1998-02-17T12:00:00", "surveyStop": "2006-12-16T03:00:00", "xmlid": "sharedcatalog_38"}, "Dst_Li2020": {"__spz_name__": "Dst_Li2020", "__spz_provider__": "amda", "__spz_type__": "CatalogIndex", "__spz_uid__": "sharedcatalog_36", "contact": "vincent.genot@irap.omp.eu", "created": "2022-10-18T10:47:53.000000", "description": "Catalogue from Dongni Li and Shuo Yao 2020 ApJ 891 79\nhttps://doi.org/10.3847/1538-4357/ab7197\n\nStart Time corresponds to the Main phase start time\nStop Time corresponds to the Recovery phase end time\n\nColumns are:\n- ICME start time\n- Magnetic clouds? (Y)es or (N)o\n- Carbon Cold? (Y)es or (N)o\n- Helium enhanced? (Y)es or (N)o\n- Magnetic field z component minimum (nT)\n- Dst index minimum time\n- Dst minimum value (nT)\n\nOriginal catalogue is at https://cfn-live-content-bucket-iop-org.s3.amazonaws.com/journals/0004-637X/891/1/79/revision1/apjab7197t2_mrt.txt?AWSAccessKeyId=AKIAYDKQL6LTV7YY2HIK&Expires=1666616600&Signature=nsKncw9FH%2Fdyh67B6nEmW9Su5b8%3D", "id": "sharedcatalog_36", "is_public": "True", "name": "Dst_Li2020", "nbIntervals": "95", "nbParam": "7", "sharedBy": "genot", "sharedDate": "2022-10-18T13:06:58+00:00", "surveyStart": "1998-03-04T12:30:00", "surveyStop": "2011-08-08T08:30:00", "xmlid": "sharedcatalog_36"}, "Dst_Lu2016": {"__spz_name__": "Dst_Lu2016", "__spz_provider__": "amda", "__spz_type__": "CatalogIndex", "__spz_uid__": "sharedcatalog_37", "contact": "vincent.genot@irap.omp.eu", "created": "2022-10-18T11:58:55.000000", "description": "Catalogue from Lu et al., PSS, Volume 120, January 2016, p.48-55\nhttps://doi.org/10.1016/j.pss.2015.11.004\n\nThe start time is determined by checking the significant decrease of Dst value from a relatively stable state. The end time is determined by checking the Dst value rising above \u221250 nT after the minimum Dst.\n\nColumn is:\n- Dst minimum value (nT)", "id": "sharedcatalog_37", "is_public": "True", "name": "Dst_Lu2016", "nbIntervals": "80", "nbParam": "1", "sharedBy": "genot", "sharedDate": "2022-10-18T13:07:13+00:00", "surveyStart": "1995-03-26T05:00:00", "surveyStop": "2014-02-19T16:00:00", "xmlid": "sharedcatalog_37"}, "EDR_catalogue": {"__spz_name__": "EDR_catalogue", "__spz_provider__": "amda", "__spz_type__": "CatalogIndex", "__spz_uid__": "sharedcatalog_40", "contact": "genot", "created": "2023-09-06T14:44:01.000000", "description": "from https://zenodo.org/record/8319481\nList of Electron Diffusion Regions (EDR) during the phases 1a & 1b of the NASA/MMS mission.\nEDR from Lenouvel_et_al._[2021] and Lenouvel_(unpublished) were detected with two distinct machine learning algorithms. The first algorithm (MLP) is detailed in Lenouvel_et_al._[2021]. Both algorithms (MLP and CNN) are described in Q. Lenouvel's PhD manuscript and in \"Advanced Methods for Analyzing In-Situ Observations of Magnetic Reconnection\" submitted to Space Science Reviews by Hasegawa et al..\nFor completeness, other EDR events reported in the literature are added to the list. Note that some events were observed by other MMS spacecraft at slightly different times.", "id": "sharedcatalog_40", "is_public": "True", "name": "EDR_catalogue", "nbIntervals": "72", "nbParam": "2", "sharedBy": "genot", "sharedDate": "2023-09-06T14:45:43+00:00", "surveyStart": "2015-09-08T11:01:20", "surveyStop": "2017-01-27T12:05:43", "xmlid": "sharedcatalog_40"}, "LPP_bowshock_list": {"__spz_name__": "LPP_bowshock_list", "__spz_provider__": "amda", "__spz_type__": "CatalogIndex", "__spz_uid__": "sharedcatalog_43", "contact": "aunai", "created": "2024-02-08T11:31:00.000000", "description": "Bow shock crossings observed by MMS obtained from ML algorithm at LPP. The start/stop times correspond to +-1min from the original central time. Following columns are X Y Z R theta phi", "id": "sharedcatalog_43", "is_public": "True", "name": "LPP_bowshock_list", "nbIntervals": "2025", "nbParam": "6", "sharedBy": "genot", "sharedDate": "2024-02-08T11:35:54+00:00", "surveyStart": "2015-10-07T11:18:00", "surveyStop": "2021-05-24T01:29:00", "xmlid": "sharedcatalog_43"}, "MMS_Lalti_BScrossings_2015_2020": {"__spz_name__": "MMS_Lalti_BScrossings_2015_2020", "__spz_provider__": "amda", "__spz_type__": "CatalogIndex", "__spz_uid__": "sharedcatalog_44", "contact": "genot", "created": "2024-02-14T14:08:28.000000", "description": "Bowshock crossings by MMS from Lalti et al., 2022 https://doi.org/10.1029/2022JA030454\nThis catalogue and the overview plots are at https://doi.org/10.5281/zenodo.6343989\nThe start/stop times correspond to +-1min from the original central time. Following columns are:\nburst_start\nburst_end\nBx_us\nBy_us\nBz_us\nB_us_abs\nsB_us_abs\nDelta_theta_B\nNi_us\nTi_us\nVx_us\nVy_us\nVz_us\nbeta_i_us\nPdyn_us\nthBn\nsthBn\nnormal_x\nnormal_y\nnormal_z\nMA\nsMA\nMf\nsMf\nB_jump\nNi_jump\nTe_jump\npos_x\npos_y\npos_z\nsc_sep_min\nsc_sep_max\nsc_sep_mean\nTQF", "id": "sharedcatalog_44", "is_public": "True", "name": "MMS_Lalti_BScrossings_2015_2020", "nbIntervals": "2797", "nbParam": "34", "sharedBy": "genot", "sharedDate": "2024-02-14T14:09:40+00:00", "surveyStart": "2015-10-07T11:19:10", "surveyStop": "2020-12-12T11:47:40", "xmlid": "sharedcatalog_44"}, "THEMIS_MPcrossings_2007_2016_V1": {"__spz_name__": "THEMIS_MPcrossings_2007-2016_V1", "__spz_provider__": "amda", "__spz_type__": "CatalogIndex", "__spz_uid__": "sharedcatalog_39", "contact": "vincent.genot@irap.omp.eu", "created": "2022-10-21T15:17:07.000000", "description": "THEMIS magnetopause crossings, including time and location of each THEMIS between 2007 and 2016 (inclusive).\n\nArchived data for the manuscript \u201cDo statistical models capture the dynamics of the magnetopause during sudden magnetospheric compressions?\u201d by Staples et al., 2020, Journal of Geophysical Research: Space Physics.\nhttps://doi.org/10.1029/2019JA027289\n\nData can also be found at https://zenodo.org/record/3700504\n\nParameters are:\n- time of each THEMIS probe crossing (start=stop)\n- X coordinate of THEMIS crossing location (GSE) (Re)\n- Y coordinate of THEMIS crossing location (GSE) (Re)\n- Z coordinate of THEMIS crossing location (GSE) (Re)\n- X coordinate of THEMIS crossing location (GSM) (Re)\n- Y coordinate of THEMIS crossing location (GSM) (Re)\n- Z coordinate of THEMIS crossing location (GSM) (Re)\n- THEMIS probe which crosses the magnetopause", "id": "sharedcatalog_39", "is_public": "True", "name": "THEMIS_MPcrossings_2007-2016_V1", "nbIntervals": "33946", "nbParam": "7", "sharedBy": "genot", "sharedDate": "2022-10-21T15:20:00+00:00", "surveyStart": "2007-04-08T21:46:41", "surveyStop": "2016-11-12T12:11:59", "xmlid": "sharedcatalog_39"}, "THEMIS_MPcrossings_2007_2016_V2": {"__spz_name__": "THEMIS_MPcrossings_2007-2016_V2", "__spz_provider__": "amda", "__spz_type__": "CatalogIndex", "__spz_uid__": "sharedcatalog_45", "contact": "genot", "created": "2024-02-14T14:36:08.000000", "description": "THEMIS magnetopause crossings, including time and location of each THEMIS between 2007 and 2016 (inclusive).\n\nArchived data for the manuscript \u201cDo statistical models capture the dynamics of the magnetopause during sudden magnetospheric compressions?\u201d by Staples et al., 2020, Journal of Geophysical Research: Space Physics.\nhttps://doi.org/10.1029/2019JA027289\n\nThis catalogue is also at https://zenodo.org/records/10655312\nNote this is the Version 2 without duplicated records\n\nParameters are:\n- time of each THEMIS probe crossing (start=stop)\n- X coordinate of THEMIS crossing location (GSE) (Re)\n- Y coordinate of THEMIS crossing location (GSE) (Re)\n- Z coordinate of THEMIS crossing location (GSE) (Re)\n- X coordinate of THEMIS crossing location (GSM) (Re)\n- Y coordinate of THEMIS crossing location (GSM) (Re)\n- Z coordinate of THEMIS crossing location (GSM) (Re)\n- THEMIS probe which crosses the magnetopause", "id": "sharedcatalog_45", "is_public": "True", "name": "THEMIS_MPcrossings_2007-2016_V2", "nbIntervals": "29141", "nbParam": "7", "sharedBy": "genot", "sharedDate": "2024-02-14T14:39:15+00:00", "surveyStart": "2007-04-08T21:46:41", "surveyStop": "2016-11-12T12:11:59", "xmlid": "sharedcatalog_45"}, "__spz_name__": "EARTH", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "EARTH_catalog", "is_public": "True", "model_regions_plasmas_cluster_2005": {"__spz_name__": "model_regions_plasmas_cluster_2005", "__spz_provider__": "amda", "__spz_type__": "CatalogIndex", "__spz_uid__": "sharedcatalog_23", "contact": "renard", "created": "2021-12-08T08:05:10", "description": "Prediction from:\nBreuillard Hugo et al. - Automatic Classification of Plasma Regions in Near-Earth Space With Supervised Machine Learning: Application to Magnetospheric Multi Scale 20162019 Observations - 2020\nhttp://dx.doi.org/10.3389/fspas.2020.00055\n\nGenerated by the CDPP/AMDA team by using:\n* 'Cluster 1/FGM/4 sec' and 'Cluster 1/CIS-HIA/ion moments' datasets published in AMDA\n* Pre-trained model publicly available in Gitlab: https://gitlab.com/aidaspace/notebooks_aida/-/tree/master/04_sitl_classification_region\n\n** This catalog has not been validated by the corresponding author. Please, use it with care. **\n\nThe predicted region is given by \"classes\" with the following mapping: \n* 0 : SW\n* 1 : FS\n* 2 : BS\n* 3 : MSH\n* 4 : MP\n* 5 : BL\n* 6 : MSP\n* 7 : PS\n* 8 : PSBL\n* 9 : LOBE\n", "id": "sharedcatalog_23", "is_public": "True", "name": "model_regions_plasmas_cluster_2005", "nbIntervals": "27244", "nbParam": "1", "parameters": "", "sharedBy": "renard", "sharedDate": "2021-12-08T08:19:41+00:00", "surveyStart": "2005-01-01T00:00:04", "surveyStop": "2005-12-31T23:55:52", "xmlid": "sharedcatalog_23"}, "model_regions_plasmas_mms_2019": {"__spz_name__": "model_regions_plasmas_mms_2019", "__spz_provider__": "amda", "__spz_type__": "CatalogIndex", "__spz_uid__": "sharedcatalog_22", "contact": "renard", "created": "2021-12-08T07:01:12", "description": "Prediction from:\nBreuillard Hugo et al. - Automatic Classification of Plasma Regions in Near-Earth Space With Supervised Machine Learning: Application to Magnetospheric Multi Scale 20162019 Observations - 2020\nhttp://dx.doi.org/10.3389/fspas.2020.00055\n\nGenerated by the CDPP/AMDA team by using:\n* 'MMS1/FGM/survey' and 'MMS1/FPI/fast mode/DIS : ions' datasets published in AMDA\n* Pre-trained model publicly available in Gitlab: https://gitlab.com/aidaspace/notebooks_aida/-/tree/master/04_sitl_classification_region\n\n** This catalog has not been validated by the corresponding author. Please, use it with care. **\n\nThe predicted region is given by \"classes\" with the following mapping: \n* 0 : SW\n* 1 : FS\n* 2 : BS\n* 3 : MSH\n* 4 : MP\n* 5 : BL\n* 6 : MSP\n* 7 : PS\n* 8 : PSBL\n* 9 : LOBE\n", "id": "sharedcatalog_22", "is_public": "True", "name": "model_regions_plasmas_mms_2019", "nbIntervals": "12691", "nbParam": "1", "parameters": "", "sharedBy": "renard", "sharedDate": "2021-12-08T07:04:52+00:00", "surveyStart": "2019-01-01T00:00:04", "surveyStop": "2019-12-31T23:56:37", "xmlid": "sharedcatalog_22"}, "name": "EARTH", "xmlid": "EARTH_catalog"}, "JUPITER": {"TailXing_opportunities_Europa": {"__spz_name__": "TailXing_opportunities_Europa", "__spz_provider__": "amda", "__spz_type__": "CatalogIndex", "__spz_uid__": "sharedcatalog_27", "contact": "renard", "created": "2022-02-23T12:31:49", "description": " Generated by the CDPP team from TailXing_opportunities_v12.csv\n Times for the expected footprint tail crossings by Juno, according to magnetic model JRM09\n Version 12: Put together on Apr 2021, Vincent Hue, SwRI. Contact vhue@swri.org for any suggestions/improvements\n Kernel list:\n - naif0012.tls\n - JNO_SCLKSCET.00112.tsc\n - jup230.bsp\n - rbsp_general010.tf\n - spk_ref_180429_210731_180509.bsp\n - spk_rec_110805_111026_120302.bsp\n - spk_rec_111026_120308_120726.bsp\n - spk_rec_120308_120825_121109.bsp\n - spk_rec_120825_130515_130708.bsp\n - spk_rec_130515_131005_151210.bsp\n - spk_rec_131005_131014_131101.bsp\n - spk_rec_131014_131114_140222.bsp\n - spk_rec_131114_140918_141208.bsp\n - spk_rec_140903_151003_160118.bsp\n - spk_rec_151003_160312_160418.bsp\n - spk_rec_160312_160522_160614.bsp\n - spk_rec_160522_160729_160909.bsp\n - spk_rec_160729_160923_161027.bsp\n - spk_rec_160923_161115_161121.bsp\n - spk_rec_161115_170106_170113.bsp\n - spk_rec_170106_170228_170307.bsp\n - spk_rec_170228_170422_170427.bsp\n - spk_rec_170422_170608_170621.bsp\n - spk_rec_170608_170728_170803.bsp\n - spk_rec_170728_170918_170922.bsp\n - spk_rec_170918_171121_171127.bsp\n - spk_rec_171121_180113_180117.bsp\n - spk_rec_180113_180307_180312.bsp\n - spk_rec_180307_180429_180504.bsp\n - spk_rec_180429_180621_180626.bsp\n - spk_rec_180620_180812_180821.bsp\n - spk_rec_180812_181004_181011.bsp\n - spk_rec_181004_181126_181205.bsp\n - spk_rec_181126_190118_190124.bsp\n - spk_rec_190118_190312_190319.bsp\n - spk_rec_190312_190504_190509.bsp\n - spk_rec_190504_190626_190627.bsp\n - spk_rec_190626_190817_190822.bsp\n - spk_rec_190817_191010_191022.bsp\n - spk_rec_191010_191201_191210.bsp", "id": "sharedcatalog_27", "is_public": "True", "name": "TailXing_opportunities_Europa", "nbIntervals": "218", "nbParam": "9", "parameters": "", "sharedBy": "renard", "sharedDate": "2022-02-23T12:35:52+00:00", "surveyStart": "2016-08-27T12:15:21", "surveyStop": "2025-08-15T20:48:57", "xmlid": "sharedcatalog_27"}, "TailXing_opportunities_Ganymede": {"__spz_name__": "TailXing_opportunities_Ganymede", "__spz_provider__": "amda", "__spz_type__": "CatalogIndex", "__spz_uid__": "sharedcatalog_28", "contact": "renard", "created": "2022-02-23T12:32:03", "description": " Generated by the CDPP team from TailXing_opportunities_v12.csv\n Times for the expected footprint tail crossings by Juno, according to magnetic model JRM09\n Version 12: Put together on Apr 2021, Vincent Hue, SwRI. Contact vhue@swri.org for any suggestions/improvements\n Kernel list:\n - naif0012.tls\n - JNO_SCLKSCET.00112.tsc\n - jup230.bsp\n - rbsp_general010.tf\n - spk_ref_180429_210731_180509.bsp\n - spk_rec_110805_111026_120302.bsp\n - spk_rec_111026_120308_120726.bsp\n - spk_rec_120308_120825_121109.bsp\n - spk_rec_120825_130515_130708.bsp\n - spk_rec_130515_131005_151210.bsp\n - spk_rec_131005_131014_131101.bsp\n - spk_rec_131014_131114_140222.bsp\n - spk_rec_131114_140918_141208.bsp\n - spk_rec_140903_151003_160118.bsp\n - spk_rec_151003_160312_160418.bsp\n - spk_rec_160312_160522_160614.bsp\n - spk_rec_160522_160729_160909.bsp\n - spk_rec_160729_160923_161027.bsp\n - spk_rec_160923_161115_161121.bsp\n - spk_rec_161115_170106_170113.bsp\n - spk_rec_170106_170228_170307.bsp\n - spk_rec_170228_170422_170427.bsp\n - spk_rec_170422_170608_170621.bsp\n - spk_rec_170608_170728_170803.bsp\n - spk_rec_170728_170918_170922.bsp\n - spk_rec_170918_171121_171127.bsp\n - spk_rec_171121_180113_180117.bsp\n - spk_rec_180113_180307_180312.bsp\n - spk_rec_180307_180429_180504.bsp\n - spk_rec_180429_180621_180626.bsp\n - spk_rec_180620_180812_180821.bsp\n - spk_rec_180812_181004_181011.bsp\n - spk_rec_181004_181126_181205.bsp\n - spk_rec_181126_190118_190124.bsp\n - spk_rec_190118_190312_190319.bsp\n - spk_rec_190312_190504_190509.bsp\n - spk_rec_190504_190626_190627.bsp\n - spk_rec_190626_190817_190822.bsp\n - spk_rec_190817_191010_191022.bsp\n - spk_rec_191010_191201_191210.bsp", "id": "sharedcatalog_28", "is_public": "True", "name": "TailXing_opportunities_Ganymede", "nbIntervals": "197", "nbParam": "9", "parameters": "", "sharedBy": "renard", "sharedDate": "2022-02-23T12:36:04+00:00", "surveyStart": "2016-08-27T12:12:24", "surveyStop": "2025-08-15T21:19:27", "xmlid": "sharedcatalog_28"}, "TailXing_opportunities_Io": {"__spz_name__": "TailXing_opportunities_Io", "__spz_provider__": "amda", "__spz_type__": "CatalogIndex", "__spz_uid__": "sharedcatalog_29", "contact": "renard", "created": "2022-02-23T12:32:21", "description": " Generated by the CDPP team from TailXing_opportunities_v12.csv\n Times for the expected footprint tail crossings by Juno, according to magnetic model JRM09\n Version 12: Put together on Apr 2021, Vincent Hue, SwRI. Contact vhue@swri.org for any suggestions/improvements\n Kernel list:\n - naif0012.tls\n - JNO_SCLKSCET.00112.tsc\n - jup230.bsp\n - rbsp_general010.tf\n - spk_ref_180429_210731_180509.bsp\n - spk_rec_110805_111026_120302.bsp\n - spk_rec_111026_120308_120726.bsp\n - spk_rec_120308_120825_121109.bsp\n - spk_rec_120825_130515_130708.bsp\n - spk_rec_130515_131005_151210.bsp\n - spk_rec_131005_131014_131101.bsp\n - spk_rec_131014_131114_140222.bsp\n - spk_rec_131114_140918_141208.bsp\n - spk_rec_140903_151003_160118.bsp\n - spk_rec_151003_160312_160418.bsp\n - spk_rec_160312_160522_160614.bsp\n - spk_rec_160522_160729_160909.bsp\n - spk_rec_160729_160923_161027.bsp\n - spk_rec_160923_161115_161121.bsp\n - spk_rec_161115_170106_170113.bsp\n - spk_rec_170106_170228_170307.bsp\n - spk_rec_170228_170422_170427.bsp\n - spk_rec_170422_170608_170621.bsp\n - spk_rec_170608_170728_170803.bsp\n - spk_rec_170728_170918_170922.bsp\n - spk_rec_170918_171121_171127.bsp\n - spk_rec_171121_180113_180117.bsp\n - spk_rec_180113_180307_180312.bsp\n - spk_rec_180307_180429_180504.bsp\n - spk_rec_180429_180621_180626.bsp\n - spk_rec_180620_180812_180821.bsp\n - spk_rec_180812_181004_181011.bsp\n - spk_rec_181004_181126_181205.bsp\n - spk_rec_181126_190118_190124.bsp\n - spk_rec_190118_190312_190319.bsp\n - spk_rec_190312_190504_190509.bsp\n - spk_rec_190504_190626_190627.bsp\n - spk_rec_190626_190817_190822.bsp\n - spk_rec_190817_191010_191022.bsp\n - spk_rec_191010_191201_191210.bsp", "id": "sharedcatalog_29", "is_public": "True", "name": "TailXing_opportunities_Io", "nbIntervals": "233", "nbParam": "9", "parameters": "", "sharedBy": "renard", "sharedDate": "2022-02-23T12:36:25+00:00", "surveyStart": "2016-08-27T12:19:27", "surveyStop": "2025-08-15T20:10:40", "xmlid": "sharedcatalog_29"}, "__spz_name__": "JUPITER", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "JUPITER_catalog", "is_public": "True", "name": "JUPITER", "xmlid": "JUPITER_catalog"}, "MARS": {"MAVENShockCrossings": {"__spz_name__": "MAVENShockCrossings", "__spz_provider__": "amda", "__spz_type__": "CatalogIndex", "__spz_uid__": "sharedcatalog_32", "contact": "amda@irap.omp.eu", "created": "2022-02-28T06:56:30", "description": " Generated by the CDPP team from Data_MAVEN.txt\n DOI : https://doi.org/10.5281/zenodo.6240624\n Lists of martian bow shock crossings with the corresponding extrapolated terminator altitudes (RTD).\n DATA_MAVEN.txt includes 3837 shock crossings by the Mars Atmosphere and Volatile EvolutioN spacecraft from November 2014 to April 2017 published by Fang et al. (2017) and Gruesbeck et al. (2018).\n The crossing time is the start time. The stop time is the crossing time + 1 min.", "id": "sharedcatalog_32", "is_public": "True", "name": "MAVENShockCrossings", "nbIntervals": "3837", "nbParam": "1", "parameters": "", "sharedBy": "amda@irap.omp.eu", "sharedDate": "2022-02-28T06:58:17+00:00", "surveyStart": "2014-11-12T12:37:00", "surveyStop": "2017-04-03T23:41:44", "xmlid": "sharedcatalog_32"}, "MEXShockCrossings": {"__spz_name__": "MEXShockCrossings", "__spz_provider__": "amda", "__spz_type__": "CatalogIndex", "__spz_uid__": "sharedcatalog_30", "contact": "amda@irap.omp.eu", "created": "2022-02-28T06:55:51", "description": " Generated by the CDPP team from Data_MEX.txt\n DOI : https://doi.org/10.5281/zenodo.6240624\n Lists of martian bow shock crossings with the corresponding extrapolated terminator altitudes (RTD).\n DATA_MEX.txt includes 11820 shock crossings by the Mars express spacecraft published by Hall et al. (2016) and Sanchez-Cano et al. (2019).\n The crossing time is the start time. The stop time is the crossing time + 1 min.", "id": "sharedcatalog_30", "is_public": "True", "name": "MEXShockCrossings", "nbIntervals": "11820", "nbParam": "1", "parameters": "", "sharedBy": "amda@irap.omp.eu", "sharedDate": "2022-02-28T06:57:23+00:00", "surveyStart": "2004-04-17T17:42:03", "surveyStop": "2015-05-23T21:09:14", "xmlid": "sharedcatalog_30"}, "MGSShockCrossings": {"__spz_name__": "MGSShockCrossings", "__spz_provider__": "amda", "__spz_type__": "CatalogIndex", "__spz_uid__": "sharedcatalog_31", "contact": "amda@irap.omp.eu", "created": "2022-02-28T06:56:10", "description": " Generated by the CDPP team from Data_MGS.txt\n DOI : https://doi.org/10.5281/zenodo.6240624\n Lists of martian bow shock crossings with the corresponding extrapolated terminator altitudes (RTD).\n DATA_MGS.txt includes 544 bow shock crossings from the Mars Global Surveyor spacecraft from September 1997 to September 1998.\n The crossing time is the start time. The stop time is the crossing time + 1 min.", "id": "sharedcatalog_31", "is_public": "True", "name": "MGSShockCrossings", "nbIntervals": "544", "nbParam": "1", "parameters": "", "sharedBy": "amda@irap.omp.eu", "sharedDate": "2022-02-28T06:58:03+00:00", "surveyStart": "1997-09-15T18:49:00", "surveyStop": "1998-09-13T19:56:00", "xmlid": "sharedcatalog_31"}, "__spz_name__": "MARS", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "MARS_catalog", "is_public": "True", "name": "MARS", "xmlid": "MARS_catalog"}, "SATURN": {"__spz_name__": "SATURN", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "SATURN_catalog", "is_public": "True", "name": "SATURN", "xmlid": "SATURN_catalog"}, "SOLAR_WIND": {"ICME_multi_catalog": {"__spz_name__": "ICME_multi-catalog", "__spz_provider__": "amda", "__spz_type__": "CatalogIndex", "__spz_uid__": "sharedcatalog_41", "contact": "genot", "created": "2023-11-23T15:19:02.000000", "description": "source : https://edatos.consorciomadrono.es/dataset.xhtml?persistentId=doi:10.21950/XGUIYX\nName: Carlos Larrodera\nInstitution: University of Alcal\u00e1\nEmail: carlos.larrodera@uah.es\nORCID: 0000-0003-4231-7690\n\nDescription of the project\nThe main idea of the project is to gather the information of different Interplanetary Coronal Mass Ejections (ICMEs) seen by different spacecraft to obtain a combined catalog that ranges between 0.25 to 5 AU and between 1975 and 2022.\nThis allows us to study statistically the different structures present in the ICMEs along with their evolution with distance and time.\n\nDescription of the dataset\nWe have obtained a list of around 2000 separate ICMEs detailed in this file. It should be noted that the only inherited information from the original catalogs are the dates\nThe file contains the following fields:\n\n- icme_start: Date of the beginning of the ICME (*) ; this is the Start Time of the catalogue\n- mo_start: Date of the beginning of the magnetic obstacle (MO) (**)\n- mo_end: Date of the end of the ICME; this is the Stop Time of the catalogue\n- r_heliodist: Heliocentric distance of the spacecraft that detected the ICME (units=Km)\n- spacecraft: Spacecraft that detected the ICME\n- theta: Longitude (HCI reference system)\n- lati: Latitude (HCI reference system)\n- cat_source: Original catalog from which the ICME belongs (***)\n- flg_sheath: Flag for presence of sheath: (1) ICME has a sheath (0) ICME has no sheath\n- v_aver_0048_sw: Upstream average solar wind speed. Time range covered: Between 0h and 48h before the ICME (units=Km/s)\n- v_std_0048_sw: Upstream standard deviation solar wind speed. Time range covered: Between 0h and 48h before the ICME (units=Km/s)\n- B_aver_0048_sw: Upstream average solar wind magnetic field. Time range covered: Between 0h and 48h before the ICME (units=nT)\n- B_std_0048_sw: Upstream standard deviation solar wind magnetic field. Time range covered: Between 0h and 48h before the ICME (units= nT)\n- N_aver_0048_sw: Upstream average solar wind density. Time range covered: Between 0h and 48h before the ICME (units= cm-3)\n- N_std_0048_sw: Upstream standard deviation solar wind density. Time range covered: Between 0h and 48h before the ICME (units=cm-3)\n- T_aver_0048_sw: Upstream average solar wind temperature. Time range covered: Between 0h and 48h before the ICME (units=K)\n- T_std_0048_sw: Upstream standard deviation solar wind temperature. Time range covered: Between 0h and 48h before the ICME (units=K)\n- v_aver_0024_sw: Upstream average solar wind speed. Time range covered: Between 0h and 24h before the ICME (units=Km/s)\n- v_std_0024sw: Upstream standard deviation solar wind speed. Time range covered: Between 0h and 24h before the ICME (units=Km/s)\n- B_aver_0024_sw: Upstream average solar wind magnetic field. Time range covered: Between 0h and 24h before the ICME (units=nT)\n- B_std_0024_sw: Upstream standard deviation solar wind magnetic field. Time range covered: Between 0h and 24h before the ICME (units= nT)\n- N_aver_0024_sw: Upstream average solar wind density. Time range covered: Between 0h and 24h before the ICME (units= cm-3)\n- N_std_0024_sw: Upstream standard deviation solar wind density. Time range covered: Between 0h and 24h before the ICME (units=cm-3)\n- T_aver_0024_sw: Upstream average solar wind temperature. Time range covered: Between 0h and 24h before the ICME (units=K)\n- T_std_0024_sw: Upstream standard deviation solar wind temperature. Time range covered: Between 0h and 24h before the ICME (units=K)\n- v_aver_2448_sw: Upstream average solar wind speed. Time range covered: Between 24h and 48h before the ICME (units=Km/s)\n- v_std_2448_sw: Upstream standar deviation solar wind speed. Time range covered: Between 24h and 48h before the ICME (units=Km/s)\n- B_aver_2448_sw: Upstream standard deviation solar wind magnetic field. Time range covered: Between 24h and 48h before the ICME (units=Km/s)\n- B_std_2448_sw: Upstream average solar wind magnetic field. Time range covered: Between 24h and 48h before the ICME (units=nT)\n- N_aver_2448_sw: Upstream standard deviation solar wind density. Time range covered: Between 24h and 48h before the ICME (units= nT)\n- N_std_2448_sw: Upstream average solar wind density. Time range covered: Between 24h and 48h before the ICME (units= cm-3)\n- T_aver_2448_sw: Upstream standard deviation solar wind temperature. Time range covered: Between 24h and 48h before the ICME (units=cm-3)\n- T_std_2448_sw: Upstream average solar wind temperature. Time range covered: Between 24h and 48h before the ICME (units=K)\n- v_aver_0012h_sw: Upstream average solar wind speed. Time range covered: Between 0h and 12h before the ICME (units=Km/s)\n- v_std_0012h_sw: Upstream standard deviation solar wind speed. Time range covered: Between 0h and 12h before the ICME (units=Km/s)\n- B_aver_0012h_sw: Upstream average solar wind magnetic field. Time range covered: Between 0h and 12h before the ICME (units=nT)\n- B_std_0012h_sw: Upstream standard deviation solar wind magnetic field. Time range covered: Between 0h and 12h before the ICME (units= nT)\n- N_aver_0012h_sw: Upstream average solar wind density. Time range covered: Between 0h and 12h before the ICME (units= cm-3)\n- N_std_0012h_sw: Upstream standard deviation solar wind density. Time range covered: Between 0h and 12h before the ICME (units=cm-3)\n- T_aver_0012h_sw: Upstream average solar wind temperature. Time range covered: Between 0h and 12h before the ICME (units=K)\n- T_std_0012h_sw: Upstream standard deviation solar wind temperature. Time range covered: Between 0h and 12h before the ICME (units=K)\n- v_aver_1224h_sw: Upstream average solar wind speed. Time range covered: Between 12h and 24h before the ICME (units=Km/s)\n- v_std_1224h_sw: Upstream standard deviation solar wind speed. Time range covered: Between 12h and 24h before the ICME (units=Km/s)\n- B_aver_1224h_sw: Upstream average solar wind magnetic field. Time range covered: Between 12h and 24h before the ICME (units=nT)\n- B_std_1224h_sw: Upstream standard deviation solar wind magnetic field. Time range covered: Between 12h and 24h before the ICME (units= nT)\n- N_aver_1224h_sw: Upstream average solar wind density. Time range covered: Between 12h and 24h before the ICME (units= cm-3)\n- N_std_1224h_sw: Upstream standard deviation solar wind density. Time range covered: Between 12h and 24h before the ICME (units=cm-3)\n- T_aver_1224h_sw: Upstream average solar wind temperature. Time range covered: Between 12h and 24h before the ICME (units=K)\n- T_std_1224h_sw: Upstream standard deviation solar wind temperature. Time range covered: Between 12h and 24h before the ICME (units=K)\n- v_aver_2436h_sw: Upstream average solar wind speed. Time range covered: Between 24h and 36h before the ICME (units=Km/s)\n- v_std_2436h_sw: Upstream standard deviation solar wind speed. Time range covered: Between 24h and 36h before the ICME (units=Km/s)\n- B_aver_2436h_sw: Upstream average solar wind magnetic field. Time range covered: Between 24h and 36h before the ICME (units=nT)\n- B_std_2436h_sw: Upstream standard deviation solar wind magnetic field. Time range covered: Between 24h and 36h before the ICME (units= nT)\n- N_aver_2436h_sw: Upstream average solar wind density. Time range covered: Between 24h and 36h before the ICME (units= cm-3)\n- N_std_2436h_sw: Upstream standard deviation solar wind density. Time range covered: Between 24h and 36h before the ICME (units=cm-3)\n- T_aver_2436h_sw: Upstream average solar wind temperature. Time range covered: Between 24h and 36h before the ICME (units=K)\n- T_std_2436h_sw: Upstream standard deviation solar wind temperature. Time range covered: Between 24h and 36h before the ICME (units=K)\n- v_aver_3648h_sw: Upstream average solar wind speed. Time range covered: Between 36h and 48h before the ICME (units=Km/s)\n- v_std_3648h_sw: Upstream standard deviation solar wind speed. Time range covered: Between 36h and 48h before the ICME (units=Km/s)\n- B_aver_3648h_sw: Upstream average solar wind magnetic field. Time range covered: Between 36h and 48h before the ICME (units=nT)\n- B_std_3648h_sw: Upstream standard deviation solar wind magnetic field. Time range covered: Between 36h and 48h before the ICME (units= nT)\n- N_aver_3648h_sw: Upstream average solar wind density. Time range covered: Between 36h and 48h before the ICME (units= cm-3)\n- N_std_3648h_sw: Upstream standard deviation solar wind density. Time range covered: Between 36h and 48h before the ICME (units=cm-3)\n- T_aver_3648h_sw: Upstream average solar wind temperature. Time range covered: Between 36h and 48h before the ICME (units=K)\n- T_std_3648h_sw: Upstream standard deviation solar wind temperature. Time range covered: Between 36h and 48h before the ICME (units=K)\n- v_aver_sh: Sheath average speed (units=km/s)\n- v_std_sh: Sheath standard deviation speed (units=km/s)\n- B_aver_sh: Sheath average magnetic field (units=nT)\n- B_std_sh: Sheath standard deviation magnetic field (units=nT)\n- N_aver_sh: Sheath average density (units=cm-3)\n- N_std_sh: Sheath standard deviation density (units=cm-3)\n- T_aver_sh: Sheath average temperature (units=K)\n- T_std_sh: Sheath standard deviation temperature (units=K)\n- v_aver_mo_cat_II: Magnetic Obstacle Cat II average speed (units=km/s)\n- v_std_mo_cat_II: Magnetic Obstacle Cat II standard deviation speed (units=km/s)\n- B_aver_mo_cat_II: Magnetic Obstacle Cat II average magnetic field (units=nT)\n- B_std_mo_cat_II: Magnetic Obstacle Cat II standard deviation magnetic field (units=nT)\n- N_aver_mo_cat_II: Magnetic Obstacle Cat II average density (units=cm-3)\n- N_std_mo_cat_II: Magnetic Obstacle Cat II standard deviation density (units=cm-3)\n- T_aver_mo_cat_II: Magnetic Obstacle Cat II average temperature (units=K)\n- T_std_mo_cat_II: Magnetic Obstacle Cat II standard deviation temperature (units=K)\n- v_aver_mo_cat_I: Magnetic Obstacle Cat I average speed (units=km/s)\n- v_std_mo_cat_I: Magnetic Obstacle Cat I standard deviation speed (units=km/s)\n- B_aver_mo_cat_I: Magnetic Obstacle Cat I average magnetic field (units=nT)\n- B_std_mo_cat_I: Magnetic Obstacle Cat I standard deviation magnetic field (units=nT)\n- N_aver_mo_cat_I: Magnetic Obstacle Cat I average density (units=cm-3)\n- N_std_mo_cat_I: Magnetic Obstacle Cat I standard deviation density (units=cm-3)\n- T_aver_mo_cat_I: Magnetic Obstacle Cat I average temperature (units=K)\n- T_std_mo_cat_I: Magnetic Obstacle Cat I standard deviation temperature (units=K)\n- dur_sh: Duration of the sheath (units=hours)\n- dur_mo_cat_II: Duration of the magnetic obstacle Cat II (units=hours)\n- dur_mo_cat_I: Duration of the magnetic obstacle Cat I (units=hours)\n- scycle: Solar cycle to which it belongs the ICME according to the icme_start date\n- v_sh_bg_mean: Average speed at the beginning of the sheath (units=km/s) (****)\n- v_sh_bg_std: Standard deviation of the speed at the beginning of the sheath (units=km/s) (****)\n- v_sh_end_mean: Average speed at the end of the sheath (units=km/s) (****)\n- v_sh_end_std: Standard deviation of the speed at the end of the sheath (units=km/s) (****)\n- v_sh_max: Maximum value of speed in the sheath (units=km/s)\n- v_sh_min: Minimum value of speed in the sheath (units=km/s)\n- B_sh_bg_mean: Average magnetic field at the beginning of the sheath (units=nT) (****)\n- B_sh_bg_std: Standard deviation of the magnetic field at the beginning of the sheath (units=nT) (****)\n- B_sh_end_mean: Average magnetic field at the end of the sheath (units=nT) (****)\n- B_sh_end_std: Standard deviation of the magnetic field at the end of the sheath (units=nT) (****)\n- B_sh_max: Maximum value of magnetic field in the sheath (units=nT)\n- B_sh_min: Minimum value of magnetic field in the sheath (units=nT)\n- N_sh_bg_mean: Average density at the beginning of the sheath (units=cm-3) (****)\n- N_sh_bg_std: Standard deviation of the density at the beginning of the sheath (units=cm-3) (****)\n- N_sh_end_mean: Average density at the end of the sheath (units=cm-3) (****)\n- N_sh_end_std: Standard deviation of the density at the end of the sheath (units=cm-3) (****)\n- N_sh_max: Maximum value of density in the sheath (units=cm-3)\n- N_sh_min: Minimum value of density in the sheath (units=cm-3)\n- T_sh_bg_mean: Average temperature at the beginning of the sheath (units=K) (****)\n- T_sh_bg_std: Standard deviation of the temperature at the beginning of the sheath (units=K) (****)\n- T_sh_end_mean: Average temperature at the end of the sheath (units=K) (****)\n- T_sh_end_std: Standard deviation of the temperature at the end of the sheath (units=K) (****)\n- T_sh_max: Maximum value of temperature in the sheath (units=K)\n- T_sh_min: Minimum value of temperature in the sheath (units=K)\n- v_mo_bg_mean: Average speed at the beginning of the magnetic obstacle (units=km/s) (*****)\n- v_mo_bg_std: Standard deviation of the speed at the beginning of the magnetic obstacle (units=km/s) (*****)\n- v_mo_end_mean: Average speed at the end of the magnetic obstacle (units=km/s) (*****)\n- v_mo_end_std: Standard deviation of the speed at the end of the magnetic obstacle (units=km/s) (*****)\n- v_mo_max: Maximum value of speed in the magnetic obstacle (units=km/s) (*****)\n- v_mo_min: Minimum value of speed in the magnetic obstacle (units=km/s) (*****)\n- B_mo_bg_mean: Average magnetic field at the beginning of the magnetic obstacle (units=nT) (*****)\n- B_mo_bg_std: Standard deviation of the magnetic field at the beginning of the magnetic obstacle (units=nT) (*****)\n- B_mo_end_mean: Average magnetic field at the end of the magnetic obstacle (units=nT) (*****)\n- B_mo_end_std: Standard deviation of the magnetic field at the end of the magnetic obstacle (units=nT) (*****)\n- B_mo_max: Maximum value of magnetic field in the magnetic obstacle (units=nT) (*****)\n- B_mo_min: Minimum value of magnetic field in the magnetic obstacle (units=nT) (*****)\n- N_mo_bg_mean: Average density at the beginning of the magnetic obstacle (units=cm-3) (*****)\n- N_mo_bg_std: Standard deviation of the density at the beginning of the magnetic obstacle (units=cm-3) (*****)\n- N_mo_end_mean: Average density at the end of the magnetic obstacle (units=cm-3) (*****)\n- N_mo_end_std: Standard deviation of the density at the end of the magnetic obstacle (units=cm-3) (*****)\n- N_mo_max: Maximum value of density in the magnetic obstacle (units=cm-3) (*****)\n- N_mo_min: Minimum value of density in the magnetic obstacle (units=cm-3) (*****)\n- T_mo_bg_mean: Average temperature at the beginning of the magnetic obstacle (units=K) (*****)\n- T_mo_bg_std: Standard deviation of the temperature at the beginning of the magnetic obstacle (units=K) (*****)\n- T_mo_end_mean: Average temperature at the end of the magnetic obstacle (units=K) (*****)\n- T_mo_end_std: Standard deviation of the temperature at the end of the magnetic obstacle (units=K) (*****)\n- T_mo_max: Maximum value of temperature in the magnetic obstacle (units=K) (*****)\n- T_mo_min: Minimum value of temperature in the magnetic obstacle (units=K) (*****)\n- size_mo: Size of the magnetic obstacle (units=km) (*****)\n- size_sh: Size of the sheath (units=km)\n\nNotes\n(*) The term ICME define, sheath (if present) and the magnetic obstacle. If the ICME does not present a sheath, the ICME will be the magnetic obstacle. \n(**) If the ICME does not have a sheath, the 'icme_start' and 'mo_start' will be the same. The 'magnetic obstacle Cat I', refers to the magnetic obstacle that follows a sheath, while 'magnetic obstacle Cat II', refers to the magnetic obstacle of ICMEs without a sheath.\n(***) List of catalogs\ncat_1: M\u00f6stl et al. (2020). doi: 10.3847/1538-4357/abb9a1 \ncat_2: Nieves-Chinchilla et al. (2008) doi: 10.1007/s11207-018-1247-z\ncat_3: STEREO ICME List (https://parker.gsfc.nasa.gov/ICME_catalogs/STEREO/ICME_catalog_viewer_STEREO.php)\ncat_5: Helios ICME List (https://parker.gsfc.nasa.gov/ICME_catalogs/Helios/ICME_catalog_viewer_Helios.php)\ncat_6: Solar Orbiter ICME List (https://parker.gsfc.nasa.gov/ICME_catalogs/SO/ICME_catalog_viewer_SO.php)\ncat_7: Parker Solar Probe List (https://parker.gsfc.nasa.gov/ICME_catalogs/PSP/ICME_catalog_viewer_PSP.php)\ncat_8: Commission et al. (2014) doi: 10.2769/88565\ncat_9: Regnault et al (2010) doi: 10.1029/2020JA028150\ncat_10: Richardson and Cane (2010) doi: 10.1007/s11207-010-9568-6\ncat_11: Jian et al. (2018) doi: 10.3847/1538-4357/aab189 \ncat_12: Jian et al. (2006) doi: 10.1007/s11207-006-0133-2 \ncat_13: Du et al. (2010) doi: 10.1007/s11207-009-9505-8 \n(****) These values have been computed by averaging the values from the boundary (beginning or end) \u00b1 10 minutes. Therefore, a standard deviation is also obtained.\n(*****) These values have been computed by averaging the values from the boundary (beginning or end) \u00b1 10 minutes. Therefore, a standard deviation is also obtained. MO represent the magnetic obstacle that it is present in all the ICMEs, not specifically to those with or without sheaths.\n", "id": "sharedcatalog_41", "is_public": "True", "name": "ICME_multi-catalog", "nbIntervals": "2003", "nbParam": "141", "sharedBy": "genot", "sharedDate": "2023-11-23T15:20:14+00:00", "surveyStart": "1975-01-08T12:00:00", "surveyStop": "2022-10-21T22:39:00", "xmlid": "sharedcatalog_41"}, "__spz_name__": "SOLAR_WIND", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "SOLAR_WIND_catalog", "is_public": "True", "listOfICMEs_Nguyen": {"__spz_name__": "listOfICMEs_Nguyen", "__spz_provider__": "amda", "__spz_type__": "CatalogIndex", "__spz_uid__": "sharedcatalog_33", "created": "2019-04-18T13:19:33", "description": "List of ICMEs from Nguyen et al., 2019 https://doi.org/10.3847/1538-4357/ab0d24\nSee also:\nhttps://github.com/gautiernguyen/Automatic-detection-of-ICMEs-at-1-AU-a-deep-learning-approach.\nThe catalog consists of the union of the different WIND ICME lists ('LJ': Jian et al. 2006; 'Lepping': Lepping et al. 2006; 'RC': Richardson & Cane 2010; 'Chi': Chi et al. 2016; 'Chinchilla': Nieves-Chinchilla et al. 2018), of newly discovered events ('FP') and of extra events ('Turc').\n", "id": "sharedcatalog_33", "is_public": "True", "name": "listOfICMEs_Nguyen", "nbIntervals": "653", "nbParam": "1", "parameters": "", "sharedBy": "genot", "sharedDate": "2022-03-09T10:08:39+00:00", "surveyStart": "1997-09-03T13:40:00", "surveyStop": "2015-12-31T23:59:00", "xmlid": "sharedcatalog_33"}, "name": "SOLAR_WIND", "xmlid": "SOLAR_WIND_catalog"}, "SPACECRAFT_ORBIT_NUMBERS": {"__spz_name__": "SPACECRAFT_ORBIT_NUMBERS", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "SPACECRAFT_ORBIT_NUMBERS_catalog", "cassini": {"__spz_name__": "cassini", "__spz_provider__": "amda", "__spz_type__": "CatalogIndex", "__spz_uid__": "sharedcatalog_9", "contact": "None", "created": "2020-06-04T14:49:26", "description": "The orbit numbers for cassini are presented following the names given to successive revolutions of the cassini mission around Saturn. \n Following scientific publications, the orbit numbers are given as : \n * Saturn Orbit Insertion (rev 0) - not specified\n * Rev. A\n * Rev. B\n * Rev. C\n * Rev. 3 ~ orbit number 3\n * Rev. 4 ~ orbit number 4 \n * ... \n ", "history": "", "id": "sharedcatalog_9", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "cassini", "nbIntervals": "297", "nbParam": "6", "sharedBy": "AMDA", "sharedDate": "2024-08-21T09:08:45+00:00", "surveyStart": "2004-06-27T02:00:00", "surveyStop": "2017-09-15T11:58:00", "xmlid": "sharedcatalog_9"}, "is_public": "True", "juicecr51": {"__spz_name__": "juicecr51", "__spz_provider__": "amda", "__spz_type__": "CatalogIndex", "__spz_uid__": "sharedcatalog_46", "contact": "None", "created": "2024-02-22T14:27:52", "description": "The Jupiter Icy Moons Explorer (JUICE) is an interplanetary spacecraft that was launched on 14 April 2023 the European Space Agency (ESA). The mission is planned to study Ganymede, Callisto, and Europa, three of Jupiter's Galilean moons. They are thought to have significant bodies of liquid water beneath their icy surfaces which would make them potentially habitable environments. This catalog has been created using spice kernels provided by https://s2e2.cosmos.esa.int/bitbucket/projects/spice_kernels/repos/juice/browse (CReMA 5.1) and the JPL's orbnum tool (https://naif.jpl.nasa.gov/pub/naif/utilities/PC_Linux_64bit/orbnum.ug)", "history": "", "id": "sharedcatalog_46", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "juicecr51", "nbIntervals": "65", "nbParam": "6", "sharedBy": "AMDA", "sharedDate": "2024-08-21T09:08:51+00:00", "surveyStart": "2031-11-02T02:33:58", "surveyStop": "2034-12-13T00:52:36", "xmlid": "sharedcatalog_46"}, "juno": {"__spz_name__": "juno", "__spz_provider__": "amda", "__spz_type__": "CatalogIndex", "__spz_uid__": "sharedcatalog_10", "contact": "None", "created": "2024-08-21T09:10:38", "description": "Juno will improve our understanding of the solar system's begninnings by revealing the origin and evolution of Jupiter. Mission starts on august 5th 2011 and will reach Jupiter on July 4yj 2016. This catalog has been created using spice kernels provided by spdf and the JPL's orbnum tool (https://naif.jpl.nasa.gov/pub/naif/utilities/PC_Linux_64bit/orbnum.ug)", "history": "", "id": "sharedcatalog_10", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "juno", "nbIntervals": "58", "nbParam": "6", "sharedBy": "AMDA", "sharedDate": "2024-08-21T09:08:55+00:00", "surveyStart": "2016-07-31T19:46:02", "surveyStop": "2024-02-20T06:47:07", "xmlid": "sharedcatalog_10"}, "maven": {"__spz_name__": "maven", "__spz_provider__": "amda", "__spz_type__": "CatalogIndex", "__spz_uid__": "sharedcatalog_11", "contact": "None", "created": "2024-08-21T09:21:19", "description": "Mars Atmosphere And Volatile Evolution Mission (MAVEN) is a satellite optimised for determining the role that loss of volatile compounds-such as carbon dioxide, nitrogen dioxide, and water-from Mars' atmisphere to space has played through time, giving insight into the history of Mars' atmosphere and climate, liquid water, and planetary habitability. The mission was launched on November 18th 2013 and reached Mars in September 2014 where it continued operating more than 2 years. This catalog has been created using spice kernels provided by spdf and the JPL's orbnum tool (https://naif.jpl.nasa.gov/pub/naif/utilities/PC_Linux_64bit/orbnum.ug)", "history": "", "id": "sharedcatalog_11", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "maven", "nbIntervals": "21798", "nbParam": "6", "sharedBy": "AMDA", "sharedDate": "2024-08-21T09:08:59+00:00", "surveyStart": "2014-09-22T19:33:16", "surveyStop": "2024-08-13T13:41:04", "xmlid": "sharedcatalog_11"}, "messenger": {"__spz_name__": "messenger", "__spz_provider__": "amda", "__spz_type__": "CatalogIndex", "__spz_uid__": "sharedcatalog_12", "contact": "None", "created": "2020-06-04T14:00:59", "description": "The Mercury Surface, Space Environment, Geochemistry and Ranging (MESSENGER) mission, launched on 2004-08-03, was mainly designed to study the characteristics and environment of Mercury from orbit. After an Earth flyby July-August, 2005, Venus flybys October-November, 2006, and May-June, 2007, and Mercury flybys December 2007 - January 2008, September-October, 2008, and September-October, 2009, MESSENGER entered Mercury orbit 2011-03-04. Much data of interest tothe heliospheric community was obtained during the cruise phases between planetary encounters from a magnetometer and an energetic particle and plasma spectrometer. This catalog has been created using spice kernels provided by spdf and the JPL's orbnum tool (https://naif.jpl.nasa.gov/pub/naif/utilities/PC_Linux_64bit/orbnum.ug)", "history": "", "id": "sharedcatalog_12", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "messenger", "nbIntervals": "4103", "nbParam": "6", "sharedBy": "AMDA", "sharedDate": "2024-08-21T09:09:03+00:00", "surveyStart": "2011-03-18T18:54:28", "surveyStop": "2015-04-30T15:15:51", "xmlid": "sharedcatalog_12"}, "mex": {"__spz_name__": "mex", "__spz_provider__": "amda", "__spz_type__": "CatalogIndex", "__spz_uid__": "sharedcatalog_13", "contact": "None", "created": "2023-04-03T09:32:49", "description": "Mars Express, so called because of the rapid and streamlined development time, represents ESA's first visit to another planet in the Solar System. The spacecraft borrowed technology from ESA's Rosetta mission (currently accompanying comet 67P/Churyumov-Gerasimenko along its orbit) and the Mars 96 mission. The mission started on June 2nd 2003. Since beginning science operations in 2004, the durable orbiter has given scientists an entirely new view of Earth's intriguing neighbour, and is helping to answer fundamental questions about the geology, atmosphere, surface environment, history of water and potential for life on Mars.This catalog has been created using spice kernels provided by spdf and the JPL's orbnum tool (https://naif.jpl.nasa.gov/pub/naif/utilities/PC_Linux_64bit/orbnum.ug)", "history": "", "id": "sharedcatalog_13", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "mex", "nbIntervals": "24295", "nbParam": "6", "sharedBy": "AMDA", "sharedDate": "2024-08-21T09:09:07+00:00", "surveyStart": "2004-01-10T20:13:30", "surveyStop": "2023-03-31T20:18:27", "xmlid": "sharedcatalog_13"}, "name": "SPACECRAFT_ORBIT_NUMBERS", "psp": {"__spz_name__": "psp", "__spz_provider__": "amda", "__spz_type__": "CatalogIndex", "__spz_uid__": "sharedcatalog_14", "contact": "None", "created": "2023-04-03T09:31:46", "description": "Parker Solar Probe will swoop to within 4 million miles of the sun's surface, facing heat and radiation like no spacecraft before it. Launching on august 12th 2018, Parker Solar Probe will provide new data on solar activity and make critical contributions to our ability to forecast major space-weather events that impact life on Earth. The mission is named for physicist Eugene Parker, who first theorized the existence of the solar wind and the complex interactions involving plasmas, magnetic fields, and energetic particles involved in 1958. He is the first living person to have a NASA spacecraft named after him. This catalog has been created using spice kernels provided by spdf and the JPL's orbnum tool (https://naif.jpl.nasa.gov/pub/naif/utilities/PC_Linux_64bit/orbnum.ug).", "history": "", "id": "sharedcatalog_14", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "psp", "nbIntervals": "23", "nbParam": "6", "sharedBy": "AMDA", "sharedDate": "2024-08-21T09:09:11+00:00", "surveyStart": "2019-01-20T01:04:04", "surveyStop": "2025-08-02T13:59:28", "xmlid": "sharedcatalog_14"}, "solo": {"__spz_name__": "solo", "__spz_provider__": "amda", "__spz_type__": "CatalogIndex", "__spz_uid__": "sharedcatalog_15", "contact": "None", "created": "2023-04-03T09:31:46", "description": "Solar Orbiter is a Sun-observing satellite, under development by the European Space Agency. The mission was launched with an Atlas V from the Cape Canaveral AFS in Florida on 09 February 2020. This catalog has been created using spice kernels provided by spdf and the JPL's orbnum tool (https://naif.jpl.nasa.gov/pub/naif/utilities/PC_Linux_64bit/orbnum.ug).", "history": "", "id": "sharedcatalog_15", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "solo", "nbIntervals": "21", "nbParam": "6", "sharedBy": "AMDA", "sharedDate": "2024-08-21T09:09:14+00:00", "surveyStart": "2020-10-12T11:53:07", "surveyStop": "2030-08-21T07:20:31", "xmlid": "sharedcatalog_15"}, "vex": {"__spz_name__": "vex", "__spz_provider__": "amda", "__spz_type__": "CatalogIndex", "__spz_uid__": "sharedcatalog_16", "contact": "None", "created": "2023-04-03T11:21:18", "description": "Venus Express is a satellite optimised for studying the atmosphere of Venus, from the surface right up to the ionosphere. Launched on November 9th 2005, it arrived at Venus in April 2006 and continued operating for more than eight years. The mission ended on December 16th 2014. This catalog has been created using spice kernels provided by spdf and the JPL's orbnum tool (https://naif.jpl.nasa.gov/pub/naif/utilities/PC_Linux_64bit/orbnum.ug)", "history": "", "id": "sharedcatalog_16", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "vex", "nbIntervals": "3186", "nbParam": "6", "sharedBy": "AMDA", "sharedDate": "2024-08-21T09:09:18+00:00", "surveyStart": "2006-04-24T05:48:44", "surveyStop": "2014-12-31T12:23:54", "xmlid": "sharedcatalog_16"}, "xmlid": "SPACECRAFT_ORBIT_NUMBERS_catalog"}, "SUN": {"__spz_name__": "SUN", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "SUN_catalog", "is_public": "True", "name": "SUN", "xmlid": "SUN_catalog"}, "VENUS": {"__spz_name__": "VENUS", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "VENUS_catalog", "is_public": "True", "name": "VENUS", "xmlid": "VENUS_catalog"}, "__spz_name__": "SharedCatalogs", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "SharedCatalogs", "is_public": "True", "lastObjectId": "sharedcatalog_46", "xmlid": "sharedcatalog-treeRootNode"}, "__spz_name__": "Catalogs", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Catalogs"}, "DerivedParameters": {"__spz_name__": "DerivedParameters", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "DerivedParameters"}, "Parameters": {"ACE": {"EPAM": {"__spz_name__": "EPAM", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "ACE_epam", "ace_epam_ca60": {"PriorID": "ace-epam-h1", "__spz_name__": "CA60", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ace-epam-ca60", "ace_epam_ca60_cno": {"__spz_name__": "CNO flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ace_epam_ca60_cno", "ace_epam_ca60_cno0": {"__spz_name__": "0.465 - 1.71 MeV/nuc", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_ca60_cno(0)", "dataset": "ace-epam-ca60", "index1": "0", "is_public": "True", "name": "0.465 - 1.71 MeV/nuc", "parameter": "ace_epam_ca60_cno", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_ca60_cno(0)"}, "ace_epam_ca60_cno1": {"__spz_name__": "1.71 - 19.1 MeV/nuc", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_ca60_cno(1)", "dataset": "ace-epam-ca60", "index1": "1", "is_public": "True", "name": "1.71 - 19.1 MeV/nuc", "parameter": "ace_epam_ca60_cno", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_ca60_cno(1)"}, "dataset": "ace-epam-ca60", "description": "CA60 MeV/nuc. CNO Flux", "is_public": "True", "name": "CNO flux", "size": "2", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "units": "1/(cm\u00b2 s sr MeV/nuc)", "xmlid": "ace_epam_ca60_cno"}, "ace_epam_ca60_fe": {"__spz_name__": "Fe flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ace_epam_ca60_fe", "ace_epam_ca60_fe0": {"__spz_name__": "0.239 - 0.840 MeV/nuc", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_ca60_fe(0)", "dataset": "ace-epam-ca60", "index1": "0", "is_public": "True", "name": "0.239 - 0.840 MeV/nuc", "parameter": "ace_epam_ca60_fe", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_ca60_fe(0)"}, "ace_epam_ca60_fe1": {"__spz_name__": "0.840 - 92.7 MeV/nuc", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_ca60_fe(1)", "dataset": "ace-epam-ca60", "index1": "1", "is_public": "True", "name": "0.840 - 92.7 MeV/nuc", "parameter": "ace_epam_ca60_fe", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_ca60_fe(1)"}, "dataset": "ace-epam-ca60", "description": "CA60 MeV/nuc. Fe Flux", "is_public": "True", "name": "Fe flux", "size": "2", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "units": "1/(cm\u00b2 s sr MeV/nuc)", "xmlid": "ace_epam_ca60_fe"}, "ace_epam_ca60_he": {"__spz_name__": "He flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ace_epam_ca60_he", "ace_epam_ca60_he0": {"__spz_name__": "0.389 - 1.28 MeV/nuc", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_ca60_he(0)", "dataset": "ace-epam-ca60", "index1": "0", "is_public": "True", "name": "0.389 - 1.28 MeV/nuc", "parameter": "ace_epam_ca60_he", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_ca60_he(0)"}, "ace_epam_ca60_he1": {"__spz_name__": "1.28 - 6.98 MeV/nuc", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_ca60_he(1)", "dataset": "ace-epam-ca60", "index1": "1", "is_public": "True", "name": "1.28 - 6.98 MeV/nuc", "parameter": "ace_epam_ca60_he", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_ca60_he(1)"}, "dataset": "ace-epam-ca60", "description": "CA60 MeV/nuc. He Flux", "is_public": "True", "name": "He flux", "size": "2", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "units": "1/(cm\u00b2 s sr MeV/nuc)", "xmlid": "ace_epam_ca60_he"}, "ace_epam_ca60_unccno": {"__spz_name__": "CNO flux uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ace_epam_ca60_unccno", "ace_epam_ca60_unccno0": {"__spz_name__": "0.465 - 1.71 MeV/nuc", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_ca60_unccno(0)", "dataset": "ace-epam-ca60", "index1": "0", "is_public": "True", "name": "0.465 - 1.71 MeV/nuc", "parameter": "ace_epam_ca60_unccno", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_ca60_unccno(0)"}, "ace_epam_ca60_unccno1": {"__spz_name__": "1.71 - 19.1 MeV/nuc", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_ca60_unccno(1)", "dataset": "ace-epam-ca60", "index1": "1", "is_public": "True", "name": "1.71 - 19.1 MeV/nuc", "parameter": "ace_epam_ca60_unccno", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_ca60_unccno(1)"}, "dataset": "ace-epam-ca60", "description": "Fractional uncertainty (statistical) in the CNO Flux", "is_public": "True", "name": "CNO flux uncertainty", "size": "2", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "units": "Ratio", "xmlid": "ace_epam_ca60_unccno"}, "ace_epam_ca60_uncfe": {"__spz_name__": "Fe flux uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ace_epam_ca60_uncfe", "ace_epam_ca60_uncfe0": {"__spz_name__": "0.239 - 0.840 MeV/nuc", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_ca60_uncfe(0)", "dataset": "ace-epam-ca60", "index1": "0", "is_public": "True", "name": "0.239 - 0.840 MeV/nuc", "parameter": "ace_epam_ca60_uncfe", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_ca60_uncfe(0)"}, "ace_epam_ca60_uncfe1": {"__spz_name__": "0.840 - 92.7 MeV/nuc", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_ca60_uncfe(1)", "dataset": "ace-epam-ca60", "index1": "1", "is_public": "True", "name": "0.840 - 92.7 MeV/nuc", "parameter": "ace_epam_ca60_uncfe", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_ca60_uncfe(1)"}, "dataset": "ace-epam-ca60", "description": "Fractional uncertainty (statistical) in the Fe Flux", "is_public": "True", "name": "Fe flux uncertainty", "size": "2", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "units": "Ratio", "xmlid": "ace_epam_ca60_uncfe"}, "ace_epam_ca60_unche": {"__spz_name__": "He flux uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ace_epam_ca60_unche", "ace_epam_ca60_unche0": {"__spz_name__": "0.389 - 1.28 MeV/nuc", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_ca60_unche(0)", "dataset": "ace-epam-ca60", "index1": "0", "is_public": "True", "name": "0.389 - 1.28 MeV/nuc", "parameter": "ace_epam_ca60_unche", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_ca60_unche(0)"}, "ace_epam_ca60_unche1": {"__spz_name__": "1.28 - 6.98 MeV/nuc", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_ca60_unche(1)", "dataset": "ace-epam-ca60", "index1": "1", "is_public": "True", "name": "1.28 - 6.98 MeV/nuc", "parameter": "ace_epam_ca60_unche", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_ca60_unche(1)"}, "dataset": "ace-epam-ca60", "description": "Fractional uncertainty (statistical) in the He flux", "is_public": "True", "name": "He flux uncertainty", "size": "2", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "units": "Ratio", "xmlid": "ace_epam_ca60_unche"}, "att": "auto/ace-epam-ca60", "dataSource": "CDAWeb", "desc": "CA60 - ACE Electron Proton Alpha Monitor (EPAM) 5-min Level 2 Data
Sampling: 5M
Provider: CDAWeb", "is_public": "True", "lastModificationDate": "2024-10-06T22:39:02Z", "lastUpdate": "2024-09-23T19:07:50Z", "measurement_type": "EnergeticParticles", "name": "CA60", "processing_level": "Calibrated", "sampling": "5M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/ACE/EPAM/ace-epam-ca60", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace-epam-ca60"}, "ace_epam_de": {"PriorID": "ace-epam-h1", "__spz_name__": "DE", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ace-epam-de", "ace_epam_de_e": {"__spz_name__": "e- flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ace_epam_de_e", "ace_epam_de_e0": {"__spz_name__": "0.038 - 0.053 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_de_e(0)", "dataset": "ace-epam-de", "index1": "0", "is_public": "True", "name": "0.038 - 0.053 MeV", "parameter": "ace_epam_de_e", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_de_e(0)"}, "ace_epam_de_e1": {"__spz_name__": "0.053 - 0.103 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_de_e(1)", "dataset": "ace-epam-de", "index1": "1", "is_public": "True", "name": "0.053 - 0.103 MeV", "parameter": "ace_epam_de_e", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_de_e(1)"}, "ace_epam_de_e2": {"__spz_name__": "0.103 - 0.175 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_de_e(2)", "dataset": "ace-epam-de", "index1": "2", "is_public": "True", "name": "0.103 - 0.175 MeV", "parameter": "ace_epam_de_e", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_de_e(2)"}, "ace_epam_de_e3": {"__spz_name__": "0.175 - 0.315 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_de_e(3)", "dataset": "ace-epam-de", "index1": "3", "is_public": "True", "name": "0.175 - 0.315 MeV", "parameter": "ace_epam_de_e", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_de_e(3)"}, "dataset": "ace-epam-de", "description": "DE MeV Electron Flux", "is_public": "True", "name": "e- flux", "size": "4", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "units": "1/(cm\u00b2 s sr MeV)", "xmlid": "ace_epam_de_e"}, "ace_epam_de_unce": {"__spz_name__": "uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ace_epam_de_unce", "ace_epam_de_unce0": {"__spz_name__": "0.038 - 0.053 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_de_unce(0)", "dataset": "ace-epam-de", "index1": "0", "is_public": "True", "name": "0.038 - 0.053 MeV", "parameter": "ace_epam_de_unce", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_de_unce(0)"}, "ace_epam_de_unce1": {"__spz_name__": "0.053 - 0.103 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_de_unce(1)", "dataset": "ace-epam-de", "index1": "1", "is_public": "True", "name": "0.053 - 0.103 MeV", "parameter": "ace_epam_de_unce", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_de_unce(1)"}, "ace_epam_de_unce2": {"__spz_name__": "0.103 - 0.175 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_de_unce(2)", "dataset": "ace-epam-de", "index1": "2", "is_public": "True", "name": "0.103 - 0.175 MeV", "parameter": "ace_epam_de_unce", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_de_unce(2)"}, "ace_epam_de_unce3": {"__spz_name__": "0.175 - 0.315 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_de_unce(3)", "dataset": "ace-epam-de", "index1": "3", "is_public": "True", "name": "0.175 - 0.315 MeV", "parameter": "ace_epam_de_unce", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_de_unce(3)"}, "dataset": "ace-epam-de", "description": "Fractional uncertainty (statistical) in the DE flux", "is_public": "True", "name": "uncertainty", "size": "4", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "units": "Ratio", "xmlid": "ace_epam_de_unce"}, "att": "auto/ace-epam-de", "dataSource": "CDAWeb", "desc": "ACE Electron Proton Alpha Monitor (EPAM) 5-min Level 2 Data
Sampling: 5M
Provider: CDAWeb", "is_public": "True", "lastModificationDate": "2024-10-06T22:39:02Z", "lastUpdate": "2024-09-23T19:07:50Z", "measurement_type": "EnergeticParticles", "name": "DE", "processing_level": "Calibrated", "sampling": "5M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/ACE/EPAM/ace-epam-de", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace-epam-de"}, "ace_epam_lefs150": {"PriorID": "ace-epam-h1", "__spz_name__": "LEFS150", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ace-epam-lefs150", "ace_epam_lefs150_e": {"__spz_name__": "e- flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ace_epam_lefs150_e", "ace_epam_lefs150_e0": {"__spz_name__": "0.045 - 0.062 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_lefs150_e(0)", "dataset": "ace-epam-lefs150", "index1": "0", "is_public": "True", "name": "0.045 - 0.062 MeV", "parameter": "ace_epam_lefs150_e", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_lefs150_e(0)"}, "ace_epam_lefs150_e1": {"__spz_name__": "0.062 - 0.102 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_lefs150_e(1)", "dataset": "ace-epam-lefs150", "index1": "1", "is_public": "True", "name": "0.062 - 0.102 MeV", "parameter": "ace_epam_lefs150_e", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_lefs150_e(1)"}, "ace_epam_lefs150_e2": {"__spz_name__": "0.102 - 0.175 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_lefs150_e(2)", "dataset": "ace-epam-lefs150", "index1": "2", "is_public": "True", "name": "0.102 - 0.175 MeV", "parameter": "ace_epam_lefs150_e", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_lefs150_e(2)"}, "ace_epam_lefs150_e3": {"__spz_name__": "0.175 - 0.312 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_lefs150_e(3)", "dataset": "ace-epam-lefs150", "index1": "3", "is_public": "True", "name": "0.175 - 0.312 MeV", "parameter": "ace_epam_lefs150_e", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_lefs150_e(3)"}, "dataset": "ace-epam-lefs150", "is_public": "True", "name": "e- flux", "size": "4", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "units": "1/(cm\u00b2 s sr MeV/nuc)", "xmlid": "ace_epam_lefs150_e"}, "ace_epam_lefs150_i": {"__spz_name__": "ion flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ace_epam_lefs150_i", "ace_epam_lefs150_i0": {"__spz_name__": "0.540 - 0.765 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_lefs150_i(0)", "dataset": "ace-epam-lefs150", "index1": "0", "is_public": "True", "name": "0.540 - 0.765 MeV", "parameter": "ace_epam_lefs150_i", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_lefs150_i(0)"}, "ace_epam_lefs150_i1": {"__spz_name__": "0.765 - 1.22 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_lefs150_i(1)", "dataset": "ace-epam-lefs150", "index1": "1", "is_public": "True", "name": "0.765 - 1.22 MeV", "parameter": "ace_epam_lefs150_i", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_lefs150_i(1)"}, "ace_epam_lefs150_i2": {"__spz_name__": "1.22 - 4.94 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_lefs150_i(2)", "dataset": "ace-epam-lefs150", "index1": "2", "is_public": "True", "name": "1.22 - 4.94 MeV", "parameter": "ace_epam_lefs150_i", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_lefs150_i(2)"}, "dataset": "ace-epam-lefs150", "description": "LEFS150 MeV/nuc. ion Flux", "is_public": "True", "name": "ion flux", "size": "3", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "units": "1/(cm\u00b2 s sr MeV/nuc)", "xmlid": "ace_epam_lefs150_i"}, "ace_epam_lefs150_unce": {"__spz_name__": "e- flux uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ace_epam_lefs150_unce", "ace_epam_lefs150_unce0": {"__spz_name__": "0.045 - 0.062 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_lefs150_unce(0)", "dataset": "ace-epam-lefs150", "index1": "0", "is_public": "True", "name": "0.045 - 0.062 MeV", "parameter": "ace_epam_lefs150_unce", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_lefs150_unce(0)"}, "ace_epam_lefs150_unce1": {"__spz_name__": "0.062 - 0.102 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_lefs150_unce(1)", "dataset": "ace-epam-lefs150", "index1": "1", "is_public": "True", "name": "0.062 - 0.102 MeV", "parameter": "ace_epam_lefs150_unce", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_lefs150_unce(1)"}, "ace_epam_lefs150_unce2": {"__spz_name__": "0.102 - 0.175 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_lefs150_unce(2)", "dataset": "ace-epam-lefs150", "index1": "2", "is_public": "True", "name": "0.102 - 0.175 MeV", "parameter": "ace_epam_lefs150_unce", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_lefs150_unce(2)"}, "ace_epam_lefs150_unce3": {"__spz_name__": "0.175 - 0.312 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_lefs150_unce(3)", "dataset": "ace-epam-lefs150", "index1": "3", "is_public": "True", "name": "0.175 - 0.312 MeV", "parameter": "ace_epam_lefs150_unce", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_lefs150_unce(3)"}, "dataset": "ace-epam-lefs150", "is_public": "True", "name": "e- flux uncertainty", "size": "4", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "units": "Ratio", "xmlid": "ace_epam_lefs150_unce"}, "ace_epam_lefs150_unci": {"__spz_name__": "ion uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ace_epam_lefs150_unci", "ace_epam_lefs150_unci0": {"__spz_name__": "0.540 - 0.765 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_lefs150_unci(0)", "dataset": "ace-epam-lefs150", "index1": "0", "is_public": "True", "name": "0.540 - 0.765 MeV", "parameter": "ace_epam_lefs150_unci", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_lefs150_unci(0)"}, "ace_epam_lefs150_unci1": {"__spz_name__": "0.765 - 1.22 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_lefs150_unci(1)", "dataset": "ace-epam-lefs150", "index1": "1", "is_public": "True", "name": "0.765 - 1.22 MeV", "parameter": "ace_epam_lefs150_unci", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_lefs150_unci(1)"}, "ace_epam_lefs150_unci2": {"__spz_name__": "1.22 - 4.94 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_lefs150_unci(2)", "dataset": "ace-epam-lefs150", "index1": "2", "is_public": "True", "name": "1.22 - 4.94 MeV", "parameter": "ace_epam_lefs150_unci", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_lefs150_unci(2)"}, "dataset": "ace-epam-lefs150", "description": "Fractional uncertainty (statistical) in the ion flux", "is_public": "True", "name": "ion uncertainty", "size": "3", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "units": "Ratio", "xmlid": "ace_epam_lefs150_unci"}, "att": "auto/ace-epam-lefs150", "dataSource": "CDAWeb", "desc": "LEFS150 - ACE Electron Proton Alpha Monitor (EPAM) 5-min Level 2 Data
Sampling: 5M
Provider: CDAWeb", "is_public": "True", "lastModificationDate": "2024-10-06T22:39:02Z", "lastUpdate": "2024-09-23T19:07:50Z", "measurement_type": "EnergeticParticles", "name": "LEFS150", "processing_level": "Calibrated", "sampling": "5M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/ACE/EPAM/ace-epam-lefs150", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace-epam-lefs150"}, "ace_epam_lefs60": {"PriorID": "ace-epam-h1", "__spz_name__": "LEFS60", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ace-epam-lefs60", "ace_epam_lefs60_e": {"__spz_name__": "e- flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ace_epam_lefs60_e", "ace_epam_lefs60_e0": {"__spz_name__": "0.045 - 0.062 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_lefs60_e(0)", "dataset": "ace-epam-lefs60", "index1": "0", "is_public": "True", "name": "0.045 - 0.062 MeV", "parameter": "ace_epam_lefs60_e", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_lefs60_e(0)"}, "ace_epam_lefs60_e1": {"__spz_name__": "0.062 - 0.103 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_lefs60_e(1)", "dataset": "ace-epam-lefs60", "index1": "1", "is_public": "True", "name": "0.062 - 0.103 MeV", "parameter": "ace_epam_lefs60_e", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_lefs60_e(1)"}, "ace_epam_lefs60_e2": {"__spz_name__": "0.103 - 0.175 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_lefs60_e(2)", "dataset": "ace-epam-lefs60", "index1": "2", "is_public": "True", "name": "0.103 - 0.175 MeV", "parameter": "ace_epam_lefs60_e", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_lefs60_e(2)"}, "ace_epam_lefs60_e3": {"__spz_name__": "0.175 - 0.312 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_lefs60_e(3)", "dataset": "ace-epam-lefs60", "index1": "3", "is_public": "True", "name": "0.175 - 0.312 MeV", "parameter": "ace_epam_lefs60_e", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_lefs60_e(3)"}, "dataset": "ace-epam-lefs60", "is_public": "True", "name": "e- flux", "size": "4", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "units": "1/(cm\u00b2 s sr MeV/nuc)", "xmlid": "ace_epam_lefs60_e"}, "ace_epam_lefs60_i": {"__spz_name__": "ion flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ace_epam_lefs60_i", "ace_epam_lefs60_i0": {"__spz_name__": "0.546 - 0.761 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_lefs60_i(0)", "dataset": "ace-epam-lefs60", "index1": "0", "is_public": "True", "name": "0.546 - 0.761 MeV", "parameter": "ace_epam_lefs60_i", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_lefs60_i(0)"}, "ace_epam_lefs60_i1": {"__spz_name__": "0.761 - 1.22 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_lefs60_i(1)", "dataset": "ace-epam-lefs60", "index1": "1", "is_public": "True", "name": "0.761 - 1.22 MeV", "parameter": "ace_epam_lefs60_i", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_lefs60_i(1)"}, "ace_epam_lefs60_i2": {"__spz_name__": "1.22 - 4.97 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_lefs60_i(2)", "dataset": "ace-epam-lefs60", "index1": "2", "is_public": "True", "name": "1.22 - 4.97 MeV", "parameter": "ace_epam_lefs60_i", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_lefs60_i(2)"}, "dataset": "ace-epam-lefs60", "description": "LEFS60 MeV/nuc. ion Flux", "is_public": "True", "name": "ion flux", "size": "3", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "units": "1/(cm\u00b2 s sr MeV/nuc)", "xmlid": "ace_epam_lefs60_i"}, "ace_epam_lefs60_unce": {"__spz_name__": "e- flux uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ace_epam_lefs60_unce", "ace_epam_lefs60_unce0": {"__spz_name__": "0.045 - 0.062 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_lefs60_unce(0)", "dataset": "ace-epam-lefs60", "index1": "0", "is_public": "True", "name": "0.045 - 0.062 MeV", "parameter": "ace_epam_lefs60_unce", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_lefs60_unce(0)"}, "ace_epam_lefs60_unce1": {"__spz_name__": "0.062 - 0.103 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_lefs60_unce(1)", "dataset": "ace-epam-lefs60", "index1": "1", "is_public": "True", "name": "0.062 - 0.103 MeV", "parameter": "ace_epam_lefs60_unce", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_lefs60_unce(1)"}, "ace_epam_lefs60_unce2": {"__spz_name__": "0.103 - 0.175 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_lefs60_unce(2)", "dataset": "ace-epam-lefs60", "index1": "2", "is_public": "True", "name": "0.103 - 0.175 MeV", "parameter": "ace_epam_lefs60_unce", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_lefs60_unce(2)"}, "ace_epam_lefs60_unce3": {"__spz_name__": "0.175 - 0.312 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_lefs60_unce(3)", "dataset": "ace-epam-lefs60", "index1": "3", "is_public": "True", "name": "0.175 - 0.312 MeV", "parameter": "ace_epam_lefs60_unce", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_lefs60_unce(3)"}, "dataset": "ace-epam-lefs60", "is_public": "True", "name": "e- flux uncertainty", "size": "4", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "units": "Ratio", "xmlid": "ace_epam_lefs60_unce"}, "ace_epam_lefs60_unci": {"__spz_name__": "ion uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ace_epam_lefs60_unci", "ace_epam_lefs60_unci0": {"__spz_name__": "0.546 - 0.761 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_lefs60_unci(0)", "dataset": "ace-epam-lefs60", "index1": "0", "is_public": "True", "name": "0.546 - 0.761 MeV", "parameter": "ace_epam_lefs60_unci", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_lefs60_unci(0)"}, "ace_epam_lefs60_unci1": {"__spz_name__": "0.761 - 1.22 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_lefs60_unci(1)", "dataset": "ace-epam-lefs60", "index1": "1", "is_public": "True", "name": "0.761 - 1.22 MeV", "parameter": "ace_epam_lefs60_unci", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_lefs60_unci(1)"}, "ace_epam_lefs60_unci2": {"__spz_name__": "1.22 - 4.97 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_lefs60_unci(2)", "dataset": "ace-epam-lefs60", "index1": "2", "is_public": "True", "name": "1.22 - 4.97 MeV", "parameter": "ace_epam_lefs60_unci", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_lefs60_unci(2)"}, "dataset": "ace-epam-lefs60", "description": "Fractional uncertainty (statistical) in the ion flux", "is_public": "True", "name": "ion uncertainty", "size": "3", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "units": "Ratio", "xmlid": "ace_epam_lefs60_unci"}, "att": "auto/ace-epam-lefs60", "dataSource": "CDAWeb", "desc": "LEFS60 - ACE Electron Proton Alpha Monitor (EPAM) 5-min Level 2 Data
Sampling: 5M
Provider: CDAWeb", "is_public": "True", "lastModificationDate": "2024-10-06T22:39:02Z", "lastUpdate": "2024-09-23T19:07:50Z", "measurement_type": "EnergeticParticles", "name": "LEFS60", "processing_level": "Calibrated", "sampling": "5M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/ACE/EPAM/ace-epam-lefs60", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace-epam-lefs60"}, "ace_epam_lems120": {"PriorID": "ace-epam-h1", "__spz_name__": "LEMS120", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ace-epam-lems120", "ace_epam_lems120_p": {"__spz_name__": "ion flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ace_epam_lems120_p", "ace_epam_lems120_p0": {"__spz_name__": "0.047 - 0.066 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_lems120_p(0)", "dataset": "ace-epam-lems120", "index1": "0", "is_public": "True", "name": "0.047 - 0.066 MeV", "parameter": "ace_epam_lems120_p", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_lems120_p(0)"}, "ace_epam_lems120_p1": {"__spz_name__": "0.066 - 0.114 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_lems120_p(1)", "dataset": "ace-epam-lems120", "index1": "1", "is_public": "True", "name": "0.066 - 0.114 MeV", "parameter": "ace_epam_lems120_p", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_lems120_p(1)"}, "ace_epam_lems120_p2": {"__spz_name__": "0.114 - 0.190 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_lems120_p(2)", "dataset": "ace-epam-lems120", "index1": "2", "is_public": "True", "name": "0.114 - 0.190 MeV", "parameter": "ace_epam_lems120_p", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_lems120_p(2)"}, "ace_epam_lems120_p3": {"__spz_name__": "0.190 - 0.310 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_lems120_p(3)", "dataset": "ace-epam-lems120", "index1": "3", "is_public": "True", "name": "0.190 - 0.310 MeV", "parameter": "ace_epam_lems120_p", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_lems120_p(3)"}, "ace_epam_lems120_p4": {"__spz_name__": "0.310 - 0.580 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_lems120_p(4)", "dataset": "ace-epam-lems120", "index1": "4", "is_public": "True", "name": "0.310 - 0.580 MeV", "parameter": "ace_epam_lems120_p", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_lems120_p(4)"}, "ace_epam_lems120_p5": {"__spz_name__": "0.580 - 1.05 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_lems120_p(5)", "dataset": "ace-epam-lems120", "index1": "5", "is_public": "True", "name": "0.580 - 1.05 MeV", "parameter": "ace_epam_lems120_p", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_lems120_p(5)"}, "ace_epam_lems120_p6": {"__spz_name__": "1.05 - 1.89 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_lems120_p(6)", "dataset": "ace-epam-lems120", "index1": "6", "is_public": "True", "name": "1.05 - 1.89 MeV", "parameter": "ace_epam_lems120_p", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_lems120_p(6)"}, "ace_epam_lems120_p7": {"__spz_name__": "1.89 - 4.75 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_lems120_p(7)", "dataset": "ace-epam-lems120", "index1": "7", "is_public": "True", "name": "1.89 - 4.75 MeV", "parameter": "ace_epam_lems120_p", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_lems120_p(7)"}, "dataset": "ace-epam-lems120", "description": "LEMS120 0.047-0.065 MeV Ion Flux", "is_public": "True", "name": "ion flux", "size": "8", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "units": "1/(cm\u00b2 s sr MeV)", "xmlid": "ace_epam_lems120_p"}, "ace_epam_lems120_uncp": {"__spz_name__": "uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ace_epam_lems120_uncp", "ace_epam_lems120_uncp0": {"__spz_name__": "0.047 - 0.066 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_lems120_uncp(0)", "dataset": "ace-epam-lems120", "index1": "0", "is_public": "True", "name": "0.047 - 0.066 MeV", "parameter": "ace_epam_lems120_uncp", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_lems120_uncp(0)"}, "ace_epam_lems120_uncp1": {"__spz_name__": "0.066 - 0.114 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_lems120_uncp(1)", "dataset": "ace-epam-lems120", "index1": "1", "is_public": "True", "name": "0.066 - 0.114 MeV", "parameter": "ace_epam_lems120_uncp", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_lems120_uncp(1)"}, "ace_epam_lems120_uncp2": {"__spz_name__": "0.114 - 0.190 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_lems120_uncp(2)", "dataset": "ace-epam-lems120", "index1": "2", "is_public": "True", "name": "0.114 - 0.190 MeV", "parameter": "ace_epam_lems120_uncp", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_lems120_uncp(2)"}, "ace_epam_lems120_uncp3": {"__spz_name__": "0.190 - 0.310 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_lems120_uncp(3)", "dataset": "ace-epam-lems120", "index1": "3", "is_public": "True", "name": "0.190 - 0.310 MeV", "parameter": "ace_epam_lems120_uncp", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_lems120_uncp(3)"}, "ace_epam_lems120_uncp4": {"__spz_name__": "0.310 - 0.580 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_lems120_uncp(4)", "dataset": "ace-epam-lems120", "index1": "4", "is_public": "True", "name": "0.310 - 0.580 MeV", "parameter": "ace_epam_lems120_uncp", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_lems120_uncp(4)"}, "ace_epam_lems120_uncp5": {"__spz_name__": "0.580 - 1.05 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_lems120_uncp(5)", "dataset": "ace-epam-lems120", "index1": "5", "is_public": "True", "name": "0.580 - 1.05 MeV", "parameter": "ace_epam_lems120_uncp", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_lems120_uncp(5)"}, "ace_epam_lems120_uncp6": {"__spz_name__": "1.05 - 1.89 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_lems120_uncp(6)", "dataset": "ace-epam-lems120", "index1": "6", "is_public": "True", "name": "1.05 - 1.89 MeV", "parameter": "ace_epam_lems120_uncp", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_lems120_uncp(6)"}, "ace_epam_lems120_uncp7": {"__spz_name__": "1.89 - 4.75 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_lems120_uncp(7)", "dataset": "ace-epam-lems120", "index1": "7", "is_public": "True", "name": "1.89 - 4.75 MeV", "parameter": "ace_epam_lems120_uncp", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_lems120_uncp(7)"}, "dataset": "ace-epam-lems120", "description": "Fractional uncertainty (statistical) in the P flux", "is_public": "True", "name": "uncertainty", "size": "8", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "units": "Ratio", "xmlid": "ace_epam_lems120_uncp"}, "att": "auto/ace-epam-lems120", "dataSource": "CDAWeb", "desc": "ACE Electron Proton Alpha Monitor (EPAM) 5-min Level 2 Data
Sampling: 5M
Provider: CDAWeb", "is_public": "True", "lastModificationDate": "2024-10-06T22:39:02Z", "lastUpdate": "2024-09-23T19:07:50Z", "measurement_type": "EnergeticParticles", "name": "LEMS120", "processing_level": "Calibrated", "sampling": "5M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/ACE/EPAM/ace-epam-lems120", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace-epam-lems120"}, "ace_epam_lems30": {"PriorID": "ace-epam-h1", "__spz_name__": "LEMS30", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ace-epam-lems30", "ace_epam_lems30_p": {"__spz_name__": "ion flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ace_epam_lems30_p", "ace_epam_lems30_p0": {"__spz_name__": "0.047 - 0.065 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_lems30_p(0)", "dataset": "ace-epam-lems30", "index1": "0", "is_public": "True", "name": "0.047 - 0.065 MeV", "parameter": "ace_epam_lems30_p", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_lems30_p(0)"}, "ace_epam_lems30_p1": {"__spz_name__": "0.065 - 0.112 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_lems30_p(1)", "dataset": "ace-epam-lems30", "index1": "1", "is_public": "True", "name": "0.065 - 0.112 MeV", "parameter": "ace_epam_lems30_p", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_lems30_p(1)"}, "ace_epam_lems30_p2": {"__spz_name__": "0.112 - 0.187 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_lems30_p(2)", "dataset": "ace-epam-lems30", "index1": "2", "is_public": "True", "name": "0.112 - 0.187 MeV", "parameter": "ace_epam_lems30_p", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_lems30_p(2)"}, "ace_epam_lems30_p3": {"__spz_name__": "0.187 - 0.310 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_lems30_p(3)", "dataset": "ace-epam-lems30", "index1": "3", "is_public": "True", "name": "0.187 - 0.310 MeV", "parameter": "ace_epam_lems30_p", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_lems30_p(3)"}, "ace_epam_lems30_p4": {"__spz_name__": "0.310 - 0.580 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_lems30_p(4)", "dataset": "ace-epam-lems30", "index1": "4", "is_public": "True", "name": "0.310 - 0.580 MeV", "parameter": "ace_epam_lems30_p", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_lems30_p(4)"}, "ace_epam_lems30_p5": {"__spz_name__": "0.580 - 1.06 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_lems30_p(5)", "dataset": "ace-epam-lems30", "index1": "5", "is_public": "True", "name": "0.580 - 1.06 MeV", "parameter": "ace_epam_lems30_p", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_lems30_p(5)"}, "ace_epam_lems30_p6": {"__spz_name__": "1.06 - 1.91 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_lems30_p(6)", "dataset": "ace-epam-lems30", "index1": "6", "is_public": "True", "name": "1.06 - 1.91 MeV", "parameter": "ace_epam_lems30_p", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_lems30_p(6)"}, "ace_epam_lems30_p7": {"__spz_name__": "1.91 - 4.75 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_lems30_p(7)", "dataset": "ace-epam-lems30", "index1": "7", "is_public": "True", "name": "1.91 - 4.75 MeV", "parameter": "ace_epam_lems30_p", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_lems30_p(7)"}, "dataset": "ace-epam-lems30", "description": "LEMS30 0.047-0.065 MeV Ion Flux", "is_public": "True", "name": "ion flux", "size": "8", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "units": "1/(cm\u00b2 s sr MeV)", "xmlid": "ace_epam_lems30_p"}, "ace_epam_lems30_uncp": {"__spz_name__": "uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ace_epam_lems30_uncp", "ace_epam_lems30_uncp0": {"__spz_name__": "0.047 - 0.065 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_lems30_uncp(0)", "dataset": "ace-epam-lems30", "index1": "0", "is_public": "True", "name": "0.047 - 0.065 MeV", "parameter": "ace_epam_lems30_uncp", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_lems30_uncp(0)"}, "ace_epam_lems30_uncp1": {"__spz_name__": "0.065 - 0.112 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_lems30_uncp(1)", "dataset": "ace-epam-lems30", "index1": "1", "is_public": "True", "name": "0.065 - 0.112 MeV", "parameter": "ace_epam_lems30_uncp", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_lems30_uncp(1)"}, "ace_epam_lems30_uncp2": {"__spz_name__": "0.112 - 0.187 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_lems30_uncp(2)", "dataset": "ace-epam-lems30", "index1": "2", "is_public": "True", "name": "0.112 - 0.187 MeV", "parameter": "ace_epam_lems30_uncp", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_lems30_uncp(2)"}, "ace_epam_lems30_uncp3": {"__spz_name__": "0.187 - 0.310 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_lems30_uncp(3)", "dataset": "ace-epam-lems30", "index1": "3", "is_public": "True", "name": "0.187 - 0.310 MeV", "parameter": "ace_epam_lems30_uncp", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_lems30_uncp(3)"}, "ace_epam_lems30_uncp4": {"__spz_name__": "0.310 - 0.580 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_lems30_uncp(4)", "dataset": "ace-epam-lems30", "index1": "4", "is_public": "True", "name": "0.310 - 0.580 MeV", "parameter": "ace_epam_lems30_uncp", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_lems30_uncp(4)"}, "ace_epam_lems30_uncp5": {"__spz_name__": "0.580 - 1.06 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_lems30_uncp(5)", "dataset": "ace-epam-lems30", "index1": "5", "is_public": "True", "name": "0.580 - 1.06 MeV", "parameter": "ace_epam_lems30_uncp", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_lems30_uncp(5)"}, "ace_epam_lems30_uncp6": {"__spz_name__": "1.06 - 1.91 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_lems30_uncp(6)", "dataset": "ace-epam-lems30", "index1": "6", "is_public": "True", "name": "1.06 - 1.91 MeV", "parameter": "ace_epam_lems30_uncp", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_lems30_uncp(6)"}, "ace_epam_lems30_uncp7": {"__spz_name__": "1.91 - 4.75 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_lems30_uncp(7)", "dataset": "ace-epam-lems30", "index1": "7", "is_public": "True", "name": "1.91 - 4.75 MeV", "parameter": "ace_epam_lems30_uncp", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_lems30_uncp(7)"}, "dataset": "ace-epam-lems30", "description": "Fractional uncertainty (statistical) in the P flux", "is_public": "True", "name": "uncertainty", "size": "8", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "units": "Ratio", "xmlid": "ace_epam_lems30_uncp"}, "att": "auto/ace-epam-lems30", "dataSource": "CDAWeb", "desc": "ACE Electron Proton Alpha Monitor (EPAM) 5-min Level 2 Data
Sampling: 5M
Provider: CDAWeb", "is_public": "True", "lastModificationDate": "2024-10-06T22:39:02Z", "lastUpdate": "2024-09-23T19:07:50Z", "measurement_type": "EnergeticParticles", "name": "LEMS30", "processing_level": "Calibrated", "sampling": "5M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/ACE/EPAM/ace-epam-lems30", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace-epam-lems30"}, "ace_epam_wartd": {"PriorID": "ace-epam-h1", "__spz_name__": "WARTD", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ace-epam-wartd", "ace_epam_wartd_i": {"__spz_name__": "ion flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ace_epam_wartd_i", "ace_epam_wartd_i0": {"__spz_name__": "Z>1 - E>0.7", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_wartd_i(0)", "dataset": "ace-epam-wartd", "index1": "0", "is_public": "True", "name": "Z>1 - E>0.7", "parameter": "ace_epam_wartd_i", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_wartd_i(0)"}, "ace_epam_wartd_i1": {"__spz_name__": "Z>7 - E>7.5", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_wartd_i(1)", "dataset": "ace-epam-wartd", "index1": "1", "is_public": "True", "name": "Z>7 - E>7.5", "parameter": "ace_epam_wartd_i", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_wartd_i(1)"}, "ace_epam_wartd_i2": {"__spz_name__": "Z>5 - E>2.5", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_wartd_i(2)", "dataset": "ace-epam-wartd", "index1": "2", "is_public": "True", "name": "Z>5 - E>2.5", "parameter": "ace_epam_wartd_i", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_wartd_i(2)"}, "ace_epam_wartd_i3": {"__spz_name__": "Z>10 - E>9", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_wartd_i(3)", "dataset": "ace-epam-wartd", "index1": "3", "is_public": "True", "name": "Z>10 - E>9", "parameter": "ace_epam_wartd_i", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_wartd_i(3)"}, "dataset": "ace-epam-wartd", "description": "WARTD MeV Ion Flux", "is_public": "True", "name": "ion flux", "size": "4", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "units": "1/(cm\u00b2-s-sr)", "xmlid": "ace_epam_wartd_i"}, "ace_epam_wartd_unci": {"__spz_name__": "uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ace_epam_wartd_unci", "ace_epam_wartd_unci0": {"__spz_name__": "Z>1 - E>0.7", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_wartd_unci(0)", "dataset": "ace-epam-wartd", "index1": "0", "is_public": "True", "name": "Z>1 - E>0.7", "parameter": "ace_epam_wartd_unci", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_wartd_unci(0)"}, "ace_epam_wartd_unci1": {"__spz_name__": "Z>7 - E>7.5", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_wartd_unci(1)", "dataset": "ace-epam-wartd", "index1": "1", "is_public": "True", "name": "Z>7 - E>7.5", "parameter": "ace_epam_wartd_unci", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_wartd_unci(1)"}, "ace_epam_wartd_unci2": {"__spz_name__": "Z>5 - E>2.5", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_wartd_unci(2)", "dataset": "ace-epam-wartd", "index1": "2", "is_public": "True", "name": "Z>5 - E>2.5", "parameter": "ace_epam_wartd_unci", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_wartd_unci(2)"}, "ace_epam_wartd_unci3": {"__spz_name__": "Z>10 - E>9", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_epam_wartd_unci(3)", "dataset": "ace-epam-wartd", "index1": "3", "is_public": "True", "name": "Z>10 - E>9", "parameter": "ace_epam_wartd_unci", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace_epam_wartd_unci(3)"}, "dataset": "ace-epam-wartd", "description": "Fractional uncertainty (statistical) in the ion flux", "is_public": "True", "name": "uncertainty", "size": "4", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "units": "Ratio", "xmlid": "ace_epam_wartd_unci"}, "att": "auto/ace-epam-wartd", "dataSource": "CDAWeb", "desc": "WARTD - ACE Electron Proton Alpha Monitor (EPAM) 5-min Level 2 Data
Sampling: 5M
Provider: CDAWeb", "is_public": "True", "lastModificationDate": "2024-10-06T22:39:02Z", "lastUpdate": "2024-09-23T19:07:50Z", "measurement_type": "EnergeticParticles", "name": "WARTD", "processing_level": "Calibrated", "sampling": "5M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/ACE/EPAM/ace-epam-wartd", "start_date": "1997-08-30T17:01:00Z", "stop_date": "2024-08-30T23:56:00Z", "xmlid": "ace-epam-wartd"}, "att": "auto/ACE_epam", "desc": "ACE Electron Proton Alpha Monitor
EnergeticParticleInstrument", "is_public": "True", "name": "EPAM", "xmlid": "ACE_epam"}, "Ephemeris": {"__spz_name__": "Ephemeris", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "ACE_ephemeris", "ace_orb_all": {"__spz_name__": "orbit L1", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ace-orb-all", "ace_lat_hee": {"__spz_name__": "lat hee", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ace_lat_hee", "dataset": "ace-orb-all", "display_type": "timeseries", "is_public": "True", "name": "lat hee", "start_date": "1997-08-25T17:48:00Z", "stop_date": "2024-10-31T23:59:00Z", "ucd": "pos.bodyrc.lat", "units": "deg", "xmlid": "ace_lat_hee"}, "ace_lon_hee": {"__spz_name__": "lon hee", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ace_lon_hee", "dataset": "ace-orb-all", "display_type": "timeseries", "is_public": "True", "name": "lon hee", "start_date": "1997-08-25T17:48:00Z", "stop_date": "2024-10-31T23:59:00Z", "ucd": "pos.bodyrc.lon", "units": "deg", "xmlid": "ace_lon_hee"}, "ace_r": {"__spz_name__": "distance ace-earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ace_r", "dataset": "ace-orb-all", "is_public": "True", "name": "distance ace-earth", "start_date": "1997-08-25T17:48:00Z", "stop_date": "2024-10-31T23:59:00Z", "ucd": "pos.distance", "units": "Re", "xmlid": "ace_r"}, "ace_r_sun": {"__spz_name__": "distance ace-sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ace_r_sun", "dataset": "ace-orb-all", "is_public": "True", "name": "distance ace-sun", "start_date": "1997-08-25T17:48:00Z", "stop_date": "2024-10-31T23:59:00Z", "ucd": "pos.distance", "units": "AU", "xmlid": "ace_r_sun"}, "ace_xyz_gse": {"__spz_name__": "xyz_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ace_xyz_gse", "ace_xyz_gse0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_xyz_gse(0)", "dataset": "ace-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "ace_xyz_gse", "start_date": "1997-08-25T17:48:00Z", "stop_date": "2024-10-31T23:59:00Z", "xmlid": "ace_xyz_gse(0)"}, "ace_xyz_gse1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_xyz_gse(1)", "dataset": "ace-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "ace_xyz_gse", "start_date": "1997-08-25T17:48:00Z", "stop_date": "2024-10-31T23:59:00Z", "xmlid": "ace_xyz_gse(1)"}, "ace_xyz_gse2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_xyz_gse(2)", "dataset": "ace-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "ace_xyz_gse", "start_date": "1997-08-25T17:48:00Z", "stop_date": "2024-10-31T23:59:00Z", "xmlid": "ace_xyz_gse(2)"}, "dataset": "ace-orb-all", "description": "Spacecraft position in GSE", "display_type": "timeseries", "is_public": "True", "name": "xyz_gse", "size": "3", "start_date": "1997-08-25T17:48:00Z", "stop_date": "2024-10-31T23:59:00Z", "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "Re", "xmlid": "ace_xyz_gse"}, "ace_xyz_gsm": {"__spz_name__": "xyz_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ace_xyz_gsm", "ace_xyz_gsm0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_xyz_gsm(0)", "dataset": "ace-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "ace_xyz_gsm", "start_date": "1997-08-25T17:48:00Z", "stop_date": "2024-10-31T23:59:00Z", "xmlid": "ace_xyz_gsm(0)"}, "ace_xyz_gsm1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_xyz_gsm(1)", "dataset": "ace-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "ace_xyz_gsm", "start_date": "1997-08-25T17:48:00Z", "stop_date": "2024-10-31T23:59:00Z", "xmlid": "ace_xyz_gsm(1)"}, "ace_xyz_gsm2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_xyz_gsm(2)", "dataset": "ace-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "ace_xyz_gsm", "start_date": "1997-08-25T17:48:00Z", "stop_date": "2024-10-31T23:59:00Z", "xmlid": "ace_xyz_gsm(2)"}, "dataset": "ace-orb-all", "description": "Spacecraft position in GSM", "display_type": "timeseries", "is_public": "True", "name": "xyz_gsm", "size": "3", "start_date": "1997-08-25T17:48:00Z", "stop_date": "2024-10-31T23:59:00Z", "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "Re", "xmlid": "ace_xyz_gsm"}, "ace_xyz_hci": {"__spz_name__": "xyz_hci", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ace_xyz_hci", "ace_xyz_hci0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_xyz_hci(0)", "dataset": "ace-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "ace_xyz_hci", "start_date": "1997-08-25T17:48:00Z", "stop_date": "2024-10-31T23:59:00Z", "xmlid": "ace_xyz_hci(0)"}, "ace_xyz_hci1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_xyz_hci(1)", "dataset": "ace-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "ace_xyz_hci", "start_date": "1997-08-25T17:48:00Z", "stop_date": "2024-10-31T23:59:00Z", "xmlid": "ace_xyz_hci(1)"}, "ace_xyz_hci2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_xyz_hci(2)", "dataset": "ace-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "ace_xyz_hci", "start_date": "1997-08-25T17:48:00Z", "stop_date": "2024-10-31T23:59:00Z", "xmlid": "ace_xyz_hci(2)"}, "dataset": "ace-orb-all", "description": "Spacecraft position in HCI", "display_type": "timeseries", "is_public": "True", "name": "xyz_hci", "size": "3", "start_date": "1997-08-25T17:48:00Z", "stop_date": "2024-10-31T23:59:00Z", "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "AU", "xmlid": "ace_xyz_hci"}, "ace_xyz_hee": {"__spz_name__": "xyz_hee", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ace_xyz_hee", "ace_xyz_hee0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_xyz_hee(0)", "dataset": "ace-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "ace_xyz_hee", "start_date": "1997-08-25T17:48:00Z", "stop_date": "2024-10-31T23:59:00Z", "xmlid": "ace_xyz_hee(0)"}, "ace_xyz_hee1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_xyz_hee(1)", "dataset": "ace-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "ace_xyz_hee", "start_date": "1997-08-25T17:48:00Z", "stop_date": "2024-10-31T23:59:00Z", "xmlid": "ace_xyz_hee(1)"}, "ace_xyz_hee2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ace_xyz_hee(2)", "dataset": "ace-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "ace_xyz_hee", "start_date": "1997-08-25T17:48:00Z", "stop_date": "2024-10-31T23:59:00Z", "xmlid": "ace_xyz_hee(2)"}, "dataset": "ace-orb-all", "description": "Spacecraft position in HEE", "display_type": "timeseries", "is_public": "True", "name": "xyz_hee", "size": "3", "start_date": "1997-08-25T17:48:00Z", "stop_date": "2024-10-31T23:59:00Z", "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "AU", "xmlid": "ace_xyz_hee"}, "att": "auto/ace-orb-all", "dataSource": "CDAWeb/SSCWeb", "desc": "orbit L1 libration point
Sampling: 12M
Provider: CDAWeb/SSCWeb", "is_public": "True", "lastModificationDate": "2024-10-06T22:03:15Z", "lastUpdate": "2024-10-06T20:17:31Z", "measurement_type": "Ephemeris", "name": "orbit L1", "processing_level": "Calibrated", "sampling": "12M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/ACE/Ephemeris/ace-orb-all", "start_date": "1997-08-25T17:48:00Z", "stop_date": "2024-10-31T23:59:00Z", "xmlid": "ace-orb-all"}, "att": "auto/ACE_ephemeris", "desc": "", "is_public": "True", "name": "Ephemeris", "xmlid": "ACE_ephemeris"}, "MFI": {"__spz_name__": "MFI", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "ACE_mag", "ace_imf_all": {"__spz_name__": "final / prelim", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ace-imf-all", "att": "auto/ace-imf-all", "dataSource": "CDAWeb", "desc": "Interplanetary Magnetic Field 16-sec Level2/PRELIM Data
Sampling: 16S
Provider: CDAWeb", "imf": {"__spz_name__": "b_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "imf", "dataset": "ace-imf-all", "description": "Magnetic field vector in GSE Cartesian coordinates (16 sec)", "display_type": "timeseries", "imf0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "imf(0)", "dataset": "ace-imf-all", "index1": "0", "is_public": "True", "name": "bx", "parameter": "imf", "start_date": "1997-09-02T00:00:12Z", "stop_date": "2024-09-28T23:59:53Z", "xmlid": "imf(0)"}, "imf1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "imf(1)", "dataset": "ace-imf-all", "index1": "1", "is_public": "True", "name": "by", "parameter": "imf", "start_date": "1997-09-02T00:00:12Z", "stop_date": "2024-09-28T23:59:53Z", "xmlid": "imf(1)"}, "imf2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "imf(2)", "dataset": "ace-imf-all", "index1": "2", "is_public": "True", "name": "bz", "parameter": "imf", "start_date": "1997-09-02T00:00:12Z", "stop_date": "2024-09-28T23:59:53Z", "xmlid": "imf(2)"}, "is_public": "True", "name": "b_gse", "size": "3", "start_date": "1997-09-02T00:00:12Z", "stop_date": "2024-09-28T23:59:53Z", "ucd": "phys.magField", "units": "nT", "xmlid": "imf"}, "imf_gsm": {"__spz_name__": "b_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "imf_gsm", "dataset": "ace-imf-all", "description": "Magnetic field vector in GSM Cartesian coordinates (16 sec)", "display_type": "timeseries", "imf_gsm0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "imf_gsm(0)", "dataset": "ace-imf-all", "index1": "0", "is_public": "True", "name": "bx", "parameter": "imf_gsm", "start_date": "1997-09-02T00:00:12Z", "stop_date": "2024-09-28T23:59:53Z", "xmlid": "imf_gsm(0)"}, "imf_gsm1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "imf_gsm(1)", "dataset": "ace-imf-all", "index1": "1", "is_public": "True", "name": "by", "parameter": "imf_gsm", "start_date": "1997-09-02T00:00:12Z", "stop_date": "2024-09-28T23:59:53Z", "xmlid": "imf_gsm(1)"}, "imf_gsm2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "imf_gsm(2)", "dataset": "ace-imf-all", "index1": "2", "is_public": "True", "name": "bz", "parameter": "imf_gsm", "start_date": "1997-09-02T00:00:12Z", "stop_date": "2024-09-28T23:59:53Z", "xmlid": "imf_gsm(2)"}, "is_public": "True", "name": "b_gsm", "size": "3", "start_date": "1997-09-02T00:00:12Z", "stop_date": "2024-09-28T23:59:53Z", "ucd": "phys.magField", "units": "nT", "xmlid": "imf_gsm"}, "imf_mag": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "imf_mag", "dataset": "ace-imf-all", "description": "Magnetic field magnitude", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "1997-09-02T00:00:12Z", "stop_date": "2024-09-28T23:59:53Z", "ucd": "phys.magField", "units": "nT", "xmlid": "imf_mag"}, "is_public": "True", "lastModificationDate": "2024-10-06T22:00:16Z", "lastUpdate": "2024-10-06T22:00:17Z", "measurement_type": "MagneticField", "name": "final / prelim", "processing_level": "Calibrated", "sampling": "16S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/ACE/MFI/ace-imf-all", "start_date": "1997-09-02T00:00:12Z", "stop_date": "2024-09-28T23:59:53Z", "target": "Heliosphere.NearEarth", "xmlid": "ace-imf-all"}, "ace_mag_real": {"__spz_name__": "real time", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ace-mag-real", "att": "auto/ace-mag-real", "dataSource": "NOAA", "desc": "Interplanetary Magnetic Field 60-sec real time Data
Sampling: 60S
Provider: NOAA", "imf_real_gse": {"__spz_name__": "b_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "imf_real_gse", "dataset": "ace-mag-real", "description": "Magnetic field vector in GSE Cartesian coordinates (60 sec)", "display_type": "timeseries", "imf_real_gse0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "imf_real_gse(0)", "dataset": "ace-mag-real", "index1": "0", "is_public": "True", "name": "bx", "parameter": "imf_real_gse", "start_date": "2024-07-07T00:00:00Z", "stop_date": "2024-10-07T02:59:59Z", "xmlid": "imf_real_gse(0)"}, "imf_real_gse1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "imf_real_gse(1)", "dataset": "ace-mag-real", "index1": "1", "is_public": "True", "name": "by", "parameter": "imf_real_gse", "start_date": "2024-07-07T00:00:00Z", "stop_date": "2024-10-07T02:59:59Z", "xmlid": "imf_real_gse(1)"}, "imf_real_gse2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "imf_real_gse(2)", "dataset": "ace-mag-real", "index1": "2", "is_public": "True", "name": "bz", "parameter": "imf_real_gse", "start_date": "2024-07-07T00:00:00Z", "stop_date": "2024-10-07T02:59:59Z", "xmlid": "imf_real_gse(2)"}, "is_public": "True", "name": "b_gse", "size": "3", "start_date": "2024-07-07T00:00:00Z", "stop_date": "2024-10-07T02:59:59Z", "ucd": "phys.magField", "units": "nT", "xmlid": "imf_real_gse"}, "imf_real_gsm": {"__spz_name__": "b_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "imf_real_gsm", "dataset": "ace-mag-real", "description": "Magnetic field vector in GSM Cartesian coordinates (60 sec)", "display_type": "timeseries", "imf_real_gsm0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "imf_real_gsm(0)", "dataset": "ace-mag-real", "index1": "0", "is_public": "True", "name": "bx", "parameter": "imf_real_gsm", "start_date": "2024-07-07T00:00:00Z", "stop_date": "2024-10-07T02:59:59Z", "xmlid": "imf_real_gsm(0)"}, "imf_real_gsm1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "imf_real_gsm(1)", "dataset": "ace-mag-real", "index1": "1", "is_public": "True", "name": "by", "parameter": "imf_real_gsm", "start_date": "2024-07-07T00:00:00Z", "stop_date": "2024-10-07T02:59:59Z", "xmlid": "imf_real_gsm(1)"}, "imf_real_gsm2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "imf_real_gsm(2)", "dataset": "ace-mag-real", "index1": "2", "is_public": "True", "name": "bz", "parameter": "imf_real_gsm", "start_date": "2024-07-07T00:00:00Z", "stop_date": "2024-10-07T02:59:59Z", "xmlid": "imf_real_gsm(2)"}, "is_public": "True", "name": "b_gsm", "size": "3", "start_date": "2024-07-07T00:00:00Z", "stop_date": "2024-10-07T02:59:59Z", "ucd": "phys.magField", "units": "nT", "xmlid": "imf_real_gsm"}, "imf_real_mag": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "imf_real_mag", "dataset": "ace-mag-real", "description": "Magnetic field magnitude", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "2024-07-07T00:00:00Z", "stop_date": "2024-10-07T02:59:59Z", "ucd": "phys.magField", "units": "nT", "xmlid": "imf_real_mag"}, "is_public": "True", "lastModificationDate": "2024-10-07T05:04:07Z", "lastUpdate": "2024-10-07T05:04:06Z", "measurement_type": "MagneticField", "name": "real time", "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/ACE/MFI/ace-mag-real", "start_date": "2024-07-07T00:00:00Z", "stop_date": "2024-10-07T02:59:59Z", "target": "Heliosphere.NearEarth", "xmlid": "ace-mag-real"}, "att": "auto/ACE_mag", "desc": "Magnetic Field Instrument
Magnetometer", "is_public": "True", "name": "MFI", "xmlid": "ACE_mag"}, "SWEPAM": {"__spz_name__": "SWEPAM", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "ACE_swepam", "ace_swe_all": {"__spz_name__": "sw : final", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ace-swe-all", "att": "auto/ace-swe-all", "dataSource": "CDAWeb", "desc": "Solar Wind 64-Second Level 2 Data
Sampling: 64S
Provider: CDAWeb", "is_public": "True", "lastModificationDate": "2024-09-08T22:04:12Z", "lastUpdate": "2024-09-08T22:04:12Z", "measurement_type": "ThermalPlasma", "name": "sw : final", "processing_level": "Calibrated", "sampling": "64S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/ACE/SWEPAM/ace-swe-all", "start_date": "1998-02-04T00:00:31Z", "stop_date": "2024-05-17T23:59:22Z", "sw_he": {"__spz_name__": "alpha/proton ratio", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sw_he", "dataset": "ace-swe-all", "description": "alpha to proton density ratio", "display_type": "timeseries", "is_public": "True", "name": "alpha/proton ratio", "start_date": "1998-02-04T00:00:31Z", "stop_date": "2024-05-17T23:59:22Z", "ucd": "phys.density;arith.ratio;phys.atmol.ionStage", "xmlid": "sw_he"}, "sw_n": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sw_n", "dataset": "ace-swe-all", "description": "Solar Wind Proton Number Density, scalar", "display_type": "timeseries", "is_public": "True", "name": "density", "start_date": "1998-02-04T00:00:31Z", "stop_date": "2024-05-17T23:59:22Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm\u207b\u00b3", "xmlid": "sw_n"}, "sw_pdyn": {"__spz_name__": "ram pressure", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sw_pdyn", "dataset": "ace-swe-all", "description": "P = 2*10e-6 * Np * Vp^2", "display_type": "timeseries", "is_public": "True", "name": "ram pressure", "start_date": "1998-02-04T00:00:31Z", "stop_date": "2024-05-17T23:59:22Z", "ucd": "phys.pressure;phys.atmol.ionStage", "units": "nPa", "xmlid": "sw_pdyn"}, "sw_t": {"__spz_name__": "t_radial", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sw_t", "dataset": "ace-swe-all", "description": "radial component of the proton temperature", "display_type": "timeseries", "is_public": "True", "name": "t_radial", "start_date": "1998-02-04T00:00:31Z", "stop_date": "2024-05-17T23:59:22Z", "ucd": "phys.temperature;phys.atmol.ionStage", "units": "eV", "xmlid": "sw_t"}, "sw_v_gse": {"__spz_name__": "v_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sw_v_gse", "dataset": "ace-swe-all", "display_type": "timeseries", "is_public": "True", "name": "v_gse", "size": "3", "start_date": "1998-02-04T00:00:31Z", "stop_date": "2024-05-17T23:59:22Z", "sw_v_gse0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sw_v_gse(0)", "dataset": "ace-swe-all", "index1": "0", "is_public": "True", "name": "vx", "parameter": "sw_v_gse", "start_date": "1998-02-04T00:00:31Z", "stop_date": "2024-05-17T23:59:22Z", "xmlid": "sw_v_gse(0)"}, "sw_v_gse1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sw_v_gse(1)", "dataset": "ace-swe-all", "index1": "1", "is_public": "True", "name": "vy", "parameter": "sw_v_gse", "start_date": "1998-02-04T00:00:31Z", "stop_date": "2024-05-17T23:59:22Z", "xmlid": "sw_v_gse(1)"}, "sw_v_gse2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sw_v_gse(2)", "dataset": "ace-swe-all", "index1": "2", "is_public": "True", "name": "vz", "parameter": "sw_v_gse", "start_date": "1998-02-04T00:00:31Z", "stop_date": "2024-05-17T23:59:22Z", "xmlid": "sw_v_gse(2)"}, "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "sw_v_gse"}, "sw_v_gsm": {"__spz_name__": "v_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sw_v_gsm", "dataset": "ace-swe-all", "display_type": "timeseries", "is_public": "True", "name": "v_gsm", "size": "3", "start_date": "1998-02-04T00:00:31Z", "stop_date": "2024-05-17T23:59:22Z", "sw_v_gsm0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sw_v_gsm(0)", "dataset": "ace-swe-all", "index1": "0", "is_public": "True", "name": "vx", "parameter": "sw_v_gsm", "start_date": "1998-02-04T00:00:31Z", "stop_date": "2024-05-17T23:59:22Z", "xmlid": "sw_v_gsm(0)"}, "sw_v_gsm1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sw_v_gsm(1)", "dataset": "ace-swe-all", "index1": "1", "is_public": "True", "name": "vy", "parameter": "sw_v_gsm", "start_date": "1998-02-04T00:00:31Z", "stop_date": "2024-05-17T23:59:22Z", "xmlid": "sw_v_gsm(1)"}, "sw_v_gsm2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sw_v_gsm(2)", "dataset": "ace-swe-all", "index1": "2", "is_public": "True", "name": "vz", "parameter": "sw_v_gsm", "start_date": "1998-02-04T00:00:31Z", "stop_date": "2024-05-17T23:59:22Z", "xmlid": "sw_v_gsm(2)"}, "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "sw_v_gsm"}, "sw_vb": {"__spz_name__": "v_bulk", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sw_vb", "dataset": "ace-swe-all", "description": "Solar Wind Bulk Speed", "display_type": "timeseries", "is_public": "True", "name": "v_bulk", "start_date": "1998-02-04T00:00:31Z", "stop_date": "2024-05-17T23:59:22Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "sw_vb"}, "target": "Heliosphere", "xmlid": "ace-swe-all"}, "ace_swepam_real": {"__spz_name__": "sw : real time", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ace-swepam-real", "att": "auto/ace-swepam-real", "dataSource": "NOAA", "desc": "Solar wind 60-sec real time data
Sampling: 60S
Provider: NOAA", "is_public": "True", "lastModificationDate": "2024-10-07T05:02:25Z", "lastUpdate": "2024-10-07T05:02:24Z", "measurement_type": "ThermalPlasma", "name": "sw : real time", "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/ACE/SWEPAM/ace-swepam-real", "start_date": "2024-07-07T00:00:00Z", "stop_date": "2024-10-07T01:59:59Z", "sw_n_real": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sw_n_real", "dataset": "ace-swepam-real", "display_type": "timeseries", "is_public": "True", "name": "density", "start_date": "2024-07-07T00:00:00Z", "stop_date": "2024-10-07T01:59:59Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm\u207b\u00b3", "xmlid": "sw_n_real"}, "sw_pdyn_real": {"__spz_name__": "ram pressure", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sw_pdyn_real", "dataset": "ace-swepam-real", "description": "P = 2*10e-6 * Np * Vp^2", "display_type": "timeseries", "is_public": "True", "name": "ram pressure", "start_date": "2024-07-07T00:00:00Z", "stop_date": "2024-10-07T01:59:59Z", "ucd": "phys.pressure;phys.atmol.ionStage", "units": "nPa", "xmlid": "sw_pdyn_real"}, "sw_t_real": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sw_t_real", "dataset": "ace-swepam-real", "display_type": "timeseries", "is_public": "True", "name": "temperature", "start_date": "2024-07-07T00:00:00Z", "stop_date": "2024-10-07T01:59:59Z", "ucd": "phys.temperature;phys.atmol.ionStage", "units": "eV", "xmlid": "sw_t_real"}, "sw_v_real": {"__spz_name__": "v_bulk", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sw_v_real", "dataset": "ace-swepam-real", "description": "Solar Wind Bulk Speed", "display_type": "timeseries", "is_public": "True", "name": "v_bulk", "start_date": "2024-07-07T00:00:00Z", "stop_date": "2024-10-07T01:59:59Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "sw_v_real"}, "target": "Heliosphere", "xmlid": "ace-swepam-real"}, "ace_swepam_stea": {"__spz_name__": "e- pitch angle : 272 eV", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ace-swepam-stea", "ace_swepam_stea_epa": {"__spz_name__": "e- pitch angle : 272 eV", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ace_swepam_stea_epa", "dataset": "ace-swepam-stea", "display_type": "spectrogram", "is_public": "True", "name": "e- pitch angle : 272 eV", "start_date": "1997-12-16T00:00:52Z", "stop_date": "2017-07-25T23:57:35Z", "units": "s\u00b3 cm\u207b\u2076", "xmlid": "ace_swepam_stea_epa"}, "att": "auto/ace-swepam-stea", "dataSource": "CalTech", "desc": "ACE SWEPAM electron pitch angle data at 272eV
Sampling: 60S
Provider: CalTech", "is_public": "True", "lastModificationDate": "2021-02-24T18:07:30Z", "lastUpdate": "2021-02-24T17:49:56Z", "measurement_type": "ThermalPlasma", "name": "e- pitch angle : 272 eV", "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/ACE/SWEPAM/ace-swepam-stea", "start_date": "1997-12-16T00:00:52Z", "stop_date": "2017-07-25T23:57:35Z", "target": "Heliosphere", "xmlid": "ace-swepam-stea"}, "ace_swp_all": {"__spz_name__": "sw : prelim", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ace-swp-all", "att": "auto/ace-swp-all", "dataSource": "CDAWeb", "desc": "Preliminary, 5-min averages
Sampling: 5M
Provider: CDAWeb", "is_public": "True", "lastModificationDate": "2024-10-06T22:03:35Z", "lastUpdate": "2024-10-06T22:03:35Z", "measurement_type": "ThermalPlasma", "name": "sw : prelim", "processing_level": "Calibrated", "sampling": "5M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/ACE/SWEPAM/ace-swp-all", "start_date": "2001-01-01T00:00:00Z", "stop_date": "2024-09-28T23:55:00Z", "swp_he": {"__spz_name__": "alpha/proton ratio", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swp_he", "dataset": "ace-swp-all", "description": "alpha to proton density ratio", "display_type": "timeseries", "is_public": "True", "name": "alpha/proton ratio", "start_date": "2001-01-01T00:00:00Z", "stop_date": "2024-09-28T23:55:00Z", "ucd": "phys.density;arith.ratio;phys.atmol.ionStage", "xmlid": "swp_he"}, "swp_n": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swp_n", "dataset": "ace-swp-all", "description": "Solar Wind Proton Number Density, scalar", "display_type": "timeseries", "is_public": "True", "name": "density", "start_date": "2001-01-01T00:00:00Z", "stop_date": "2024-09-28T23:55:00Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm\u207b\u00b3", "xmlid": "swp_n"}, "swp_pdyn": {"__spz_name__": "ram pressure", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swp_pdyn", "dataset": "ace-swp-all", "description": "P = 2*10e-6 * Np * Vp^2", "display_type": "timeseries", "is_public": "True", "name": "ram pressure", "start_date": "2001-01-01T00:00:00Z", "stop_date": "2024-09-28T23:55:00Z", "ucd": "phys.pressure;phys.atmol.ionStage", "units": "nPa", "xmlid": "swp_pdyn"}, "swp_t": {"__spz_name__": "t_radial", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swp_t", "dataset": "ace-swp-all", "description": "radial component of the proton temperature", "display_type": "timeseries", "is_public": "True", "name": "t_radial", "start_date": "2001-01-01T00:00:00Z", "stop_date": "2024-09-28T23:55:00Z", "ucd": "phys.temperature;phys.atmol.ionStage", "units": "eV", "xmlid": "swp_t"}, "swp_v": {"__spz_name__": "v_bulk", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swp_v", "dataset": "ace-swp-all", "description": "Solar Wind Bulk Speed", "display_type": "timeseries", "is_public": "True", "name": "v_bulk", "start_date": "2001-01-01T00:00:00Z", "stop_date": "2024-09-28T23:55:00Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "swp_v"}, "target": "Heliosphere.NearEarth", "xmlid": "ace-swp-all"}, "att": "auto/ACE_swepam", "desc": "Solar Wind Electron, Proton and Alpha Monitor
ElectrostaticAnalyser", "is_public": "True", "name": "SWEPAM", "xmlid": "ACE_swepam"}, "__spz_name__": "ACE", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "ACE", "att": "auto/ACE", "desc": "Advanced Composition Explorer, NASA
1997-08-25T00:00:00", "is_public": "True", "name": "ACE", "rank": "4", "target": "Heliosphere.NearEarth", "xmlid": "ACE"}, "AMPTE": {"CCE": {"Ephemeris": {"__spz_name__": "Ephemeris", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "CCE_ephemeris", "att": "auto/CCE_ephemeris", "cce_orb_all": {"__spz_name__": "orbit", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "cce-orb-all", "att": "auto/cce-orb-all", "cce_orb_gsm": {"__spz_name__": "xyz_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cce_orb_gsm", "cce_orb_gsm0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cce_orb_gsm(0)", "dataset": "cce-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "cce_orb_gsm", "start_date": "1984-08-16T16:16:00Z", "stop_date": "1989-01-11T11:58:59Z", "xmlid": "cce_orb_gsm(0)"}, "cce_orb_gsm1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cce_orb_gsm(1)", "dataset": "cce-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "cce_orb_gsm", "start_date": "1984-08-16T16:16:00Z", "stop_date": "1989-01-11T11:58:59Z", "xmlid": "cce_orb_gsm(1)"}, "cce_orb_gsm2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cce_orb_gsm(2)", "dataset": "cce-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "cce_orb_gsm", "start_date": "1984-08-16T16:16:00Z", "stop_date": "1989-01-11T11:58:59Z", "xmlid": "cce_orb_gsm(2)"}, "dataset": "cce-orb-all", "description": "Position in GSM Cartesian coordinates", "display_type": "timeseries", "is_public": "True", "name": "xyz_gsm", "size": "3", "start_date": "1984-08-16T16:16:00Z", "stop_date": "1989-01-11T11:58:59Z", "units": "Re", "xmlid": "cce_orb_gsm"}, "cce_orb_mag": {"__spz_name__": "distance cce-earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cce_orb_mag", "dataset": "cce-orb-all", "description": "Spacecraft distance to earth center", "display_type": "timeseries", "is_public": "True", "name": "distance cce-earth", "start_date": "1984-08-16T16:16:00Z", "stop_date": "1989-01-11T11:58:59Z", "units": "Re", "xmlid": "cce_orb_mag"}, "cce_orb_xyz": {"__spz_name__": "xyz_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cce_orb_xyz", "cce_orb_xyz0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cce_orb_xyz(0)", "dataset": "cce-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "cce_orb_xyz", "start_date": "1984-08-16T16:16:00Z", "stop_date": "1989-01-11T11:58:59Z", "xmlid": "cce_orb_xyz(0)"}, "cce_orb_xyz1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cce_orb_xyz(1)", "dataset": "cce-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "cce_orb_xyz", "start_date": "1984-08-16T16:16:00Z", "stop_date": "1989-01-11T11:58:59Z", "xmlid": "cce_orb_xyz(1)"}, "cce_orb_xyz2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cce_orb_xyz(2)", "dataset": "cce-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "cce_orb_xyz", "start_date": "1984-08-16T16:16:00Z", "stop_date": "1989-01-11T11:58:59Z", "xmlid": "cce_orb_xyz(2)"}, "dataset": "cce-orb-all", "description": "Position in GSE Cartesian coordinates", "display_type": "timeseries", "is_public": "True", "name": "xyz_gse", "size": "3", "start_date": "1984-08-16T16:16:00Z", "stop_date": "1989-01-11T11:58:59Z", "units": "Re", "xmlid": "cce_orb_xyz"}, "dataSource": "JHUAPL", "desc": "Ephemeris
MinSampling: 60S; MaxSampling:
Provider: JHUAPL", "is_public": "True", "lastModificationDate": "2020-02-14T17:15:11Z", "lastUpdate": "2020-02-07T16:32:56Z", "maxSampling": "", "measurement_type": "Ephemeris", "name": "orbit", "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/CCE/ORBIT/cce-orb-all", "start_date": "1984-08-16T16:16:00Z", "stop_date": "1989-01-11T11:58:59Z", "target": "Earth.Magnetosheath", "xmlid": "cce-orb-all"}, "desc": "", "is_public": "True", "name": "Ephemeris", "xmlid": "CCE_ephemeris"}, "MEPA": {"__spz_name__": "MEPA", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "CCE_mepa", "att": "auto/CCE_mepa", "cce_mepa_mag": {"__spz_name__": "b field interpolated", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "cce-mepa-mag", "att": "auto/cce-mepa-mag", "cce_mepa_b": {"__spz_name__": "b_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cce_mepa_b", "cce_mepa_b0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cce_mepa_b(0)", "dataset": "cce-mepa-mag", "index1": "0", "is_public": "True", "name": "bx", "parameter": "cce_mepa_b", "start_date": "1984-08-29T13:02:44Z", "stop_date": "1989-01-11T00:00:03Z", "xmlid": "cce_mepa_b(0)"}, "cce_mepa_b1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cce_mepa_b(1)", "dataset": "cce-mepa-mag", "index1": "1", "is_public": "True", "name": "by", "parameter": "cce_mepa_b", "start_date": "1984-08-29T13:02:44Z", "stop_date": "1989-01-11T00:00:03Z", "xmlid": "cce_mepa_b(1)"}, "cce_mepa_b2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cce_mepa_b(2)", "dataset": "cce-mepa-mag", "index1": "2", "is_public": "True", "name": "bz", "parameter": "cce_mepa_b", "start_date": "1984-08-29T13:02:44Z", "stop_date": "1989-01-11T00:00:03Z", "xmlid": "cce_mepa_b(2)"}, "dataset": "cce-mepa-mag", "description": "Magnetic field vector in GSE Cartesian coordinates", "display_type": "timeseries", "is_public": "True", "name": "b_gse", "size": "3", "start_date": "1984-08-29T13:02:44Z", "stop_date": "1989-01-11T00:00:03Z", "ucd": "phys.magField", "units": "nT", "xmlid": "cce_mepa_b"}, "cce_mepa_bdir": {"__spz_name__": "spin axis dir", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cce_mepa_bdir", "cce_mepa_bdir0": {"__spz_name__": "Zx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cce_mepa_bdir(0)", "dataset": "cce-mepa-mag", "index1": "0", "is_public": "True", "name": "Zx", "parameter": "cce_mepa_bdir", "start_date": "1984-08-29T13:02:44Z", "stop_date": "1989-01-11T00:00:03Z", "xmlid": "cce_mepa_bdir(0)"}, "cce_mepa_bdir1": {"__spz_name__": "Zy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cce_mepa_bdir(1)", "dataset": "cce-mepa-mag", "index1": "1", "is_public": "True", "name": "Zy", "parameter": "cce_mepa_bdir", "start_date": "1984-08-29T13:02:44Z", "stop_date": "1989-01-11T00:00:03Z", "xmlid": "cce_mepa_bdir(1)"}, "cce_mepa_bdir2": {"__spz_name__": "Zz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cce_mepa_bdir(2)", "dataset": "cce-mepa-mag", "index1": "2", "is_public": "True", "name": "Zz", "parameter": "cce_mepa_bdir", "start_date": "1984-08-29T13:02:44Z", "stop_date": "1989-01-11T00:00:03Z", "xmlid": "cce_mepa_bdir(2)"}, "dataset": "cce-mepa-mag", "description": "Spacecraft spin axis as a unit vector in GSE coordinates, evaluated once per record", "display_type": "timeseries", "is_public": "True", "name": "spin axis dir", "size": "3", "start_date": "1984-08-29T13:02:44Z", "stop_date": "1989-01-11T00:00:03Z", "xmlid": "cce_mepa_bdir"}, "cce_mepa_bgsm": {"__spz_name__": "b_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cce_mepa_bgsm", "cce_mepa_bgsm0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cce_mepa_bgsm(0)", "dataset": "cce-mepa-mag", "index1": "0", "is_public": "True", "name": "bx", "parameter": "cce_mepa_bgsm", "start_date": "1984-08-29T13:02:44Z", "stop_date": "1989-01-11T00:00:03Z", "xmlid": "cce_mepa_bgsm(0)"}, "cce_mepa_bgsm1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cce_mepa_bgsm(1)", "dataset": "cce-mepa-mag", "index1": "1", "is_public": "True", "name": "by", "parameter": "cce_mepa_bgsm", "start_date": "1984-08-29T13:02:44Z", "stop_date": "1989-01-11T00:00:03Z", "xmlid": "cce_mepa_bgsm(1)"}, "cce_mepa_bgsm2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cce_mepa_bgsm(2)", "dataset": "cce-mepa-mag", "index1": "2", "is_public": "True", "name": "bz", "parameter": "cce_mepa_bgsm", "start_date": "1984-08-29T13:02:44Z", "stop_date": "1989-01-11T00:00:03Z", "xmlid": "cce_mepa_bgsm(2)"}, "dataset": "cce-mepa-mag", "description": "Magnetic field vector in GSM Cartesian coordinates", "display_type": "timeseries", "is_public": "True", "name": "b_gsm", "size": "3", "start_date": "1984-08-29T13:02:44Z", "stop_date": "1989-01-11T00:00:03Z", "ucd": "phys.magField", "units": "nT", "xmlid": "cce_mepa_bgsm"}, "cce_mepa_btot": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cce_mepa_btot", "dataset": "cce-mepa-mag", "description": "Magnetic field magnitude", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "1984-08-29T13:02:44Z", "stop_date": "1989-01-11T00:00:03Z", "ucd": "phys.magField", "units": "nT", "xmlid": "cce_mepa_btot"}, "dataSource": "JHU/APL", "desc": "Magnetic field data interpolated to MEPA sector midpoints
MinSampling: 22S; MaxSampling: 60S
Provider: JHU/APL", "is_public": "True", "lastModificationDate": "2020-02-14T17:15:16Z", "lastUpdate": "2020-01-30T16:01:41Z", "maxSampling": "60S", "measurement_type": "MagneticField", "name": "b field interpolated", "processing_level": "Calibrated", "sampling": "22S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/CCE/MEPA/cce-mepa-mag", "start_date": "1984-08-29T13:02:44Z", "stop_date": "1989-01-11T00:00:03Z", "target": "Earth.Magnetosheath", "xmlid": "cce-mepa-mag"}, "cce_mepa_pa": {"__spz_name__": "ion flux : 2 pitch angles", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "cce-mepa-pa", "att": "auto/cce-mepa-pa", "cce_mepa_pa_E0": {"__spz_name__": "ion flux E0", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cce_mepa_pa_E0", "cce_mepa_pa_E00": {"__spz_name__": "perp", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cce_mepa_pa_E0(0)", "dataset": "cce-mepa-pa", "index1": "0", "is_public": "True", "name": "perp", "parameter": "cce_mepa_pa_E0", "start_date": "1984-08-21T17:59:10Z", "stop_date": "1989-01-11T12:10:46Z", "xmlid": "cce_mepa_pa_E0(0)"}, "cce_mepa_pa_E01": {"__spz_name__": "para", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cce_mepa_pa_E0(1)", "dataset": "cce-mepa-pa", "index1": "1", "is_public": "True", "name": "para", "parameter": "cce_mepa_pa_E0", "start_date": "1984-08-21T17:59:10Z", "stop_date": "1989-01-11T12:10:46Z", "xmlid": "cce_mepa_pa_E0(1)"}, "dataset": "cce-mepa-pa", "description": "Number flux for both pitch angle bins at Energy E0. E0 is varying due to gain shift from range 25-76 to 34-100 keV", "display_type": "timeseries", "is_public": "True", "name": "ion flux E0", "size": "2", "start_date": "1984-08-21T17:59:10Z", "stop_date": "1989-01-11T12:10:46Z", "units": "1/cm\u00b2/s/sr", "xmlid": "cce_mepa_pa_E0"}, "cce_mepa_pa_E1": {"__spz_name__": "ion flux E1", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cce_mepa_pa_E1", "cce_mepa_pa_E10": {"__spz_name__": "perp", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cce_mepa_pa_E1(0)", "dataset": "cce-mepa-pa", "index1": "0", "is_public": "True", "name": "perp", "parameter": "cce_mepa_pa_E1", "start_date": "1984-08-21T17:59:10Z", "stop_date": "1989-01-11T12:10:46Z", "xmlid": "cce_mepa_pa_E1(0)"}, "cce_mepa_pa_E11": {"__spz_name__": "para", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cce_mepa_pa_E1(1)", "dataset": "cce-mepa-pa", "index1": "1", "is_public": "True", "name": "para", "parameter": "cce_mepa_pa_E1", "start_date": "1984-08-21T17:59:10Z", "stop_date": "1989-01-11T12:10:46Z", "xmlid": "cce_mepa_pa_E1(1)"}, "dataset": "cce-mepa-pa", "description": "Number flux for both pitch angle bins at Energy E1. E1 is varying due to gain shift from range 34-100 to 50-150 keV", "display_type": "timeseries", "is_public": "True", "name": "ion flux E1", "size": "2", "start_date": "1984-08-21T17:59:10Z", "stop_date": "1989-01-11T12:10:46Z", "units": "1/cm\u00b2/s/sr", "xmlid": "cce_mepa_pa_E1"}, "cce_mepa_pa_E2": {"__spz_name__": "ion flux E2", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cce_mepa_pa_E2", "cce_mepa_pa_E20": {"__spz_name__": "perp", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cce_mepa_pa_E2(0)", "dataset": "cce-mepa-pa", "index1": "0", "is_public": "True", "name": "perp", "parameter": "cce_mepa_pa_E2", "start_date": "1984-08-21T17:59:10Z", "stop_date": "1989-01-11T12:10:46Z", "xmlid": "cce_mepa_pa_E2(0)"}, "cce_mepa_pa_E21": {"__spz_name__": "para", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cce_mepa_pa_E2(1)", "dataset": "cce-mepa-pa", "index1": "1", "is_public": "True", "name": "para", "parameter": "cce_mepa_pa_E2", "start_date": "1984-08-21T17:59:10Z", "stop_date": "1989-01-11T12:10:46Z", "xmlid": "cce_mepa_pa_E2(1)"}, "dataset": "cce-mepa-pa", "description": "Number flux for both pitch angle bins at Energy E2. E2 is varying due to gain shift from range 50-150 to 83-250 keV", "display_type": "timeseries", "is_public": "True", "name": "ion flux E2", "size": "2", "start_date": "1984-08-21T17:59:10Z", "stop_date": "1989-01-11T12:10:46Z", "units": "1/cm\u00b2/s/sr", "xmlid": "cce_mepa_pa_E2"}, "cce_mepa_pa_E3": {"__spz_name__": "ion flux E3", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cce_mepa_pa_E3", "cce_mepa_pa_E30": {"__spz_name__": "perp", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cce_mepa_pa_E3(0)", "dataset": "cce-mepa-pa", "index1": "0", "is_public": "True", "name": "perp", "parameter": "cce_mepa_pa_E3", "start_date": "1984-08-21T17:59:10Z", "stop_date": "1989-01-11T12:10:46Z", "xmlid": "cce_mepa_pa_E3(0)"}, "cce_mepa_pa_E31": {"__spz_name__": "para", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cce_mepa_pa_E3(1)", "dataset": "cce-mepa-pa", "index1": "1", "is_public": "True", "name": "para", "parameter": "cce_mepa_pa_E3", "start_date": "1984-08-21T17:59:10Z", "stop_date": "1989-01-11T12:10:46Z", "xmlid": "cce_mepa_pa_E3(1)"}, "dataset": "cce-mepa-pa", "description": "Number flux for both pitch angle bins at Energy E3. E3 is varying due to gain shift from range 83-250 to 151-460 keV", "display_type": "timeseries", "is_public": "True", "name": "ion flux E3", "size": "2", "start_date": "1984-08-21T17:59:10Z", "stop_date": "1989-01-11T12:10:46Z", "units": "1/cm\u00b2/s/sr", "xmlid": "cce_mepa_pa_E3"}, "cce_mepa_pa_E4": {"__spz_name__": "ion flux E4", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cce_mepa_pa_E4", "cce_mepa_pa_E40": {"__spz_name__": "perp", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cce_mepa_pa_E4(0)", "dataset": "cce-mepa-pa", "index1": "0", "is_public": "True", "name": "perp", "parameter": "cce_mepa_pa_E4", "start_date": "1984-08-21T17:59:10Z", "stop_date": "1989-01-11T12:10:46Z", "xmlid": "cce_mepa_pa_E4(0)"}, "cce_mepa_pa_E41": {"__spz_name__": "para", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cce_mepa_pa_E4(1)", "dataset": "cce-mepa-pa", "index1": "1", "is_public": "True", "name": "para", "parameter": "cce_mepa_pa_E4", "start_date": "1984-08-21T17:59:10Z", "stop_date": "1989-01-11T12:10:46Z", "xmlid": "cce_mepa_pa_E4(1)"}, "dataset": "cce-mepa-pa", "description": "Number flux for both pitch angle bins at Energy E4. E4 is varying due to gain shift from range 151-460 to 285-860 keV", "display_type": "timeseries", "is_public": "True", "name": "ion flux E4", "size": "2", "start_date": "1984-08-21T17:59:10Z", "stop_date": "1989-01-11T12:10:46Z", "units": "1/cm\u00b2/s/sr", "xmlid": "cce_mepa_pa_E4"}, "cce_mepa_pa_energy": {"__spz_name__": "energy bounds", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cce_mepa_pa_energy", "cce_mepa_pa_energy0": {"__spz_name__": "E0 min", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cce_mepa_pa_energy(0)", "dataset": "cce-mepa-pa", "index1": "0", "is_public": "True", "name": "E0 min", "parameter": "cce_mepa_pa_energy", "start_date": "1984-08-21T17:59:10Z", "stop_date": "1989-01-11T12:10:46Z", "xmlid": "cce_mepa_pa_energy(0)"}, "cce_mepa_pa_energy1": {"__spz_name__": "E1 min", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cce_mepa_pa_energy(1)", "dataset": "cce-mepa-pa", "index1": "1", "is_public": "True", "name": "E1 min", "parameter": "cce_mepa_pa_energy", "start_date": "1984-08-21T17:59:10Z", "stop_date": "1989-01-11T12:10:46Z", "xmlid": "cce_mepa_pa_energy(1)"}, "cce_mepa_pa_energy2": {"__spz_name__": "E2 min", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cce_mepa_pa_energy(2)", "dataset": "cce-mepa-pa", "index1": "2", "is_public": "True", "name": "E2 min", "parameter": "cce_mepa_pa_energy", "start_date": "1984-08-21T17:59:10Z", "stop_date": "1989-01-11T12:10:46Z", "xmlid": "cce_mepa_pa_energy(2)"}, "cce_mepa_pa_energy3": {"__spz_name__": "E3 min", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cce_mepa_pa_energy(3)", "dataset": "cce-mepa-pa", "index1": "3", "is_public": "True", "name": "E3 min", "parameter": "cce_mepa_pa_energy", "start_date": "1984-08-21T17:59:10Z", "stop_date": "1989-01-11T12:10:46Z", "xmlid": "cce_mepa_pa_energy(3)"}, "cce_mepa_pa_energy4": {"__spz_name__": "E4 min", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cce_mepa_pa_energy(4)", "dataset": "cce-mepa-pa", "index1": "4", "is_public": "True", "name": "E4 min", "parameter": "cce_mepa_pa_energy", "start_date": "1984-08-21T17:59:10Z", "stop_date": "1989-01-11T12:10:46Z", "xmlid": "cce_mepa_pa_energy(4)"}, "cce_mepa_pa_energy5": {"__spz_name__": "E4 max", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cce_mepa_pa_energy(5)", "dataset": "cce-mepa-pa", "index1": "5", "is_public": "True", "name": "E4 max", "parameter": "cce_mepa_pa_energy", "start_date": "1984-08-21T17:59:10Z", "stop_date": "1989-01-11T12:10:46Z", "xmlid": "cce_mepa_pa_energy(5)"}, "dataset": "cce-mepa-pa", "display_type": "timeseries", "is_public": "True", "name": "energy bounds", "size": "6", "start_date": "1984-08-21T17:59:10Z", "stop_date": "1989-01-11T12:10:46Z", "units": "keV", "xmlid": "cce_mepa_pa_energy"}, "cce_mepa_pa_para": {"__spz_name__": "ion flux para", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cce_mepa_pa_para", "dataset": "cce-mepa-pa", "description": "Number flux for particles with velocities nearly parallel to the measured magnetic field.", "display_type": "spectrogram", "is_public": "True", "name": "ion flux para", "start_date": "1984-08-21T17:59:10Z", "stop_date": "1989-01-11T12:10:46Z", "units": "1/cm\u00b2/s/sr", "xmlid": "cce_mepa_pa_para"}, "cce_mepa_pa_perp": {"__spz_name__": "ion flux perp", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cce_mepa_pa_perp", "dataset": "cce-mepa-pa", "description": "Number flux for particles with velocities nearly perpendicular to the measured magnetic field.", "display_type": "spectrogram", "is_public": "True", "name": "ion flux perp", "start_date": "1984-08-21T17:59:10Z", "stop_date": "1989-01-11T12:10:46Z", "units": "1/cm\u00b2/s/sr", "xmlid": "cce_mepa_pa_perp"}, "dataSource": "JHU/APL", "desc": "MEPA ION head : 5 energy bins, 2 pitch angles
Sampling: 20S
Provider: JHU/APL", "is_public": "True", "lastModificationDate": "2020-02-21T12:53:07Z", "lastUpdate": "2020-02-20T17:16:23Z", "measurement_type": "ThermalPlasma", "name": "ion flux : 2 pitch angles", "processing_level": "Calibrated", "sampling": "20S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/CCE/MEPA/cce-mepa-pa", "start_date": "1984-08-21T17:59:10Z", "stop_date": "1989-01-11T12:10:46Z", "target": "Earth.Magnetosheath", "xmlid": "cce-mepa-pa"}, "desc": "Medium Energy Particle Analyzer
EnergeticParticleInstrument", "ion_flux___32_sectors": {"__spz_name__": "ion flux : 32 sectors", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "mepa-ion-fl", "cce_mepa_hr": {"__spz_name__": "ION head high res.", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "cce-mepa-hr", "att": "auto/cce-mepa-hr", "cce_mepa_hr_hcps": {"__spz_name__": "h+ cps", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cce_mepa_hr_hcps", "cce_mepa_hr_hcps0": {"__spz_name__": "29.15 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cce_mepa_hr_hcps(0)", "dataset": "cce-mepa-hr", "index1": "0", "is_public": "True", "name": "29.15 keV", "parameter": "cce_mepa_hr_hcps", "start_date": "1984-08-29T22:50:20Z", "stop_date": "1989-01-11T00:00:14Z", "xmlid": "cce_mepa_hr_hcps(0)"}, "cce_mepa_hr_hcps1": {"__spz_name__": "64.42 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cce_mepa_hr_hcps(1)", "dataset": "cce-mepa-hr", "index1": "1", "is_public": "True", "name": "64.42 keV", "parameter": "cce_mepa_hr_hcps", "start_date": "1984-08-29T22:50:20Z", "stop_date": "1989-01-11T00:00:14Z", "xmlid": "cce_mepa_hr_hcps(1)"}, "dataset": "cce-mepa-hr", "description": "Proton counts per second per sector for every sector in every spin; the time given is the midpoint of each sector.", "display_type": "timeseries", "is_public": "True", "name": "h+ cps", "size": "2", "start_date": "1984-08-29T22:50:20Z", "stop_date": "1989-01-11T00:00:14Z", "units": "cnts/sec", "xmlid": "cce_mepa_hr_hcps"}, "cce_mepa_hr_hct": {"__spz_name__": "h+ counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cce_mepa_hr_hct", "cce_mepa_hr_hct0": {"__spz_name__": "29.15 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cce_mepa_hr_hct(0)", "dataset": "cce-mepa-hr", "index1": "0", "is_public": "True", "name": "29.15 keV", "parameter": "cce_mepa_hr_hct", "start_date": "1984-08-29T22:50:20Z", "stop_date": "1989-01-11T00:00:14Z", "xmlid": "cce_mepa_hr_hct(0)"}, "cce_mepa_hr_hct1": {"__spz_name__": "64.42 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cce_mepa_hr_hct(1)", "dataset": "cce-mepa-hr", "index1": "1", "is_public": "True", "name": "64.42 keV", "parameter": "cce_mepa_hr_hct", "start_date": "1984-08-29T22:50:20Z", "stop_date": "1989-01-11T00:00:14Z", "xmlid": "cce_mepa_hr_hct(1)"}, "dataset": "cce-mepa-hr", "description": "Proton counts for every sector in every spin; the time given is the midpoint of each sector.", "display_type": "timeseries", "is_public": "True", "name": "h+ counts", "size": "2", "start_date": "1984-08-29T22:50:20Z", "stop_date": "1989-01-11T00:00:14Z", "units": "cnts", "xmlid": "cce_mepa_hr_hct"}, "cce_mepa_hr_hin": {"__spz_name__": "h+ intensity", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cce_mepa_hr_hin", "cce_mepa_hr_hin0": {"__spz_name__": "29.15 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cce_mepa_hr_hin(0)", "dataset": "cce-mepa-hr", "index1": "0", "is_public": "True", "name": "29.15 keV", "parameter": "cce_mepa_hr_hin", "start_date": "1984-08-29T22:50:20Z", "stop_date": "1989-01-11T00:00:14Z", "xmlid": "cce_mepa_hr_hin(0)"}, "cce_mepa_hr_hin1": {"__spz_name__": "64.42 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cce_mepa_hr_hin(1)", "dataset": "cce-mepa-hr", "index1": "1", "is_public": "True", "name": "64.42 keV", "parameter": "cce_mepa_hr_hin", "start_date": "1984-08-29T22:50:20Z", "stop_date": "1989-01-11T00:00:14Z", "xmlid": "cce_mepa_hr_hin(1)"}, "dataset": "cce-mepa-hr", "description": "Proton differential intensity per sector for every sector in every spin; the time given is the midpoint of each sector.", "display_type": "timeseries", "is_public": "True", "name": "h+ intensity", "size": "2", "start_date": "1984-08-29T22:50:20Z", "stop_date": "1989-01-11T00:00:14Z", "units": "1/(s ster cm\u00b2 keV)", "xmlid": "cce_mepa_hr_hin"}, "cce_mepa_hr_sct": {"__spz_name__": "sector", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cce_mepa_hr_sct", "dataset": "cce-mepa-hr", "description": "angular sector number (/32)", "display_type": "timeseries", "is_public": "True", "name": "sector", "start_date": "1984-08-29T22:50:20Z", "stop_date": "1989-01-11T00:00:14Z", "xmlid": "cce_mepa_hr_sct"}, "cce_mepa_hr_spin": {"__spz_name__": "spin period", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cce_mepa_hr_spin", "dataset": "cce-mepa-hr", "display_type": "timeseries", "is_public": "True", "name": "spin period", "start_date": "1984-08-29T22:50:20Z", "stop_date": "1989-01-11T00:00:14Z", "xmlid": "cce_mepa_hr_spin"}, "dataSource": "JHU/APL", "desc": "MEPA ION head : ion fluxes : high resolution
Sampling: 0.18S
Provider: JHU/APL", "is_public": "True", "lastModificationDate": "2020-02-14T17:16:27Z", "lastUpdate": "2020-01-30T18:45:18Z", "measurement_type": "ThermalPlasma", "name": "ION head high res.", "processing_level": "Calibrated", "sampling": "0.18S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/CCE/MEPA/cce-mepa-hr", "start_date": "1984-08-29T22:50:20Z", "stop_date": "1989-01-11T00:00:14Z", "target": "Earth.Magnetosheath", "xmlid": "cce-mepa-hr"}, "cce_mepa_ion": {"__spz_name__": "ION head", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "cce-mepa-ion", "att": "auto/cce-mepa-ion", "cce_mepa_ion_acps": {"__spz_name__": "he++ cps", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cce_mepa_ion_acps", "dataset": "cce-mepa-ion", "description": "Alpha counts per second per sector with each sector being a sum from 4 spins. The time given is the sector midpoint spin 2 out of 0,1,2,3", "display_type": "spectrogram", "is_public": "True", "name": "he++ cps", "start_date": "1984-08-29T22:50:32Z", "stop_date": "1989-01-11T00:00:09Z", "units": "cnts/sec", "xmlid": "cce_mepa_ion_acps"}, "cce_mepa_ion_act": {"__spz_name__": "he++ counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cce_mepa_ion_act", "dataset": "cce-mepa-ion", "description": "Alpha counts per sector with each sector being a sum from 4 spins. The time given is the sector midpoint spin 2 out of 0,1,2,3", "display_type": "spectrogram", "is_public": "True", "name": "he++ counts", "start_date": "1984-08-29T22:50:32Z", "stop_date": "1989-01-11T00:00:09Z", "units": "cnts", "xmlid": "cce_mepa_ion_act"}, "cce_mepa_ion_ain": {"__spz_name__": "he++ intensity", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cce_mepa_ion_ain", "dataset": "cce-mepa-ion", "description": "Alpha differential intensity per sector with each sector being a sum from 4 spins. The time given is the sector midpoint spin 2 out of 0,1,2,3", "display_type": "spectrogram", "is_public": "True", "name": "he++ intensity", "start_date": "1984-08-29T22:50:32Z", "stop_date": "1989-01-11T00:00:09Z", "units": "1/(s ster cm\u00b2 keV)", "xmlid": "cce_mepa_ion_ain"}, "cce_mepa_ion_hcps": {"__spz_name__": "h+ cps", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cce_mepa_ion_hcps", "dataset": "cce-mepa-ion", "description": "Proton counts per second per sector with each sector being a sum from 4 spins. The time given is the sector midpoint spin 2 out of 0,1,2,3", "display_type": "spectrogram", "is_public": "True", "name": "h+ cps", "start_date": "1984-08-29T22:50:32Z", "stop_date": "1989-01-11T00:00:09Z", "units": "cnts/sec", "xmlid": "cce_mepa_ion_hcps"}, "cce_mepa_ion_hct": {"__spz_name__": "h+ counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cce_mepa_ion_hct", "dataset": "cce-mepa-ion", "description": "Proton counts per sector with each sector being a sum from 4 spins. The time given is the sector midpoint spin 2 out of 0,1,2,3", "display_type": "spectrogram", "is_public": "True", "name": "h+ counts", "start_date": "1984-08-29T22:50:32Z", "stop_date": "1989-01-11T00:00:09Z", "units": "cnts", "xmlid": "cce_mepa_ion_hct"}, "cce_mepa_ion_hin": {"__spz_name__": "h+ intensity", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cce_mepa_ion_hin", "dataset": "cce-mepa-ion", "description": "Proton differential intensity per sector with each sector being a sum from 4 spins. The time given is the sector midpoint spin 2 out of 0,1,2,3", "display_type": "spectrogram", "is_public": "True", "name": "h+ intensity", "start_date": "1984-08-29T22:50:32Z", "stop_date": "1989-01-11T00:00:09Z", "units": "1/(s ster cm\u00b2 keV)", "xmlid": "cce_mepa_ion_hin"}, "cce_mepa_ion_sct": {"__spz_name__": "sector", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cce_mepa_ion_sct", "dataset": "cce-mepa-ion", "description": "angular sector number (/32)", "display_type": "timeseries", "is_public": "True", "name": "sector", "start_date": "1984-08-29T22:50:32Z", "stop_date": "1989-01-11T00:00:09Z", "xmlid": "cce_mepa_ion_sct"}, "cce_mepa_ion_spin": {"__spz_name__": "spin period", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cce_mepa_ion_spin", "dataset": "cce-mepa-ion", "display_type": "timeseries", "is_public": "True", "name": "spin period", "start_date": "1984-08-29T22:50:32Z", "stop_date": "1989-01-11T00:00:09Z", "xmlid": "cce_mepa_ion_spin"}, "dataSource": "JHU/APL", "desc": "MEPA ION head : ion fluxes : 4 spins averaged
Sampling: 0.18S
Provider: JHU/APL", "is_public": "True", "lastModificationDate": "2020-02-14T17:18:31Z", "lastUpdate": "2020-01-30T17:59:28Z", "measurement_type": "ThermalPlasma", "name": "ION head", "processing_level": "Calibrated", "sampling": "0.18S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/CCE/MEPA/cce-mepa-ion", "start_date": "1984-08-29T22:50:32Z", "stop_date": "1989-01-11T00:00:09Z", "target": "Earth.Magnetosheath", "xmlid": "cce-mepa-ion"}, "cce_mepa_tof": {"__spz_name__": "TOF head", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "cce-mepa-tof", "att": "auto/cce-mepa-tof", "cce_mepa_tof_acps": {"__spz_name__": "he++ cps", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cce_mepa_tof_acps", "dataset": "cce-mepa-tof", "description": "Alpha counts per second per sector with each sector being a sum from 4 spins. The time given is the sector midpoint spin 2 out of 0,1,2,3", "display_type": "spectrogram", "is_public": "True", "name": "he++ cps", "start_date": "1984-08-29T13:02:44Z", "stop_date": "1989-01-11T00:00:09Z", "units": "counts/sec", "xmlid": "cce_mepa_tof_acps"}, "cce_mepa_tof_act": {"__spz_name__": "he++ counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cce_mepa_tof_act", "dataset": "cce-mepa-tof", "description": "Alpha counts per sector with each sector being a sum from 4 spins. The time given is the sector midpoint spin 2 out of 0,1,2,3", "display_type": "spectrogram", "is_public": "True", "name": "he++ counts", "start_date": "1984-08-29T13:02:44Z", "stop_date": "1989-01-11T00:00:09Z", "units": "counts", "xmlid": "cce_mepa_tof_act"}, "cce_mepa_tof_ain": {"__spz_name__": "he++ intensity", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cce_mepa_tof_ain", "dataset": "cce-mepa-tof", "description": "Alpha differential intensity per sector with each sector being a sum from 4 spins. The time given is the sector midpoint spin 2 out of 0,1,2,3", "display_type": "spectrogram", "is_public": "True", "name": "he++ intensity", "start_date": "1984-08-29T13:02:44Z", "stop_date": "1989-01-11T00:00:09Z", "units": "1/(s ster cm\u00b2 keV)", "xmlid": "cce_mepa_tof_ain"}, "cce_mepa_tof_fcps": {"__spz_name__": "fe cps", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cce_mepa_tof_fcps", "dataset": "cce-mepa-tof", "description": "Iron counts per second per sector with each sector being a sum from 4 spins. The time given is the sector midpoint spin 2 out of 0,1,2,3", "display_type": "spectrogram", "is_public": "True", "name": "fe cps", "start_date": "1984-08-29T13:02:44Z", "stop_date": "1989-01-11T00:00:09Z", "units": "counts/sec", "xmlid": "cce_mepa_tof_fcps"}, "cce_mepa_tof_fct": {"__spz_name__": "fe counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cce_mepa_tof_fct", "dataset": "cce-mepa-tof", "description": "Iron counts per sector with each sector being a sum from 4 spins. The time given is the sector midpoint spin 2 out of 0,1,2,3", "display_type": "spectrogram", "is_public": "True", "name": "fe counts", "start_date": "1984-08-29T13:02:44Z", "stop_date": "1989-01-11T00:00:09Z", "units": "counts", "xmlid": "cce_mepa_tof_fct"}, "cce_mepa_tof_fin": {"__spz_name__": "fe intensity", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cce_mepa_tof_fin", "dataset": "cce-mepa-tof", "description": "Iron differential intensity per sector with each sector being a sum from 4 spins. The time given is the sector midpoint spin 2 out of 0,1,2,3", "display_type": "spectrogram", "is_public": "True", "name": "fe intensity", "start_date": "1984-08-29T13:02:44Z", "stop_date": "1989-01-11T00:00:09Z", "units": "1/(s ster cm\u00b2 keV)", "xmlid": "cce_mepa_tof_fin"}, "cce_mepa_tof_hcps": {"__spz_name__": "h+ cps", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cce_mepa_tof_hcps", "dataset": "cce-mepa-tof", "description": "Proton counts per second per sector with each sector being a sum from 4 spins. The time given is the sector midpoint spin 2 out of 0,1,2,3", "display_type": "spectrogram", "is_public": "True", "name": "h+ cps", "start_date": "1984-08-29T13:02:44Z", "stop_date": "1989-01-11T00:00:09Z", "units": "counts/sec", "xmlid": "cce_mepa_tof_hcps"}, "cce_mepa_tof_hct": {"__spz_name__": "h+ counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cce_mepa_tof_hct", "dataset": "cce-mepa-tof", "description": "Proton counts per sector with each sector being a sum from 4 spins. The time given is the sector midpoint spin 2 out of 0,1,2,3", "display_type": "spectrogram", "is_public": "True", "name": "h+ counts", "start_date": "1984-08-29T13:02:44Z", "stop_date": "1989-01-11T00:00:09Z", "units": "counts", "xmlid": "cce_mepa_tof_hct"}, "cce_mepa_tof_hin": {"__spz_name__": "h+ intensity", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cce_mepa_tof_hin", "dataset": "cce-mepa-tof", "description": "Proton differential intensity per sector with each sector being a sum from 4 spins. The time given is the sector midpoint spin 2 out of 0,1,2,3", "display_type": "spectrogram", "is_public": "True", "name": "h+ intensity", "start_date": "1984-08-29T13:02:44Z", "stop_date": "1989-01-11T00:00:09Z", "units": "1/(s ster cm\u00b2 keV)", "xmlid": "cce_mepa_tof_hin"}, "cce_mepa_tof_ocps": {"__spz_name__": "o cps", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cce_mepa_tof_ocps", "dataset": "cce-mepa-tof", "description": "Oxygen counts per second per sector with each sector being a sum from 4 spins. The time given is the sector midpoint spin 2 out of 0,1,2,3", "display_type": "spectrogram", "is_public": "True", "name": "o cps", "start_date": "1984-08-29T13:02:44Z", "stop_date": "1989-01-11T00:00:09Z", "units": "counts/sec", "xmlid": "cce_mepa_tof_ocps"}, "cce_mepa_tof_oct": {"__spz_name__": "o counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cce_mepa_tof_oct", "dataset": "cce-mepa-tof", "description": "Oxygen counts per sector with each sector being a sum from 4 spins. The time given is the sector midpoint spin 2 out of 0,1,2,3", "display_type": "spectrogram", "is_public": "True", "name": "o counts", "start_date": "1984-08-29T13:02:44Z", "stop_date": "1989-01-11T00:00:09Z", "units": "counts", "xmlid": "cce_mepa_tof_oct"}, "cce_mepa_tof_oin": {"__spz_name__": "o intensity", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cce_mepa_tof_oin", "dataset": "cce-mepa-tof", "description": "Oxygen differential intensity per sector with each sector being a sum from 4 spins. The time given is the sector midpoint spin 2 out of 0,1,2,3", "display_type": "spectrogram", "is_public": "True", "name": "o intensity", "start_date": "1984-08-29T13:02:44Z", "stop_date": "1989-01-11T00:00:09Z", "units": "1/(s ster cm\u00b2 keV)", "xmlid": "cce_mepa_tof_oin"}, "cce_mepa_tof_sct": {"__spz_name__": "sector", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cce_mepa_tof_sct", "dataset": "cce-mepa-tof", "description": "angular sector number (/32)", "display_type": "timeseries", "is_public": "True", "name": "sector", "start_date": "1984-08-29T13:02:44Z", "stop_date": "1989-01-11T00:00:09Z", "xmlid": "cce_mepa_tof_sct"}, "cce_mepa_tof_spin": {"__spz_name__": "spin period", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cce_mepa_tof_spin", "dataset": "cce-mepa-tof", "display_type": "timeseries", "is_public": "True", "name": "spin period", "start_date": "1984-08-29T13:02:44Z", "stop_date": "1989-01-11T00:00:09Z", "xmlid": "cce_mepa_tof_spin"}, "dataSource": "JHU/APL", "desc": "MEPA TOF head : ion fluxes : averaged over 4 spins
Sampling: 0.18S
Provider: JHU/APL", "is_public": "True", "lastModificationDate": "2020-02-14T17:17:24Z", "lastUpdate": "2020-01-30T20:43:20Z", "measurement_type": "ThermalPlasma", "name": "TOF head", "processing_level": "Calibrated", "sampling": "0.18S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/CCE/MEPA/cce-mepa-tof", "start_date": "1984-08-29T13:02:44Z", "stop_date": "1989-01-11T00:00:09Z", "target": "Earth.Magnetosheath", "xmlid": "cce-mepa-tof"}, "is_public": "True", "name": "ion flux : 32 sectors", "xmlid": "mepa-ion-fl"}, "is_public": "True", "name": "MEPA", "xmlid": "CCE_mepa"}, "MFE": {"__spz_name__": "MFE", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "CCE_mag", "att": "auto/CCE_mag", "cce_mag_all": {"__spz_name__": "b field", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "cce-mag-all", "att": "auto/cce-mag-all", "cce_b_all": {"__spz_name__": "b_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cce_b_all", "cce_b_all0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cce_b_all(0)", "dataset": "cce-mag-all", "index1": "0", "is_public": "True", "name": "bx", "parameter": "cce_b_all", "start_date": "1984-08-20T23:59:54Z", "stop_date": "1989-01-09T23:59:34Z", "xmlid": "cce_b_all(0)"}, "cce_b_all1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cce_b_all(1)", "dataset": "cce-mag-all", "index1": "1", "is_public": "True", "name": "by", "parameter": "cce_b_all", "start_date": "1984-08-20T23:59:54Z", "stop_date": "1989-01-09T23:59:34Z", "xmlid": "cce_b_all(1)"}, "cce_b_all2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cce_b_all(2)", "dataset": "cce-mag-all", "index1": "2", "is_public": "True", "name": "bz", "parameter": "cce_b_all", "start_date": "1984-08-20T23:59:54Z", "stop_date": "1989-01-09T23:59:34Z", "xmlid": "cce_b_all(2)"}, "dataset": "cce-mag-all", "description": "Magnetic field vector in GSE Cartesian coordinates", "display_type": "timeseries", "is_public": "True", "name": "b_gse", "size": "3", "start_date": "1984-08-20T23:59:54Z", "stop_date": "1989-01-09T23:59:34Z", "ucd": "phys.magField", "units": "nT", "xmlid": "cce_b_all"}, "cce_b_gsm": {"__spz_name__": "b_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cce_b_gsm", "cce_b_gsm0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cce_b_gsm(0)", "dataset": "cce-mag-all", "index1": "0", "is_public": "True", "name": "bx", "parameter": "cce_b_gsm", "start_date": "1984-08-20T23:59:54Z", "stop_date": "1989-01-09T23:59:34Z", "xmlid": "cce_b_gsm(0)"}, "cce_b_gsm1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cce_b_gsm(1)", "dataset": "cce-mag-all", "index1": "1", "is_public": "True", "name": "by", "parameter": "cce_b_gsm", "start_date": "1984-08-20T23:59:54Z", "stop_date": "1989-01-09T23:59:34Z", "xmlid": "cce_b_gsm(1)"}, "cce_b_gsm2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cce_b_gsm(2)", "dataset": "cce-mag-all", "index1": "2", "is_public": "True", "name": "bz", "parameter": "cce_b_gsm", "start_date": "1984-08-20T23:59:54Z", "stop_date": "1989-01-09T23:59:34Z", "xmlid": "cce_b_gsm(2)"}, "dataset": "cce-mag-all", "description": "Magnetic field vector in GSM Cartesian coordinates", "display_type": "timeseries", "is_public": "True", "name": "b_gsm", "size": "3", "start_date": "1984-08-20T23:59:54Z", "stop_date": "1989-01-09T23:59:34Z", "ucd": "phys.magField", "units": "nT", "xmlid": "cce_b_gsm"}, "cce_b_tot": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cce_b_tot", "dataset": "cce-mag-all", "description": "Magnetic field magnitude", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "1984-08-20T23:59:54Z", "stop_date": "1989-01-09T23:59:34Z", "ucd": "phys.magField", "units": "nT", "xmlid": "cce_b_tot"}, "dataSource": "JHUAPL", "desc": "Magnetic Field
MinSampling: 5.2S; MaxSampling: 5.4S
Provider: JHUAPL", "is_public": "True", "lastModificationDate": "2024-03-28T17:01:28Z", "lastUpdate": "2024-03-28T17:01:16Z", "maxSampling": "5.4S", "measurement_type": "MagneticField", "name": "b field", "processing_level": "Calibrated", "sampling": "5.2S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/CCE/MAG/cce-mag-all", "start_date": "1984-08-20T23:59:54Z", "stop_date": "1989-01-09T23:59:34Z", "target": "Earth.Magnetosheath", "xmlid": "cce-mag-all"}, "desc": "Magnetic Field Experiment
Magnetometer", "is_public": "True", "name": "MFE", "xmlid": "CCE_mag"}, "__spz_name__": "CCE", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "CCE", "att": "auto/CCE", "desc": "Charge Composition Explorer
1984-08-16T07:31:00 - 1989-01-11T12:00:00", "is_public": "True", "name": "CCE", "target": "Earth.Magnetosheath", "xmlid": "CCE"}, "IRM": {"Ephemeris": {"__spz_name__": "Ephemeris", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "IRM_ephemeris", "att": "auto/IRM_ephemeris", "desc": "", "irm_orb_all": {"__spz_name__": "orbit", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "irm-orb-all", "att": "auto/irm-orb-all", "dataSource": "", "desc": "ephemeris
Sampling: 60S", "irm_orb_gsm": {"__spz_name__": "xyz_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "irm_orb_gsm", "dataset": "irm-orb-all", "description": "Spacecraft position in GSM Cartesian coordinates", "display_type": "timeseries", "irm_orb_gsm0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "irm_orb_gsm(0)", "dataset": "irm-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "irm_orb_gsm", "start_date": "1984-09-12T00:13:00Z", "stop_date": "1986-08-29T23:59:00Z", "xmlid": "irm_orb_gsm(0)"}, "irm_orb_gsm1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "irm_orb_gsm(1)", "dataset": "irm-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "irm_orb_gsm", "start_date": "1984-09-12T00:13:00Z", "stop_date": "1986-08-29T23:59:00Z", "xmlid": "irm_orb_gsm(1)"}, "irm_orb_gsm2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "irm_orb_gsm(2)", "dataset": "irm-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "irm_orb_gsm", "start_date": "1984-09-12T00:13:00Z", "stop_date": "1986-08-29T23:59:00Z", "xmlid": "irm_orb_gsm(2)"}, "is_public": "True", "name": "xyz_gsm", "size": "3", "start_date": "1984-09-12T00:13:00Z", "stop_date": "1986-08-29T23:59:00Z", "units": "Re", "xmlid": "irm_orb_gsm"}, "irm_orb_mag": {"__spz_name__": "distance irm-earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "irm_orb_mag", "dataset": "irm-orb-all", "description": "Spacecraft distance to earth center", "display_type": "timeseries", "is_public": "True", "name": "distance irm-earth", "start_date": "1984-09-12T00:13:00Z", "stop_date": "1986-08-29T23:59:00Z", "units": "Re", "xmlid": "irm_orb_mag"}, "irm_orb_xyz": {"__spz_name__": "xyz_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "irm_orb_xyz", "dataset": "irm-orb-all", "description": "Spacecraft position in GSE Cartesian coordinates", "display_type": "timeseries", "irm_orb_xyz0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "irm_orb_xyz(0)", "dataset": "irm-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "irm_orb_xyz", "start_date": "1984-09-12T00:13:00Z", "stop_date": "1986-08-29T23:59:00Z", "xmlid": "irm_orb_xyz(0)"}, "irm_orb_xyz1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "irm_orb_xyz(1)", "dataset": "irm-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "irm_orb_xyz", "start_date": "1984-09-12T00:13:00Z", "stop_date": "1986-08-29T23:59:00Z", "xmlid": "irm_orb_xyz(1)"}, "irm_orb_xyz2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "irm_orb_xyz(2)", "dataset": "irm-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "irm_orb_xyz", "start_date": "1984-09-12T00:13:00Z", "stop_date": "1986-08-29T23:59:00Z", "xmlid": "irm_orb_xyz(2)"}, "is_public": "True", "name": "xyz_gse", "size": "3", "start_date": "1984-09-12T00:13:00Z", "stop_date": "1986-08-29T23:59:00Z", "units": "Re", "xmlid": "irm_orb_xyz"}, "is_public": "True", "lastModificationDate": "2020-02-14T17:21:08Z", "lastUpdate": "2020-02-07T16:35:31Z", "measurement_type": "Ephemeris", "name": "orbit", "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/IRM/ORBIT/irm-orb-all", "start_date": "1984-09-12T00:13:00Z", "stop_date": "1986-08-29T23:59:00Z", "target": "Earth.Magnetosheath", "xmlid": "irm-orb-all"}, "is_public": "True", "name": "Ephemeris", "xmlid": "IRM_ephemeris"}, "MAG": {"__spz_name__": "MAG", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "IRM_mag", "att": "auto/IRM_mag", "desc": "Triaxial Fluxgate magnetometer (MAG)
Magnetometer", "irm_mag_all": {"__spz_name__": "b field", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "irm-mag-all", "att": "auto/irm-mag-all", "dataSource": "", "desc": "Magnetic Field
Sampling: 5.0S", "irm_b_all": {"__spz_name__": "b_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "irm_b_all", "dataset": "irm-mag-all", "description": "Magnetic field vector in GSE Cartesian coordinates", "display_type": "timeseries", "irm_b_all0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "irm_b_all(0)", "dataset": "irm-mag-all", "index1": "0", "is_public": "True", "name": "bx", "parameter": "irm_b_all", "start_date": "1984-09-01T05:51:40Z", "stop_date": "1986-04-10T04:20:10Z", "xmlid": "irm_b_all(0)"}, "irm_b_all1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "irm_b_all(1)", "dataset": "irm-mag-all", "index1": "1", "is_public": "True", "name": "by", "parameter": "irm_b_all", "start_date": "1984-09-01T05:51:40Z", "stop_date": "1986-04-10T04:20:10Z", "xmlid": "irm_b_all(1)"}, "irm_b_all2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "irm_b_all(2)", "dataset": "irm-mag-all", "index1": "2", "is_public": "True", "name": "bz", "parameter": "irm_b_all", "start_date": "1984-09-01T05:51:40Z", "stop_date": "1986-04-10T04:20:10Z", "xmlid": "irm_b_all(2)"}, "is_public": "True", "name": "b_gse", "size": "3", "start_date": "1984-09-01T05:51:40Z", "stop_date": "1986-04-10T04:20:10Z", "ucd": "phys.magField", "units": "nT", "xmlid": "irm_b_all"}, "irm_b_gsm": {"__spz_name__": "b_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "irm_b_gsm", "dataset": "irm-mag-all", "description": "Magnetic field vector in GSM Cartesian coordinates", "display_type": "timeseries", "irm_b_gsm0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "irm_b_gsm(0)", "dataset": "irm-mag-all", "index1": "0", "is_public": "True", "name": "bx", "parameter": "irm_b_gsm", "start_date": "1984-09-01T05:51:40Z", "stop_date": "1986-04-10T04:20:10Z", "xmlid": "irm_b_gsm(0)"}, "irm_b_gsm1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "irm_b_gsm(1)", "dataset": "irm-mag-all", "index1": "1", "is_public": "True", "name": "by", "parameter": "irm_b_gsm", "start_date": "1984-09-01T05:51:40Z", "stop_date": "1986-04-10T04:20:10Z", "xmlid": "irm_b_gsm(1)"}, "irm_b_gsm2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "irm_b_gsm(2)", "dataset": "irm-mag-all", "index1": "2", "is_public": "True", "name": "bz", "parameter": "irm_b_gsm", "start_date": "1984-09-01T05:51:40Z", "stop_date": "1986-04-10T04:20:10Z", "xmlid": "irm_b_gsm(2)"}, "is_public": "True", "name": "b_gsm", "size": "3", "start_date": "1984-09-01T05:51:40Z", "stop_date": "1986-04-10T04:20:10Z", "ucd": "phys.magField", "units": "nT", "xmlid": "irm_b_gsm"}, "irm_b_lat": {"__spz_name__": "lat", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "irm_b_lat", "dataset": "irm-mag-all", "description": "Magnetic field latitude in GSE coordinates", "display_type": "timeseries", "is_public": "True", "name": "lat", "start_date": "1984-09-01T05:51:40Z", "stop_date": "1986-04-10T04:20:10Z", "units": "deg", "xmlid": "irm_b_lat"}, "irm_b_lon": {"__spz_name__": "lon", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "irm_b_lon", "dataset": "irm-mag-all", "description": "Magnetic field longitude in GSE coordinates", "display_type": "timeseries", "is_public": "True", "name": "lon", "start_date": "1984-09-01T05:51:40Z", "stop_date": "1986-04-10T04:20:10Z", "units": "deg", "xmlid": "irm_b_lon"}, "irm_b_nsig": {"__spz_name__": "sig(b)/b", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "irm_b_nsig", "dataset": "irm-mag-all", "description": "Normalised sigma distribution of B", "display_type": "timeseries", "is_public": "True", "name": "sig(b)/b", "start_date": "1984-09-01T05:51:40Z", "stop_date": "1986-04-10T04:20:10Z", "xmlid": "irm_b_nsig"}, "irm_b_tot": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "irm_b_tot", "dataset": "irm-mag-all", "description": "Magnetic field magnitude", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "1984-09-01T05:51:40Z", "stop_date": "1986-04-10T04:20:10Z", "units": "nT", "xmlid": "irm_b_tot"}, "is_public": "True", "lastModificationDate": "2020-02-14T17:21:06Z", "lastUpdate": "2020-01-28T14:27:05Z", "measurement_type": "MagneticField", "name": "b field", "processing_level": "Calibrated", "sampling": "5.0S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/IRM/MAG/irm-mag-all", "start_date": "1984-09-01T05:51:40Z", "stop_date": "1986-04-10T04:20:10Z", "target": "Earth.Magnetosheath", "xmlid": "irm-mag-all"}, "is_public": "True", "name": "MAG", "xmlid": "IRM_mag"}, "PLA": {"__spz_name__": "PLA", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "IRM_pla", "att": "auto/IRM_pla", "desc": "Plasma Instrument
QuadrisphericalAnalyser", "irm_pla_all": {"__spz_name__": "moments", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "irm-pla-all", "att": "auto/irm-pla-all", "dataSource": "", "desc": "Plasma moments
Sampling: 5.0S", "irm_pla_nH": {"__spz_name__": "h+ density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "irm_pla_nH", "dataset": "irm-pla-all", "description": "Proton density", "display_type": "timeseries", "is_public": "True", "name": "h+ density", "start_date": "1984-09-01T05:51:40Z", "stop_date": "1986-04-10T04:20:10Z", "units": "cm-3", "xmlid": "irm_pla_nH"}, "irm_pla_nHHE": {"__spz_name__": "h+ density : high E", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "irm_pla_nHHE", "dataset": "irm-pla-all", "description": "Proton density high energy", "display_type": "timeseries", "is_public": "True", "name": "h+ density : high E", "start_date": "1984-09-01T05:51:40Z", "stop_date": "1986-04-10T04:20:10Z", "units": "cm-3", "xmlid": "irm_pla_nHHE"}, "irm_pla_ne": {"__spz_name__": "e- density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "irm_pla_ne", "dataset": "irm-pla-all", "description": "Electron density", "display_type": "timeseries", "is_public": "True", "name": "e- density", "start_date": "1984-09-01T05:51:40Z", "stop_date": "1986-04-10T04:20:10Z", "units": "cm-3", "xmlid": "irm_pla_ne"}, "irm_pla_neHE": {"__spz_name__": "e- density : high E", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "irm_pla_neHE", "dataset": "irm-pla-all", "description": "Electron density high energy", "display_type": "timeseries", "is_public": "True", "name": "e- density : high E", "start_date": "1984-09-01T05:51:40Z", "stop_date": "1986-04-10T04:20:10Z", "units": "cm-3", "xmlid": "irm_pla_neHE"}, "irm_pla_vH": {"__spz_name__": "h+ velocity", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "irm_pla_vH", "dataset": "irm-pla-all", "description": "Proton velocity magnitude", "display_type": "timeseries", "is_public": "True", "name": "h+ velocity", "start_date": "1984-09-01T05:51:40Z", "stop_date": "1986-04-10T04:20:10Z", "units": "km/s", "xmlid": "irm_pla_vH"}, "irm_pla_vlat": {"__spz_name__": "h+ velocity lat", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "irm_pla_vlat", "dataset": "irm-pla-all", "description": "Proton velocity latitude", "display_type": "timeseries", "is_public": "True", "name": "h+ velocity lat", "start_date": "1984-09-01T05:51:40Z", "stop_date": "1986-04-10T04:20:10Z", "units": "deg", "xmlid": "irm_pla_vlat"}, "irm_pla_vlon": {"__spz_name__": "lh+ velocity lon", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "irm_pla_vlon", "dataset": "irm-pla-all", "description": "Proton velocity longitude", "display_type": "timeseries", "is_public": "True", "name": "lh+ velocity lon", "start_date": "1984-09-01T05:51:40Z", "stop_date": "1986-04-10T04:20:10Z", "units": "deg", "xmlid": "irm_pla_vlon"}, "irm_pla_wH": {"__spz_name__": "h+ temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "irm_pla_wH", "dataset": "irm-pla-all", "description": "Proton temperature", "display_type": "timeseries", "is_public": "True", "name": "h+ temperature", "start_date": "1984-09-01T05:51:40Z", "stop_date": "1986-04-10T04:20:10Z", "units": "eV", "xmlid": "irm_pla_wH"}, "irm_pla_we": {"__spz_name__": "e- temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "irm_pla_we", "dataset": "irm-pla-all", "description": "Electron temperature", "display_type": "timeseries", "is_public": "True", "name": "e- temperature", "start_date": "1984-09-01T05:51:40Z", "stop_date": "1986-04-10T04:20:10Z", "units": "eV", "xmlid": "irm_pla_we"}, "is_public": "True", "lastModificationDate": "2020-02-14T17:21:15Z", "lastUpdate": "2020-01-28T15:28:29Z", "measurement_type": "ThermalPlasma", "name": "moments", "processing_level": "Calibrated", "sampling": "5.0S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/IRM/PLA/irm-pla-all", "start_date": "1984-09-01T05:51:40Z", "stop_date": "1986-04-10T04:20:10Z", "target": "Earth.Magnetosheath", "xmlid": "irm-pla-all"}, "is_public": "True", "name": "PLA", "xmlid": "IRM_pla"}, "PWS": {"__spz_name__": "PWS", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "IRM_wav", "att": "auto/IRM_wav", "desc": "Plasma Wave Spectrometer
Spectrometer", "irm_wav_b": {"__spz_name__": "b field", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "irm-wav-b", "att": "auto/irm-wav-b", "dataSource": "", "desc": "Plasma wave spectrometer : magnetic field mean
Sampling: 5.0S", "irm_wav_b_11": {"__spz_name__": "SFR1_mag_f1", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "irm_wav_b_11", "dataset": "irm-wav-b", "description": "SFR1 magnetic field mean at 0.35 kHz", "display_type": "timeseries", "is_public": "True", "name": "SFR1_mag_f1", "start_date": "1984-09-01T05:51:40Z", "stop_date": "1986-04-10T04:20:10Z", "units": "pT/Hz^0.5", "xmlid": "irm_wav_b_11"}, "irm_wav_b_12": {"__spz_name__": "SFR1_mag_f2", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "irm_wav_b_12", "dataset": "irm-wav-b", "description": "SFR1 magnetic field mean at 0.537 kHz", "display_type": "timeseries", "is_public": "True", "name": "SFR1_mag_f2", "start_date": "1984-09-01T05:51:40Z", "stop_date": "1986-04-10T04:20:10Z", "units": "pT/Hz^0.5", "xmlid": "irm_wav_b_12"}, "irm_wav_b_13": {"__spz_name__": "SFR1_mag_f3", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "irm_wav_b_13", "dataset": "irm-wav-b", "description": "SFR1 magnetic field mean at 1.025 kHz", "display_type": "timeseries", "is_public": "True", "name": "SFR1_mag_f3", "start_date": "1984-09-01T05:51:40Z", "stop_date": "1986-04-10T04:20:10Z", "units": "pT/Hz^0.5", "xmlid": "irm_wav_b_13"}, "irm_wav_b_14": {"__spz_name__": "SFR1_mag_f4", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "irm_wav_b_14", "dataset": "irm-wav-b", "description": "SFR1 magnetic field mean at 1.780 kHz", "display_type": "timeseries", "is_public": "True", "name": "SFR1_mag_f4", "start_date": "1984-09-01T05:51:40Z", "stop_date": "1986-04-10T04:20:10Z", "units": "pT/Hz^0.5", "xmlid": "irm_wav_b_14"}, "irm_wav_b_21": {"__spz_name__": "SFR2_mag_f1", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "irm_wav_b_21", "dataset": "irm-wav-b", "description": "SFR2 magnetic field mean at 3.15 kHz", "display_type": "timeseries", "is_public": "True", "name": "SFR2_mag_f1", "start_date": "1984-09-01T05:51:40Z", "stop_date": "1986-04-10T04:20:10Z", "units": "pT/Hz^0.5", "xmlid": "irm_wav_b_21"}, "irm_wav_b_22": {"__spz_name__": "SFR2_mag_f2", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "irm_wav_b_22", "dataset": "irm-wav-b", "description": "SFR2 magnetic field mean at 5.55 kHz", "display_type": "timeseries", "is_public": "True", "name": "SFR2_mag_f2", "start_date": "1984-09-01T05:51:40Z", "stop_date": "1986-04-10T04:20:10Z", "units": "pT/Hz^0.5", "xmlid": "irm_wav_b_22"}, "irm_wav_b_hf": {"__spz_name__": "SFR3_mag_hf", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "irm_wav_b_hf", "dataset": "irm-wav-b", "description": "SFR3 magnetic field mean at 300.0 kHz", "display_type": "timeseries", "is_public": "True", "name": "SFR3_mag_hf", "start_date": "1984-09-01T05:51:40Z", "stop_date": "1986-04-10T04:20:10Z", "units": "pT/Hz^0.5", "xmlid": "irm_wav_b_hf"}, "is_public": "True", "lastModificationDate": "2020-02-14T17:21:26Z", "lastUpdate": "2020-01-28T12:37:08Z", "measurement_type": "MagneticField", "name": "b field", "processing_level": "Calibrated", "sampling": "5.0S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/IRM/WAV/irm-wav-b", "start_date": "1984-09-01T05:51:40Z", "stop_date": "1986-04-10T04:20:10Z", "target": "Earth.Magnetosheath", "xmlid": "irm-wav-b"}, "irm_wav_elec": {"__spz_name__": "e field", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "irm-wav-elec", "att": "auto/irm-wav-elec", "dataSource": "", "desc": "Plasma wave spectrometer : electric field peak / mean
Sampling: 5.0S", "irm_wav_em_11": {"__spz_name__": "SFR1_mean_f1", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "irm_wav_em_11", "dataset": "irm-wav-elec", "description": "SFR1 electric field mean at 0.35 kHz", "display_type": "timeseries", "is_public": "True", "name": "SFR1_mean_f1", "start_date": "1984-09-01T05:51:40Z", "stop_date": "1986-04-10T04:20:10Z", "units": "V/m/Hz^0.5", "xmlid": "irm_wav_em_11"}, "irm_wav_em_12": {"__spz_name__": "SFR1_mean_f2", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "irm_wav_em_12", "dataset": "irm-wav-elec", "description": "SFR1 electric field mean at 1.0 kHz", "display_type": "timeseries", "is_public": "True", "name": "SFR1_mean_f2", "start_date": "1984-09-01T05:51:40Z", "stop_date": "1986-04-10T04:20:10Z", "units": "V/m/Hz^0.5", "xmlid": "irm_wav_em_12"}, "irm_wav_em_21": {"__spz_name__": "SFR2_mean_f1", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "irm_wav_em_21", "dataset": "irm-wav-elec", "description": "SFR2 electric field mean at 0.35 kHz", "display_type": "timeseries", "is_public": "True", "name": "SFR2_mean_f1", "start_date": "1984-09-01T05:51:40Z", "stop_date": "1986-04-10T04:20:10Z", "units": "V/m/Hz^0.5", "xmlid": "irm_wav_em_21"}, "irm_wav_em_22": {"__spz_name__": "SFR2_mean_f2", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "irm_wav_em_22", "dataset": "irm-wav-elec", "description": "SFR2 electric field mean at 1.0 kHz", "display_type": "timeseries", "is_public": "True", "name": "SFR2_mean_f2", "start_date": "1984-09-01T05:51:40Z", "stop_date": "1986-04-10T04:20:10Z", "units": "V/m/Hz^0.5", "xmlid": "irm_wav_em_22"}, "irm_wav_em_23": {"__spz_name__": "SFR2_mean_f3", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "irm_wav_em_23", "dataset": "irm-wav-elec", "description": "SFR2 electric field mean at 3.15 kHz", "display_type": "timeseries", "is_public": "True", "name": "SFR2_mean_f3", "start_date": "1984-09-01T05:51:40Z", "stop_date": "1986-04-10T04:20:10Z", "units": "V/m/Hz^0.5", "xmlid": "irm_wav_em_23"}, "irm_wav_em_31": {"__spz_name__": "SFR3_mean_f1", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "irm_wav_em_31", "dataset": "irm-wav-elec", "description": "SFR3 electric field mean at 30.0 kHz", "display_type": "timeseries", "is_public": "True", "name": "SFR3_mean_f1", "start_date": "1984-09-01T05:51:40Z", "stop_date": "1986-04-10T04:20:10Z", "units": "V/m/Hz^0.5", "xmlid": "irm_wav_em_31"}, "irm_wav_em_hf": {"__spz_name__": "SFR3_mean_hf", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "irm_wav_em_hf", "dataset": "irm-wav-elec", "description": "SFR3 electric field mean at 300.0 kHz", "display_type": "timeseries", "is_public": "True", "name": "SFR3_mean_hf", "start_date": "1984-09-01T05:51:40Z", "stop_date": "1986-04-10T04:20:10Z", "units": "V/m/Hz^0.5", "xmlid": "irm_wav_em_hf"}, "irm_wav_epk_11": {"__spz_name__": "SFR1_peak_f1", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "irm_wav_epk_11", "dataset": "irm-wav-elec", "description": "SFR1 electric field peak at 0.35 kHz", "display_type": "timeseries", "is_public": "True", "name": "SFR1_peak_f1", "start_date": "1984-09-01T05:51:40Z", "stop_date": "1986-04-10T04:20:10Z", "units": "V/m/Hz^0.5", "xmlid": "irm_wav_epk_11"}, "irm_wav_epk_12": {"__spz_name__": "SFR1_peak_f2", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "irm_wav_epk_12", "dataset": "irm-wav-elec", "description": "SFR1 electric field peak at 1.0 kHz", "display_type": "timeseries", "is_public": "True", "name": "SFR1_peak_f2", "start_date": "1984-09-01T05:51:40Z", "stop_date": "1986-04-10T04:20:10Z", "units": "V/m/Hz^0.5", "xmlid": "irm_wav_epk_12"}, "irm_wav_epk_21": {"__spz_name__": "SFR2_peak_f1", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "irm_wav_epk_21", "dataset": "irm-wav-elec", "description": "SFR2 electric field peak at 0.35 kHz", "display_type": "timeseries", "is_public": "True", "name": "SFR2_peak_f1", "start_date": "1984-09-01T05:51:40Z", "stop_date": "1986-04-10T04:20:10Z", "units": "V/m/Hz^0.5", "xmlid": "irm_wav_epk_21"}, "irm_wav_epk_22": {"__spz_name__": "SFR2_peak_f2", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "irm_wav_epk_22", "dataset": "irm-wav-elec", "description": "SFR2 electric field peak at 1.0 kHz", "display_type": "timeseries", "is_public": "True", "name": "SFR2_peak_f2", "start_date": "1984-09-01T05:51:40Z", "stop_date": "1986-04-10T04:20:10Z", "units": "V/m/Hz^0.5", "xmlid": "irm_wav_epk_22"}, "irm_wav_epk_31": {"__spz_name__": "SFR3_peak_f1", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "irm_wav_epk_31", "dataset": "irm-wav-elec", "description": "SFR3 electric field peak at 30.0 kHz", "display_type": "timeseries", "is_public": "True", "name": "SFR3_peak_f1", "start_date": "1984-09-01T05:51:40Z", "stop_date": "1986-04-10T04:20:10Z", "units": "V/m/Hz^0.5", "xmlid": "irm_wav_epk_31"}, "is_public": "True", "lastModificationDate": "2020-02-14T17:21:33Z", "lastUpdate": "2020-01-28T12:37:02Z", "measurement_type": "ElectricField", "name": "e field", "processing_level": "Calibrated", "sampling": "5.0S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/IRM/WAV/irm-wav-elec", "start_date": "1984-09-01T05:51:40Z", "stop_date": "1986-04-10T04:20:10Z", "target": "Earth.Magnetosheath", "xmlid": "irm-wav-elec"}, "irm_wav_sp": {"__spz_name__": "e field : spectrum", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "irm-wav-sp", "att": "auto/irm-wav-sp", "dataSource": "", "desc": "Plasma wave spectrometer : e field : spectrograms mean / peak
Sampling: 5.0S", "irm_wav_wm": {"__spz_name__": "e field mean", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "irm_wav_wm", "dataset": "irm-wav-sp", "description": "Electric field means", "display_type": "spectrogram", "is_public": "True", "name": "e field mean", "start_date": "1984-09-01T05:51:40Z", "stop_date": "1986-04-10T04:20:10Z", "units": "V/m/Hz^0.5", "xmlid": "irm_wav_wm"}, "irm_wav_wp": {"__spz_name__": "e field peak", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "irm_wav_wp", "dataset": "irm-wav-sp", "description": "Electric field peaks", "display_type": "spectrogram", "is_public": "True", "name": "e field peak", "start_date": "1984-09-01T05:51:40Z", "stop_date": "1986-04-10T04:20:10Z", "units": "V/m/Hz^0.5", "xmlid": "irm_wav_wp"}, "is_public": "True", "lastModificationDate": "2020-02-14T17:21:22Z", "lastUpdate": "2020-01-28T12:37:17Z", "measurement_type": "ElectricField", "name": "e field : spectrum", "processing_level": "Calibrated", "sampling": "5.0S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/IRM/WAV/irm-wav-sp", "start_date": "1984-09-01T05:51:40Z", "stop_date": "1986-04-10T04:20:10Z", "target": "Earth.Magnetosheath", "xmlid": "irm-wav-sp"}, "is_public": "True", "name": "PWS", "xmlid": "IRM_wav"}, "SUL": {"__spz_name__": "SUL", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "IRM_sul", "att": "auto/IRM_sul", "desc": "Suprathermal Energy Ionic Charge Analyzer (SULEICA)
Spectrometer", "irm_sul_all": {"__spz_name__": "ion flux", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "irm-sul-all", "att": "auto/irm-sul-all", "dataSource": "", "desc": "Ion fluxes
Sampling: 5.0S", "irm_sul_a10": {"__spz_name__": "he++ 10-17 keV", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "irm_sul_a10", "dataset": "irm-sul-all", "description": "Differential helium flux 10-17 keV", "display_type": "timeseries", "is_public": "True", "name": "he++ 10-17 keV", "start_date": "1984-09-01T05:51:40Z", "stop_date": "1986-04-10T04:20:10Z", "units": "1/(cm\u00b2 s ster keV/Q)", "xmlid": "irm_sul_a10"}, "irm_sul_a160": {"__spz_name__": "he++ 160-270 keV", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "irm_sul_a160", "dataset": "irm-sul-all", "description": "Differential helium flux (up + down), 160 - 270 keV", "display_type": "timeseries", "is_public": "True", "name": "he++ 160-270 keV", "start_date": "1984-09-01T05:51:40Z", "stop_date": "1986-04-10T04:20:10Z", "units": "1/(cm\u00b2 s ster keV/Q)", "xmlid": "irm_sul_a160"}, "irm_sul_a40": {"__spz_name__": "he++ 40-68 keV", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "irm_sul_a40", "dataset": "irm-sul-all", "description": "Differential helium flux 40-68 keV", "display_type": "timeseries", "is_public": "True", "name": "he++ 40-68 keV", "start_date": "1984-09-01T05:51:40Z", "stop_date": "1986-04-10T04:20:10Z", "units": "1/(cm\u00b2 s ster keV/Q)", "xmlid": "irm_sul_a40"}, "irm_sul_an": {"__spz_name__": "anisotropy", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "irm_sul_an", "dataset": "irm-sul-all", "description": "First order anisotropy magnitude", "display_type": "timeseries", "is_public": "True", "name": "anisotropy", "start_date": "1984-09-01T05:51:40Z", "stop_date": "1986-04-10T04:20:10Z", "units": "1/(cm\u00b2 s ster keV/Q)", "xmlid": "irm_sul_an"}, "irm_sul_ansec": {"__spz_name__": "anisotropy sector", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "irm_sul_ansec", "dataset": "irm-sul-all", "description": "First order anisotropy sector", "display_type": "timeseries", "is_public": "True", "name": "anisotropy sector", "start_date": "1984-09-01T05:51:40Z", "stop_date": "1986-04-10T04:20:10Z", "units": "sector number", "xmlid": "irm_sul_ansec"}, "irm_sul_bg": {"__spz_name__": "background 40-68 keV", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "irm_sul_bg", "dataset": "irm-sul-all", "description": "Background, 40-68 keV", "display_type": "timeseries", "is_public": "True", "name": "background 40-68 keV", "start_date": "1984-09-01T05:51:40Z", "stop_date": "1986-04-10T04:20:10Z", "units": "1/(cm\u00b2 s ster keV/Q)", "xmlid": "irm_sul_bg"}, "irm_sul_cno": {"__spz_name__": "cno 40-68 keV", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "irm_sul_cno", "dataset": "irm-sul-all", "description": "Differential CNO flux, 40-68 keV", "display_type": "timeseries", "is_public": "True", "name": "cno 40-68 keV", "start_date": "1984-09-01T05:51:40Z", "stop_date": "1986-04-10T04:20:10Z", "units": "1/(cm\u00b2 s ster keV/Q)", "xmlid": "irm_sul_cno"}, "irm_sul_fe": {"__spz_name__": "fe 40-68 keV", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "irm_sul_fe", "dataset": "irm-sul-all", "description": "Differential iron (Q=14-26) flux, 40-68 keV", "display_type": "timeseries", "is_public": "True", "name": "fe 40-68 keV", "start_date": "1984-09-01T05:51:40Z", "stop_date": "1986-04-10T04:20:10Z", "units": "1/(cm\u00b2 s ster keV/Q)", "xmlid": "irm_sul_fe"}, "irm_sul_four": {"__spz_name__": "4he+ 40-68 keV", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "irm_sul_four", "dataset": "irm-sul-all", "description": "Differential 4He+ flux, 40-68 keV", "display_type": "timeseries", "is_public": "True", "name": "4he+ 40-68 keV", "start_date": "1984-09-01T05:51:40Z", "stop_date": "1986-04-10T04:20:10Z", "units": "1/(cm\u00b2 s ster keV/Q)", "xmlid": "irm_sul_four"}, "irm_sul_h10": {"__spz_name__": "h+ 10-17 keV", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "irm_sul_h10", "dataset": "irm-sul-all", "description": "Differential proton flux 10-17 keV", "display_type": "timeseries", "is_public": "True", "name": "h+ 10-17 keV", "start_date": "1984-09-01T05:51:40Z", "stop_date": "1986-04-10T04:20:10Z", "units": "1/(cm\u00b2 s ster keV/Q)", "xmlid": "irm_sul_h10"}, "irm_sul_h160": {"__spz_name__": "h+ 160-270 keV", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "irm_sul_h160", "dataset": "irm-sul-all", "description": "Differential proton flux (up + down), 160 - 270 keV", "display_type": "timeseries", "is_public": "True", "name": "h+ 160-270 keV", "start_date": "1984-09-01T05:51:40Z", "stop_date": "1986-04-10T04:20:10Z", "units": "1/(cm\u00b2 s ster keV/Q)", "xmlid": "irm_sul_h160"}, "irm_sul_h40": {"__spz_name__": "h+ rate", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "irm_sul_h40", "dataset": "irm-sul-all", "description": "Proton omni rate 40-68 keV", "display_type": "timeseries", "is_public": "True", "name": "h+ rate", "start_date": "1984-09-01T05:51:40Z", "stop_date": "1986-04-10T04:20:10Z", "units": "1/(cm\u00b2 s ster keV/Q)", "xmlid": "irm_sul_h40"}, "irm_sul_o": {"__spz_name__": "o+ 40-68 keV", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "irm_sul_o", "dataset": "irm-sul-all", "description": "Differential O+ flux, 40-68 keV", "display_type": "timeseries", "is_public": "True", "name": "o+ 40-68 keV", "start_date": "1984-09-01T05:51:40Z", "stop_date": "1986-04-10T04:20:10Z", "units": "1/(cm\u00b2 s ster keV/Q)", "xmlid": "irm_sul_o"}, "is_public": "True", "lastModificationDate": "2020-02-14T17:21:35Z", "lastUpdate": "2020-01-31T14:05:06Z", "measurement_type": "EnergeticParticles", "name": "ion flux", "processing_level": "Calibrated", "sampling": "5.0S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/IRM/SUL/irm-sul-all", "start_date": "1984-09-01T05:51:40Z", "stop_date": "1986-04-10T04:20:10Z", "target": "Earth.Magnetosheath", "xmlid": "irm-sul-all"}, "is_public": "True", "name": "SUL", "xmlid": "IRM_sul"}, "__spz_name__": "IRM", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "IRM", "att": "auto/IRM", "desc": "Ion Release Module
1984-08-16T07:31:00 - 1986-08-14T23:59:59", "is_public": "True", "name": "IRM", "target": "Earth.Magnetosheath", "xmlid": "IRM"}, "UKS": {"ELX": {"__spz_name__": "ELX", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "UKS_elx", "att": "auto/UKS_elx", "desc": "Electron Instrument
ElectrostaticAnalyser", "is_public": "True", "name": "ELX", "uks_elx_all": {"__spz_name__": "electrons", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "uks-elx-all", "att": "auto/uks-elx-all", "dataSource": "", "desc": "Electron moments and spectrogram
Sampling: 5S", "is_public": "True", "lastModificationDate": "2020-02-14T17:11:47Z", "lastUpdate": "2020-01-27T11:16:44Z", "measurement_type": "ThermalPlasma", "name": "electrons", "processing_level": "Calibrated", "sampling": "5S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/UKS/ELX/uks-elx-all", "start_date": "1984-08-26T13:55:35Z", "stop_date": "1985-01-15T08:01:00Z", "target": "Earth.Magnetosheath", "uks_elx_Ppara": {"__spz_name__": "e- press_para", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "uks_elx_Ppara", "dataset": "uks-elx-all", "description": "Parallel pressure", "display_type": "timeseries", "is_public": "True", "name": "e- press_para", "start_date": "1984-08-26T13:55:35Z", "stop_date": "1985-01-15T08:01:00Z", "units": "Pa", "xmlid": "uks_elx_Ppara"}, "uks_elx_Pper": {"__spz_name__": "e- press_perp", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "uks_elx_Pper", "dataset": "uks-elx-all", "description": "Perpendicular pressure", "display_type": "timeseries", "is_public": "True", "name": "e- press_perp", "start_date": "1984-08-26T13:55:35Z", "stop_date": "1985-01-15T08:01:00Z", "units": "Pa", "xmlid": "uks_elx_Pper"}, "uks_elx_fl": {"__spz_name__": "flag", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "uks_elx_fl", "dataset": "uks-elx-all", "description": "Validity flag: \n * unvalidated = 1\n * validated = 0\n * requires reprocessing = 2\n * bad data, cannot reprocess = 3\n * may contain noise or outliers = 4\n * systematic instrumental effects = 5\n * PI quality flags) = 6\n * fill value = 7", "display_type": "timeseries", "is_public": "True", "name": "flag", "start_date": "1984-08-26T13:55:35Z", "stop_date": "1985-01-15T08:01:00Z", "xmlid": "uks_elx_fl"}, "uks_elx_flx": {"__spz_name__": "e- number flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "uks_elx_flx", "dataset": "uks-elx-all", "description": "Electron number flux", "display_type": "timeseries", "is_public": "True", "name": "e- number flux", "start_date": "1984-08-26T13:55:35Z", "stop_date": "1985-01-15T08:01:00Z", "units": "s-1.m-2", "xmlid": "uks_elx_flx"}, "uks_elx_ne": {"__spz_name__": "e- density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "uks_elx_ne", "dataset": "uks-elx-all", "description": "Electron density", "display_type": "timeseries", "is_public": "True", "name": "e- density", "start_date": "1984-08-26T13:55:35Z", "stop_date": "1985-01-15T08:01:00Z", "units": "cm-3", "xmlid": "uks_elx_ne"}, "uks_elx_tb": {"__spz_name__": "table nb", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "uks_elx_tb", "dataset": "uks-elx-all", "description": "Number of corresponding energy table in the calculation of velocity space density", "display_type": "timeseries", "is_public": "True", "name": "table nb", "start_date": "1984-08-26T13:55:35Z", "stop_date": "1985-01-15T08:01:00Z", "xmlid": "uks_elx_tb"}, "uks_elx_vsd": {"__spz_name__": "e- dist func", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "uks_elx_vsd", "dataset": "uks-elx-all", "description": "Velocity space density", "display_type": "spectrogram", "is_public": "True", "name": "e- dist func", "start_date": "1984-08-26T13:55:35Z", "stop_date": "1985-01-15T08:01:00Z", "units": "s\u00b3/km\u2076", "xmlid": "uks_elx_vsd"}, "uks_elx_wflx": {"__spz_name__": "e- heat flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "uks_elx_wflx", "dataset": "uks-elx-all", "description": "Electron heat flux", "display_type": "timeseries", "is_public": "True", "name": "e- heat flux", "start_date": "1984-08-26T13:55:35Z", "stop_date": "1985-01-15T08:01:00Z", "units": "W/m2", "xmlid": "uks_elx_wflx"}, "xmlid": "uks-elx-all"}, "xmlid": "UKS_elx"}, "Ephemeris": {"__spz_name__": "Ephemeris", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "UKS_ephemeris", "att": "auto/UKS_ephemeris", "desc": "", "is_public": "True", "name": "Ephemeris", "uks_orb_all": {"__spz_name__": "orbit", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "uks-orb-all", "att": "auto/uks-orb-all", "dataSource": "", "desc": "ephemeris
Sampling: 300S", "is_public": "True", "lastModificationDate": "2020-02-14T17:11:36Z", "lastUpdate": "2020-02-04T16:16:40Z", "measurement_type": "Ephemeris", "name": "orbit", "processing_level": "Calibrated", "sampling": "300S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/UKS/ORBIT/uks-orb-all", "start_date": "1984-08-18T23:55:00Z", "stop_date": "1985-01-15T08:00:00Z", "target": "Earth.Magnetosheath", "uks_orb_gsm": {"__spz_name__": "xyz_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "uks_orb_gsm", "dataset": "uks-orb-all", "description": "Spacecraft position in GSM Cartesian coordinates", "display_type": "timeseries", "is_public": "True", "name": "xyz_gsm", "size": "3", "start_date": "1984-08-18T23:55:00Z", "stop_date": "1985-01-15T08:00:00Z", "uks_orb_gsm0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "uks_orb_gsm(0)", "dataset": "uks-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "uks_orb_gsm", "start_date": "1984-08-18T23:55:00Z", "stop_date": "1985-01-15T08:00:00Z", "xmlid": "uks_orb_gsm(0)"}, "uks_orb_gsm1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "uks_orb_gsm(1)", "dataset": "uks-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "uks_orb_gsm", "start_date": "1984-08-18T23:55:00Z", "stop_date": "1985-01-15T08:00:00Z", "xmlid": "uks_orb_gsm(1)"}, "uks_orb_gsm2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "uks_orb_gsm(2)", "dataset": "uks-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "uks_orb_gsm", "start_date": "1984-08-18T23:55:00Z", "stop_date": "1985-01-15T08:00:00Z", "xmlid": "uks_orb_gsm(2)"}, "units": "Re", "xmlid": "uks_orb_gsm"}, "uks_orb_mag": {"__spz_name__": "distance uks-earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "uks_orb_mag", "dataset": "uks-orb-all", "description": "Spacecraft distance to earth center", "display_type": "timeseries", "is_public": "True", "name": "distance uks-earth", "start_date": "1984-08-18T23:55:00Z", "stop_date": "1985-01-15T08:00:00Z", "units": "Re", "xmlid": "uks_orb_mag"}, "uks_orb_scdist": {"__spz_name__": "IRM_to_UKS_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "uks_orb_scdist", "dataset": "uks-orb-all", "description": "UKS Spacecraft position relative to IRM in GSE Cartesian coordinates", "display_type": "timeseries", "is_public": "True", "name": "IRM_to_UKS_gse", "size": "3", "start_date": "1984-08-18T23:55:00Z", "stop_date": "1985-01-15T08:00:00Z", "uks_orb_scdist0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "uks_orb_scdist(0)", "dataset": "uks-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "uks_orb_scdist", "start_date": "1984-08-18T23:55:00Z", "stop_date": "1985-01-15T08:00:00Z", "xmlid": "uks_orb_scdist(0)"}, "uks_orb_scdist1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "uks_orb_scdist(1)", "dataset": "uks-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "uks_orb_scdist", "start_date": "1984-08-18T23:55:00Z", "stop_date": "1985-01-15T08:00:00Z", "xmlid": "uks_orb_scdist(1)"}, "uks_orb_scdist2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "uks_orb_scdist(2)", "dataset": "uks-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "uks_orb_scdist", "start_date": "1984-08-18T23:55:00Z", "stop_date": "1985-01-15T08:00:00Z", "xmlid": "uks_orb_scdist(2)"}, "units": "km", "xmlid": "uks_orb_scdist"}, "uks_orb_v": {"__spz_name__": "vel_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "uks_orb_v", "dataset": "uks-orb-all", "description": "Spacecraft velocity in GSE Cartesian coordinates", "display_type": "timeseries", "is_public": "True", "name": "vel_gse", "size": "3", "start_date": "1984-08-18T23:55:00Z", "stop_date": "1985-01-15T08:00:00Z", "uks_orb_v0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "uks_orb_v(0)", "dataset": "uks-orb-all", "index1": "0", "is_public": "True", "name": "vx", "parameter": "uks_orb_v", "start_date": "1984-08-18T23:55:00Z", "stop_date": "1985-01-15T08:00:00Z", "xmlid": "uks_orb_v(0)"}, "uks_orb_v1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "uks_orb_v(1)", "dataset": "uks-orb-all", "index1": "1", "is_public": "True", "name": "vy", "parameter": "uks_orb_v", "start_date": "1984-08-18T23:55:00Z", "stop_date": "1985-01-15T08:00:00Z", "xmlid": "uks_orb_v(1)"}, "uks_orb_v2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "uks_orb_v(2)", "dataset": "uks-orb-all", "index1": "2", "is_public": "True", "name": "vz", "parameter": "uks_orb_v", "start_date": "1984-08-18T23:55:00Z", "stop_date": "1985-01-15T08:00:00Z", "xmlid": "uks_orb_v(2)"}, "units": "km/s", "xmlid": "uks_orb_v"}, "uks_orb_vgsm": {"__spz_name__": "vel_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "uks_orb_vgsm", "dataset": "uks-orb-all", "description": "Spacecraft velocity in GSM Cartesian coordinates", "display_type": "timeseries", "is_public": "True", "name": "vel_gsm", "size": "3", "start_date": "1984-08-18T23:55:00Z", "stop_date": "1985-01-15T08:00:00Z", "uks_orb_vgsm0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "uks_orb_vgsm(0)", "dataset": "uks-orb-all", "index1": "0", "is_public": "True", "name": "vx", "parameter": "uks_orb_vgsm", "start_date": "1984-08-18T23:55:00Z", "stop_date": "1985-01-15T08:00:00Z", "xmlid": "uks_orb_vgsm(0)"}, "uks_orb_vgsm1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "uks_orb_vgsm(1)", "dataset": "uks-orb-all", "index1": "1", "is_public": "True", "name": "vy", "parameter": "uks_orb_vgsm", "start_date": "1984-08-18T23:55:00Z", "stop_date": "1985-01-15T08:00:00Z", "xmlid": "uks_orb_vgsm(1)"}, "uks_orb_vgsm2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "uks_orb_vgsm(2)", "dataset": "uks-orb-all", "index1": "2", "is_public": "True", "name": "vz", "parameter": "uks_orb_vgsm", "start_date": "1984-08-18T23:55:00Z", "stop_date": "1985-01-15T08:00:00Z", "xmlid": "uks_orb_vgsm(2)"}, "units": "km/s", "xmlid": "uks_orb_vgsm"}, "uks_orb_xyz": {"__spz_name__": "xyz_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "uks_orb_xyz", "dataset": "uks-orb-all", "description": "Spacecraft position in GSE Cartesian coordinates", "display_type": "timeseries", "is_public": "True", "name": "xyz_gse", "size": "3", "start_date": "1984-08-18T23:55:00Z", "stop_date": "1985-01-15T08:00:00Z", "uks_orb_xyz0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "uks_orb_xyz(0)", "dataset": "uks-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "uks_orb_xyz", "start_date": "1984-08-18T23:55:00Z", "stop_date": "1985-01-15T08:00:00Z", "xmlid": "uks_orb_xyz(0)"}, "uks_orb_xyz1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "uks_orb_xyz(1)", "dataset": "uks-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "uks_orb_xyz", "start_date": "1984-08-18T23:55:00Z", "stop_date": "1985-01-15T08:00:00Z", "xmlid": "uks_orb_xyz(1)"}, "uks_orb_xyz2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "uks_orb_xyz(2)", "dataset": "uks-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "uks_orb_xyz", "start_date": "1984-08-18T23:55:00Z", "stop_date": "1985-01-15T08:00:00Z", "xmlid": "uks_orb_xyz(2)"}, "units": "Re", "xmlid": "uks_orb_xyz"}, "xmlid": "uks-orb-all"}, "xmlid": "UKS_ephemeris"}, "FGM": {"__spz_name__": "FGM", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "UKS_fgm", "att": "auto/UKS_fgm", "desc": "Triaxial Fluxgate Magnetometer
Magnetometer", "is_public": "True", "name": "FGM", "uks_mag_all": {"__spz_name__": "b field", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "uks-mag-all", "att": "auto/uks-mag-all", "dataSource": "", "desc": "Magnetic Field
Sampling: 5.0S", "is_public": "True", "lastModificationDate": "2020-02-14T17:11:34Z", "lastUpdate": "2020-01-21T13:52:11Z", "measurement_type": "MagneticField", "name": "b field", "processing_level": "Calibrated", "sampling": "5.0S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/UKS/MAG/uks-mag-all", "start_date": "1984-08-21T08:24:42Z", "stop_date": "1985-01-15T08:01:02Z", "target": "Earth.Magnetosheath", "uks_b_all": {"__spz_name__": "b_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "uks_b_all", "dataset": "uks-mag-all", "description": "Magnetic field vector in GSE Cartesian coordinates", "display_type": "timeseries", "is_public": "True", "name": "b_gse", "size": "3", "start_date": "1984-08-21T08:24:42Z", "stop_date": "1985-01-15T08:01:02Z", "ucd": "phys.magField", "uks_b_all0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "uks_b_all(0)", "dataset": "uks-mag-all", "index1": "0", "is_public": "True", "name": "bx", "parameter": "uks_b_all", "start_date": "1984-08-21T08:24:42Z", "stop_date": "1985-01-15T08:01:02Z", "xmlid": "uks_b_all(0)"}, "uks_b_all1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "uks_b_all(1)", "dataset": "uks-mag-all", "index1": "1", "is_public": "True", "name": "by", "parameter": "uks_b_all", "start_date": "1984-08-21T08:24:42Z", "stop_date": "1985-01-15T08:01:02Z", "xmlid": "uks_b_all(1)"}, "uks_b_all2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "uks_b_all(2)", "dataset": "uks-mag-all", "index1": "2", "is_public": "True", "name": "bz", "parameter": "uks_b_all", "start_date": "1984-08-21T08:24:42Z", "stop_date": "1985-01-15T08:01:02Z", "xmlid": "uks_b_all(2)"}, "units": "nT", "xmlid": "uks_b_all"}, "uks_b_gsm": {"__spz_name__": "b_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "uks_b_gsm", "dataset": "uks-mag-all", "description": "Magnetic field vector in GSM Cartesian coordinates", "display_type": "timeseries", "is_public": "True", "name": "b_gsm", "size": "3", "start_date": "1984-08-21T08:24:42Z", "stop_date": "1985-01-15T08:01:02Z", "ucd": "phys.magField", "uks_b_gsm0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "uks_b_gsm(0)", "dataset": "uks-mag-all", "index1": "0", "is_public": "True", "name": "bx", "parameter": "uks_b_gsm", "start_date": "1984-08-21T08:24:42Z", "stop_date": "1985-01-15T08:01:02Z", "xmlid": "uks_b_gsm(0)"}, "uks_b_gsm1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "uks_b_gsm(1)", "dataset": "uks-mag-all", "index1": "1", "is_public": "True", "name": "by", "parameter": "uks_b_gsm", "start_date": "1984-08-21T08:24:42Z", "stop_date": "1985-01-15T08:01:02Z", "xmlid": "uks_b_gsm(1)"}, "uks_b_gsm2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "uks_b_gsm(2)", "dataset": "uks-mag-all", "index1": "2", "is_public": "True", "name": "bz", "parameter": "uks_b_gsm", "start_date": "1984-08-21T08:24:42Z", "stop_date": "1985-01-15T08:01:02Z", "xmlid": "uks_b_gsm(2)"}, "units": "nT", "xmlid": "uks_b_gsm"}, "uks_b_tot": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "uks_b_tot", "dataset": "uks-mag-all", "description": "Magnetic field magnitude", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "1984-08-21T08:24:42Z", "stop_date": "1985-01-15T08:01:02Z", "ucd": "phys.magField", "units": "nT", "xmlid": "uks_b_tot"}, "xmlid": "uks-mag-all"}, "xmlid": "UKS_fgm"}, "ION": {"__spz_name__": "ION", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "UKS_ion", "att": "auto/UKS_ion", "desc": "Ion Instrument
ElectrostaticAnalyser", "is_public": "True", "name": "ION", "uks_ion_ftr": {"__spz_name__": "all ions", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "uks-ion-ftr", "att": "auto/uks-ion-ftr", "dataSource": "", "desc": "All Ions : high time resolution
MinSampling: 2S; MaxSampling: 3S", "is_public": "True", "lastModificationDate": "2020-02-14T17:11:39Z", "lastUpdate": "2020-01-21T13:45:18Z", "maxSampling": "3S", "measurement_type": "ThermalPlasma", "name": "all ions", "processing_level": "Calibrated", "sampling": "2S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/UKS/ION/uks-ion-ftr", "start_date": "1984-08-26T13:51:48Z", "stop_date": "1985-01-15T07:50:33Z", "target": "Earth.Magnetosheath", "uks_ion_ij": {"__spz_name__": "ion counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "uks_ion_ij", "dataset": "uks-ion-ftr", "description": "Ion counts", "display_type": "timeseries", "is_public": "True", "name": "ion counts", "start_date": "1984-08-26T13:51:48Z", "stop_date": "1985-01-15T07:50:33Z", "xmlid": "uks_ion_ij"}, "uks_ion_in": {"__spz_name__": "ion density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "uks_ion_in", "dataset": "uks-ion-ftr", "description": "Total ion density", "display_type": "timeseries", "is_public": "True", "name": "ion density", "start_date": "1984-08-26T13:51:48Z", "stop_date": "1985-01-15T07:50:33Z", "units": "cm-3", "xmlid": "uks_ion_in"}, "uks_ion_iv": {"__spz_name__": "ion v_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "uks_ion_iv", "dataset": "uks-ion-ftr", "description": "Ion velocity in GSE coordinates", "display_type": "timeseries", "is_public": "True", "name": "ion v_gse", "size": "3", "start_date": "1984-08-26T13:51:48Z", "stop_date": "1985-01-15T07:50:33Z", "uks_ion_iv0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "uks_ion_iv(0)", "dataset": "uks-ion-ftr", "index1": "0", "is_public": "True", "name": "vx", "parameter": "uks_ion_iv", "start_date": "1984-08-26T13:51:48Z", "stop_date": "1985-01-15T07:50:33Z", "xmlid": "uks_ion_iv(0)"}, "uks_ion_iv1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "uks_ion_iv(1)", "dataset": "uks-ion-ftr", "index1": "1", "is_public": "True", "name": "vy", "parameter": "uks_ion_iv", "start_date": "1984-08-26T13:51:48Z", "stop_date": "1985-01-15T07:50:33Z", "xmlid": "uks_ion_iv(1)"}, "uks_ion_iv2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "uks_ion_iv(2)", "dataset": "uks-ion-ftr", "index1": "2", "is_public": "True", "name": "vz", "parameter": "uks_ion_iv", "start_date": "1984-08-26T13:51:48Z", "stop_date": "1985-01-15T07:50:33Z", "xmlid": "uks_ion_iv(2)"}, "units": "km/s", "xmlid": "uks_ion_iv"}, "uks_ion_iw": {"__spz_name__": "ion temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "uks_ion_iw", "dataset": "uks-ion-ftr", "description": "Ion temperature", "display_type": "timeseries", "is_public": "True", "name": "ion temperature", "start_date": "1984-08-26T13:51:48Z", "stop_date": "1985-01-15T07:50:33Z", "units": "eV", "xmlid": "uks_ion_iw"}, "xmlid": "uks-ion-ftr"}, "uks_ion_swi": {"__spz_name__": "sw ions", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "uks-ion-swi", "att": "auto/uks-ion-swi", "dataSource": "", "desc": "Solar Wind Ions H+ and He++
Sampling: 10S", "is_public": "True", "lastModificationDate": "2020-02-14T17:11:51Z", "lastUpdate": "2020-01-28T17:10:11Z", "measurement_type": "ThermalPlasma", "name": "sw ions", "processing_level": "Calibrated", "sampling": "10S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/UKS/ION/uks-ion-swi", "start_date": "1984-08-27T14:50:39Z", "stop_date": "1984-12-29T07:10:56Z", "target": "Earth.Magnetosheath", "uks_ion_Hj": {"__spz_name__": "h+ counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "uks_ion_Hj", "dataset": "uks-ion-swi", "description": "Proton counts", "display_type": "timeseries", "is_public": "True", "name": "h+ counts", "start_date": "1984-08-27T14:50:39Z", "stop_date": "1984-12-29T07:10:56Z", "xmlid": "uks_ion_Hj"}, "uks_ion_Hn": {"__spz_name__": "h+ density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "uks_ion_Hn", "dataset": "uks-ion-swi", "description": "Total proton density", "display_type": "timeseries", "is_public": "True", "name": "h+ density", "start_date": "1984-08-27T14:50:39Z", "stop_date": "1984-12-29T07:10:56Z", "units": "cm-3", "xmlid": "uks_ion_Hn"}, "uks_ion_Hv": {"__spz_name__": "h+ v_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "uks_ion_Hv", "dataset": "uks-ion-swi", "description": "proton velocity in GSE coordinates", "display_type": "timeseries", "is_public": "True", "name": "h+ v_gse", "size": "3", "start_date": "1984-08-27T14:50:39Z", "stop_date": "1984-12-29T07:10:56Z", "uks_ion_Hv0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "uks_ion_Hv(0)", "dataset": "uks-ion-swi", "index1": "0", "is_public": "True", "name": "vx", "parameter": "uks_ion_Hv", "start_date": "1984-08-27T14:50:39Z", "stop_date": "1984-12-29T07:10:56Z", "xmlid": "uks_ion_Hv(0)"}, "uks_ion_Hv1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "uks_ion_Hv(1)", "dataset": "uks-ion-swi", "index1": "1", "is_public": "True", "name": "vy", "parameter": "uks_ion_Hv", "start_date": "1984-08-27T14:50:39Z", "stop_date": "1984-12-29T07:10:56Z", "xmlid": "uks_ion_Hv(1)"}, "uks_ion_Hv2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "uks_ion_Hv(2)", "dataset": "uks-ion-swi", "index1": "2", "is_public": "True", "name": "vz", "parameter": "uks_ion_Hv", "start_date": "1984-08-27T14:50:39Z", "stop_date": "1984-12-29T07:10:56Z", "xmlid": "uks_ion_Hv(2)"}, "units": "km/s", "xmlid": "uks_ion_Hv"}, "uks_ion_Hw": {"__spz_name__": "h+ temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "uks_ion_Hw", "dataset": "uks-ion-swi", "description": "proton temperature", "display_type": "timeseries", "is_public": "True", "name": "h+ temperature", "start_date": "1984-08-27T14:50:39Z", "stop_date": "1984-12-29T07:10:56Z", "units": "eV", "xmlid": "uks_ion_Hw"}, "uks_ion_aj": {"__spz_name__": "he++ counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "uks_ion_aj", "dataset": "uks-ion-swi", "description": "Alpha particles counts", "display_type": "timeseries", "is_public": "True", "name": "he++ counts", "start_date": "1984-08-27T14:50:39Z", "stop_date": "1984-12-29T07:10:56Z", "xmlid": "uks_ion_aj"}, "uks_ion_an": {"__spz_name__": "he++ density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "uks_ion_an", "dataset": "uks-ion-swi", "description": "Total alpha density", "display_type": "timeseries", "is_public": "True", "name": "he++ density", "start_date": "1984-08-27T14:50:39Z", "stop_date": "1984-12-29T07:10:56Z", "ucd": "phys.magField", "units": "cm-3", "xmlid": "uks_ion_an"}, "uks_ion_av": {"__spz_name__": "he++ v_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "uks_ion_av", "dataset": "uks-ion-swi", "description": "He++ velocity in GSE coordinates", "display_type": "timeseries", "is_public": "True", "name": "he++ v_gse", "size": "3", "start_date": "1984-08-27T14:50:39Z", "stop_date": "1984-12-29T07:10:56Z", "uks_ion_av0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "uks_ion_av(0)", "dataset": "uks-ion-swi", "index1": "0", "is_public": "True", "name": "vx", "parameter": "uks_ion_av", "start_date": "1984-08-27T14:50:39Z", "stop_date": "1984-12-29T07:10:56Z", "xmlid": "uks_ion_av(0)"}, "uks_ion_av1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "uks_ion_av(1)", "dataset": "uks-ion-swi", "index1": "1", "is_public": "True", "name": "vy", "parameter": "uks_ion_av", "start_date": "1984-08-27T14:50:39Z", "stop_date": "1984-12-29T07:10:56Z", "xmlid": "uks_ion_av(1)"}, "uks_ion_av2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "uks_ion_av(2)", "dataset": "uks-ion-swi", "index1": "2", "is_public": "True", "name": "vz", "parameter": "uks_ion_av", "start_date": "1984-08-27T14:50:39Z", "stop_date": "1984-12-29T07:10:56Z", "xmlid": "uks_ion_av(2)"}, "units": "km/s", "xmlid": "uks_ion_av"}, "uks_ion_aw": {"__spz_name__": "he++ temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "uks_ion_aw", "dataset": "uks-ion-swi", "description": "He++ temperature", "display_type": "timeseries", "is_public": "True", "name": "he++ temperature", "start_date": "1984-08-27T14:50:39Z", "stop_date": "1984-12-29T07:10:56Z", "units": "eV", "xmlid": "uks_ion_aw"}, "xmlid": "uks-ion-swi"}, "xmlid": "UKS_ion"}, "PWS": {"__spz_name__": "PWS", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "UKS_wav", "att": "auto/UKS_wav", "desc": "Plasma Wave Spectrometer
Spectrometer", "e_field_power": {"__spz_name__": "e field power", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "uks-wav-all", "is_public": "True", "name": "e field power", "uks_wav_acc": {"__spz_name__": "power spectral density", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "uks-wav-acc", "att": "auto/uks-wav-acc", "dataSource": "", "desc": "Electric field power spectral density
MinSampling: 2.992S; MaxSampling: 7.496S", "is_public": "True", "lastModificationDate": "2020-02-14T17:11:49Z", "lastUpdate": "2020-01-28T16:45:22Z", "maxSampling": "7.496S", "measurement_type": "Waves", "name": "power spectral density", "processing_level": "Calibrated", "sampling": "2.992S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/UKS/WAV/uks-wav-acc", "start_date": "1984-08-26T13:51:45Z", "stop_date": "1985-01-15T08:01:07Z", "target": "Earth.Magnetosheath", "uks_acc_fl": {"__spz_name__": "flag", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "uks_acc_fl", "dataset": "uks-wav-acc", "description": "Validity flag: \n * unvalidated = 1\n * validated = 0\n * requires reprocessing = 2\n * bad data, cannot reprocess = 3\n * may contain noise or outliers = 4\n * systematic instrumental effects = 5\n * PI quality flags) = 6\n * fill value = 7", "display_type": "timeseries", "is_public": "True", "name": "flag", "start_date": "1984-08-26T13:51:45Z", "stop_date": "1985-01-15T08:01:07Z", "xmlid": "uks_acc_fl"}, "uks_acc_sp": {"__spz_name__": "e field spectral density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "uks_acc_sp", "dataset": "uks-wav-acc", "description": "Electric field power spectral density 10.07 Hz to 523.84 Hz", "display_type": "spectrogram", "is_public": "True", "name": "e field spectral density", "start_date": "1984-08-26T13:51:45Z", "stop_date": "1985-01-15T08:01:07Z", "units": "V\u00b2/m\u00b2/Hz", "xmlid": "uks_acc_sp"}, "xmlid": "uks-wav-acc"}, "uks_wav_pow": {"__spz_name__": "mean / peak values", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "uks-wav-pow", "att": "auto/uks-wav-pow", "dataSource": "", "desc": "Average and peak e field wave power over .11 to 3.9 kHz
MinSampling: 2.524S; MaxSampling: 7.496S", "is_public": "True", "lastModificationDate": "2020-02-14T17:11:41Z", "lastUpdate": "2020-01-21T16:19:31Z", "maxSampling": "7.496S", "measurement_type": "Waves", "name": "mean / peak values", "processing_level": "Calibrated", "sampling": "2.524S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/UKS/WAV/uks-wav-pow", "start_date": "1984-08-26T13:51:45Z", "stop_date": "1985-01-15T08:01:07Z", "target": "Earth.Magnetosheath", "uks_pow_fl": {"__spz_name__": "flag", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "uks_pow_fl", "dataset": "uks-wav-pow", "description": "Validity flag: \n * unvalidated = 1\n * validated = 0\n * requires reprocessing = 2\n * bad data, cannot reprocess = 3\n * may contain noise or outliers = 4\n * systematic instrumental effects = 5\n * PI quality flags) = 6\n * fill value = 7", "display_type": "timeseries", "is_public": "True", "name": "flag", "start_date": "1984-08-26T13:51:45Z", "stop_date": "1985-01-15T08:01:07Z", "xmlid": "uks_pow_fl"}, "uks_pow_m": {"__spz_name__": "p_mean", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "uks_pow_m", "dataset": "uks-wav-pow", "description": "Average wave power over .11 to 3.9 kHz", "display_type": "timeseries", "is_public": "True", "name": "p_mean", "start_date": "1984-08-26T13:51:45Z", "stop_date": "1985-01-15T08:01:07Z", "units": "V\u00b2/m\u00b2", "xmlid": "uks_pow_m"}, "uks_pow_pk": {"__spz_name__": "p_peak", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "uks_pow_pk", "dataset": "uks-wav-pow", "description": "Peak wave power over .11 to 3.9 kHz", "display_type": "timeseries", "is_public": "True", "name": "p_peak", "start_date": "1984-08-26T13:51:45Z", "stop_date": "1985-01-15T08:01:07Z", "units": "V\u00b2/m\u00b2", "xmlid": "uks_pow_pk"}, "xmlid": "uks-wav-pow"}, "uks_wav_sfa": {"__spz_name__": "power", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "uks-wav-sfa", "att": "auto/uks-wav-sfa", "dataSource": "", "desc": "Electric field power spectrum
Sampling: 60S", "is_public": "True", "lastModificationDate": "2020-02-14T17:11:44Z", "lastUpdate": "2020-01-30T10:34:24Z", "measurement_type": "Waves", "name": "power", "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/UKS/WAV/uks-wav-sfa", "start_date": "1984-08-26T13:52:45Z", "stop_date": "1985-01-15T08:00:57Z", "target": "Earth.Magnetosheath", "uks_sfa_E": {"__spz_name__": "e field power", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "uks_sfa_E", "dataset": "uks-wav-sfa", "description": "Electric field power between, 0.65 and 131.21 KHz", "display_type": "spectrogram", "is_public": "True", "name": "e field power", "start_date": "1984-08-26T13:52:45Z", "stop_date": "1985-01-15T08:00:57Z", "units": "V\u00b2/m\u00b2", "xmlid": "uks_sfa_E"}, "uks_sfa_fl": {"__spz_name__": "flag", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "uks_sfa_fl", "dataset": "uks-wav-sfa", "description": "Validity flag: unvalidated(1),validated(0), requires reprocessing(2), bad data, cannot reprocess(3), may contain noise or outliers(4), systematic instrumental effects(5), PI quality flags(6), fill value(7)", "display_type": "timeseries", "is_public": "True", "name": "flag", "start_date": "1984-08-26T13:52:45Z", "stop_date": "1985-01-15T08:00:57Z", "xmlid": "uks_sfa_fl"}, "xmlid": "uks-wav-sfa"}, "xmlid": "uks-wav-all"}, "is_public": "True", "name": "PWS", "xmlid": "UKS_wav"}, "__spz_name__": "UKS", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "UKS", "att": "auto/UKS", "desc": "United Kingdom Subsatellite
1984-08-25T07:31:00 - 1985-06-15T23:59:59", "is_public": "True", "name": "UKS", "target": "Earth.Magnetosheath", "xmlid": "UKS"}, "__spz_name__": "AMPTE", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "AMPTE", "att": "auto/AMPTE", "desc": "Active Magnetospheric Particle Tracer Explorers
1984-08-16T07:31:00 - 1989-01-11T12:00:00", "is_public": "True", "name": "AMPTE", "rank": "6", "target": "Earth.Magnetosheath", "xmlid": "AMPTE"}, "ARTEMIS": {"ARTEMIS_P1": {"ESA": {"__spz_name__": "ESA", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "ArtemisP1_esa", "athp1_esa_l2e": {"PriorID": "thb-esa-l2e", "__spz_name__": "electron full mode", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "athp1-esa-l2e", "athp1_el_sp": {"__spz_name__": "el omni eflux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "athp1_el_sp", "dataset": "athp1-esa-l2e", "display_type": "spectrogram", "is_public": "True", "name": "el omni eflux", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:11:08Z", "ucd": "phys.flux;phys.energy;phys.electron", "units": "eV/cm\u00b2-s-sr-eV", "xmlid": "athp1_el_sp"}, "athp1_n_e": {"__spz_name__": "el density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "athp1_n_e", "dataset": "athp1-esa-l2e", "description": "Ion Density", "display_type": "timeseries", "is_public": "True", "name": "el density", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:11:08Z", "ucd": "phys.density;phys.electron", "units": "cm-3", "xmlid": "athp1_n_e"}, "athp1_t_e": {"__spz_name__": "el temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "athp1_t_e", "athp1_t_e0": {"__spz_name__": "t_perp1", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp1_t_e(0)", "dataset": "athp1-esa-l2e", "index1": "1", "is_public": "True", "name": "t_perp1", "parameter": "athp1_t_e", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:11:08Z", "xmlid": "athp1_t_e(0)"}, "athp1_t_e1": {"__spz_name__": "t_perp2", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp1_t_e(1)", "dataset": "athp1-esa-l2e", "index1": "2", "is_public": "True", "name": "t_perp2", "parameter": "athp1_t_e", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:11:08Z", "xmlid": "athp1_t_e(1)"}, "athp1_t_e2": {"__spz_name__": "t_para", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp1_t_e(2)", "dataset": "athp1-esa-l2e", "index1": "0", "is_public": "True", "name": "t_para", "parameter": "athp1_t_e", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:11:08Z", "xmlid": "athp1_t_e(2)"}, "dataset": "athp1-esa-l2e", "description": "Temperature", "display_type": "timeseries", "is_public": "True", "name": "el temperature", "size": "3", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:11:08Z", "ucd": "phys.temperature;phys.electron", "units": "eV", "xmlid": "athp1_t_e"}, "athp1_v_e": {"__spz_name__": "el v_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "athp1_v_e", "athp1_v_e0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp1_v_e(0)", "dataset": "athp1-esa-l2e", "index1": "0", "is_public": "True", "name": "vx", "parameter": "athp1_v_e", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:11:08Z", "xmlid": "athp1_v_e(0)"}, "athp1_v_e1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp1_v_e(1)", "dataset": "athp1-esa-l2e", "index1": "1", "is_public": "True", "name": "vy", "parameter": "athp1_v_e", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:11:08Z", "xmlid": "athp1_v_e(1)"}, "athp1_v_e2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp1_v_e(2)", "dataset": "athp1-esa-l2e", "index1": "2", "is_public": "True", "name": "vz", "parameter": "athp1_v_e", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:11:08Z", "xmlid": "athp1_v_e(2)"}, "dataset": "athp1-esa-l2e", "display_type": "timeseries", "is_public": "True", "name": "el v_gse", "size": "3", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:11:08Z", "ucd": "phys.veloc;phys.electron", "units": "km/s", "xmlid": "athp1_v_e"}, "athp1_v_e_lse": {"__spz_name__": "el v_lse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "athp1_v_e_lse", "athp1_v_e_lse0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp1_v_e_lse(0)", "dataset": "athp1-esa-l2e", "index1": "0", "is_public": "True", "name": "vx", "parameter": "athp1_v_e_lse", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:11:08Z", "xmlid": "athp1_v_e_lse(0)"}, "athp1_v_e_lse1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp1_v_e_lse(1)", "dataset": "athp1-esa-l2e", "index1": "1", "is_public": "True", "name": "vy", "parameter": "athp1_v_e_lse", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:11:08Z", "xmlid": "athp1_v_e_lse(1)"}, "athp1_v_e_lse2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp1_v_e_lse(2)", "dataset": "athp1-esa-l2e", "index1": "2", "is_public": "True", "name": "vz", "parameter": "athp1_v_e_lse", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:11:08Z", "xmlid": "athp1_v_e_lse(2)"}, "dataset": "athp1-esa-l2e", "display_type": "timeseries", "is_public": "True", "name": "el v_lse", "size": "3", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:11:08Z", "ucd": "phys.veloc;phys.electron", "units": "km/s", "xmlid": "athp1_v_e_lse"}, "att": "auto/athp1-esa-l2e", "dataSource": "IRAP_THEMIS", "desc": "
MinSampling: 96.27S; MaxSampling: 551.0S
Provider: IRAP_THEMIS", "is_public": "True", "lastModificationDate": "2024-10-07T04:00:24Z", "lastUpdate": "2024-10-07T04:00:23Z", "maxSampling": "551.0S", "measurement_type": "ThermalPlasma", "name": "electron full mode", "processing_level": "Calibrated", "sampling": "96.27S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/ARTEMIS/P1/ESA/athp1-esa-l2e", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:11:08Z", "target": "Earth.Magnetosphere", "xmlid": "athp1-esa-l2e"}, "athp1_esa_l2i": {"PriorID": "thb-esa-l2i", "__spz_name__": "ion full mode", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "athp1-esa-l2i", "athp1_ion_sp": {"__spz_name__": "ion eflux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "athp1_ion_sp", "dataset": "athp1-esa-l2i", "display_type": "spectrogram", "is_public": "True", "name": "ion eflux", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:11:04Z", "ucd": "phys.flux;phys.energy;phys.atmol.ionStage", "units": "eV/cm\u00b2-s-sr-eV", "xmlid": "athp1_ion_sp"}, "athp1_n_i": {"__spz_name__": "ion density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "athp1_n_i", "dataset": "athp1-esa-l2i", "description": "Ion Density", "display_type": "timeseries", "is_public": "True", "name": "ion density", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:11:04Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm-3", "xmlid": "athp1_n_i"}, "athp1_t_i": {"__spz_name__": "ion temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "athp1_t_i", "athp1_t_i0": {"__spz_name__": "t_perp1", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp1_t_i(0)", "dataset": "athp1-esa-l2i", "index1": "1", "is_public": "True", "name": "t_perp1", "parameter": "athp1_t_i", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:11:04Z", "xmlid": "athp1_t_i(0)"}, "athp1_t_i1": {"__spz_name__": "t_perp2", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp1_t_i(1)", "dataset": "athp1-esa-l2i", "index1": "2", "is_public": "True", "name": "t_perp2", "parameter": "athp1_t_i", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:11:04Z", "xmlid": "athp1_t_i(1)"}, "athp1_t_i2": {"__spz_name__": "t_para", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp1_t_i(2)", "dataset": "athp1-esa-l2i", "index1": "0", "is_public": "True", "name": "t_para", "parameter": "athp1_t_i", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:11:04Z", "xmlid": "athp1_t_i(2)"}, "dataset": "athp1-esa-l2i", "description": "Temperature", "display_type": "timeseries", "is_public": "True", "name": "ion temperature", "size": "3", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:11:04Z", "ucd": "phys.temperature;phys.atmol.ionStage", "units": "eV", "xmlid": "athp1_t_i"}, "athp1_v_i": {"__spz_name__": "ion v_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "athp1_v_i", "athp1_v_i0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp1_v_i(0)", "dataset": "athp1-esa-l2i", "index1": "0", "is_public": "True", "name": "vx", "parameter": "athp1_v_i", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:11:04Z", "xmlid": "athp1_v_i(0)"}, "athp1_v_i1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp1_v_i(1)", "dataset": "athp1-esa-l2i", "index1": "1", "is_public": "True", "name": "vy", "parameter": "athp1_v_i", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:11:04Z", "xmlid": "athp1_v_i(1)"}, "athp1_v_i2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp1_v_i(2)", "dataset": "athp1-esa-l2i", "index1": "2", "is_public": "True", "name": "vz", "parameter": "athp1_v_i", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:11:04Z", "xmlid": "athp1_v_i(2)"}, "dataset": "athp1-esa-l2i", "display_type": "timeseries", "is_public": "True", "name": "ion v_gse", "size": "3", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:11:04Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "athp1_v_i"}, "athp1_v_i_lse": {"__spz_name__": "ion v_lse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "athp1_v_i_lse", "athp1_v_i_lse0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp1_v_i_lse(0)", "dataset": "athp1-esa-l2i", "index1": "0", "is_public": "True", "name": "vx", "parameter": "athp1_v_i_lse", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:11:04Z", "xmlid": "athp1_v_i_lse(0)"}, "athp1_v_i_lse1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp1_v_i_lse(1)", "dataset": "athp1-esa-l2i", "index1": "1", "is_public": "True", "name": "vy", "parameter": "athp1_v_i_lse", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:11:04Z", "xmlid": "athp1_v_i_lse(1)"}, "athp1_v_i_lse2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp1_v_i_lse(2)", "dataset": "athp1-esa-l2i", "index1": "2", "is_public": "True", "name": "vz", "parameter": "athp1_v_i_lse", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:11:04Z", "xmlid": "athp1_v_i_lse(2)"}, "dataset": "athp1-esa-l2i", "display_type": "timeseries", "is_public": "True", "name": "ion v_lse", "size": "3", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:11:04Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "athp1_v_i_lse"}, "athp1_v_i_tot": {"__spz_name__": "ion |v|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "athp1_v_i_tot", "dataset": "athp1-esa-l2i", "description": "Module of Velocity", "display_type": "timeseries", "is_public": "True", "name": "ion |v|", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:11:04Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "athp1_v_i_tot"}, "att": "auto/athp1-esa-l2i", "dataSource": "IRAP_THEMIS", "desc": "
MinSampling: 96.27S; MaxSampling: 551.0S
Provider: IRAP_THEMIS", "is_public": "True", "lastModificationDate": "2024-10-07T04:00:24Z", "lastUpdate": "2024-10-07T04:00:23Z", "maxSampling": "551.0S", "measurement_type": "ThermalPlasma", "name": "ion full mode", "processing_level": "Calibrated", "sampling": "96.27S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/ARTEMIS/P1/ESA/athp1-esa-l2i", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:11:04Z", "target": "Earth.Magnetosphere", "xmlid": "athp1-esa-l2i"}, "athp1_peem_all": {"PriorID": "thb-peem-all", "__spz_name__": "electron onboard moments", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "athp1-peem-all", "athp1_n_peem": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "athp1_n_peem", "dataset": "athp1-peem-all", "description": "Electron Density", "display_type": "timeseries", "is_public": "True", "name": "density", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:12:26Z", "ucd": "phys.density;phys.electron", "units": "cm-3", "xmlid": "athp1_n_peem"}, "athp1_t_peem": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "athp1_t_peem", "athp1_t_peem0": {"__spz_name__": "t_perp1", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp1_t_peem(0)", "dataset": "athp1-peem-all", "index1": "1", "is_public": "True", "name": "t_perp1", "parameter": "athp1_t_peem", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:12:26Z", "xmlid": "athp1_t_peem(0)"}, "athp1_t_peem1": {"__spz_name__": "t_perp2", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp1_t_peem(1)", "dataset": "athp1-peem-all", "index1": "2", "is_public": "True", "name": "t_perp2", "parameter": "athp1_t_peem", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:12:26Z", "xmlid": "athp1_t_peem(1)"}, "athp1_t_peem2": {"__spz_name__": "t_para", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp1_t_peem(2)", "dataset": "athp1-peem-all", "index1": "0", "is_public": "True", "name": "t_para", "parameter": "athp1_t_peem", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:12:26Z", "xmlid": "athp1_t_peem(2)"}, "dataset": "athp1-peem-all", "description": "Temperature", "display_type": "timeseries", "is_public": "True", "name": "temperature", "size": "3", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:12:26Z", "ucd": "phys.temperature;phys.electron", "units": "eV", "xmlid": "athp1_t_peem"}, "att": "auto/athp1-peem-all", "dataSource": "IRAP_THEMIS", "desc": "
Sampling: 3S
Provider: IRAP_THEMIS", "is_public": "True", "lastModificationDate": "2024-10-07T04:01:28Z", "lastUpdate": "2024-10-07T04:01:27Z", "measurement_type": "ThermalPlasma", "name": "electron onboard moments", "processing_level": "Calibrated", "sampling": "3S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/ARTEMIS/P1/ESA/athp1-peem-all", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:12:26Z", "target": "Earth.Magnetosphere", "xmlid": "athp1-peem-all"}, "athp1_peim_all": {"PriorID": "thb-peim-all", "__spz_name__": "ion onboard moments", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "athp1-peim-all", "athp1_n_peim": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "athp1_n_peim", "dataset": "athp1-peim-all", "description": "Ion Density", "display_type": "timeseries", "is_public": "True", "name": "density", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:12:26Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm-3", "xmlid": "athp1_n_peim"}, "athp1_t_peim": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "athp1_t_peim", "athp1_t_peim0": {"__spz_name__": "t_perp1", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp1_t_peim(0)", "dataset": "athp1-peim-all", "index1": "1", "is_public": "True", "name": "t_perp1", "parameter": "athp1_t_peim", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:12:26Z", "xmlid": "athp1_t_peim(0)"}, "athp1_t_peim1": {"__spz_name__": "t_perp2", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp1_t_peim(1)", "dataset": "athp1-peim-all", "index1": "2", "is_public": "True", "name": "t_perp2", "parameter": "athp1_t_peim", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:12:26Z", "xmlid": "athp1_t_peim(1)"}, "athp1_t_peim2": {"__spz_name__": "t_para", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp1_t_peim(2)", "dataset": "athp1-peim-all", "index1": "0", "is_public": "True", "name": "t_para", "parameter": "athp1_t_peim", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:12:26Z", "xmlid": "athp1_t_peim(2)"}, "dataset": "athp1-peim-all", "description": "Temperature", "display_type": "timeseries", "is_public": "True", "name": "temperature", "size": "3", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:12:26Z", "ucd": "phys.temperature;phys.atmol.ionStage", "units": "eV", "xmlid": "athp1_t_peim"}, "athp1_v_peim": {"__spz_name__": "v_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "athp1_v_peim", "athp1_v_peim0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp1_v_peim(0)", "dataset": "athp1-peim-all", "index1": "0", "is_public": "True", "name": "vx", "parameter": "athp1_v_peim", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:12:26Z", "xmlid": "athp1_v_peim(0)"}, "athp1_v_peim1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp1_v_peim(1)", "dataset": "athp1-peim-all", "index1": "1", "is_public": "True", "name": "vy", "parameter": "athp1_v_peim", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:12:26Z", "xmlid": "athp1_v_peim(1)"}, "athp1_v_peim2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp1_v_peim(2)", "dataset": "athp1-peim-all", "index1": "2", "is_public": "True", "name": "vz", "parameter": "athp1_v_peim", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:12:26Z", "xmlid": "athp1_v_peim(2)"}, "dataset": "athp1-peim-all", "display_type": "timeseries", "is_public": "True", "name": "v_gse", "size": "3", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:12:26Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "athp1_v_peim"}, "athp1_v_peim_lse": {"__spz_name__": "v_lse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "athp1_v_peim_lse", "athp1_v_peim_lse0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp1_v_peim_lse(0)", "dataset": "athp1-peim-all", "index1": "0", "is_public": "True", "name": "vx", "parameter": "athp1_v_peim_lse", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:12:26Z", "xmlid": "athp1_v_peim_lse(0)"}, "athp1_v_peim_lse1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp1_v_peim_lse(1)", "dataset": "athp1-peim-all", "index1": "1", "is_public": "True", "name": "vy", "parameter": "athp1_v_peim_lse", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:12:26Z", "xmlid": "athp1_v_peim_lse(1)"}, "athp1_v_peim_lse2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp1_v_peim_lse(2)", "dataset": "athp1-peim-all", "index1": "2", "is_public": "True", "name": "vz", "parameter": "athp1_v_peim_lse", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:12:26Z", "xmlid": "athp1_v_peim_lse(2)"}, "dataset": "athp1-peim-all", "display_type": "timeseries", "is_public": "True", "name": "v_lse", "size": "3", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:12:26Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "athp1_v_peim_lse"}, "athp1_v_peim_tot": {"__spz_name__": "|v|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "athp1_v_peim_tot", "dataset": "athp1-peim-all", "description": "Module of Velocity", "display_type": "timeseries", "is_public": "True", "name": "|v|", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:12:26Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "athp1_v_peim_tot"}, "att": "auto/athp1-peim-all", "dataSource": "IRAP_THEMIS", "desc": "
Sampling: 3S
Provider: IRAP_THEMIS", "is_public": "True", "lastModificationDate": "2024-10-07T04:01:28Z", "lastUpdate": "2024-10-07T04:01:26Z", "measurement_type": "ThermalPlasma", "name": "ion onboard moments", "processing_level": "Calibrated", "sampling": "3S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/ARTEMIS/P1/ESA/athp1-peim-all", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:12:26Z", "target": "Earth.Magnetosphere", "xmlid": "athp1-peim-all"}, "att": "auto/ArtemisP1_esa", "desc": "ElectrostaticAnalyser", "is_public": "True", "name": "ESA", "xmlid": "ArtemisP1_esa"}, "Ephemeris": {"__spz_name__": "Ephemeris", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "ArtemisP1_ephemeris", "athp1_orb_all": {"PriorID": "thb-fgm-l", "__spz_name__": "orbit", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "athp1-orb-all", "athp1_lat": {"__spz_name__": "latitude HEE", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "athp1_lat", "dataset": "athp1-orb-all", "display_type": "timeseries", "is_public": "True", "name": "latitude HEE", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:11:54Z", "ucd": "pos.distance", "units": "deg", "xmlid": "athp1_lat"}, "athp1_lon": {"__spz_name__": "longitude HEE", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "athp1_lon", "dataset": "athp1-orb-all", "display_type": "timeseries", "is_public": "True", "name": "longitude HEE", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:11:54Z", "ucd": "pos.distance", "units": "deg", "xmlid": "athp1_lon"}, "athp1_r": {"__spz_name__": "distance athp1-moon", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "athp1_r", "dataset": "athp1-orb-all", "display_type": "timeseries", "is_public": "True", "name": "distance athp1-moon", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:11:54Z", "ucd": "pos.distance", "units": "km", "xmlid": "athp1_r"}, "athp1_rsun": {"__spz_name__": "distance athp1-sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "athp1_rsun", "dataset": "athp1-orb-all", "display_type": "timeseries", "is_public": "True", "name": "distance athp1-sun", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:11:54Z", "ucd": "pos.distance", "units": "AU", "xmlid": "athp1_rsun"}, "athp1_xyz_gse": {"__spz_name__": "xyz_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "athp1_xyz_gse", "athp1_xyz_gse0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp1_xyz_gse(0)", "dataset": "athp1-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "athp1_xyz_gse", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:11:54Z", "xmlid": "athp1_xyz_gse(0)"}, "athp1_xyz_gse1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp1_xyz_gse(1)", "dataset": "athp1-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "athp1_xyz_gse", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:11:54Z", "xmlid": "athp1_xyz_gse(1)"}, "athp1_xyz_gse2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp1_xyz_gse(2)", "dataset": "athp1-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "athp1_xyz_gse", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:11:54Z", "xmlid": "athp1_xyz_gse(2)"}, "dataset": "athp1-orb-all", "description": "position in GSE coordinates", "display_type": "timeseries", "is_public": "True", "name": "xyz_gse", "size": "3", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:11:54Z", "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "Re", "xmlid": "athp1_xyz_gse"}, "athp1_xyz_gsm": {"__spz_name__": "xyz_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "athp1_xyz_gsm", "athp1_xyz_gsm0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp1_xyz_gsm(0)", "dataset": "athp1-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "athp1_xyz_gsm", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:11:54Z", "xmlid": "athp1_xyz_gsm(0)"}, "athp1_xyz_gsm1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp1_xyz_gsm(1)", "dataset": "athp1-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "athp1_xyz_gsm", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:11:54Z", "xmlid": "athp1_xyz_gsm(1)"}, "athp1_xyz_gsm2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp1_xyz_gsm(2)", "dataset": "athp1-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "athp1_xyz_gsm", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:11:54Z", "xmlid": "athp1_xyz_gsm(2)"}, "dataset": "athp1-orb-all", "description": "position in GSM coordinates", "is_public": "True", "name": "xyz_gsm", "size": "3", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:11:54Z", "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "Re", "xmlid": "athp1_xyz_gsm"}, "athp1_xyz_hee": {"__spz_name__": "xyz_hee", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "athp1_xyz_hee", "athp1_xyz_hee0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp1_xyz_hee(0)", "dataset": "athp1-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "athp1_xyz_hee", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:11:54Z", "xmlid": "athp1_xyz_hee(0)"}, "athp1_xyz_hee1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp1_xyz_hee(1)", "dataset": "athp1-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "athp1_xyz_hee", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:11:54Z", "xmlid": "athp1_xyz_hee(1)"}, "athp1_xyz_hee2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp1_xyz_hee(2)", "dataset": "athp1-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "athp1_xyz_hee", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:11:54Z", "xmlid": "athp1_xyz_hee(2)"}, "dataset": "athp1-orb-all", "description": "position in HEE coordinates", "is_public": "True", "name": "xyz_hee", "size": "3", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:11:54Z", "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "AU", "xmlid": "athp1_xyz_hee"}, "athp1_xyz_lse": {"__spz_name__": "xyz_lse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "athp1_xyz_lse", "athp1_xyz_lse0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp1_xyz_lse(0)", "dataset": "athp1-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "athp1_xyz_lse", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:11:54Z", "xmlid": "athp1_xyz_lse(0)"}, "athp1_xyz_lse1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp1_xyz_lse(1)", "dataset": "athp1-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "athp1_xyz_lse", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:11:54Z", "xmlid": "athp1_xyz_lse(1)"}, "athp1_xyz_lse2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp1_xyz_lse(2)", "dataset": "athp1-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "athp1_xyz_lse", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:11:54Z", "xmlid": "athp1_xyz_lse(2)"}, "dataset": "athp1-orb-all", "description": "position in LSE coordinates", "display_type": "timeseries", "is_public": "True", "name": "xyz_lse", "size": "3", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:11:54Z", "ucd": "pos.ephem;instr.obsty", "units": "Rmo", "xmlid": "athp1_xyz_lse"}, "att": "auto/athp1-orb-all", "dataSource": "IRAP_THEMIS", "desc": "
Sampling: 60S
Provider: IRAP_THEMIS", "is_public": "True", "lastModificationDate": "2024-10-07T04:03:54Z", "lastUpdate": "2024-10-07T04:03:53Z", "measurement_type": "Ephemeris", "name": "orbit", "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/ARTEMIS/P1/Ephemeris/athp1-orb-all", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:11:54Z", "target": "Earth.Magnetosphere", "xmlid": "athp1-orb-all"}, "att": "auto/ArtemisP1_ephemeris", "desc": "", "is_public": "True", "name": "Ephemeris", "xmlid": "ArtemisP1_ephemeris"}, "FGM": {"__spz_name__": "FGM", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "ArtemisP1_fgm", "athp1_fgm_l": {"PriorID": "thb-fgm-l", "__spz_name__": "0.25 sec (low)", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "athp1-fgm-l", "athp1_bl": {"__spz_name__": "b_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "athp1_bl", "athp1_bl0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp1_bl(0)", "dataset": "athp1-fgm-l", "index1": "0", "is_public": "True", "name": "bx", "parameter": "athp1_bl", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:11:54Z", "xmlid": "athp1_bl(0)"}, "athp1_bl1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp1_bl(1)", "dataset": "athp1-fgm-l", "index1": "1", "is_public": "True", "name": "by", "parameter": "athp1_bl", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:11:54Z", "xmlid": "athp1_bl(1)"}, "athp1_bl2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp1_bl(2)", "dataset": "athp1-fgm-l", "index1": "2", "is_public": "True", "name": "bz", "parameter": "athp1_bl", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:11:54Z", "xmlid": "athp1_bl(2)"}, "dataset": "athp1-fgm-l", "description": "Magnetic Field", "is_public": "True", "name": "b_gse", "size": "3", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:11:54Z", "units": "nT", "xmlid": "athp1_bl"}, "athp1_bl_gsm": {"__spz_name__": "b_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "athp1_bl_gsm", "athp1_bl_gsm0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp1_bl_gsm(0)", "dataset": "athp1-fgm-l", "index1": "0", "is_public": "True", "name": "bx", "parameter": "athp1_bl_gsm", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:11:54Z", "xmlid": "athp1_bl_gsm(0)"}, "athp1_bl_gsm1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp1_bl_gsm(1)", "dataset": "athp1-fgm-l", "index1": "1", "is_public": "True", "name": "by", "parameter": "athp1_bl_gsm", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:11:54Z", "xmlid": "athp1_bl_gsm(1)"}, "athp1_bl_gsm2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp1_bl_gsm(2)", "dataset": "athp1-fgm-l", "index1": "2", "is_public": "True", "name": "bz", "parameter": "athp1_bl_gsm", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:11:54Z", "xmlid": "athp1_bl_gsm(2)"}, "dataset": "athp1-fgm-l", "description": "Magnetic Field", "display_type": "timeseries", "is_public": "True", "name": "b_gsm", "size": "3", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:11:54Z", "ucd": "phys.magField", "units": "nT", "xmlid": "athp1_bl_gsm"}, "athp1_bl_lse": {"__spz_name__": "b_lse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "athp1_bl_lse", "athp1_bl_lse0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp1_bl_lse(0)", "dataset": "athp1-fgm-l", "index1": "0", "is_public": "True", "name": "bx", "parameter": "athp1_bl_lse", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:11:54Z", "xmlid": "athp1_bl_lse(0)"}, "athp1_bl_lse1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp1_bl_lse(1)", "dataset": "athp1-fgm-l", "index1": "1", "is_public": "True", "name": "by", "parameter": "athp1_bl_lse", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:11:54Z", "xmlid": "athp1_bl_lse(1)"}, "athp1_bl_lse2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp1_bl_lse(2)", "dataset": "athp1-fgm-l", "index1": "2", "is_public": "True", "name": "bz", "parameter": "athp1_bl_lse", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:11:54Z", "xmlid": "athp1_bl_lse(2)"}, "dataset": "athp1-fgm-l", "description": "Magnetic Field", "is_public": "True", "name": "b_lse", "size": "3", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:11:54Z", "units": "nT", "xmlid": "athp1_bl_lse"}, "athp1_bl_tot": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "athp1_bl_tot", "dataset": "athp1-fgm-l", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:11:54Z", "ucd": "phys.magField", "units": "nT", "xmlid": "athp1_bl_tot"}, "att": "auto/athp1-fgm-l", "dataSource": "IRAP_THEMIS", "desc": "
Sampling: 0.25S
Provider: IRAP_THEMIS", "is_public": "True", "lastModificationDate": "2024-10-07T04:03:54Z", "lastUpdate": "2024-10-07T04:03:53Z", "measurement_type": "MagneticField", "name": "0.25 sec (low)", "processing_level": "Calibrated", "sampling": "0.25S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/ARTEMIS/P1/FGM/athp1-fgm-l", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-03T19:11:54Z", "target": "Earth.Magnetosphere", "xmlid": "athp1-fgm-l"}, "athp1_fgm_s": {"PriorID": "thb-fgm-s", "__spz_name__": "3 sec (spin)", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "athp1-fgm-s", "athp1_bs": {"__spz_name__": "b_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "athp1_bs", "athp1_bs0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp1_bs(0)", "dataset": "athp1-fgm-s", "index1": "0", "is_public": "True", "name": "bx", "parameter": "athp1_bs", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-04T00:06:50Z", "xmlid": "athp1_bs(0)"}, "athp1_bs1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp1_bs(1)", "dataset": "athp1-fgm-s", "index1": "1", "is_public": "True", "name": "by", "parameter": "athp1_bs", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-04T00:06:50Z", "xmlid": "athp1_bs(1)"}, "athp1_bs2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp1_bs(2)", "dataset": "athp1-fgm-s", "index1": "2", "is_public": "True", "name": "bz", "parameter": "athp1_bs", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-04T00:06:50Z", "xmlid": "athp1_bs(2)"}, "dataset": "athp1-fgm-s", "description": "Magnetic Field", "display_type": "timeseries", "is_public": "True", "name": "b_gse", "size": "3", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-04T00:06:50Z", "ucd": "phys.magField", "units": "nT", "xmlid": "athp1_bs"}, "athp1_bs_gsm": {"__spz_name__": "b_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "athp1_bs_gsm", "athp1_bs_gsm0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp1_bs_gsm(0)", "dataset": "athp1-fgm-s", "index1": "0", "is_public": "True", "name": "bx", "parameter": "athp1_bs_gsm", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-04T00:06:50Z", "xmlid": "athp1_bs_gsm(0)"}, "athp1_bs_gsm1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp1_bs_gsm(1)", "dataset": "athp1-fgm-s", "index1": "1", "is_public": "True", "name": "by", "parameter": "athp1_bs_gsm", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-04T00:06:50Z", "xmlid": "athp1_bs_gsm(1)"}, "athp1_bs_gsm2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp1_bs_gsm(2)", "dataset": "athp1-fgm-s", "index1": "2", "is_public": "True", "name": "bz", "parameter": "athp1_bs_gsm", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-04T00:06:50Z", "xmlid": "athp1_bs_gsm(2)"}, "dataset": "athp1-fgm-s", "description": "Magnetic Field", "display_type": "timeseries", "is_public": "True", "name": "b_gsm", "size": "3", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-04T00:06:50Z", "ucd": "phys.magField", "units": "nT", "xmlid": "athp1_bs_gsm"}, "athp1_bs_lse": {"__spz_name__": "b_lse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "athp1_bs_lse", "athp1_bs_lse0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp1_bs_lse(0)", "dataset": "athp1-fgm-s", "index1": "0", "is_public": "True", "name": "bx", "parameter": "athp1_bs_lse", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-04T00:06:50Z", "xmlid": "athp1_bs_lse(0)"}, "athp1_bs_lse1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp1_bs_lse(1)", "dataset": "athp1-fgm-s", "index1": "1", "is_public": "True", "name": "by", "parameter": "athp1_bs_lse", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-04T00:06:50Z", "xmlid": "athp1_bs_lse(1)"}, "athp1_bs_lse2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp1_bs_lse(2)", "dataset": "athp1-fgm-s", "index1": "2", "is_public": "True", "name": "bz", "parameter": "athp1_bs_lse", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-04T00:06:50Z", "xmlid": "athp1_bs_lse(2)"}, "dataset": "athp1-fgm-s", "description": "Magnetic Field", "display_type": "timeseries", "is_public": "True", "name": "b_lse", "size": "3", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-04T00:06:50Z", "ucd": "phys.magField", "units": "nT", "xmlid": "athp1_bs_lse"}, "athp1_bs_tot": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "athp1_bs_tot", "dataset": "athp1-fgm-s", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-04T00:06:50Z", "ucd": "phys.magField", "units": "nT", "xmlid": "athp1_bs_tot"}, "att": "auto/athp1-fgm-s", "dataSource": "IRAP_THEMIS", "desc": "
Sampling: 3S
Provider: IRAP_THEMIS", "is_public": "True", "lastModificationDate": "2024-10-07T04:03:55Z", "lastUpdate": "2024-10-07T04:03:55Z", "measurement_type": "MagneticField", "name": "3 sec (spin)", "processing_level": "Calibrated", "sampling": "3S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/ARTEMIS/P1/FGM/athp1-fgm-s", "start_date": "2011-06-29T00:00:00Z", "stop_date": "2024-10-04T00:06:50Z", "target": "Earth.Magnetosphere", "xmlid": "athp1-fgm-s"}, "att": "auto/ArtemisP1_fgm", "desc": "Tri-axial Fluxgate Magnetometer
Magnetometer", "is_public": "True", "name": "FGM", "xmlid": "ArtemisP1_fgm"}, "__spz_name__": "ARTEMIS-P1", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "ArtemisP1", "att": "auto/ArtemisP1", "desc": "ARTEMIS-P1
2007-02-15T00:00:00
Initial phase : apogee 15.4Re : 2007-02-15 - 2007-09-15
Orbit Placement Phase: 2007-09-15 - 2007-12-15
Full constellation phase: 1.3 x 30 Re : 2007-12-15 - 2009-09-30
ARTEMIS: Translunar Injection Phase: complex orbits, deep tail and solar wind : 2009-10-01 \u2013 2010-10-01
ARTEMIS: Lunar Lissajous: orbiting around lunar L1 and L2 Lagrangian points : 2010-10-01 \u2013 2011-04-01
ARTEMIS: Lunar Orbit Phase: Equatorial orbit; 100 km x 19,000 km altitude, 26 hours period, 500 km - 5 Re probe separation : 2011-07-01 \u2013 present", "is_public": "True", "name": "ARTEMIS-P1", "target": "Earth.Magnetosphere", "xmlid": "ArtemisP1"}, "ARTEMIS_P2": {"ESA": {"__spz_name__": "ESA", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "ArtemisP2_esa", "athp2_esa_l2e": {"PriorID": "thc-esa-l2e", "__spz_name__": "electron full mode", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "athp2-esa-l2e", "athp2_el_sp": {"__spz_name__": "el omni eflux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "athp2_el_sp", "dataset": "athp2-esa-l2e", "display_type": "spectrogram", "is_public": "True", "name": "el omni eflux", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-04T16:33:35Z", "ucd": "phys.flux;phys.energy;phys.electron", "units": "eV/cm\u00b2-s-sr-eV", "xmlid": "athp2_el_sp"}, "athp2_n_e": {"__spz_name__": "el density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "athp2_n_e", "dataset": "athp2-esa-l2e", "description": "Ion Density", "display_type": "timeseries", "is_public": "True", "name": "el density", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-04T16:33:35Z", "ucd": "phys.density;phys.electron", "units": "cm-3", "xmlid": "athp2_n_e"}, "athp2_t_e": {"__spz_name__": "e temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "athp2_t_e", "athp2_t_e0": {"__spz_name__": "t_perp1", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp2_t_e(0)", "dataset": "athp2-esa-l2e", "index1": "1", "is_public": "True", "name": "t_perp1", "parameter": "athp2_t_e", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-04T16:33:35Z", "xmlid": "athp2_t_e(0)"}, "athp2_t_e1": {"__spz_name__": "t_perp2", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp2_t_e(1)", "dataset": "athp2-esa-l2e", "index1": "2", "is_public": "True", "name": "t_perp2", "parameter": "athp2_t_e", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-04T16:33:35Z", "xmlid": "athp2_t_e(1)"}, "athp2_t_e2": {"__spz_name__": "t_para", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp2_t_e(2)", "dataset": "athp2-esa-l2e", "index1": "0", "is_public": "True", "name": "t_para", "parameter": "athp2_t_e", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-04T16:33:35Z", "xmlid": "athp2_t_e(2)"}, "dataset": "athp2-esa-l2e", "description": "Temperature", "display_type": "timeseries", "is_public": "True", "name": "e temperature", "size": "3", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-04T16:33:35Z", "ucd": "phys.temperature;phys.electron", "units": "eV", "xmlid": "athp2_t_e"}, "athp2_v_e": {"__spz_name__": "el v_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "athp2_v_e", "athp2_v_e0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp2_v_e(0)", "dataset": "athp2-esa-l2e", "index1": "0", "is_public": "True", "name": "vx", "parameter": "athp2_v_e", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-04T16:33:35Z", "xmlid": "athp2_v_e(0)"}, "athp2_v_e1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp2_v_e(1)", "dataset": "athp2-esa-l2e", "index1": "1", "is_public": "True", "name": "vy", "parameter": "athp2_v_e", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-04T16:33:35Z", "xmlid": "athp2_v_e(1)"}, "athp2_v_e2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp2_v_e(2)", "dataset": "athp2-esa-l2e", "index1": "2", "is_public": "True", "name": "vz", "parameter": "athp2_v_e", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-04T16:33:35Z", "xmlid": "athp2_v_e(2)"}, "dataset": "athp2-esa-l2e", "display_type": "timeseries", "is_public": "True", "name": "el v_gse", "size": "3", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-04T16:33:35Z", "ucd": "phys.veloc;phys.electron", "units": "km/s", "xmlid": "athp2_v_e"}, "athp2_v_e_lse": {"__spz_name__": "el v_lse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "athp2_v_e_lse", "athp2_v_e_lse0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp2_v_e_lse(0)", "dataset": "athp2-esa-l2e", "index1": "0", "is_public": "True", "name": "vx", "parameter": "athp2_v_e_lse", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-04T16:33:35Z", "xmlid": "athp2_v_e_lse(0)"}, "athp2_v_e_lse1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp2_v_e_lse(1)", "dataset": "athp2-esa-l2e", "index1": "1", "is_public": "True", "name": "vy", "parameter": "athp2_v_e_lse", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-04T16:33:35Z", "xmlid": "athp2_v_e_lse(1)"}, "athp2_v_e_lse2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp2_v_e_lse(2)", "dataset": "athp2-esa-l2e", "index1": "2", "is_public": "True", "name": "vz", "parameter": "athp2_v_e_lse", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-04T16:33:35Z", "xmlid": "athp2_v_e_lse(2)"}, "dataset": "athp2-esa-l2e", "display_type": "timeseries", "is_public": "True", "name": "el v_lse", "size": "3", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-04T16:33:35Z", "ucd": "phys.veloc;phys.electron", "units": "km/s", "xmlid": "athp2_v_e_lse"}, "att": "auto/athp2-esa-l2e", "dataSource": "IRAP_THEMIS", "desc": "
MinSampling: 96.27S; MaxSampling: 551.0S
Provider: IRAP_THEMIS", "is_public": "True", "lastModificationDate": "2024-10-07T04:00:30Z", "lastUpdate": "2024-10-07T04:00:29Z", "maxSampling": "551.0S", "measurement_type": "ThermalPlasma", "name": "electron full mode", "processing_level": "Calibrated", "sampling": "96.27S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/ARTEMIS/P2/ESA/athp2-esa-l2e", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-04T16:33:35Z", "target": "Earth.Magnetosphere", "xmlid": "athp2-esa-l2e"}, "athp2_esa_l2i": {"PriorID": "thc-esa-l2i", "__spz_name__": "ion full mode", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "athp2-esa-l2i", "athp2_ion_sp": {"__spz_name__": "ion eflux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "athp2_ion_sp", "dataset": "athp2-esa-l2i", "display_type": "spectrogram", "is_public": "True", "name": "ion eflux", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-04T16:33:27Z", "ucd": "phys.flux;phys.energy;phys.atmol.ionStage", "units": "eV/cm\u00b2-s-sr-eV", "xmlid": "athp2_ion_sp"}, "athp2_n_i": {"__spz_name__": "ion density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "athp2_n_i", "dataset": "athp2-esa-l2i", "description": "Ion Density", "display_type": "timeseries", "is_public": "True", "name": "ion density", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-04T16:33:27Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm-3", "xmlid": "athp2_n_i"}, "athp2_t_i": {"__spz_name__": "ion temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "athp2_t_i", "athp2_t_i0": {"__spz_name__": "t_perp1", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp2_t_i(0)", "dataset": "athp2-esa-l2i", "index1": "1", "is_public": "True", "name": "t_perp1", "parameter": "athp2_t_i", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-04T16:33:27Z", "xmlid": "athp2_t_i(0)"}, "athp2_t_i1": {"__spz_name__": "t_perp2", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp2_t_i(1)", "dataset": "athp2-esa-l2i", "index1": "2", "is_public": "True", "name": "t_perp2", "parameter": "athp2_t_i", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-04T16:33:27Z", "xmlid": "athp2_t_i(1)"}, "athp2_t_i2": {"__spz_name__": "t_para", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp2_t_i(2)", "dataset": "athp2-esa-l2i", "index1": "0", "is_public": "True", "name": "t_para", "parameter": "athp2_t_i", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-04T16:33:27Z", "xmlid": "athp2_t_i(2)"}, "dataset": "athp2-esa-l2i", "description": "Temperature", "display_type": "timeseries", "is_public": "True", "name": "ion temperature", "size": "3", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-04T16:33:27Z", "ucd": "phys.temperature;phys.atmol.ionStage", "units": "eV", "xmlid": "athp2_t_i"}, "athp2_v_i": {"__spz_name__": "ion v_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "athp2_v_i", "athp2_v_i0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp2_v_i(0)", "dataset": "athp2-esa-l2i", "index1": "0", "is_public": "True", "name": "vx", "parameter": "athp2_v_i", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-04T16:33:27Z", "xmlid": "athp2_v_i(0)"}, "athp2_v_i1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp2_v_i(1)", "dataset": "athp2-esa-l2i", "index1": "1", "is_public": "True", "name": "vy", "parameter": "athp2_v_i", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-04T16:33:27Z", "xmlid": "athp2_v_i(1)"}, "athp2_v_i2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp2_v_i(2)", "dataset": "athp2-esa-l2i", "index1": "2", "is_public": "True", "name": "vz", "parameter": "athp2_v_i", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-04T16:33:27Z", "xmlid": "athp2_v_i(2)"}, "dataset": "athp2-esa-l2i", "display_type": "timeseries", "is_public": "True", "name": "ion v_gse", "size": "3", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-04T16:33:27Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "athp2_v_i"}, "athp2_v_i_lse": {"__spz_name__": "ion v_lse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "athp2_v_i_lse", "athp2_v_i_lse0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp2_v_i_lse(0)", "dataset": "athp2-esa-l2i", "index1": "0", "is_public": "True", "name": "vx", "parameter": "athp2_v_i_lse", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-04T16:33:27Z", "xmlid": "athp2_v_i_lse(0)"}, "athp2_v_i_lse1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp2_v_i_lse(1)", "dataset": "athp2-esa-l2i", "index1": "1", "is_public": "True", "name": "vy", "parameter": "athp2_v_i_lse", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-04T16:33:27Z", "xmlid": "athp2_v_i_lse(1)"}, "athp2_v_i_lse2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp2_v_i_lse(2)", "dataset": "athp2-esa-l2i", "index1": "2", "is_public": "True", "name": "vz", "parameter": "athp2_v_i_lse", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-04T16:33:27Z", "xmlid": "athp2_v_i_lse(2)"}, "dataset": "athp2-esa-l2i", "display_type": "timeseries", "is_public": "True", "name": "ion v_lse", "size": "3", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-04T16:33:27Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "athp2_v_i_lse"}, "athp2_v_i_tot": {"__spz_name__": "ion |v|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "athp2_v_i_tot", "dataset": "athp2-esa-l2i", "description": "Module of Velocity", "display_type": "timeseries", "is_public": "True", "name": "ion |v|", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-04T16:33:27Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "athp2_v_i_tot"}, "att": "auto/athp2-esa-l2i", "dataSource": "IRAP_THEMIS", "desc": "
MinSampling: 96.27S; MaxSampling: 551.0S
Provider: IRAP_THEMIS", "is_public": "True", "lastModificationDate": "2024-10-07T04:00:30Z", "lastUpdate": "2024-10-07T04:00:29Z", "maxSampling": "551.0S", "measurement_type": "ThermalPlasma", "name": "ion full mode", "processing_level": "Calibrated", "sampling": "96.27S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/ARTEMIS/P2/ESA/athp2-esa-l2i", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-04T16:33:27Z", "target": "Earth.Magnetosphere", "xmlid": "athp2-esa-l2i"}, "athp2_peem_all": {"PriorID": "thc-peem-all", "__spz_name__": "electron onboard moments", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "athp2-peem-all", "athp2_n_peem": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "athp2_n_peem", "dataset": "athp2-peem-all", "description": "Electron Density", "display_type": "timeseries", "is_public": "True", "name": "density", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-04T16:34:49Z", "ucd": "phys.density;phys.electron", "units": "cm-3", "xmlid": "athp2_n_peem"}, "athp2_t_peem": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "athp2_t_peem", "athp2_t_peem0": {"__spz_name__": "t_perp1", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp2_t_peem(0)", "dataset": "athp2-peem-all", "index1": "1", "is_public": "True", "name": "t_perp1", "parameter": "athp2_t_peem", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-04T16:34:49Z", "xmlid": "athp2_t_peem(0)"}, "athp2_t_peem1": {"__spz_name__": "t_perp2", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp2_t_peem(1)", "dataset": "athp2-peem-all", "index1": "2", "is_public": "True", "name": "t_perp2", "parameter": "athp2_t_peem", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-04T16:34:49Z", "xmlid": "athp2_t_peem(1)"}, "athp2_t_peem2": {"__spz_name__": "t_para", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp2_t_peem(2)", "dataset": "athp2-peem-all", "index1": "0", "is_public": "True", "name": "t_para", "parameter": "athp2_t_peem", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-04T16:34:49Z", "xmlid": "athp2_t_peem(2)"}, "dataset": "athp2-peem-all", "description": "Temperature", "display_type": "timeseries", "is_public": "True", "name": "temperature", "size": "3", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-04T16:34:49Z", "ucd": "phys.temperature;phys.electron", "units": "eV", "xmlid": "athp2_t_peem"}, "att": "auto/athp2-peem-all", "dataSource": "IRAP_THEMIS", "desc": "
Sampling: 3S
Provider: IRAP_THEMIS", "is_public": "True", "lastModificationDate": "2024-10-07T04:01:40Z", "lastUpdate": "2024-10-07T04:01:39Z", "measurement_type": "ThermalPlasma", "name": "electron onboard moments", "processing_level": "Calibrated", "sampling": "3S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/ARTEMIS/P2/ESA/athp2-peem-all", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-04T16:34:49Z", "target": "Earth.Magnetosphere", "xmlid": "athp2-peem-all"}, "athp2_peim_all": {"PriorID": "thc-peim-all", "__spz_name__": "ion onboard moments", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "athp2-peim-all", "athp2_n_peim": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "athp2_n_peim", "dataset": "athp2-peim-all", "description": "Ion Density", "display_type": "timeseries", "is_public": "True", "name": "density", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-04T16:34:49Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm-3", "xmlid": "athp2_n_peim"}, "athp2_t_peim": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "athp2_t_peim", "athp2_t_peim0": {"__spz_name__": "t_perp1", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp2_t_peim(0)", "dataset": "athp2-peim-all", "index1": "1", "is_public": "True", "name": "t_perp1", "parameter": "athp2_t_peim", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-04T16:34:49Z", "xmlid": "athp2_t_peim(0)"}, "athp2_t_peim1": {"__spz_name__": "t_perp2", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp2_t_peim(1)", "dataset": "athp2-peim-all", "index1": "2", "is_public": "True", "name": "t_perp2", "parameter": "athp2_t_peim", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-04T16:34:49Z", "xmlid": "athp2_t_peim(1)"}, "athp2_t_peim2": {"__spz_name__": "t_para", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp2_t_peim(2)", "dataset": "athp2-peim-all", "index1": "0", "is_public": "True", "name": "t_para", "parameter": "athp2_t_peim", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-04T16:34:49Z", "xmlid": "athp2_t_peim(2)"}, "dataset": "athp2-peim-all", "description": "Temperature", "display_type": "timeseries", "is_public": "True", "name": "temperature", "size": "3", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-04T16:34:49Z", "ucd": "phys.temperature;phys.atmol.ionStage", "units": "eV", "xmlid": "athp2_t_peim"}, "athp2_v_peim": {"__spz_name__": "v_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "athp2_v_peim", "athp2_v_peim0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp2_v_peim(0)", "dataset": "athp2-peim-all", "index1": "0", "is_public": "True", "name": "vx", "parameter": "athp2_v_peim", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-04T16:34:49Z", "xmlid": "athp2_v_peim(0)"}, "athp2_v_peim1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp2_v_peim(1)", "dataset": "athp2-peim-all", "index1": "1", "is_public": "True", "name": "vy", "parameter": "athp2_v_peim", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-04T16:34:49Z", "xmlid": "athp2_v_peim(1)"}, "athp2_v_peim2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp2_v_peim(2)", "dataset": "athp2-peim-all", "index1": "2", "is_public": "True", "name": "vz", "parameter": "athp2_v_peim", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-04T16:34:49Z", "xmlid": "athp2_v_peim(2)"}, "dataset": "athp2-peim-all", "display_type": "timeseries", "is_public": "True", "name": "v_gse", "size": "3", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-04T16:34:49Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "athp2_v_peim"}, "athp2_v_peim_lse": {"__spz_name__": "v_lse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "athp2_v_peim_lse", "athp2_v_peim_lse0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp2_v_peim_lse(0)", "dataset": "athp2-peim-all", "index1": "0", "is_public": "True", "name": "vx", "parameter": "athp2_v_peim_lse", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-04T16:34:49Z", "xmlid": "athp2_v_peim_lse(0)"}, "athp2_v_peim_lse1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp2_v_peim_lse(1)", "dataset": "athp2-peim-all", "index1": "1", "is_public": "True", "name": "vy", "parameter": "athp2_v_peim_lse", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-04T16:34:49Z", "xmlid": "athp2_v_peim_lse(1)"}, "athp2_v_peim_lse2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp2_v_peim_lse(2)", "dataset": "athp2-peim-all", "index1": "2", "is_public": "True", "name": "vz", "parameter": "athp2_v_peim_lse", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-04T16:34:49Z", "xmlid": "athp2_v_peim_lse(2)"}, "dataset": "athp2-peim-all", "display_type": "timeseries", "is_public": "True", "name": "v_lse", "size": "3", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-04T16:34:49Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "athp2_v_peim_lse"}, "athp2_v_peim_tot": {"__spz_name__": "|v|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "athp2_v_peim_tot", "dataset": "athp2-peim-all", "description": "Module of Velocity", "display_type": "timeseries", "is_public": "True", "name": "|v|", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-04T16:34:49Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "athp2_v_peim_tot"}, "att": "auto/athp2-peim-all", "dataSource": "IRAP_THEMIS", "desc": "
Sampling: 3S
Provider: IRAP_THEMIS", "is_public": "True", "lastModificationDate": "2024-10-07T04:01:40Z", "lastUpdate": "2024-10-07T04:01:39Z", "measurement_type": "ThermalPlasma", "name": "ion onboard moments", "processing_level": "Calibrated", "sampling": "3S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/ARTEMIS/P2/ESA/athp2-peim-all", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-04T16:34:49Z", "target": "Earth.Magnetosphere", "xmlid": "athp2-peim-all"}, "att": "auto/ArtemisP2_esa", "desc": "ElectrostaticAnalyser", "is_public": "True", "name": "ESA", "xmlid": "ArtemisP2_esa"}, "Ephemeris": {"__spz_name__": "Ephemeris", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "ArtemisP2_ephemeris", "athp2_orb_all": {"PriorID": "thc-orb-all", "__spz_name__": "orbit", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "athp2-orb-all", "athp2_lat": {"__spz_name__": "latitude HEE", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "athp2_lat", "dataset": "athp2-orb-all", "display_type": "timeseries", "is_public": "True", "name": "latitude HEE", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-06T23:59:00Z", "ucd": "pos.distance", "units": "deg", "xmlid": "athp2_lat"}, "athp2_lon": {"__spz_name__": "longitude HEE", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "athp2_lon", "dataset": "athp2-orb-all", "display_type": "timeseries", "is_public": "True", "name": "longitude HEE", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-06T23:59:00Z", "ucd": "pos.distance", "units": "deg", "xmlid": "athp2_lon"}, "athp2_r": {"__spz_name__": "distance athp2-moon", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "athp2_r", "dataset": "athp2-orb-all", "display_type": "timeseries", "is_public": "True", "name": "distance athp2-moon", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-06T23:59:00Z", "ucd": "pos.distance", "units": "km", "xmlid": "athp2_r"}, "athp2_rsun": {"__spz_name__": "distance athp2-sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "athp2_rsun", "dataset": "athp2-orb-all", "display_type": "timeseries", "is_public": "True", "name": "distance athp2-sun", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-06T23:59:00Z", "ucd": "pos.distance", "units": "AU", "xmlid": "athp2_rsun"}, "athp2_xyz_gse": {"__spz_name__": "xyz_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "athp2_xyz_gse", "athp2_xyz_gse0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp2_xyz_gse(0)", "dataset": "athp2-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "athp2_xyz_gse", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-06T23:59:00Z", "xmlid": "athp2_xyz_gse(0)"}, "athp2_xyz_gse1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp2_xyz_gse(1)", "dataset": "athp2-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "athp2_xyz_gse", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-06T23:59:00Z", "xmlid": "athp2_xyz_gse(1)"}, "athp2_xyz_gse2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp2_xyz_gse(2)", "dataset": "athp2-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "athp2_xyz_gse", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-06T23:59:00Z", "xmlid": "athp2_xyz_gse(2)"}, "dataset": "athp2-orb-all", "description": "position in GSE coordinates", "display_type": "timeseries", "is_public": "True", "name": "xyz_gse", "size": "3", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-06T23:59:00Z", "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "Re", "xmlid": "athp2_xyz_gse"}, "athp2_xyz_gsm": {"__spz_name__": "xyz_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "athp2_xyz_gsm", "athp2_xyz_gsm0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp2_xyz_gsm(0)", "dataset": "athp2-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "athp2_xyz_gsm", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-06T23:59:00Z", "xmlid": "athp2_xyz_gsm(0)"}, "athp2_xyz_gsm1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp2_xyz_gsm(1)", "dataset": "athp2-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "athp2_xyz_gsm", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-06T23:59:00Z", "xmlid": "athp2_xyz_gsm(1)"}, "athp2_xyz_gsm2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp2_xyz_gsm(2)", "dataset": "athp2-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "athp2_xyz_gsm", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-06T23:59:00Z", "xmlid": "athp2_xyz_gsm(2)"}, "dataset": "athp2-orb-all", "description": "position in GSM coordinates", "display_type": "timeseries", "is_public": "True", "name": "xyz_gsm", "size": "3", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-06T23:59:00Z", "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "Re", "xmlid": "athp2_xyz_gsm"}, "athp2_xyz_hee": {"__spz_name__": "xyz_hee", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "athp2_xyz_hee", "athp2_xyz_hee0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp2_xyz_hee(0)", "dataset": "athp2-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "athp2_xyz_hee", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-06T23:59:00Z", "xmlid": "athp2_xyz_hee(0)"}, "athp2_xyz_hee1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp2_xyz_hee(1)", "dataset": "athp2-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "athp2_xyz_hee", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-06T23:59:00Z", "xmlid": "athp2_xyz_hee(1)"}, "athp2_xyz_hee2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp2_xyz_hee(2)", "dataset": "athp2-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "athp2_xyz_hee", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-06T23:59:00Z", "xmlid": "athp2_xyz_hee(2)"}, "dataset": "athp2-orb-all", "description": "position in HEE coordinates", "display_type": "timeseries", "is_public": "True", "name": "xyz_hee", "size": "3", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-06T23:59:00Z", "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "AU", "xmlid": "athp2_xyz_hee"}, "athp2_xyz_lse": {"__spz_name__": "xyz_lse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "athp2_xyz_lse", "athp2_xyz_lse0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp2_xyz_lse(0)", "dataset": "athp2-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "athp2_xyz_lse", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-06T23:59:00Z", "xmlid": "athp2_xyz_lse(0)"}, "athp2_xyz_lse1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp2_xyz_lse(1)", "dataset": "athp2-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "athp2_xyz_lse", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-06T23:59:00Z", "xmlid": "athp2_xyz_lse(1)"}, "athp2_xyz_lse2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp2_xyz_lse(2)", "dataset": "athp2-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "athp2_xyz_lse", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-06T23:59:00Z", "xmlid": "athp2_xyz_lse(2)"}, "dataset": "athp2-orb-all", "description": "position in LSE coordinates", "display_type": "timeseries", "is_public": "True", "name": "xyz_lse", "size": "3", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-06T23:59:00Z", "ucd": "pos.ephem;instr.obsty", "units": "Rmo", "xmlid": "athp2_xyz_lse"}, "att": "auto/athp2-orb-all", "dataSource": "IRAP_THEMIS", "desc": "
Sampling: 60S
Provider: IRAP_THEMIS", "is_public": "True", "lastModificationDate": "2024-10-07T04:02:33Z", "lastUpdate": "2024-10-07T04:02:33Z", "measurement_type": "Ephemeris", "name": "orbit", "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/ARTEMIS/P2/Ephemeris/athp2-orb-all", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-06T23:59:00Z", "target": "Earth.Magnetosphere", "xmlid": "athp2-orb-all"}, "att": "auto/ArtemisP2_ephemeris", "desc": "", "is_public": "True", "name": "Ephemeris", "xmlid": "ArtemisP2_ephemeris"}, "FGM": {"__spz_name__": "FGM", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "ArtemisP2_fgm", "athp2_fgm_l": {"PriorID": "thc-fgm-l", "__spz_name__": "0.25 sec (low)", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "athp2-fgm-l", "athp2_bl": {"__spz_name__": "b_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "athp2_bl", "athp2_bl0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp2_bl(0)", "dataset": "athp2-fgm-l", "index1": "0", "is_public": "True", "name": "bx", "parameter": "athp2_bl", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-02T21:15:59Z", "xmlid": "athp2_bl(0)"}, "athp2_bl1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp2_bl(1)", "dataset": "athp2-fgm-l", "index1": "1", "is_public": "True", "name": "by", "parameter": "athp2_bl", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-02T21:15:59Z", "xmlid": "athp2_bl(1)"}, "athp2_bl2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp2_bl(2)", "dataset": "athp2-fgm-l", "index1": "2", "is_public": "True", "name": "bz", "parameter": "athp2_bl", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-02T21:15:59Z", "xmlid": "athp2_bl(2)"}, "dataset": "athp2-fgm-l", "description": "Magnetic Field", "display_type": "timeseries", "is_public": "True", "name": "b_gse", "size": "3", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-02T21:15:59Z", "ucd": "phys.magField", "units": "nT", "xmlid": "athp2_bl"}, "athp2_bl_gsm": {"__spz_name__": "b_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "athp2_bl_gsm", "athp2_bl_gsm0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp2_bl_gsm(0)", "dataset": "athp2-fgm-l", "index1": "0", "is_public": "True", "name": "bx", "parameter": "athp2_bl_gsm", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-02T21:15:59Z", "xmlid": "athp2_bl_gsm(0)"}, "athp2_bl_gsm1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp2_bl_gsm(1)", "dataset": "athp2-fgm-l", "index1": "1", "is_public": "True", "name": "by", "parameter": "athp2_bl_gsm", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-02T21:15:59Z", "xmlid": "athp2_bl_gsm(1)"}, "athp2_bl_gsm2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp2_bl_gsm(2)", "dataset": "athp2-fgm-l", "index1": "2", "is_public": "True", "name": "bz", "parameter": "athp2_bl_gsm", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-02T21:15:59Z", "xmlid": "athp2_bl_gsm(2)"}, "dataset": "athp2-fgm-l", "description": "Magnetic Field", "display_type": "timeseries", "is_public": "True", "name": "b_gsm", "size": "3", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-02T21:15:59Z", "ucd": "phys.magField", "units": "nT", "xmlid": "athp2_bl_gsm"}, "athp2_bl_lse": {"__spz_name__": "b_lse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "athp2_bl_lse", "athp2_bl_lse0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp2_bl_lse(0)", "dataset": "athp2-fgm-l", "index1": "0", "is_public": "True", "name": "bx", "parameter": "athp2_bl_lse", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-02T21:15:59Z", "xmlid": "athp2_bl_lse(0)"}, "athp2_bl_lse1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp2_bl_lse(1)", "dataset": "athp2-fgm-l", "index1": "1", "is_public": "True", "name": "by", "parameter": "athp2_bl_lse", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-02T21:15:59Z", "xmlid": "athp2_bl_lse(1)"}, "athp2_bl_lse2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp2_bl_lse(2)", "dataset": "athp2-fgm-l", "index1": "2", "is_public": "True", "name": "bz", "parameter": "athp2_bl_lse", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-02T21:15:59Z", "xmlid": "athp2_bl_lse(2)"}, "dataset": "athp2-fgm-l", "description": "Magnetic Field", "display_type": "timeseries", "is_public": "True", "name": "b_lse", "size": "3", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-02T21:15:59Z", "ucd": "phys.magField", "units": "nT", "xmlid": "athp2_bl_lse"}, "athp2_bl_tot": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "athp2_bl_tot", "dataset": "athp2-fgm-l", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-02T21:15:59Z", "ucd": "phys.magField", "units": "nT", "xmlid": "athp2_bl_tot"}, "att": "auto/athp2-fgm-l", "dataSource": "", "desc": "
Sampling: 0.25S", "is_public": "True", "lastModificationDate": "2024-10-07T04:04:07Z", "lastUpdate": "2024-10-07T04:04:06Z", "measurement_type": "MagneticField", "name": "0.25 sec (low)", "processing_level": "Calibrated", "sampling": "0.25S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/ARTEMIS/P2/FGM/athp2-fgm-l", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-02T21:15:59Z", "target": "Earth.Magnetosphere", "xmlid": "athp2-fgm-l"}, "athp2_fgm_s": {"PriorID": "thc-fgm-s", "__spz_name__": "3 sec (spin)", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "athp2-fgm-s", "athp2_bs": {"__spz_name__": "b_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "athp2_bs", "athp2_bs0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp2_bs(0)", "dataset": "athp2-fgm-s", "index1": "0", "is_public": "True", "name": "bx", "parameter": "athp2_bs", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-03T00:00:47Z", "xmlid": "athp2_bs(0)"}, "athp2_bs1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp2_bs(1)", "dataset": "athp2-fgm-s", "index1": "1", "is_public": "True", "name": "by", "parameter": "athp2_bs", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-03T00:00:47Z", "xmlid": "athp2_bs(1)"}, "athp2_bs2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp2_bs(2)", "dataset": "athp2-fgm-s", "index1": "2", "is_public": "True", "name": "bz", "parameter": "athp2_bs", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-03T00:00:47Z", "xmlid": "athp2_bs(2)"}, "dataset": "athp2-fgm-s", "description": "Magnetic Field", "display_type": "timeseries", "is_public": "True", "name": "b_gse", "size": "3", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-03T00:00:47Z", "ucd": "phys.magField", "units": "nT", "xmlid": "athp2_bs"}, "athp2_bs_gsm": {"__spz_name__": "b_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "athp2_bs_gsm", "athp2_bs_gsm0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp2_bs_gsm(0)", "dataset": "athp2-fgm-s", "index1": "0", "is_public": "True", "name": "bx", "parameter": "athp2_bs_gsm", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-03T00:00:47Z", "xmlid": "athp2_bs_gsm(0)"}, "athp2_bs_gsm1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp2_bs_gsm(1)", "dataset": "athp2-fgm-s", "index1": "1", "is_public": "True", "name": "by", "parameter": "athp2_bs_gsm", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-03T00:00:47Z", "xmlid": "athp2_bs_gsm(1)"}, "athp2_bs_gsm2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp2_bs_gsm(2)", "dataset": "athp2-fgm-s", "index1": "2", "is_public": "True", "name": "bz", "parameter": "athp2_bs_gsm", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-03T00:00:47Z", "xmlid": "athp2_bs_gsm(2)"}, "dataset": "athp2-fgm-s", "description": "Magnetic Field", "display_type": "timeseries", "is_public": "True", "name": "b_gsm", "size": "3", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-03T00:00:47Z", "ucd": "phys.magField", "units": "nT", "xmlid": "athp2_bs_gsm"}, "athp2_bs_lse": {"__spz_name__": "b_lse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "athp2_bs_lse", "athp2_bs_lse0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp2_bs_lse(0)", "dataset": "athp2-fgm-s", "index1": "0", "is_public": "True", "name": "bx", "parameter": "athp2_bs_lse", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-03T00:00:47Z", "xmlid": "athp2_bs_lse(0)"}, "athp2_bs_lse1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp2_bs_lse(1)", "dataset": "athp2-fgm-s", "index1": "1", "is_public": "True", "name": "by", "parameter": "athp2_bs_lse", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-03T00:00:47Z", "xmlid": "athp2_bs_lse(1)"}, "athp2_bs_lse2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "athp2_bs_lse(2)", "dataset": "athp2-fgm-s", "index1": "2", "is_public": "True", "name": "bz", "parameter": "athp2_bs_lse", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-03T00:00:47Z", "xmlid": "athp2_bs_lse(2)"}, "dataset": "athp2-fgm-s", "description": "Magnetic Field (LSE)", "display_type": "timeseries", "is_public": "True", "name": "b_lse", "size": "3", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-03T00:00:47Z", "ucd": "phys.magField", "units": "nT", "xmlid": "athp2_bs_lse"}, "athp2_bs_tot": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "athp2_bs_tot", "dataset": "athp2-fgm-s", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-03T00:00:47Z", "ucd": "phys.magField", "units": "nT", "xmlid": "athp2_bs_tot"}, "att": "auto/athp2-fgm-s", "dataSource": "", "desc": "
Sampling: 4S", "is_public": "True", "lastModificationDate": "2024-10-07T04:04:09Z", "lastUpdate": "2024-10-07T04:04:09Z", "measurement_type": "MagneticField", "name": "3 sec (spin)", "processing_level": "Calibrated", "sampling": "4S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/ARTEMIS/P2/FGM/athp2-fgm-s", "start_date": "2011-07-17T00:00:00Z", "stop_date": "2024-10-03T00:00:47Z", "target": "Earth.Magnetosphere", "xmlid": "athp2-fgm-s"}, "att": "auto/ArtemisP2_fgm", "desc": "Tri-axial Fluxgate Magnetometer
Magnetometer", "is_public": "True", "name": "FGM", "xmlid": "ArtemisP2_fgm"}, "__spz_name__": "ARTEMIS-P2", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "ArtemisP2", "att": "auto/ArtemisP2", "desc": "ARTEMIS-P2
2007-02-15T00:00:00
Initial phase : apogee 15.4Re : 2007-02-15 - 2007-09-15
Orbit Placement Phase: 2007-09-15 - 2007-12-15
Full constellation phase: 1.2 x 20 Re : 2007-12-15 - 2009-09-30
ARTEMIS: Translunar Injection Phase: complex orbits, deep tail and solar wind : 2009-10-01 \u2013 2010-10-01
ARTEMIS: Lunar Lissajous: orbiting around lunar L1 and L2 Lagrangian points : 2010-10-01 \u2013 2011-04-01
ARTEMIS: Lunar Orbit Phase: Equatorial orbit; 100 km x 19,000 km altitude, 26 hours period, 500 km - 5 Re probe separation : 2011-07-01 \u2013 present", "is_public": "True", "name": "ARTEMIS-P2", "target": "Earth.Magnetosphere", "xmlid": "ArtemisP2"}, "__spz_name__": "ARTEMIS", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Artemis", "att": "auto/Artemis", "desc": "Acceleration, Reconnection, Turbulence, and Electrodynamics of the Moon\u2019s Interaction with the Sun
2010-02-17T00:00:00", "is_public": "True", "name": "ARTEMIS", "rank": "6", "target": "Earth.Magnetosphere", "xmlid": "Artemis"}, "Astronomical_Objects_Ephemerides": {"Comets": {"__spz_name__": "Comets", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Ephemerides_comets", "att": "auto/Ephemerides_comets", "desc": "", "is_public": "True", "name": "Comets", "p67_orb_all": {"__spz_name__": "Comet Churyumov-Gerasimenko (C-G; P67)", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "p67-orb-all", "att": "auto/p67-orb-all", "dataSource": "", "desc": "
Sampling: 60M", "is_public": "True", "lastModificationDate": "2017-10-05T15:35:07Z", "lastUpdate": "2017-10-05T15:34:39Z", "measurement_type": "Ephemeris", "name": "Comet Churyumov-Gerasimenko (C-G; P67)", "p67_sol_lat": {"__spz_name__": "latitude IAU_sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "p67_sol_lat", "dataset": "p67-orb-all", "is_public": "True", "name": "latitude IAU_sun", "start_date": "2010-07-01T00:00:05Z", "stop_date": "2016-12-31T23:00:04Z", "units": "radian", "xmlid": "p67_sol_lat"}, "p67_sol_lon": {"__spz_name__": "longitude IAU_sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "p67_sol_lon", "dataset": "p67-orb-all", "is_public": "True", "name": "longitude IAU_sun", "start_date": "2010-07-01T00:00:05Z", "stop_date": "2016-12-31T23:00:04Z", "units": "radian", "xmlid": "p67_sol_lon"}, "processing_level": "Calibrated", "r_p67": {"__spz_name__": "distance C-G-sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "r_p67", "dataset": "p67-orb-all", "is_public": "True", "name": "distance C-G-sun", "start_date": "2010-07-01T00:00:05Z", "stop_date": "2016-12-31T23:00:04Z", "units": "AU", "xmlid": "r_p67"}, "rank": "94", "sampling": "60M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Ephemerides/p67-orb-all", "start_date": "2010-07-01T00:00:05Z", "stop_date": "2016-12-31T23:00:04Z", "target": "Comet", "xmlid": "p67-orb-all", "xyz_p67_hci": {"__spz_name__": "xyz_hci", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "xyz_p67_hci", "dataset": "p67-orb-all", "is_public": "True", "name": "xyz_hci", "size": "3", "start_date": "2010-07-01T00:00:05Z", "stop_date": "2016-12-31T23:00:04Z", "units": "AU", "xmlid": "xyz_p67_hci", "xyz_p67_hci0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_p67_hci(0)", "dataset": "p67-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "xyz_p67_hci", "start_date": "2010-07-01T00:00:05Z", "stop_date": "2016-12-31T23:00:04Z", "xmlid": "xyz_p67_hci(0)"}, "xyz_p67_hci1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_p67_hci(1)", "dataset": "p67-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "xyz_p67_hci", "start_date": "2010-07-01T00:00:05Z", "stop_date": "2016-12-31T23:00:04Z", "xmlid": "xyz_p67_hci(1)"}, "xyz_p67_hci2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_p67_hci(2)", "dataset": "p67-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "xyz_p67_hci", "start_date": "2010-07-01T00:00:05Z", "stop_date": "2016-12-31T23:00:04Z", "xmlid": "xyz_p67_hci(2)"}}, "xyz_p67_hee": {"__spz_name__": "xyz_hee", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "xyz_p67_hee", "dataset": "p67-orb-all", "is_public": "True", "name": "xyz_hee", "size": "3", "start_date": "2010-07-01T00:00:05Z", "stop_date": "2016-12-31T23:00:04Z", "units": "AU", "xmlid": "xyz_p67_hee", "xyz_p67_hee0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_p67_hee(0)", "dataset": "p67-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "xyz_p67_hee", "start_date": "2010-07-01T00:00:05Z", "stop_date": "2016-12-31T23:00:04Z", "xmlid": "xyz_p67_hee(0)"}, "xyz_p67_hee1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_p67_hee(1)", "dataset": "p67-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "xyz_p67_hee", "start_date": "2010-07-01T00:00:05Z", "stop_date": "2016-12-31T23:00:04Z", "xmlid": "xyz_p67_hee(1)"}, "xyz_p67_hee2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_p67_hee(2)", "dataset": "p67-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "xyz_p67_hee", "start_date": "2010-07-01T00:00:05Z", "stop_date": "2016-12-31T23:00:04Z", "xmlid": "xyz_p67_hee(2)"}}}, "xmlid": "Ephemerides_comets"}, "Planets_and_Moons": {"Jupiter_Moons": {"__spz_name__": "Jupiter Moons", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "jup-moons-orb", "amalthea_orb_all": {"__spz_name__": "Amalthea", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "amalthea-orb-all", "amal_jup_jsm": {"__spz_name__": "xyz_jsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "amal_jup_jsm", "amal_jup_jsm0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "amal_jup_jsm(0)", "dataset": "amalthea-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "amal_jup_jsm", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-01-14T23:20:04Z", "xmlid": "amal_jup_jsm(0)"}, "amal_jup_jsm1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "amal_jup_jsm(1)", "dataset": "amalthea-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "amal_jup_jsm", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-01-14T23:20:04Z", "xmlid": "amal_jup_jsm(1)"}, "amal_jup_jsm2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "amal_jup_jsm(2)", "dataset": "amalthea-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "amal_jup_jsm", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-01-14T23:20:04Z", "xmlid": "amal_jup_jsm(2)"}, "dataset": "amalthea-orb-all", "display_type": "timeseries", "is_public": "True", "name": "xyz_jsm", "size": "3", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-01-14T23:20:04Z", "units": "Rj", "xmlid": "amal_jup_jsm"}, "amal_jup_jso": {"__spz_name__": "xyz_jso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "amal_jup_jso", "amal_jup_jso0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "amal_jup_jso(0)", "dataset": "amalthea-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "amal_jup_jso", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-01-14T23:20:04Z", "xmlid": "amal_jup_jso(0)"}, "amal_jup_jso1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "amal_jup_jso(1)", "dataset": "amalthea-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "amal_jup_jso", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-01-14T23:20:04Z", "xmlid": "amal_jup_jso(1)"}, "amal_jup_jso2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "amal_jup_jso(2)", "dataset": "amalthea-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "amal_jup_jso", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-01-14T23:20:04Z", "xmlid": "amal_jup_jso(2)"}, "dataset": "amalthea-orb-all", "display_type": "timeseries", "is_public": "True", "name": "xyz_jso", "size": "3", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-01-14T23:20:04Z", "units": "Rj", "xmlid": "amal_jup_jso"}, "amal_jup_lat": {"__spz_name__": "latitude IAU_jupiter", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "amal_jup_lat", "dataset": "amalthea-orb-all", "is_public": "True", "name": "latitude IAU_jupiter", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-01-14T23:20:04Z", "units": "deg", "xmlid": "amal_jup_lat"}, "amal_jup_lon": {"__spz_name__": "longitude IAU_jupiter", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "amal_jup_lon", "dataset": "amalthea-orb-all", "is_public": "True", "name": "longitude IAU_jupiter", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-01-14T23:20:04Z", "units": "deg", "xmlid": "amal_jup_lon"}, "amal_jup_mlat": {"__spz_name__": "mlat", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "amal_jup_mlat", "dataset": "amalthea-orb-all", "description": "mlat=10.31\u00b0xcos(196.61\u00b0-lon_iau_west)+lat_iau", "is_public": "True", "name": "mlat", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-01-14T23:20:04Z", "units": "deg", "xmlid": "amal_jup_mlat"}, "amal_jup_r": {"__spz_name__": "distance amalthea-jupiter", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "amal_jup_r", "dataset": "amalthea-orb-all", "display_type": "timeseries", "is_public": "True", "name": "distance amalthea-jupiter", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-01-14T23:20:04Z", "units": "Rj", "xmlid": "amal_jup_r"}, "amal_jup_xyz": {"__spz_name__": "xyz_IAU_jupiter", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "amal_jup_xyz", "amal_jup_xyz0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "amal_jup_xyz(0)", "dataset": "amalthea-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "amal_jup_xyz", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-01-14T23:20:04Z", "xmlid": "amal_jup_xyz(0)"}, "amal_jup_xyz1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "amal_jup_xyz(1)", "dataset": "amalthea-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "amal_jup_xyz", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-01-14T23:20:04Z", "xmlid": "amal_jup_xyz(1)"}, "amal_jup_xyz2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "amal_jup_xyz(2)", "dataset": "amalthea-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "amal_jup_xyz", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-01-14T23:20:04Z", "xmlid": "amal_jup_xyz(2)"}, "dataset": "amalthea-orb-all", "display_type": "timeseries", "is_public": "True", "name": "xyz_IAU_jupiter", "size": "3", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-01-14T23:20:04Z", "units": "Rj", "xmlid": "amal_jup_xyz"}, "att": "auto/amalthea-orb-all", "dataSource": "SPICE", "desc": "
Sampling: 20M
Provider: SPICE", "is_public": "True", "lastModificationDate": "2020-03-20T19:54:23Z", "lastUpdate": "2020-03-12T15:59:35Z", "measurement_type": "Ephemeris", "name": "Amalthea", "processing_level": "Calibrated", "sampling": "20M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Ephemerides/amalthea-orb-all", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-01-14T23:20:04Z", "target": "Jupiter", "xmlid": "amalthea-orb-all"}, "callisto_orb_all": {"__spz_name__": "Callisto", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "callisto-orb-all", "att": "auto/callisto-orb-all", "cal_jup_jsm": {"__spz_name__": "xyz_jsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cal_jup_jsm", "cal_jup_jsm0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cal_jup_jsm(0)", "dataset": "callisto-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "cal_jup_jsm", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-12-31T23:40:04Z", "xmlid": "cal_jup_jsm(0)"}, "cal_jup_jsm1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cal_jup_jsm(1)", "dataset": "callisto-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "cal_jup_jsm", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-12-31T23:40:04Z", "xmlid": "cal_jup_jsm(1)"}, "cal_jup_jsm2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cal_jup_jsm(2)", "dataset": "callisto-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "cal_jup_jsm", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-12-31T23:40:04Z", "xmlid": "cal_jup_jsm(2)"}, "dataset": "callisto-orb-all", "display_type": "timeseries", "is_public": "True", "name": "xyz_jsm", "size": "3", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-12-31T23:40:04Z", "units": "Rj", "xmlid": "cal_jup_jsm"}, "cal_jup_jso": {"__spz_name__": "xyz_jso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cal_jup_jso", "cal_jup_jso0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cal_jup_jso(0)", "dataset": "callisto-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "cal_jup_jso", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-12-31T23:40:04Z", "xmlid": "cal_jup_jso(0)"}, "cal_jup_jso1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cal_jup_jso(1)", "dataset": "callisto-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "cal_jup_jso", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-12-31T23:40:04Z", "xmlid": "cal_jup_jso(1)"}, "cal_jup_jso2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cal_jup_jso(2)", "dataset": "callisto-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "cal_jup_jso", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-12-31T23:40:04Z", "xmlid": "cal_jup_jso(2)"}, "dataset": "callisto-orb-all", "display_type": "timeseries", "is_public": "True", "name": "xyz_jso", "size": "3", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-12-31T23:40:04Z", "units": "Rj", "xmlid": "cal_jup_jso"}, "cal_jup_lat": {"__spz_name__": "latitude IAU_jupiter", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cal_jup_lat", "dataset": "callisto-orb-all", "is_public": "True", "name": "latitude IAU_jupiter", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-12-31T23:40:04Z", "units": "deg", "xmlid": "cal_jup_lat"}, "cal_jup_lon": {"__spz_name__": "longitude IAU_jupiter", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cal_jup_lon", "dataset": "callisto-orb-all", "is_public": "True", "name": "longitude IAU_jupiter", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-12-31T23:40:04Z", "units": "deg", "xmlid": "cal_jup_lon"}, "cal_jup_mlat": {"__spz_name__": "mlat", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cal_jup_mlat", "dataset": "callisto-orb-all", "description": "mlat=10.31\u00b0xcos(196.61\u00b0-lon_iau_west)+lat_iau", "is_public": "True", "name": "mlat", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-12-31T23:40:04Z", "units": "deg", "xmlid": "cal_jup_mlat"}, "cal_jup_r": {"__spz_name__": "distance callisto-jupiter", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cal_jup_r", "dataset": "callisto-orb-all", "display_type": "timeseries", "is_public": "True", "name": "distance callisto-jupiter", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-12-31T23:40:04Z", "units": "Rj", "xmlid": "cal_jup_r"}, "cal_jup_xyz": {"__spz_name__": "xyz_IAU_jupiter", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cal_jup_xyz", "cal_jup_xyz0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cal_jup_xyz(0)", "dataset": "callisto-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "cal_jup_xyz", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-12-31T23:40:04Z", "xmlid": "cal_jup_xyz(0)"}, "cal_jup_xyz1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cal_jup_xyz(1)", "dataset": "callisto-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "cal_jup_xyz", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-12-31T23:40:04Z", "xmlid": "cal_jup_xyz(1)"}, "cal_jup_xyz2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cal_jup_xyz(2)", "dataset": "callisto-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "cal_jup_xyz", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-12-31T23:40:04Z", "xmlid": "cal_jup_xyz(2)"}, "dataset": "callisto-orb-all", "display_type": "timeseries", "is_public": "True", "name": "xyz_IAU_jupiter", "size": "3", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-12-31T23:40:04Z", "units": "Rj", "xmlid": "cal_jup_xyz"}, "dataSource": "SPICE", "desc": "
Sampling: 20M
Provider: SPICE", "is_public": "True", "lastModificationDate": "2018-09-07T14:06:21Z", "lastUpdate": "2018-09-07T14:06:21Z", "measurement_type": "Ephemeris", "name": "Callisto", "processing_level": "Calibrated", "sampling": "20M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Ephemerides/callisto-orb-all", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-12-31T23:40:04Z", "target": "Jupiter", "xmlid": "callisto-orb-all"}, "europa_orb_all": {"__spz_name__": "Europa - 20 min", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "europa-orb-all", "att": "auto/europa-orb-all", "dataSource": "SPICE", "desc": "
Sampling: 20M
Provider: SPICE", "eur_jup_jsm": {"__spz_name__": "xyz_jsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "eur_jup_jsm", "dataset": "europa-orb-all", "display_type": "timeseries", "eur_jup_jsm0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "eur_jup_jsm(0)", "dataset": "europa-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "eur_jup_jsm", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-12-31T23:40:04Z", "xmlid": "eur_jup_jsm(0)"}, "eur_jup_jsm1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "eur_jup_jsm(1)", "dataset": "europa-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "eur_jup_jsm", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-12-31T23:40:04Z", "xmlid": "eur_jup_jsm(1)"}, "eur_jup_jsm2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "eur_jup_jsm(2)", "dataset": "europa-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "eur_jup_jsm", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-12-31T23:40:04Z", "xmlid": "eur_jup_jsm(2)"}, "is_public": "True", "name": "xyz_jsm", "size": "3", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-12-31T23:40:04Z", "units": "Rj", "xmlid": "eur_jup_jsm"}, "eur_jup_jso": {"__spz_name__": "xyz_jso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "eur_jup_jso", "dataset": "europa-orb-all", "display_type": "timeseries", "eur_jup_jso0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "eur_jup_jso(0)", "dataset": "europa-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "eur_jup_jso", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-12-31T23:40:04Z", "xmlid": "eur_jup_jso(0)"}, "eur_jup_jso1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "eur_jup_jso(1)", "dataset": "europa-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "eur_jup_jso", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-12-31T23:40:04Z", "xmlid": "eur_jup_jso(1)"}, "eur_jup_jso2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "eur_jup_jso(2)", "dataset": "europa-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "eur_jup_jso", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-12-31T23:40:04Z", "xmlid": "eur_jup_jso(2)"}, "is_public": "True", "name": "xyz_jso", "size": "3", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-12-31T23:40:04Z", "units": "Rj", "xmlid": "eur_jup_jso"}, "eur_jup_lat": {"__spz_name__": "latitude IAU_jupiter", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "eur_jup_lat", "dataset": "europa-orb-all", "is_public": "True", "name": "latitude IAU_jupiter", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-12-31T23:40:04Z", "units": "deg", "xmlid": "eur_jup_lat"}, "eur_jup_lon": {"__spz_name__": "longitude IAU_jupiter", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "eur_jup_lon", "dataset": "europa-orb-all", "is_public": "True", "name": "longitude IAU_jupiter", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-12-31T23:40:04Z", "units": "deg", "xmlid": "eur_jup_lon"}, "eur_jup_mlat": {"__spz_name__": "mlat", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "eur_jup_mlat", "dataset": "europa-orb-all", "description": "mlat=10.31\u00b0xcos(196.61\u00b0-lon_iau_west)+lat_iau", "is_public": "True", "name": "mlat", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-12-31T23:40:04Z", "units": "deg", "xmlid": "eur_jup_mlat"}, "eur_jup_r": {"__spz_name__": "distance europa-jupiter", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "eur_jup_r", "dataset": "europa-orb-all", "display_type": "timeseries", "is_public": "True", "name": "distance europa-jupiter", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-12-31T23:40:04Z", "units": "Rj", "xmlid": "eur_jup_r"}, "eur_jup_xyz": {"__spz_name__": "xyz_IAU_jupiter", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "eur_jup_xyz", "dataset": "europa-orb-all", "display_type": "timeseries", "eur_jup_xyz0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "eur_jup_xyz(0)", "dataset": "europa-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "eur_jup_xyz", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-12-31T23:40:04Z", "xmlid": "eur_jup_xyz(0)"}, "eur_jup_xyz1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "eur_jup_xyz(1)", "dataset": "europa-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "eur_jup_xyz", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-12-31T23:40:04Z", "xmlid": "eur_jup_xyz(1)"}, "eur_jup_xyz2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "eur_jup_xyz(2)", "dataset": "europa-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "eur_jup_xyz", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-12-31T23:40:04Z", "xmlid": "eur_jup_xyz(2)"}, "is_public": "True", "name": "xyz_IAU_jupiter", "size": "3", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-12-31T23:40:04Z", "units": "Rj", "xmlid": "eur_jup_xyz"}, "is_public": "True", "lastModificationDate": "2018-09-07T13:42:55Z", "lastUpdate": "2018-09-07T13:41:29Z", "measurement_type": "Ephemeris", "name": "Europa - 20 min", "processing_level": "Calibrated", "sampling": "20M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Ephemerides/europa-orb-all", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-12-31T23:40:04Z", "target": "Jupiter", "xmlid": "europa-orb-all"}, "europa_orb_all1s": {"__spz_name__": "Europa - 1 sec", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "europa-orb-all1s", "att": "auto/europa-orb-all1s", "dataSource": "SPICE", "desc": "
Sampling: 1S
Provider: SPICE", "eur_jup_jsm1s": {"__spz_name__": "xyz_jsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "eur_jup_jsm1s", "dataset": "europa-orb-all1s", "display_type": "timeseries", "eur_jup_jsm1s0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "eur_jup_jsm1s(0)", "dataset": "europa-orb-all1s", "index1": "0", "is_public": "True", "name": "x", "parameter": "eur_jup_jsm1s", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2037-01-02T00:00:04Z", "xmlid": "eur_jup_jsm1s(0)"}, "eur_jup_jsm1s1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "eur_jup_jsm1s(1)", "dataset": "europa-orb-all1s", "index1": "1", "is_public": "True", "name": "y", "parameter": "eur_jup_jsm1s", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2037-01-02T00:00:04Z", "xmlid": "eur_jup_jsm1s(1)"}, "eur_jup_jsm1s2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "eur_jup_jsm1s(2)", "dataset": "europa-orb-all1s", "index1": "2", "is_public": "True", "name": "z", "parameter": "eur_jup_jsm1s", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2037-01-02T00:00:04Z", "xmlid": "eur_jup_jsm1s(2)"}, "is_public": "True", "name": "xyz_jsm", "size": "3", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2037-01-02T00:00:04Z", "units": "Rj", "xmlid": "eur_jup_jsm1s"}, "eur_jup_jso1s": {"__spz_name__": "xyz_jso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "eur_jup_jso1s", "dataset": "europa-orb-all1s", "display_type": "timeseries", "eur_jup_jso1s0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "eur_jup_jso1s(0)", "dataset": "europa-orb-all1s", "index1": "0", "is_public": "True", "name": "x", "parameter": "eur_jup_jso1s", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2037-01-02T00:00:04Z", "xmlid": "eur_jup_jso1s(0)"}, "eur_jup_jso1s1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "eur_jup_jso1s(1)", "dataset": "europa-orb-all1s", "index1": "1", "is_public": "True", "name": "y", "parameter": "eur_jup_jso1s", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2037-01-02T00:00:04Z", "xmlid": "eur_jup_jso1s(1)"}, "eur_jup_jso1s2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "eur_jup_jso1s(2)", "dataset": "europa-orb-all1s", "index1": "2", "is_public": "True", "name": "z", "parameter": "eur_jup_jso1s", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2037-01-02T00:00:04Z", "xmlid": "eur_jup_jso1s(2)"}, "is_public": "True", "name": "xyz_jso", "size": "3", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2037-01-02T00:00:04Z", "units": "Rj", "xmlid": "eur_jup_jso1s"}, "eur_jup_lat1s": {"__spz_name__": "latitude IAU_jupiter", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "eur_jup_lat1s", "dataset": "europa-orb-all1s", "is_public": "True", "name": "latitude IAU_jupiter", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2037-01-02T00:00:04Z", "units": "deg", "xmlid": "eur_jup_lat1s"}, "eur_jup_lon1s": {"__spz_name__": "longitude IAU_jupiter", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "eur_jup_lon1s", "dataset": "europa-orb-all1s", "is_public": "True", "name": "longitude IAU_jupiter", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2037-01-02T00:00:04Z", "units": "deg", "xmlid": "eur_jup_lon1s"}, "eur_jup_mlat1s": {"__spz_name__": "mlat", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "eur_jup_mlat1s", "dataset": "europa-orb-all1s", "description": "mlat=10.31\u00b0xcos(196.61\u00b0-lon_iau_west)+lat_iau", "is_public": "True", "name": "mlat", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2037-01-02T00:00:04Z", "units": "deg", "xmlid": "eur_jup_mlat1s"}, "eur_jup_r1s": {"__spz_name__": "distance europa-jupiter", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "eur_jup_r1s", "dataset": "europa-orb-all1s", "display_type": "timeseries", "is_public": "True", "name": "distance europa-jupiter", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2037-01-02T00:00:04Z", "units": "Rj", "xmlid": "eur_jup_r1s"}, "eur_jup_xyz1s": {"__spz_name__": "xyz_IAU_jupiter", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "eur_jup_xyz1s", "dataset": "europa-orb-all1s", "display_type": "timeseries", "eur_jup_xyz1s0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "eur_jup_xyz1s(0)", "dataset": "europa-orb-all1s", "index1": "0", "is_public": "True", "name": "x", "parameter": "eur_jup_xyz1s", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2037-01-02T00:00:04Z", "xmlid": "eur_jup_xyz1s(0)"}, "eur_jup_xyz1s1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "eur_jup_xyz1s(1)", "dataset": "europa-orb-all1s", "index1": "1", "is_public": "True", "name": "y", "parameter": "eur_jup_xyz1s", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2037-01-02T00:00:04Z", "xmlid": "eur_jup_xyz1s(1)"}, "eur_jup_xyz1s2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "eur_jup_xyz1s(2)", "dataset": "europa-orb-all1s", "index1": "2", "is_public": "True", "name": "z", "parameter": "eur_jup_xyz1s", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2037-01-02T00:00:04Z", "xmlid": "eur_jup_xyz1s(2)"}, "is_public": "True", "name": "xyz_IAU_jupiter", "size": "3", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2037-01-02T00:00:04Z", "units": "Rj", "xmlid": "eur_jup_xyz1s"}, "is_public": "True", "lastModificationDate": "2024-08-30T13:03:25Z", "lastUpdate": "2024-08-22T19:44:08Z", "measurement_type": "Ephemeris", "name": "Europa - 1 sec", "processing_level": "Calibrated", "sampling": "1S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Ephemerides/europa-orb-all1s", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2037-01-02T00:00:04Z", "target": "Jupiter", "xmlid": "europa-orb-all1s"}, "ganymede_orb_all": {"__spz_name__": "Ganymede - 20 min", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ganymede-orb-all", "att": "auto/ganymede-orb-all", "dataSource": "SPICE", "desc": "
Sampling: 20M
Provider: SPICE", "gan_jup_jsm": {"__spz_name__": "xyz_jsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gan_jup_jsm", "dataset": "ganymede-orb-all", "display_type": "timeseries", "gan_jup_jsm0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gan_jup_jsm(0)", "dataset": "ganymede-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "gan_jup_jsm", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-12-31T23:40:04Z", "xmlid": "gan_jup_jsm(0)"}, "gan_jup_jsm1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gan_jup_jsm(1)", "dataset": "ganymede-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "gan_jup_jsm", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-12-31T23:40:04Z", "xmlid": "gan_jup_jsm(1)"}, "gan_jup_jsm2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gan_jup_jsm(2)", "dataset": "ganymede-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "gan_jup_jsm", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-12-31T23:40:04Z", "xmlid": "gan_jup_jsm(2)"}, "is_public": "True", "name": "xyz_jsm", "size": "3", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-12-31T23:40:04Z", "units": "Rj", "xmlid": "gan_jup_jsm"}, "gan_jup_jso": {"__spz_name__": "xyz_jso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gan_jup_jso", "dataset": "ganymede-orb-all", "display_type": "timeseries", "gan_jup_jso0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gan_jup_jso(0)", "dataset": "ganymede-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "gan_jup_jso", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-12-31T23:40:04Z", "xmlid": "gan_jup_jso(0)"}, "gan_jup_jso1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gan_jup_jso(1)", "dataset": "ganymede-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "gan_jup_jso", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-12-31T23:40:04Z", "xmlid": "gan_jup_jso(1)"}, "gan_jup_jso2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gan_jup_jso(2)", "dataset": "ganymede-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "gan_jup_jso", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-12-31T23:40:04Z", "xmlid": "gan_jup_jso(2)"}, "is_public": "True", "name": "xyz_jso", "size": "3", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-12-31T23:40:04Z", "units": "Rj", "xmlid": "gan_jup_jso"}, "gan_jup_lat": {"__spz_name__": "latitude IAU_jupiter", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gan_jup_lat", "dataset": "ganymede-orb-all", "is_public": "True", "name": "latitude IAU_jupiter", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-12-31T23:40:04Z", "units": "deg", "xmlid": "gan_jup_lat"}, "gan_jup_lon": {"__spz_name__": "longitude IAU_jupiter", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gan_jup_lon", "dataset": "ganymede-orb-all", "is_public": "True", "name": "longitude IAU_jupiter", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-12-31T23:40:04Z", "units": "deg", "xmlid": "gan_jup_lon"}, "gan_jup_mlat": {"__spz_name__": "mlat", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gan_jup_mlat", "dataset": "ganymede-orb-all", "description": "mlat=10.31\u00b0xcos(196.61\u00b0-lon_iau_west)+lat_iau", "is_public": "True", "name": "mlat", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-12-31T23:40:04Z", "units": "deg", "xmlid": "gan_jup_mlat"}, "gan_jup_r": {"__spz_name__": "distance ganymede-jupiter", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gan_jup_r", "dataset": "ganymede-orb-all", "display_type": "timeseries", "is_public": "True", "name": "distance ganymede-jupiter", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-12-31T23:40:04Z", "units": "Rj", "xmlid": "gan_jup_r"}, "gan_jup_xyz": {"__spz_name__": "xyz_IAU_jupiter", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gan_jup_xyz", "dataset": "ganymede-orb-all", "display_type": "timeseries", "gan_jup_xyz0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gan_jup_xyz(0)", "dataset": "ganymede-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "gan_jup_xyz", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-12-31T23:40:04Z", "xmlid": "gan_jup_xyz(0)"}, "gan_jup_xyz1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gan_jup_xyz(1)", "dataset": "ganymede-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "gan_jup_xyz", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-12-31T23:40:04Z", "xmlid": "gan_jup_xyz(1)"}, "gan_jup_xyz2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gan_jup_xyz(2)", "dataset": "ganymede-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "gan_jup_xyz", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-12-31T23:40:04Z", "xmlid": "gan_jup_xyz(2)"}, "is_public": "True", "name": "xyz_IAU_jupiter", "size": "3", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-12-31T23:40:04Z", "units": "Rj", "xmlid": "gan_jup_xyz"}, "is_public": "True", "lastModificationDate": "2018-09-07T13:38:09Z", "lastUpdate": "2018-09-07T13:33:03Z", "measurement_type": "Ephemeris", "name": "Ganymede - 20 min", "processing_level": "Calibrated", "sampling": "20M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Ephemerides/ganymede-orb-all", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-12-31T23:40:04Z", "target": "Jupiter", "xmlid": "ganymede-orb-all"}, "ganymede_orb_all1s": {"__spz_name__": "Ganymede - 1 sec", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ganymede-orb-all1s", "att": "auto/ganymede-orb-all1s", "dataSource": "SPICE", "desc": "
Sampling: 1S
Provider: SPICE", "gan_jup_jsm1s": {"__spz_name__": "xyz_jsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gan_jup_jsm1s", "dataset": "ganymede-orb-all1s", "display_type": "timeseries", "gan_jup_jsm1s0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gan_jup_jsm1s(0)", "dataset": "ganymede-orb-all1s", "index1": "0", "is_public": "True", "name": "x", "parameter": "gan_jup_jsm1s", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2037-01-02T00:00:04Z", "xmlid": "gan_jup_jsm1s(0)"}, "gan_jup_jsm1s1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gan_jup_jsm1s(1)", "dataset": "ganymede-orb-all1s", "index1": "1", "is_public": "True", "name": "y", "parameter": "gan_jup_jsm1s", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2037-01-02T00:00:04Z", "xmlid": "gan_jup_jsm1s(1)"}, "gan_jup_jsm1s2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gan_jup_jsm1s(2)", "dataset": "ganymede-orb-all1s", "index1": "2", "is_public": "True", "name": "z", "parameter": "gan_jup_jsm1s", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2037-01-02T00:00:04Z", "xmlid": "gan_jup_jsm1s(2)"}, "is_public": "True", "name": "xyz_jsm", "size": "3", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2037-01-02T00:00:04Z", "units": "Rj", "xmlid": "gan_jup_jsm1s"}, "gan_jup_jso1s": {"__spz_name__": "xyz_jso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gan_jup_jso1s", "dataset": "ganymede-orb-all1s", "display_type": "timeseries", "gan_jup_jso1s0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gan_jup_jso1s(0)", "dataset": "ganymede-orb-all1s", "index1": "0", "is_public": "True", "name": "x", "parameter": "gan_jup_jso1s", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2037-01-02T00:00:04Z", "xmlid": "gan_jup_jso1s(0)"}, "gan_jup_jso1s1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gan_jup_jso1s(1)", "dataset": "ganymede-orb-all1s", "index1": "1", "is_public": "True", "name": "y", "parameter": "gan_jup_jso1s", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2037-01-02T00:00:04Z", "xmlid": "gan_jup_jso1s(1)"}, "gan_jup_jso1s2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gan_jup_jso1s(2)", "dataset": "ganymede-orb-all1s", "index1": "2", "is_public": "True", "name": "z", "parameter": "gan_jup_jso1s", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2037-01-02T00:00:04Z", "xmlid": "gan_jup_jso1s(2)"}, "is_public": "True", "name": "xyz_jso", "size": "3", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2037-01-02T00:00:04Z", "units": "Rj", "xmlid": "gan_jup_jso1s"}, "gan_jup_lat1s": {"__spz_name__": "latitude IAU_jupiter", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gan_jup_lat1s", "dataset": "ganymede-orb-all1s", "is_public": "True", "name": "latitude IAU_jupiter", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2037-01-02T00:00:04Z", "units": "deg", "xmlid": "gan_jup_lat1s"}, "gan_jup_lon1s": {"__spz_name__": "longitude IAU_jupiter", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gan_jup_lon1s", "dataset": "ganymede-orb-all1s", "is_public": "True", "name": "longitude IAU_jupiter", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2037-01-02T00:00:04Z", "units": "deg", "xmlid": "gan_jup_lon1s"}, "gan_jup_mlat1s": {"__spz_name__": "mlat", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gan_jup_mlat1s", "dataset": "ganymede-orb-all1s", "description": "mlat=10.31\u00b0xcos(196.61\u00b0-lon_iau_west)+lat_iau", "is_public": "True", "name": "mlat", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2037-01-02T00:00:04Z", "units": "deg", "xmlid": "gan_jup_mlat1s"}, "gan_jup_r1s": {"__spz_name__": "distance ganymede-jupiter", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gan_jup_r1s", "dataset": "ganymede-orb-all1s", "display_type": "timeseries", "is_public": "True", "name": "distance ganymede-jupiter", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2037-01-02T00:00:04Z", "units": "Rj", "xmlid": "gan_jup_r1s"}, "gan_jup_xyz1s": {"__spz_name__": "xyz_IAU_jupiter", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gan_jup_xyz1s", "dataset": "ganymede-orb-all1s", "display_type": "timeseries", "gan_jup_xyz1s0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gan_jup_xyz1s(0)", "dataset": "ganymede-orb-all1s", "index1": "0", "is_public": "True", "name": "x", "parameter": "gan_jup_xyz1s", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2037-01-02T00:00:04Z", "xmlid": "gan_jup_xyz1s(0)"}, "gan_jup_xyz1s1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gan_jup_xyz1s(1)", "dataset": "ganymede-orb-all1s", "index1": "1", "is_public": "True", "name": "y", "parameter": "gan_jup_xyz1s", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2037-01-02T00:00:04Z", "xmlid": "gan_jup_xyz1s(1)"}, "gan_jup_xyz1s2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gan_jup_xyz1s(2)", "dataset": "ganymede-orb-all1s", "index1": "2", "is_public": "True", "name": "z", "parameter": "gan_jup_xyz1s", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2037-01-02T00:00:04Z", "xmlid": "gan_jup_xyz1s(2)"}, "is_public": "True", "name": "xyz_IAU_jupiter", "size": "3", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2037-01-02T00:00:04Z", "units": "Rj", "xmlid": "gan_jup_xyz1s"}, "is_public": "True", "lastModificationDate": "2024-08-19T13:44:38Z", "lastUpdate": "2024-08-16T15:13:46Z", "measurement_type": "Ephemeris", "name": "Ganymede - 1 sec", "processing_level": "Calibrated", "sampling": "1S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Ephemerides/ganymede-orb-all1s", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2037-01-02T00:00:04Z", "target": "Jupiter", "xmlid": "ganymede-orb-all1s"}, "io_orb_all": {"__spz_name__": "Io", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "io-orb-all", "att": "auto/io-orb-all", "dataSource": "SPICE", "desc": "
Sampling: 20M
Provider: SPICE", "io_jup_jsm": {"__spz_name__": "xyz_jsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "io_jup_jsm", "dataset": "io-orb-all", "display_type": "timeseries", "io_jup_jsm0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "io_jup_jsm(0)", "dataset": "io-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "io_jup_jsm", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-12-31T23:40:04Z", "xmlid": "io_jup_jsm(0)"}, "io_jup_jsm1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "io_jup_jsm(1)", "dataset": "io-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "io_jup_jsm", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-12-31T23:40:04Z", "xmlid": "io_jup_jsm(1)"}, "io_jup_jsm2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "io_jup_jsm(2)", "dataset": "io-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "io_jup_jsm", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-12-31T23:40:04Z", "xmlid": "io_jup_jsm(2)"}, "is_public": "True", "name": "xyz_jsm", "size": "3", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-12-31T23:40:04Z", "units": "Rj", "xmlid": "io_jup_jsm"}, "io_jup_jso": {"__spz_name__": "xyz_jso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "io_jup_jso", "dataset": "io-orb-all", "display_type": "timeseries", "io_jup_jso0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "io_jup_jso(0)", "dataset": "io-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "io_jup_jso", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-12-31T23:40:04Z", "xmlid": "io_jup_jso(0)"}, "io_jup_jso1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "io_jup_jso(1)", "dataset": "io-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "io_jup_jso", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-12-31T23:40:04Z", "xmlid": "io_jup_jso(1)"}, "io_jup_jso2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "io_jup_jso(2)", "dataset": "io-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "io_jup_jso", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-12-31T23:40:04Z", "xmlid": "io_jup_jso(2)"}, "is_public": "True", "name": "xyz_jso", "size": "3", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-12-31T23:40:04Z", "units": "Rj", "xmlid": "io_jup_jso"}, "io_jup_lat": {"__spz_name__": "latitude IAU_jupiter", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "io_jup_lat", "dataset": "io-orb-all", "is_public": "True", "name": "latitude IAU_jupiter", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-12-31T23:40:04Z", "units": "deg", "xmlid": "io_jup_lat"}, "io_jup_lon": {"__spz_name__": "longitude IAU_jupiter", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "io_jup_lon", "dataset": "io-orb-all", "is_public": "True", "name": "longitude IAU_jupiter", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-12-31T23:40:04Z", "units": "deg", "xmlid": "io_jup_lon"}, "io_jup_mlat": {"__spz_name__": "mlat", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "io_jup_mlat", "dataset": "io-orb-all", "description": "mlat=10.31\u00b0xcos(196.61\u00b0-lon_iau_west)+lat_iau", "is_public": "True", "name": "mlat", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-12-31T23:40:04Z", "units": "deg", "xmlid": "io_jup_mlat"}, "io_jup_r": {"__spz_name__": "distance io-jupiter", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "io_jup_r", "dataset": "io-orb-all", "display_type": "timeseries", "is_public": "True", "name": "distance io-jupiter", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-12-31T23:40:04Z", "units": "Rj", "xmlid": "io_jup_r"}, "io_jup_xyz": {"__spz_name__": "xyz_IAU_jupiter", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "io_jup_xyz", "dataset": "io-orb-all", "display_type": "timeseries", "io_jup_xyz0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "io_jup_xyz(0)", "dataset": "io-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "io_jup_xyz", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-12-31T23:40:04Z", "xmlid": "io_jup_xyz(0)"}, "io_jup_xyz1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "io_jup_xyz(1)", "dataset": "io-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "io_jup_xyz", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-12-31T23:40:04Z", "xmlid": "io_jup_xyz(1)"}, "io_jup_xyz2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "io_jup_xyz(2)", "dataset": "io-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "io_jup_xyz", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-12-31T23:40:04Z", "xmlid": "io_jup_xyz(2)"}, "is_public": "True", "name": "xyz_IAU_jupiter", "size": "3", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-12-31T23:40:04Z", "units": "Rj", "xmlid": "io_jup_xyz"}, "is_public": "True", "lastModificationDate": "2018-09-07T13:48:26Z", "lastUpdate": "2018-09-07T13:47:12Z", "measurement_type": "Ephemeris", "name": "Io", "processing_level": "Calibrated", "sampling": "20M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Ephemerides/io-orb-all", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2036-12-31T23:40:04Z", "target": "Jupiter", "xmlid": "io-orb-all"}, "is_public": "True", "name": "Jupiter Moons", "rank": "9", "xmlid": "jup-moons-orb"}, "Mars_Moons": {"__spz_name__": "Mars Moons", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "mars-moons-orb", "is_public": "True", "mars_deimos_orb": {"__spz_name__": "Deimos", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mars-deimos-orb", "att": "auto/mars-deimos-orb", "dataSource": "SPICE", "desc": "
Sampling: 1M
Provider: SPICE", "is_public": "True", "lastModificationDate": "2022-03-10T11:37:18Z", "lastUpdate": "2022-03-10T11:35:55Z", "measurement_type": "Ephemeris", "name": "Deimos", "processing_level": "Calibrated", "r_deimos": {"__spz_name__": "distance deimos-mars", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "r_deimos", "dataset": "mars-deimos-orb", "is_public": "True", "name": "distance deimos-mars", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2039-12-31T23:58:00Z", "units": "Rm", "xmlid": "r_deimos"}, "sampling": "1M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Ephemerides/mars-deimos-orb", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2039-12-31T23:58:00Z", "target": "Mars", "xmlid": "mars-deimos-orb", "xyz_deimos": {"__spz_name__": "deimos_xyz_mso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "xyz_deimos", "dataset": "mars-deimos-orb", "display_type": "timeseries", "is_public": "True", "name": "deimos_xyz_mso", "size": "3", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2039-12-31T23:58:00Z", "units": "Rm", "xmlid": "xyz_deimos", "xyz_deimos0": {"__spz_name__": "deimos_x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_deimos(0)", "dataset": "mars-deimos-orb", "index1": "0", "is_public": "True", "name": "deimos_x", "parameter": "xyz_deimos", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2039-12-31T23:58:00Z", "xmlid": "xyz_deimos(0)"}, "xyz_deimos1": {"__spz_name__": "deimos_y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_deimos(1)", "dataset": "mars-deimos-orb", "index1": "1", "is_public": "True", "name": "deimos_y", "parameter": "xyz_deimos", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2039-12-31T23:58:00Z", "xmlid": "xyz_deimos(1)"}, "xyz_deimos2": {"__spz_name__": "deimos_z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_deimos(2)", "dataset": "mars-deimos-orb", "index1": "2", "is_public": "True", "name": "deimos_z", "parameter": "xyz_deimos", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2039-12-31T23:58:00Z", "xmlid": "xyz_deimos(2)"}}}, "mars_phobos_orb": {"__spz_name__": "Phobos - 1 min", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mars-phobos-orb", "att": "auto/mars-phobos-orb", "dataSource": "SPICE", "desc": "
Sampling: 1M
Provider: SPICE", "is_public": "True", "lastModificationDate": "2022-03-10T10:52:59Z", "lastUpdate": "2022-03-10T10:51:00Z", "measurement_type": "Ephemeris", "name": "Phobos - 1 min", "processing_level": "Calibrated", "r_phobos": {"__spz_name__": "distance phobos-mars", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "r_phobos", "dataset": "mars-phobos-orb", "is_public": "True", "name": "distance phobos-mars", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2039-12-31T23:58:00Z", "units": "Rm", "xmlid": "r_phobos"}, "sampling": "1M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Ephemerides/mars-phobos-orb", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2039-12-31T23:58:00Z", "target": "Mars", "xmlid": "mars-phobos-orb", "xyz_phobos": {"__spz_name__": "phobos_xyz_mso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "xyz_phobos", "dataset": "mars-phobos-orb", "display_type": "timeseries", "is_public": "True", "name": "phobos_xyz_mso", "size": "3", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2039-12-31T23:58:00Z", "units": "Rm", "xmlid": "xyz_phobos", "xyz_phobos0": {"__spz_name__": "phobos_x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_phobos(0)", "dataset": "mars-phobos-orb", "index1": "0", "is_public": "True", "name": "phobos_x", "parameter": "xyz_phobos", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2039-12-31T23:58:00Z", "xmlid": "xyz_phobos(0)"}, "xyz_phobos1": {"__spz_name__": "phobos_y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_phobos(1)", "dataset": "mars-phobos-orb", "index1": "1", "is_public": "True", "name": "phobos_y", "parameter": "xyz_phobos", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2039-12-31T23:58:00Z", "xmlid": "xyz_phobos(1)"}, "xyz_phobos2": {"__spz_name__": "phobos_z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_phobos(2)", "dataset": "mars-phobos-orb", "index1": "2", "is_public": "True", "name": "phobos_z", "parameter": "xyz_phobos", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2039-12-31T23:58:00Z", "xmlid": "xyz_phobos(2)"}}}, "mars_phobos_orb1s": {"__spz_name__": "Phobos - 1 sec", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mars-phobos-orb1s", "att": "auto/mars-phobos-orb1s", "dataSource": "SPICE", "desc": "
Sampling: 1S
Provider: SPICE", "is_public": "True", "lastModificationDate": "2022-03-18T09:45:42Z", "lastUpdate": "2022-03-18T09:45:15Z", "measurement_type": "Ephemeris", "name": "Phobos - 1 sec", "processing_level": "Calibrated", "r_phobos1s": {"__spz_name__": "distance phobos-mars", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "r_phobos1s", "dataset": "mars-phobos-orb1s", "is_public": "True", "name": "distance phobos-mars", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2039-12-31T23:59:59Z", "units": "Rm", "xmlid": "r_phobos1s"}, "sampling": "1S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Ephemerides/mars-phobos-orb1s", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2039-12-31T23:59:59Z", "target": "Mars", "xmlid": "mars-phobos-orb1s", "xyz_phobos1s": {"__spz_name__": "phobos_xyz_mso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "xyz_phobos1s", "dataset": "mars-phobos-orb1s", "display_type": "timeseries", "is_public": "True", "name": "phobos_xyz_mso", "size": "3", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2039-12-31T23:59:59Z", "units": "Rm", "xmlid": "xyz_phobos1s", "xyz_phobos1s0": {"__spz_name__": "phobos_x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_phobos1s(0)", "dataset": "mars-phobos-orb1s", "index1": "0", "is_public": "True", "name": "phobos_x", "parameter": "xyz_phobos1s", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2039-12-31T23:59:59Z", "xmlid": "xyz_phobos1s(0)"}, "xyz_phobos1s1": {"__spz_name__": "phobos_y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_phobos1s(1)", "dataset": "mars-phobos-orb1s", "index1": "1", "is_public": "True", "name": "phobos_y", "parameter": "xyz_phobos1s", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2039-12-31T23:59:59Z", "xmlid": "xyz_phobos1s(1)"}, "xyz_phobos1s2": {"__spz_name__": "phobos_z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_phobos1s(2)", "dataset": "mars-phobos-orb1s", "index1": "2", "is_public": "True", "name": "phobos_z", "parameter": "xyz_phobos1s", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2039-12-31T23:59:59Z", "xmlid": "xyz_phobos1s(2)"}}}, "name": "Mars Moons", "rank": "8", "xmlid": "mars-moons-orb"}, "Saturn_Moons": {"__spz_name__": "Saturn Moons", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "sat-moons-orb", "dione_orb_all": {"__spz_name__": "Dione", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "dione-orb-all", "att": "auto/dione-orb-all", "dataSource": "SPICE", "desc": "
Sampling: 20M
Provider: SPICE", "dio_sat_ksm": {"__spz_name__": "xyz_ksm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "dio_sat_ksm", "dataset": "dione-orb-all", "dio_sat_ksm0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "dio_sat_ksm(0)", "dataset": "dione-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "dio_sat_ksm", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "xmlid": "dio_sat_ksm(0)"}, "dio_sat_ksm1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "dio_sat_ksm(1)", "dataset": "dione-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "dio_sat_ksm", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "xmlid": "dio_sat_ksm(1)"}, "dio_sat_ksm2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "dio_sat_ksm(2)", "dataset": "dione-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "dio_sat_ksm", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "xmlid": "dio_sat_ksm(2)"}, "display_type": "timeseries", "is_public": "True", "name": "xyz_ksm", "size": "3", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "units": "Rs", "xmlid": "dio_sat_ksm"}, "dio_sat_kso": {"__spz_name__": "xyz_kso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "dio_sat_kso", "dataset": "dione-orb-all", "dio_sat_kso0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "dio_sat_kso(0)", "dataset": "dione-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "dio_sat_kso", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "xmlid": "dio_sat_kso(0)"}, "dio_sat_kso1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "dio_sat_kso(1)", "dataset": "dione-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "dio_sat_kso", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "xmlid": "dio_sat_kso(1)"}, "dio_sat_kso2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "dio_sat_kso(2)", "dataset": "dione-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "dio_sat_kso", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "xmlid": "dio_sat_kso(2)"}, "display_type": "timeseries", "is_public": "True", "name": "xyz_kso", "size": "3", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "units": "Rs", "xmlid": "dio_sat_kso"}, "dio_sat_lat": {"__spz_name__": "latitude IAU_saturn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "dio_sat_lat", "dataset": "dione-orb-all", "is_public": "True", "name": "latitude IAU_saturn", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "units": "deg", "xmlid": "dio_sat_lat"}, "dio_sat_lon": {"__spz_name__": "longitude IAU_saturn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "dio_sat_lon", "dataset": "dione-orb-all", "is_public": "True", "name": "longitude IAU_saturn", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "units": "deg", "xmlid": "dio_sat_lon"}, "dio_sat_r": {"__spz_name__": "distance dione-saturn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "dio_sat_r", "dataset": "dione-orb-all", "display_type": "timeseries", "is_public": "True", "name": "distance dione-saturn", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "units": "Rs", "xmlid": "dio_sat_r"}, "dio_sat_xyz": {"__spz_name__": "xyz_IAU_saturn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "dio_sat_xyz", "dataset": "dione-orb-all", "dio_sat_xyz0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "dio_sat_xyz(0)", "dataset": "dione-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "dio_sat_xyz", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "xmlid": "dio_sat_xyz(0)"}, "dio_sat_xyz1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "dio_sat_xyz(1)", "dataset": "dione-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "dio_sat_xyz", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "xmlid": "dio_sat_xyz(1)"}, "dio_sat_xyz2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "dio_sat_xyz(2)", "dataset": "dione-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "dio_sat_xyz", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "xmlid": "dio_sat_xyz(2)"}, "display_type": "timeseries", "is_public": "True", "name": "xyz_IAU_saturn", "size": "3", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "units": "Rs", "xmlid": "dio_sat_xyz"}, "is_public": "True", "lastModificationDate": "2023-03-08T16:32:06Z", "lastUpdate": "2023-03-08T16:31:16Z", "measurement_type": "Ephemeris", "name": "Dione", "processing_level": "Calibrated", "sampling": "20M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Ephemerides/dione-orb-all", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "target": "Saturn", "xmlid": "dione-orb-all"}, "enceladus_orb_all": {"__spz_name__": "Enceladus", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "enceladus-orb-all", "att": "auto/enceladus-orb-all", "dataSource": "SPICE", "desc": "
Sampling: 20M
Provider: SPICE", "enc_sat_ksm": {"__spz_name__": "xyz_ksm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "enc_sat_ksm", "dataset": "enceladus-orb-all", "display_type": "timeseries", "enc_sat_ksm0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "enc_sat_ksm(0)", "dataset": "enceladus-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "enc_sat_ksm", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "xmlid": "enc_sat_ksm(0)"}, "enc_sat_ksm1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "enc_sat_ksm(1)", "dataset": "enceladus-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "enc_sat_ksm", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "xmlid": "enc_sat_ksm(1)"}, "enc_sat_ksm2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "enc_sat_ksm(2)", "dataset": "enceladus-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "enc_sat_ksm", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "xmlid": "enc_sat_ksm(2)"}, "is_public": "True", "name": "xyz_ksm", "size": "3", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "units": "Rs", "xmlid": "enc_sat_ksm"}, "enc_sat_kso": {"__spz_name__": "xyz_kso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "enc_sat_kso", "dataset": "enceladus-orb-all", "display_type": "timeseries", "enc_sat_kso0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "enc_sat_kso(0)", "dataset": "enceladus-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "enc_sat_kso", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "xmlid": "enc_sat_kso(0)"}, "enc_sat_kso1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "enc_sat_kso(1)", "dataset": "enceladus-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "enc_sat_kso", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "xmlid": "enc_sat_kso(1)"}, "enc_sat_kso2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "enc_sat_kso(2)", "dataset": "enceladus-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "enc_sat_kso", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "xmlid": "enc_sat_kso(2)"}, "is_public": "True", "name": "xyz_kso", "size": "3", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "units": "Rs", "xmlid": "enc_sat_kso"}, "enc_sat_lat": {"__spz_name__": "latitude IAU_saturn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "enc_sat_lat", "dataset": "enceladus-orb-all", "is_public": "True", "name": "latitude IAU_saturn", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "units": "deg", "xmlid": "enc_sat_lat"}, "enc_sat_lon": {"__spz_name__": "longitude IAU_saturn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "enc_sat_lon", "dataset": "enceladus-orb-all", "is_public": "True", "name": "longitude IAU_saturn", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "units": "deg", "xmlid": "enc_sat_lon"}, "enc_sat_r": {"__spz_name__": "distance enceladus-saturn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "enc_sat_r", "dataset": "enceladus-orb-all", "display_type": "timeseries", "is_public": "True", "name": "distance enceladus-saturn", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "units": "Rs", "xmlid": "enc_sat_r"}, "enc_sat_xyz": {"__spz_name__": "xyz_IAU_saturn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "enc_sat_xyz", "dataset": "enceladus-orb-all", "display_type": "timeseries", "enc_sat_xyz0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "enc_sat_xyz(0)", "dataset": "enceladus-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "enc_sat_xyz", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "xmlid": "enc_sat_xyz(0)"}, "enc_sat_xyz1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "enc_sat_xyz(1)", "dataset": "enceladus-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "enc_sat_xyz", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "xmlid": "enc_sat_xyz(1)"}, "enc_sat_xyz2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "enc_sat_xyz(2)", "dataset": "enceladus-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "enc_sat_xyz", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "xmlid": "enc_sat_xyz(2)"}, "is_public": "True", "name": "xyz_IAU_saturn", "size": "3", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "units": "Rs", "xmlid": "enc_sat_xyz"}, "is_public": "True", "lastModificationDate": "2023-03-08T16:40:05Z", "lastUpdate": "2023-03-08T16:39:47Z", "measurement_type": "Ephemeris", "name": "Enceladus", "processing_level": "Calibrated", "sampling": "20M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Ephemerides/enceladus-orb-all", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "target": "Saturn", "xmlid": "enceladus-orb-all"}, "iapetus_orb_all": {"__spz_name__": "Iapetus", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "iapetus-orb-all", "att": "auto/iapetus-orb-all", "dataSource": "SPICE", "desc": "
Sampling: 20M
Provider: SPICE", "iap_sat_ksm": {"__spz_name__": "xyz_ksm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "iap_sat_ksm", "dataset": "iapetus-orb-all", "display_type": "timeseries", "iap_sat_ksm0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "iap_sat_ksm(0)", "dataset": "iapetus-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "iap_sat_ksm", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "xmlid": "iap_sat_ksm(0)"}, "iap_sat_ksm1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "iap_sat_ksm(1)", "dataset": "iapetus-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "iap_sat_ksm", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "xmlid": "iap_sat_ksm(1)"}, "iap_sat_ksm2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "iap_sat_ksm(2)", "dataset": "iapetus-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "iap_sat_ksm", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "xmlid": "iap_sat_ksm(2)"}, "is_public": "True", "name": "xyz_ksm", "size": "3", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "units": "Rs", "xmlid": "iap_sat_ksm"}, "iap_sat_kso": {"__spz_name__": "xyz_kso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "iap_sat_kso", "dataset": "iapetus-orb-all", "display_type": "timeseries", "iap_sat_kso0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "iap_sat_kso(0)", "dataset": "iapetus-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "iap_sat_kso", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "xmlid": "iap_sat_kso(0)"}, "iap_sat_kso1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "iap_sat_kso(1)", "dataset": "iapetus-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "iap_sat_kso", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "xmlid": "iap_sat_kso(1)"}, "iap_sat_kso2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "iap_sat_kso(2)", "dataset": "iapetus-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "iap_sat_kso", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "xmlid": "iap_sat_kso(2)"}, "is_public": "True", "name": "xyz_kso", "size": "3", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "units": "Rs", "xmlid": "iap_sat_kso"}, "iap_sat_lat": {"__spz_name__": "latitude IAU_saturn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "iap_sat_lat", "dataset": "iapetus-orb-all", "is_public": "True", "name": "latitude IAU_saturn", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "units": "deg", "xmlid": "iap_sat_lat"}, "iap_sat_lon": {"__spz_name__": "longitude IAU_saturn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "iap_sat_lon", "dataset": "iapetus-orb-all", "is_public": "True", "name": "longitude IAU_saturn", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "units": "deg", "xmlid": "iap_sat_lon"}, "iap_sat_r": {"__spz_name__": "distance iapetus-saturn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "iap_sat_r", "dataset": "iapetus-orb-all", "display_type": "timeseries", "is_public": "True", "name": "distance iapetus-saturn", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "units": "Rs", "xmlid": "iap_sat_r"}, "iap_sat_xyz": {"__spz_name__": "xyz_IAU_saturn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "iap_sat_xyz", "dataset": "iapetus-orb-all", "display_type": "timeseries", "iap_sat_xyz0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "iap_sat_xyz(0)", "dataset": "iapetus-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "iap_sat_xyz", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "xmlid": "iap_sat_xyz(0)"}, "iap_sat_xyz1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "iap_sat_xyz(1)", "dataset": "iapetus-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "iap_sat_xyz", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "xmlid": "iap_sat_xyz(1)"}, "iap_sat_xyz2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "iap_sat_xyz(2)", "dataset": "iapetus-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "iap_sat_xyz", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "xmlid": "iap_sat_xyz(2)"}, "is_public": "True", "name": "xyz_IAU_saturn", "size": "3", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "units": "Rs", "xmlid": "iap_sat_xyz"}, "is_public": "True", "lastModificationDate": "2023-03-08T16:41:05Z", "lastUpdate": "2023-03-08T16:40:48Z", "measurement_type": "Ephemeris", "name": "Iapetus", "processing_level": "Calibrated", "sampling": "20M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Ephemerides/iapetus-orb-all", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "target": "Saturn", "xmlid": "iapetus-orb-all"}, "is_public": "True", "mimas_orb_all": {"__spz_name__": "Mimas", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mimas-orb-all", "att": "auto/mimas-orb-all", "dataSource": "SPICE", "desc": "
Sampling: 20M
Provider: SPICE", "is_public": "True", "lastModificationDate": "2023-03-08T16:42:11Z", "lastUpdate": "2023-03-08T16:41:53Z", "measurement_type": "Ephemeris", "mim_sat_ksm": {"__spz_name__": "xyz_ksm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mim_sat_ksm", "dataset": "mimas-orb-all", "display_type": "timeseries", "is_public": "True", "mim_sat_ksm0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mim_sat_ksm(0)", "dataset": "mimas-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "mim_sat_ksm", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "xmlid": "mim_sat_ksm(0)"}, "mim_sat_ksm1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mim_sat_ksm(1)", "dataset": "mimas-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "mim_sat_ksm", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "xmlid": "mim_sat_ksm(1)"}, "mim_sat_ksm2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mim_sat_ksm(2)", "dataset": "mimas-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "mim_sat_ksm", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "xmlid": "mim_sat_ksm(2)"}, "name": "xyz_ksm", "size": "3", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "units": "Rs", "xmlid": "mim_sat_ksm"}, "mim_sat_kso": {"__spz_name__": "xyz_kso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mim_sat_kso", "dataset": "mimas-orb-all", "display_type": "timeseries", "is_public": "True", "mim_sat_kso0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mim_sat_kso(0)", "dataset": "mimas-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "mim_sat_kso", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "xmlid": "mim_sat_kso(0)"}, "mim_sat_kso1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mim_sat_kso(1)", "dataset": "mimas-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "mim_sat_kso", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "xmlid": "mim_sat_kso(1)"}, "mim_sat_kso2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mim_sat_kso(2)", "dataset": "mimas-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "mim_sat_kso", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "xmlid": "mim_sat_kso(2)"}, "name": "xyz_kso", "size": "3", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "units": "Rs", "xmlid": "mim_sat_kso"}, "mim_sat_lat": {"__spz_name__": "latitude IAU_saturn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mim_sat_lat", "dataset": "mimas-orb-all", "is_public": "True", "name": "latitude IAU_saturn", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "units": "deg", "xmlid": "mim_sat_lat"}, "mim_sat_lon": {"__spz_name__": "longitude IAU_saturn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mim_sat_lon", "dataset": "mimas-orb-all", "is_public": "True", "name": "longitude IAU_saturn", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "units": "deg", "xmlid": "mim_sat_lon"}, "mim_sat_r": {"__spz_name__": "distance mimas-saturn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mim_sat_r", "dataset": "mimas-orb-all", "display_type": "timeseries", "is_public": "True", "name": "distance mimas-saturn", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "units": "Rs", "xmlid": "mim_sat_r"}, "mim_sat_xyz": {"__spz_name__": "xyz_IAU_saturn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mim_sat_xyz", "dataset": "mimas-orb-all", "display_type": "timeseries", "is_public": "True", "mim_sat_xyz0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mim_sat_xyz(0)", "dataset": "mimas-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "mim_sat_xyz", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "xmlid": "mim_sat_xyz(0)"}, "mim_sat_xyz1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mim_sat_xyz(1)", "dataset": "mimas-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "mim_sat_xyz", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "xmlid": "mim_sat_xyz(1)"}, "mim_sat_xyz2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mim_sat_xyz(2)", "dataset": "mimas-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "mim_sat_xyz", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "xmlid": "mim_sat_xyz(2)"}, "name": "xyz_IAU_saturn", "size": "3", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "units": "Rs", "xmlid": "mim_sat_xyz"}, "name": "Mimas", "processing_level": "Calibrated", "sampling": "20M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Ephemerides/mimas-orb-all", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "target": "Saturn", "xmlid": "mimas-orb-all"}, "name": "Saturn Moons", "rank": "91", "rhea_orb_all": {"__spz_name__": "Rhea", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "rhea-orb-all", "att": "auto/rhea-orb-all", "dataSource": "SPICE", "desc": "
Sampling: 20M
Provider: SPICE", "is_public": "True", "lastModificationDate": "2023-03-08T16:43:19Z", "lastUpdate": "2023-03-08T16:43:06Z", "measurement_type": "Ephemeris", "name": "Rhea", "processing_level": "Calibrated", "rhe_sat_ksm": {"__spz_name__": "xyz_ksm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "rhe_sat_ksm", "dataset": "rhea-orb-all", "display_type": "timeseries", "is_public": "True", "name": "xyz_ksm", "rhe_sat_ksm0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "rhe_sat_ksm(0)", "dataset": "rhea-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "rhe_sat_ksm", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "xmlid": "rhe_sat_ksm(0)"}, "rhe_sat_ksm1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "rhe_sat_ksm(1)", "dataset": "rhea-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "rhe_sat_ksm", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "xmlid": "rhe_sat_ksm(1)"}, "rhe_sat_ksm2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "rhe_sat_ksm(2)", "dataset": "rhea-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "rhe_sat_ksm", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "xmlid": "rhe_sat_ksm(2)"}, "size": "3", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "units": "Rs", "xmlid": "rhe_sat_ksm"}, "rhe_sat_kso": {"__spz_name__": "xyz_kso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "rhe_sat_kso", "dataset": "rhea-orb-all", "display_type": "timeseries", "is_public": "True", "name": "xyz_kso", "rhe_sat_kso0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "rhe_sat_kso(0)", "dataset": "rhea-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "rhe_sat_kso", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "xmlid": "rhe_sat_kso(0)"}, "rhe_sat_kso1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "rhe_sat_kso(1)", "dataset": "rhea-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "rhe_sat_kso", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "xmlid": "rhe_sat_kso(1)"}, "rhe_sat_kso2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "rhe_sat_kso(2)", "dataset": "rhea-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "rhe_sat_kso", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "xmlid": "rhe_sat_kso(2)"}, "size": "3", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "units": "Rs", "xmlid": "rhe_sat_kso"}, "rhe_sat_lat": {"__spz_name__": "latitude IAU_saturn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "rhe_sat_lat", "dataset": "rhea-orb-all", "is_public": "True", "name": "latitude IAU_saturn", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "units": "deg", "xmlid": "rhe_sat_lat"}, "rhe_sat_lon": {"__spz_name__": "longitude IAU_saturn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "rhe_sat_lon", "dataset": "rhea-orb-all", "is_public": "True", "name": "longitude IAU_saturn", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "units": "deg", "xmlid": "rhe_sat_lon"}, "rhe_sat_r": {"__spz_name__": "distance rhea-saturn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "rhe_sat_r", "dataset": "rhea-orb-all", "display_type": "timeseries", "is_public": "True", "name": "distance rhea-saturn", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "units": "Rs", "xmlid": "rhe_sat_r"}, "rhe_sat_xyz": {"__spz_name__": "xyz_IAU_saturn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "rhe_sat_xyz", "dataset": "rhea-orb-all", "display_type": "timeseries", "is_public": "True", "name": "xyz_IAU_saturn", "rhe_sat_xyz0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "rhe_sat_xyz(0)", "dataset": "rhea-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "rhe_sat_xyz", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "xmlid": "rhe_sat_xyz(0)"}, "rhe_sat_xyz1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "rhe_sat_xyz(1)", "dataset": "rhea-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "rhe_sat_xyz", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "xmlid": "rhe_sat_xyz(1)"}, "rhe_sat_xyz2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "rhe_sat_xyz(2)", "dataset": "rhea-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "rhe_sat_xyz", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "xmlid": "rhe_sat_xyz(2)"}, "size": "3", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "units": "Rs", "xmlid": "rhe_sat_xyz"}, "sampling": "20M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Ephemerides/rhea-orb-all", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "target": "Saturn", "xmlid": "rhea-orb-all"}, "tethys_orb_all": {"__spz_name__": "Tethys", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "tethys-orb-all", "att": "auto/tethys-orb-all", "dataSource": "SPICE", "desc": "
Sampling: 20M
Provider: SPICE", "is_public": "True", "lastModificationDate": "2023-03-08T16:44:35Z", "lastUpdate": "2023-03-08T16:44:08Z", "measurement_type": "Ephemeris", "name": "Tethys", "processing_level": "Calibrated", "sampling": "20M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Ephemerides/tethys-orb-all", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "target": "Saturn", "tet_sat_ksm": {"__spz_name__": "xyz_ksm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "tet_sat_ksm", "dataset": "tethys-orb-all", "display_type": "timeseries", "is_public": "True", "name": "xyz_ksm", "size": "3", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "tet_sat_ksm0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "tet_sat_ksm(0)", "dataset": "tethys-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "tet_sat_ksm", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "xmlid": "tet_sat_ksm(0)"}, "tet_sat_ksm1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "tet_sat_ksm(1)", "dataset": "tethys-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "tet_sat_ksm", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "xmlid": "tet_sat_ksm(1)"}, "tet_sat_ksm2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "tet_sat_ksm(2)", "dataset": "tethys-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "tet_sat_ksm", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "xmlid": "tet_sat_ksm(2)"}, "units": "Rs", "xmlid": "tet_sat_ksm"}, "tet_sat_kso": {"__spz_name__": "xyz_kso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "tet_sat_kso", "dataset": "tethys-orb-all", "display_type": "timeseries", "is_public": "True", "name": "xyz_kso", "size": "3", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "tet_sat_kso0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "tet_sat_kso(0)", "dataset": "tethys-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "tet_sat_kso", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "xmlid": "tet_sat_kso(0)"}, "tet_sat_kso1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "tet_sat_kso(1)", "dataset": "tethys-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "tet_sat_kso", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "xmlid": "tet_sat_kso(1)"}, "tet_sat_kso2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "tet_sat_kso(2)", "dataset": "tethys-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "tet_sat_kso", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "xmlid": "tet_sat_kso(2)"}, "units": "Rs", "xmlid": "tet_sat_kso"}, "tet_sat_lat": {"__spz_name__": "latitude IAU_saturn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "tet_sat_lat", "dataset": "tethys-orb-all", "is_public": "True", "name": "latitude IAU_saturn", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "units": "deg", "xmlid": "tet_sat_lat"}, "tet_sat_lon": {"__spz_name__": "longitude IAU_saturn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "tet_sat_lon", "dataset": "tethys-orb-all", "is_public": "True", "name": "longitude IAU_saturn", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "units": "deg", "xmlid": "tet_sat_lon"}, "tet_sat_r": {"__spz_name__": "distance tethys-saturn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "tet_sat_r", "dataset": "tethys-orb-all", "display_type": "timeseries", "is_public": "True", "name": "distance tethys-saturn", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "units": "Rs", "xmlid": "tet_sat_r"}, "tet_sat_xyz": {"__spz_name__": "xyz_IAU_saturn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "tet_sat_xyz", "dataset": "tethys-orb-all", "display_type": "timeseries", "is_public": "True", "name": "xyz_IAU_saturn", "size": "3", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "tet_sat_xyz0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "tet_sat_xyz(0)", "dataset": "tethys-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "tet_sat_xyz", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "xmlid": "tet_sat_xyz(0)"}, "tet_sat_xyz1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "tet_sat_xyz(1)", "dataset": "tethys-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "tet_sat_xyz", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "xmlid": "tet_sat_xyz(1)"}, "tet_sat_xyz2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "tet_sat_xyz(2)", "dataset": "tethys-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "tet_sat_xyz", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "xmlid": "tet_sat_xyz(2)"}, "units": "Rs", "xmlid": "tet_sat_xyz"}, "xmlid": "tethys-orb-all"}, "titan_orb_all": {"__spz_name__": "Titan", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "titan-orb-all", "att": "auto/titan-orb-all", "dataSource": "SPICE", "desc": "
Sampling: 20M
Provider: SPICE", "is_public": "True", "lastModificationDate": "2023-03-08T16:45:52Z", "lastUpdate": "2023-03-08T16:45:30Z", "measurement_type": "Ephemeris", "name": "Titan", "processing_level": "Calibrated", "sampling": "20M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Ephemerides/titan-orb-all", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "target": "Saturn", "tit_sat_ksm": {"__spz_name__": "xyz_ksm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "tit_sat_ksm", "dataset": "titan-orb-all", "display_type": "timeseries", "is_public": "True", "name": "xyz_ksm", "size": "3", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "tit_sat_ksm0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "tit_sat_ksm(0)", "dataset": "titan-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "tit_sat_ksm", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "xmlid": "tit_sat_ksm(0)"}, "tit_sat_ksm1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "tit_sat_ksm(1)", "dataset": "titan-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "tit_sat_ksm", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "xmlid": "tit_sat_ksm(1)"}, "tit_sat_ksm2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "tit_sat_ksm(2)", "dataset": "titan-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "tit_sat_ksm", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "xmlid": "tit_sat_ksm(2)"}, "units": "Rs", "xmlid": "tit_sat_ksm"}, "tit_sat_kso": {"__spz_name__": "xyz_kso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "tit_sat_kso", "dataset": "titan-orb-all", "display_type": "timeseries", "is_public": "True", "name": "xyz_kso", "size": "3", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "tit_sat_kso0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "tit_sat_kso(0)", "dataset": "titan-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "tit_sat_kso", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "xmlid": "tit_sat_kso(0)"}, "tit_sat_kso1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "tit_sat_kso(1)", "dataset": "titan-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "tit_sat_kso", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "xmlid": "tit_sat_kso(1)"}, "tit_sat_kso2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "tit_sat_kso(2)", "dataset": "titan-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "tit_sat_kso", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "xmlid": "tit_sat_kso(2)"}, "units": "Rs", "xmlid": "tit_sat_kso"}, "tit_sat_lat": {"__spz_name__": "latitude IAU_saturn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "tit_sat_lat", "dataset": "titan-orb-all", "is_public": "True", "name": "latitude IAU_saturn", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "units": "deg", "xmlid": "tit_sat_lat"}, "tit_sat_lon": {"__spz_name__": "longitude IAU_saturn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "tit_sat_lon", "dataset": "titan-orb-all", "is_public": "True", "name": "longitude IAU_saturn", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "units": "deg", "xmlid": "tit_sat_lon"}, "tit_sat_r": {"__spz_name__": "distance titan-saturn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "tit_sat_r", "dataset": "titan-orb-all", "display_type": "timeseries", "is_public": "True", "name": "distance titan-saturn", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "units": "Rs", "xmlid": "tit_sat_r"}, "tit_sat_xyz": {"__spz_name__": "xyz_IAU_saturn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "tit_sat_xyz", "dataset": "titan-orb-all", "display_type": "timeseries", "is_public": "True", "name": "xyz_IAU_saturn", "size": "3", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "tit_sat_xyz0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "tit_sat_xyz(0)", "dataset": "titan-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "tit_sat_xyz", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "xmlid": "tit_sat_xyz(0)"}, "tit_sat_xyz1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "tit_sat_xyz(1)", "dataset": "titan-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "tit_sat_xyz", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "xmlid": "tit_sat_xyz(1)"}, "tit_sat_xyz2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "tit_sat_xyz(2)", "dataset": "titan-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "tit_sat_xyz", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2035-01-19T23:19:31Z", "xmlid": "tit_sat_xyz(2)"}, "units": "Rs", "xmlid": "tit_sat_xyz"}, "xmlid": "titan-orb-all"}, "xmlid": "sat-moons-orb"}, "__spz_name__": "Planets and Moons", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Ephemerides_ephemerides", "att": "auto/Ephemerides_ephemerides", "desc": "", "earth_orb_all": {"__spz_name__": "Earth", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "earth-orb-all", "att": "auto/earth-orb-all", "dataSource": "SPICE", "desc": "
Sampling: 60M
Provider: SPICE", "earth_hci_lat": {"__spz_name__": "latitude HCI", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "earth_hci_lat", "dataset": "earth-orb-all", "is_public": "True", "name": "latitude HCI", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-12-31T23:00:04Z", "units": "deg", "xmlid": "earth_hci_lat"}, "earth_hci_lon": {"__spz_name__": "longitude HCI", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "earth_hci_lon", "dataset": "earth-orb-all", "is_public": "True", "name": "longitude HCI", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-12-31T23:00:04Z", "units": "deg", "xmlid": "earth_hci_lon"}, "earth_lat_hee": {"__spz_name__": "latitude HEE", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "earth_lat_hee", "dataset": "earth-orb-all", "is_public": "True", "name": "latitude HEE", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-12-31T23:00:04Z", "units": "deg", "xmlid": "earth_lat_hee"}, "earth_lon_hee": {"__spz_name__": "longitude HEE", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "earth_lon_hee", "dataset": "earth-orb-all", "is_public": "True", "name": "longitude HEE", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-12-31T23:00:04Z", "units": "deg", "xmlid": "earth_lon_hee"}, "earth_sol_lat": {"__spz_name__": "latitude IAU_sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "earth_sol_lat", "dataset": "earth-orb-all", "is_public": "True", "name": "latitude IAU_sun", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-12-31T23:00:04Z", "units": "deg", "xmlid": "earth_sol_lat"}, "earth_sol_lon": {"__spz_name__": "longitude IAU_sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "earth_sol_lon", "dataset": "earth-orb-all", "is_public": "True", "name": "longitude IAU_sun", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-12-31T23:00:04Z", "units": "deg", "xmlid": "earth_sol_lon"}, "earth_sol_ls": {"__spz_name__": "solar longitude (Ls)", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "earth_sol_ls", "dataset": "earth-orb-all", "is_public": "True", "name": "solar longitude (Ls)", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-12-31T23:00:04Z", "units": "deg", "xmlid": "earth_sol_ls"}, "is_public": "True", "lastModificationDate": "2017-10-04T16:56:22Z", "lastUpdate": "2017-10-04T16:55:42Z", "measurement_type": "Ephemeris", "name": "Earth", "processing_level": "Calibrated", "r_earth": {"__spz_name__": "distance earth-sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "r_earth", "dataset": "earth-orb-all", "is_public": "True", "name": "distance earth-sun", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-12-31T23:00:04Z", "units": "AU", "xmlid": "r_earth"}, "rank": "6", "sampling": "60M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Ephemerides/earth-orb-all", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-12-31T23:00:04Z", "target": "Earth", "xmlid": "earth-orb-all", "xyz_earth_hci": {"__spz_name__": "xyz_hci", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "xyz_earth_hci", "dataset": "earth-orb-all", "display_type": "timeseries", "is_public": "True", "name": "xyz_hci", "size": "3", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-12-31T23:00:04Z", "units": "AU", "xmlid": "xyz_earth_hci", "xyz_earth_hci0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_earth_hci(0)", "dataset": "earth-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "xyz_earth_hci", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-12-31T23:00:04Z", "xmlid": "xyz_earth_hci(0)"}, "xyz_earth_hci1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_earth_hci(1)", "dataset": "earth-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "xyz_earth_hci", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-12-31T23:00:04Z", "xmlid": "xyz_earth_hci(1)"}, "xyz_earth_hci2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_earth_hci(2)", "dataset": "earth-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "xyz_earth_hci", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-12-31T23:00:04Z", "xmlid": "xyz_earth_hci(2)"}}, "xyz_earth_hee": {"__spz_name__": "xyz_hee", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "xyz_earth_hee", "dataset": "earth-orb-all", "display_type": "timeseries", "is_public": "True", "name": "xyz_hee", "size": "3", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-12-31T23:00:04Z", "units": "AU", "xmlid": "xyz_earth_hee", "xyz_earth_hee0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_earth_hee(0)", "dataset": "earth-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "xyz_earth_hee", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-12-31T23:00:04Z", "xmlid": "xyz_earth_hee(0)"}, "xyz_earth_hee1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_earth_hee(1)", "dataset": "earth-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "xyz_earth_hee", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-12-31T23:00:04Z", "xmlid": "xyz_earth_hee(1)"}, "xyz_earth_hee2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_earth_hee(2)", "dataset": "earth-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "xyz_earth_hee", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-12-31T23:00:04Z", "xmlid": "xyz_earth_hee(2)"}}}, "is_public": "True", "jupiter_orb_all": {"__spz_name__": "Jupiter", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "jupiter-orb-all", "att": "auto/jupiter-orb-all", "dataSource": "SPICE", "desc": "
Sampling: 60M
Provider: SPICE", "is_public": "True", "jupiter_hci_lat": {"__spz_name__": "latitude HCI", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jupiter_hci_lat", "dataset": "jupiter-orb-all", "is_public": "True", "name": "latitude HCI", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-12-31T23:00:04Z", "units": "deg", "xmlid": "jupiter_hci_lat"}, "jupiter_hci_lon": {"__spz_name__": "longitude HCI", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jupiter_hci_lon", "dataset": "jupiter-orb-all", "is_public": "True", "name": "longitude HCI", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-12-31T23:00:04Z", "units": "deg", "xmlid": "jupiter_hci_lon"}, "jupiter_lat_hee": {"__spz_name__": "latitude HEE", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jupiter_lat_hee", "dataset": "jupiter-orb-all", "is_public": "True", "name": "latitude HEE", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-12-31T23:00:04Z", "units": "deg", "xmlid": "jupiter_lat_hee"}, "jupiter_lon_hee": {"__spz_name__": "longitude HEE", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jupiter_lon_hee", "dataset": "jupiter-orb-all", "is_public": "True", "name": "longitude HEE", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-12-31T23:00:04Z", "units": "deg", "xmlid": "jupiter_lon_hee"}, "jupiter_sol_lat": {"__spz_name__": "latitude IAU_sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jupiter_sol_lat", "dataset": "jupiter-orb-all", "is_public": "True", "name": "latitude IAU_sun", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-12-31T23:00:04Z", "units": "deg", "xmlid": "jupiter_sol_lat"}, "jupiter_sol_lon": {"__spz_name__": "longitude IAU_sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jupiter_sol_lon", "dataset": "jupiter-orb-all", "is_public": "True", "name": "longitude IAU_sun", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-12-31T23:00:04Z", "units": "deg", "xmlid": "jupiter_sol_lon"}, "jupiter_sol_ls": {"__spz_name__": "solar longitude (Ls)", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jupiter_sol_ls", "dataset": "jupiter-orb-all", "is_public": "True", "name": "solar longitude (Ls)", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-12-31T23:00:04Z", "units": "deg", "xmlid": "jupiter_sol_ls"}, "lastModificationDate": "2017-10-16T16:59:36Z", "lastUpdate": "2017-10-16T16:56:16Z", "measurement_type": "Ephemeris", "name": "Jupiter", "processing_level": "Calibrated", "r_jupiter": {"__spz_name__": "distance jupiter-sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "r_jupiter", "dataset": "jupiter-orb-all", "is_public": "True", "name": "distance jupiter-sun", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-12-31T23:00:04Z", "units": "AU", "xmlid": "r_jupiter"}, "rank": "9", "sampling": "60M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Ephemerides/jupiter-orb-all", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-12-31T23:00:04Z", "target": "Jupiter", "xmlid": "jupiter-orb-all", "xyz_jupiter_hci": {"__spz_name__": "xyz_hci", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "xyz_jupiter_hci", "dataset": "jupiter-orb-all", "display_type": "timeseries", "is_public": "True", "name": "xyz_hci", "size": "3", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-12-31T23:00:04Z", "units": "AU", "xmlid": "xyz_jupiter_hci", "xyz_jupiter_hci0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_jupiter_hci(0)", "dataset": "jupiter-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "xyz_jupiter_hci", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-12-31T23:00:04Z", "xmlid": "xyz_jupiter_hci(0)"}, "xyz_jupiter_hci1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_jupiter_hci(1)", "dataset": "jupiter-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "xyz_jupiter_hci", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-12-31T23:00:04Z", "xmlid": "xyz_jupiter_hci(1)"}, "xyz_jupiter_hci2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_jupiter_hci(2)", "dataset": "jupiter-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "xyz_jupiter_hci", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-12-31T23:00:04Z", "xmlid": "xyz_jupiter_hci(2)"}}, "xyz_jupiter_hee": {"__spz_name__": "xyz_hee", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "xyz_jupiter_hee", "dataset": "jupiter-orb-all", "display_type": "timeseries", "is_public": "True", "name": "xyz_hee", "size": "3", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-12-31T23:00:04Z", "units": "AU", "xmlid": "xyz_jupiter_hee", "xyz_jupiter_hee0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_jupiter_hee(0)", "dataset": "jupiter-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "xyz_jupiter_hee", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-12-31T23:00:04Z", "xmlid": "xyz_jupiter_hee(0)"}, "xyz_jupiter_hee1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_jupiter_hee(1)", "dataset": "jupiter-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "xyz_jupiter_hee", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-12-31T23:00:04Z", "xmlid": "xyz_jupiter_hee(1)"}, "xyz_jupiter_hee2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_jupiter_hee(2)", "dataset": "jupiter-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "xyz_jupiter_hee", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-12-31T23:00:04Z", "xmlid": "xyz_jupiter_hee(2)"}}}, "mars_orb_all": {"__spz_name__": "Mars", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mars-orb-all", "att": "auto/mars-orb-all", "dataSource": "SPICE", "desc": "
Sampling: 60M
Provider: SPICE", "is_public": "True", "lastModificationDate": "2018-09-18T10:28:21Z", "lastUpdate": "2018-09-18T10:20:34Z", "mars_hci_lat": {"__spz_name__": "latitude HCI", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mars_hci_lat", "dataset": "mars-orb-all", "is_public": "True", "name": "latitude HCI", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "deg", "xmlid": "mars_hci_lat"}, "mars_hci_lon": {"__spz_name__": "longitude HCI", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mars_hci_lon", "dataset": "mars-orb-all", "is_public": "True", "name": "longitude HCI", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "deg", "xmlid": "mars_hci_lon"}, "mars_lat_hee": {"__spz_name__": "latitude HEE", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mars_lat_hee", "dataset": "mars-orb-all", "is_public": "True", "name": "latitude HEE", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "deg", "xmlid": "mars_lat_hee"}, "mars_lon_hee": {"__spz_name__": "longitude HEE", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mars_lon_hee", "dataset": "mars-orb-all", "is_public": "True", "name": "longitude HEE", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "deg", "xmlid": "mars_lon_hee"}, "mars_sol_lat": {"__spz_name__": "latitude IAU_sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mars_sol_lat", "dataset": "mars-orb-all", "is_public": "True", "name": "latitude IAU_sun", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "deg", "xmlid": "mars_sol_lat"}, "mars_sol_lon": {"__spz_name__": "longitude IAU_sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mars_sol_lon", "dataset": "mars-orb-all", "is_public": "True", "name": "longitude IAU_sun", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "deg", "xmlid": "mars_sol_lon"}, "mars_sol_ls": {"__spz_name__": "solar longitude (Ls)", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mars_sol_ls", "dataset": "mars-orb-all", "is_public": "True", "name": "solar longitude (Ls)", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "deg", "xmlid": "mars_sol_ls"}, "measurement_type": "Ephemeris", "name": "Mars", "processing_level": "Calibrated", "r_mars": {"__spz_name__": "distance mars-sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "r_mars", "dataset": "mars-orb-all", "is_public": "True", "name": "distance mars-sun", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "AU", "xmlid": "r_mars"}, "rank": "8", "sampling": "60M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Ephemerides/mars-orb-all", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "target": "Mars", "xmlid": "mars-orb-all", "xyz_mars_hci": {"__spz_name__": "xyz_hci", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "xyz_mars_hci", "dataset": "mars-orb-all", "display_type": "timeseries", "is_public": "True", "name": "xyz_hci", "size": "3", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "AU", "xmlid": "xyz_mars_hci", "xyz_mars_hci0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_mars_hci(0)", "dataset": "mars-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "xyz_mars_hci", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "xmlid": "xyz_mars_hci(0)"}, "xyz_mars_hci1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_mars_hci(1)", "dataset": "mars-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "xyz_mars_hci", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "xmlid": "xyz_mars_hci(1)"}, "xyz_mars_hci2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_mars_hci(2)", "dataset": "mars-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "xyz_mars_hci", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "xmlid": "xyz_mars_hci(2)"}}, "xyz_mars_hee": {"__spz_name__": "xyz_hee", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "xyz_mars_hee", "dataset": "mars-orb-all", "display_type": "timeseries", "is_public": "True", "name": "xyz_hee", "size": "3", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "AU", "xmlid": "xyz_mars_hee", "xyz_mars_hee0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_mars_hee(0)", "dataset": "mars-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "xyz_mars_hee", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "xmlid": "xyz_mars_hee(0)"}, "xyz_mars_hee1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_mars_hee(1)", "dataset": "mars-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "xyz_mars_hee", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "xmlid": "xyz_mars_hee(1)"}, "xyz_mars_hee2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_mars_hee(2)", "dataset": "mars-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "xyz_mars_hee", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "xmlid": "xyz_mars_hee(2)"}}}, "mercury_orb_all": {"__spz_name__": "Mercury", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mercury-orb-all", "att": "auto/mercury-orb-all", "dataSource": "SPICE", "desc": "
Sampling: 60M
Provider: SPICE", "is_public": "True", "lastModificationDate": "2018-09-18T11:36:19Z", "lastUpdate": "2018-09-18T11:32:35Z", "measurement_type": "Ephemeris", "mercury_hci_lat": {"__spz_name__": "latitude HCI", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mercury_hci_lat", "dataset": "mercury-orb-all", "is_public": "True", "name": "latitude HCI", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "deg", "xmlid": "mercury_hci_lat"}, "mercury_hci_lon": {"__spz_name__": "longitude HCI", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mercury_hci_lon", "dataset": "mercury-orb-all", "is_public": "True", "name": "longitude HCI", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "deg", "xmlid": "mercury_hci_lon"}, "mercury_lat_hee": {"__spz_name__": "latitude HEE", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mercury_lat_hee", "dataset": "mercury-orb-all", "is_public": "True", "name": "latitude HEE", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "deg", "xmlid": "mercury_lat_hee"}, "mercury_lon_hee": {"__spz_name__": "longitude HEE", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mercury_lon_hee", "dataset": "mercury-orb-all", "is_public": "True", "name": "longitude HEE", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "deg", "xmlid": "mercury_lon_hee"}, "mercury_sol_lat": {"__spz_name__": "latitude IAU_sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mercury_sol_lat", "dataset": "mercury-orb-all", "is_public": "True", "name": "latitude IAU_sun", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "deg", "xmlid": "mercury_sol_lat"}, "mercury_sol_lon": {"__spz_name__": "longitude IAU_sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mercury_sol_lon", "dataset": "mercury-orb-all", "is_public": "True", "name": "longitude IAU_sun", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "deg", "xmlid": "mercury_sol_lon"}, "mercury_sol_ls": {"__spz_name__": "solar longitude (Ls)", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mercury_sol_ls", "dataset": "mercury-orb-all", "is_public": "True", "name": "solar longitude (Ls)", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "deg", "xmlid": "mercury_sol_ls"}, "name": "Mercury", "processing_level": "Calibrated", "r_mercury": {"__spz_name__": "distance mercury-sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "r_mercury", "dataset": "mercury-orb-all", "is_public": "True", "name": "distance mercury-sun", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "AU", "xmlid": "r_mercury"}, "rank": "2", "sampling": "60M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Ephemerides/mercury-orb-all", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "target": "Mercury", "xmlid": "mercury-orb-all", "xyz_mercury_hci": {"__spz_name__": "xyz_hci", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "xyz_mercury_hci", "dataset": "mercury-orb-all", "display_type": "timeseries", "is_public": "True", "name": "xyz_hci", "size": "3", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "AU", "xmlid": "xyz_mercury_hci", "xyz_mercury_hci0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_mercury_hci(0)", "dataset": "mercury-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "xyz_mercury_hci", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "xmlid": "xyz_mercury_hci(0)"}, "xyz_mercury_hci1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_mercury_hci(1)", "dataset": "mercury-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "xyz_mercury_hci", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "xmlid": "xyz_mercury_hci(1)"}, "xyz_mercury_hci2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_mercury_hci(2)", "dataset": "mercury-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "xyz_mercury_hci", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "xmlid": "xyz_mercury_hci(2)"}}, "xyz_mercury_hee": {"__spz_name__": "xyz_hee", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "xyz_mercury_hee", "dataset": "mercury-orb-all", "display_type": "timeseries", "is_public": "True", "name": "xyz_hee", "size": "3", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "AU", "xmlid": "xyz_mercury_hee", "xyz_mercury_hee0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_mercury_hee(0)", "dataset": "mercury-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "xyz_mercury_hee", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "xmlid": "xyz_mercury_hee(0)"}, "xyz_mercury_hee1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_mercury_hee(1)", "dataset": "mercury-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "xyz_mercury_hee", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "xmlid": "xyz_mercury_hee(1)"}, "xyz_mercury_hee2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_mercury_hee(2)", "dataset": "mercury-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "xyz_mercury_hee", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "xmlid": "xyz_mercury_hee(2)"}}}, "moon_earth_all": {"__spz_name__": "Earth Moon", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "moon-earth-all", "att": "auto/moon-earth-all", "dataSource": "SPICE", "desc": "
Sampling: 60M
Provider: SPICE", "is_public": "True", "lastModificationDate": "2019-08-23T17:38:40Z", "lastUpdate": "2019-08-23T17:34:00Z", "measurement_type": "Ephemeris", "moon_lat_hee": {"__spz_name__": "latitude HEE", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "moon_lat_hee", "dataset": "moon-earth-all", "is_public": "True", "name": "latitude HEE", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "deg", "xmlid": "moon_lat_hee"}, "moon_lon_hee": {"__spz_name__": "longitude HEE", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "moon_lon_hee", "dataset": "moon-earth-all", "is_public": "True", "name": "longitude HEE", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "deg", "xmlid": "moon_lon_hee"}, "moon_sol_lat": {"__spz_name__": "latitude IAU_sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "moon_sol_lat", "dataset": "moon-earth-all", "is_public": "True", "name": "latitude IAU_sun", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "rad", "xmlid": "moon_sol_lat"}, "moon_sol_lon": {"__spz_name__": "longitude IAU_sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "moon_sol_lon", "dataset": "moon-earth-all", "is_public": "True", "name": "longitude IAU_sun", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "rad", "xmlid": "moon_sol_lon"}, "name": "Earth Moon", "processing_level": "Calibrated", "r_moon": {"__spz_name__": "distance moon-earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "r_moon", "dataset": "moon-earth-all", "is_public": "True", "name": "distance moon-earth", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "Re", "xmlid": "r_moon"}, "r_moon_sun": {"__spz_name__": "distance moon-sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "r_moon_sun", "dataset": "moon-earth-all", "is_public": "True", "name": "distance moon-sun", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "AU", "xmlid": "r_moon_sun"}, "rank": "6", "sampling": "60M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Ephemerides/moon-earth-all", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "target": "Earth", "xmlid": "moon-earth-all", "xyz_moon_gse": {"__spz_name__": "xyz_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "xyz_moon_gse", "dataset": "moon-earth-all", "display_type": "timeseries", "is_public": "True", "name": "xyz_gse", "size": "3", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "Re", "xmlid": "xyz_moon_gse", "xyz_moon_gse0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_moon_gse(0)", "dataset": "moon-earth-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "xyz_moon_gse", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "xmlid": "xyz_moon_gse(0)"}, "xyz_moon_gse1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_moon_gse(1)", "dataset": "moon-earth-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "xyz_moon_gse", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "xmlid": "xyz_moon_gse(1)"}, "xyz_moon_gse2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_moon_gse(2)", "dataset": "moon-earth-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "xyz_moon_gse", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "xmlid": "xyz_moon_gse(2)"}}, "xyz_moon_gsm": {"__spz_name__": "xyz_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "xyz_moon_gsm", "dataset": "moon-earth-all", "display_type": "timeseries", "is_public": "True", "name": "xyz_gsm", "size": "3", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "Re", "xmlid": "xyz_moon_gsm", "xyz_moon_gsm0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_moon_gsm(0)", "dataset": "moon-earth-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "xyz_moon_gsm", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "xmlid": "xyz_moon_gsm(0)"}, "xyz_moon_gsm1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_moon_gsm(1)", "dataset": "moon-earth-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "xyz_moon_gsm", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "xmlid": "xyz_moon_gsm(1)"}, "xyz_moon_gsm2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_moon_gsm(2)", "dataset": "moon-earth-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "xyz_moon_gsm", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "xmlid": "xyz_moon_gsm(2)"}}, "xyz_moon_hci": {"__spz_name__": "xyz_hci", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "xyz_moon_hci", "dataset": "moon-earth-all", "display_type": "timeseries", "is_public": "True", "name": "xyz_hci", "size": "3", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "AU", "xmlid": "xyz_moon_hci", "xyz_moon_hci0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_moon_hci(0)", "dataset": "moon-earth-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "xyz_moon_hci", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "xmlid": "xyz_moon_hci(0)"}, "xyz_moon_hci1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_moon_hci(1)", "dataset": "moon-earth-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "xyz_moon_hci", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "xmlid": "xyz_moon_hci(1)"}, "xyz_moon_hci2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_moon_hci(2)", "dataset": "moon-earth-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "xyz_moon_hci", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "xmlid": "xyz_moon_hci(2)"}}, "xyz_moon_hee": {"__spz_name__": "xyz_hee", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "xyz_moon_hee", "dataset": "moon-earth-all", "display_type": "timeseries", "is_public": "True", "name": "xyz_hee", "size": "3", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "AU", "xmlid": "xyz_moon_hee", "xyz_moon_hee0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_moon_hee(0)", "dataset": "moon-earth-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "xyz_moon_hee", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "xmlid": "xyz_moon_hee(0)"}, "xyz_moon_hee1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_moon_hee(1)", "dataset": "moon-earth-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "xyz_moon_hee", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "xmlid": "xyz_moon_hee(1)"}, "xyz_moon_hee2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_moon_hee(2)", "dataset": "moon-earth-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "xyz_moon_hee", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "xmlid": "xyz_moon_hee(2)"}}, "xyz_moon_heeq": {"__spz_name__": "xyz_heeq", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "xyz_moon_heeq", "dataset": "moon-earth-all", "display_type": "timeseries", "is_public": "True", "name": "xyz_heeq", "size": "3", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "AU", "xmlid": "xyz_moon_heeq", "xyz_moon_heeq0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_moon_heeq(0)", "dataset": "moon-earth-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "xyz_moon_heeq", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "xmlid": "xyz_moon_heeq(0)"}, "xyz_moon_heeq1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_moon_heeq(1)", "dataset": "moon-earth-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "xyz_moon_heeq", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "xmlid": "xyz_moon_heeq(1)"}, "xyz_moon_heeq2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_moon_heeq(2)", "dataset": "moon-earth-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "xyz_moon_heeq", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "xmlid": "xyz_moon_heeq(2)"}}}, "name": "Planets and Moons", "neptune_orb_all": {"__spz_name__": "Neptune", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "neptune-orb-all", "att": "auto/neptune-orb-all", "dataSource": "SPICE", "desc": "
Sampling: 60M
Provider: SPICE", "is_public": "True", "lastModificationDate": "2018-06-28T13:56:55Z", "lastUpdate": "2018-06-28T12:49:22Z", "measurement_type": "Ephemeris", "name": "Neptune", "neptune_hci_lat": {"__spz_name__": "latitude HCI", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "neptune_hci_lat", "dataset": "neptune-orb-all", "is_public": "True", "name": "latitude HCI", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "deg", "xmlid": "neptune_hci_lat"}, "neptune_hci_lon": {"__spz_name__": "longitude HCI", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "neptune_hci_lon", "dataset": "neptune-orb-all", "is_public": "True", "name": "longitude HCI", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "deg", "xmlid": "neptune_hci_lon"}, "neptune_lat_hee": {"__spz_name__": "latitude HEE", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "neptune_lat_hee", "dataset": "neptune-orb-all", "is_public": "True", "name": "latitude HEE", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "deg", "xmlid": "neptune_lat_hee"}, "neptune_lon_hee": {"__spz_name__": "longitude HEE", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "neptune_lon_hee", "dataset": "neptune-orb-all", "is_public": "True", "name": "longitude HEE", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "deg", "xmlid": "neptune_lon_hee"}, "neptune_sol_lat": {"__spz_name__": "latitude IAU_sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "neptune_sol_lat", "dataset": "neptune-orb-all", "is_public": "True", "name": "latitude IAU_sun", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "deg", "xmlid": "neptune_sol_lat"}, "neptune_sol_lon": {"__spz_name__": "longitude IAU_sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "neptune_sol_lon", "dataset": "neptune-orb-all", "is_public": "True", "name": "longitude IAU_sun", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "deg", "xmlid": "neptune_sol_lon"}, "neptune_sol_ls": {"__spz_name__": "solar longitude (Ls)", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "neptune_sol_ls", "dataset": "neptune-orb-all", "is_public": "True", "name": "solar longitude (Ls)", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "deg", "xmlid": "neptune_sol_ls"}, "processing_level": "Calibrated", "r_neptune": {"__spz_name__": "distance neptune-sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "r_neptune", "dataset": "neptune-orb-all", "is_public": "True", "name": "distance neptune-sun", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "AU", "xmlid": "r_neptune"}, "rank": "93", "sampling": "60M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Ephemerides/neptune-orb-all", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "target": "Neptune", "xmlid": "neptune-orb-all", "xyz_neptune_hci": {"__spz_name__": "xyz_hci", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "xyz_neptune_hci", "dataset": "neptune-orb-all", "display_type": "timeseries", "is_public": "True", "name": "xyz_hci", "size": "3", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "AU", "xmlid": "xyz_neptune_hci", "xyz_neptune_hci0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_neptune_hci(0)", "dataset": "neptune-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "xyz_neptune_hci", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "xmlid": "xyz_neptune_hci(0)"}, "xyz_neptune_hci1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_neptune_hci(1)", "dataset": "neptune-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "xyz_neptune_hci", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "xmlid": "xyz_neptune_hci(1)"}, "xyz_neptune_hci2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_neptune_hci(2)", "dataset": "neptune-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "xyz_neptune_hci", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "xmlid": "xyz_neptune_hci(2)"}}, "xyz_neptune_hee": {"__spz_name__": "xyz_hee", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "xyz_neptune_hee", "dataset": "neptune-orb-all", "display_type": "timeseries", "is_public": "True", "name": "xyz_hee", "size": "3", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "AU", "xmlid": "xyz_neptune_hee", "xyz_neptune_hee0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_neptune_hee(0)", "dataset": "neptune-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "xyz_neptune_hee", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "xmlid": "xyz_neptune_hee(0)"}, "xyz_neptune_hee1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_neptune_hee(1)", "dataset": "neptune-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "xyz_neptune_hee", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "xmlid": "xyz_neptune_hee(1)"}, "xyz_neptune_hee2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_neptune_hee(2)", "dataset": "neptune-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "xyz_neptune_hee", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "xmlid": "xyz_neptune_hee(2)"}}}, "pluto_orb_all": {"__spz_name__": "Pluto", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "pluto-orb-all", "att": "auto/pluto-orb-all", "dataSource": "SPICE", "desc": "
Sampling: 60M
Provider: SPICE", "is_public": "True", "lastModificationDate": "2018-06-28T14:20:44Z", "lastUpdate": "2018-06-28T13:34:22Z", "measurement_type": "Ephemeris", "name": "Pluto", "pluto_hci_lat": {"__spz_name__": "latitude HCI", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pluto_hci_lat", "dataset": "pluto-orb-all", "is_public": "True", "name": "latitude HCI", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "deg", "xmlid": "pluto_hci_lat"}, "pluto_hci_lon": {"__spz_name__": "longitude HCI", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pluto_hci_lon", "dataset": "pluto-orb-all", "is_public": "True", "name": "longitude HCI", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "deg", "xmlid": "pluto_hci_lon"}, "pluto_lat_hee": {"__spz_name__": "latitude HEE", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pluto_lat_hee", "dataset": "pluto-orb-all", "is_public": "True", "name": "latitude HEE", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "deg", "xmlid": "pluto_lat_hee"}, "pluto_lon_hee": {"__spz_name__": "longitude HEE", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pluto_lon_hee", "dataset": "pluto-orb-all", "is_public": "True", "name": "longitude HEE", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "deg", "xmlid": "pluto_lon_hee"}, "pluto_sol_lat": {"__spz_name__": "latitude IAU_sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pluto_sol_lat", "dataset": "pluto-orb-all", "is_public": "True", "name": "latitude IAU_sun", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "deg", "xmlid": "pluto_sol_lat"}, "pluto_sol_lon": {"__spz_name__": "longitude IAU_sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pluto_sol_lon", "dataset": "pluto-orb-all", "is_public": "True", "name": "longitude IAU_sun", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "deg", "xmlid": "pluto_sol_lon"}, "pluto_sol_ls": {"__spz_name__": "solar longitude (Ls)", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pluto_sol_ls", "dataset": "pluto-orb-all", "is_public": "True", "name": "solar longitude (Ls)", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "deg", "xmlid": "pluto_sol_ls"}, "processing_level": "Calibrated", "r_pluto": {"__spz_name__": "distance pluto-sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "r_pluto", "dataset": "pluto-orb-all", "is_public": "True", "name": "distance pluto-sun", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "AU", "xmlid": "r_pluto"}, "rank": "95", "sampling": "60M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Ephemerides/pluto-orb-all", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "target": "Pluto", "xmlid": "pluto-orb-all", "xyz_pluto_hci": {"__spz_name__": "xyz_hci", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "xyz_pluto_hci", "dataset": "pluto-orb-all", "display_type": "timeseries", "is_public": "True", "name": "xyz_hci", "size": "3", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "AU", "xmlid": "xyz_pluto_hci", "xyz_pluto_hci0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_pluto_hci(0)", "dataset": "pluto-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "xyz_pluto_hci", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "xmlid": "xyz_pluto_hci(0)"}, "xyz_pluto_hci1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_pluto_hci(1)", "dataset": "pluto-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "xyz_pluto_hci", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "xmlid": "xyz_pluto_hci(1)"}, "xyz_pluto_hci2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_pluto_hci(2)", "dataset": "pluto-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "xyz_pluto_hci", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "xmlid": "xyz_pluto_hci(2)"}}, "xyz_pluto_hee": {"__spz_name__": "xyz_hee", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "xyz_pluto_hee", "dataset": "pluto-orb-all", "display_type": "timeseries", "is_public": "True", "name": "xyz_hee", "size": "3", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "AU", "xmlid": "xyz_pluto_hee", "xyz_pluto_hee0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_pluto_hee(0)", "dataset": "pluto-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "xyz_pluto_hee", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "xmlid": "xyz_pluto_hee(0)"}, "xyz_pluto_hee1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_pluto_hee(1)", "dataset": "pluto-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "xyz_pluto_hee", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "xmlid": "xyz_pluto_hee(1)"}, "xyz_pluto_hee2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_pluto_hee(2)", "dataset": "pluto-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "xyz_pluto_hee", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "xmlid": "xyz_pluto_hee(2)"}}}, "saturn_orb_all": {"__spz_name__": "Saturn", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "saturn-orb-all", "att": "auto/saturn-orb-all", "dataSource": "SPICE", "desc": "
Sampling: 60M
Provider: SPICE", "is_public": "True", "lastModificationDate": "2018-09-18T11:42:24Z", "lastUpdate": "2018-09-18T11:40:13Z", "measurement_type": "Ephemeris", "name": "Saturn", "processing_level": "Calibrated", "r_saturn": {"__spz_name__": "distance saturn-sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "r_saturn", "dataset": "saturn-orb-all", "is_public": "True", "name": "distance saturn-sun", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "AU", "xmlid": "r_saturn"}, "rank": "91", "sampling": "60M", "saturn_hci_lat": {"__spz_name__": "latitude HCI", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "saturn_hci_lat", "dataset": "saturn-orb-all", "is_public": "True", "name": "latitude HCI", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "deg", "xmlid": "saturn_hci_lat"}, "saturn_hci_lon": {"__spz_name__": "longitude HCI", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "saturn_hci_lon", "dataset": "saturn-orb-all", "is_public": "True", "name": "longitude HCI", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "deg", "xmlid": "saturn_hci_lon"}, "saturn_lat_hee": {"__spz_name__": "latitude HEE", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "saturn_lat_hee", "dataset": "saturn-orb-all", "is_public": "True", "name": "latitude HEE", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "deg", "xmlid": "saturn_lat_hee"}, "saturn_lon_hee": {"__spz_name__": "longitude HEE", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "saturn_lon_hee", "dataset": "saturn-orb-all", "is_public": "True", "name": "longitude HEE", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "deg", "xmlid": "saturn_lon_hee"}, "saturn_sol_lat": {"__spz_name__": "latitude IAU_sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "saturn_sol_lat", "dataset": "saturn-orb-all", "is_public": "True", "name": "latitude IAU_sun", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "deg", "xmlid": "saturn_sol_lat"}, "saturn_sol_lon": {"__spz_name__": "longitude IAU_sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "saturn_sol_lon", "dataset": "saturn-orb-all", "is_public": "True", "name": "longitude IAU_sun", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "deg", "xmlid": "saturn_sol_lon"}, "saturn_sol_ls": {"__spz_name__": "solar longitude (Ls)", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "saturn_sol_ls", "dataset": "saturn-orb-all", "is_public": "True", "name": "solar longitude (Ls)", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "deg", "xmlid": "saturn_sol_ls"}, "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Ephemerides/saturn-orb-all", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "target": "Saturn", "xmlid": "saturn-orb-all", "xyz_saturn_hci": {"__spz_name__": "xyz_hci", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "xyz_saturn_hci", "dataset": "saturn-orb-all", "display_type": "timeseries", "is_public": "True", "name": "xyz_hci", "size": "3", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "AU", "xmlid": "xyz_saturn_hci", "xyz_saturn_hci0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_saturn_hci(0)", "dataset": "saturn-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "xyz_saturn_hci", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "xmlid": "xyz_saturn_hci(0)"}, "xyz_saturn_hci1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_saturn_hci(1)", "dataset": "saturn-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "xyz_saturn_hci", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "xmlid": "xyz_saturn_hci(1)"}, "xyz_saturn_hci2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_saturn_hci(2)", "dataset": "saturn-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "xyz_saturn_hci", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "xmlid": "xyz_saturn_hci(2)"}}, "xyz_saturn_hee": {"__spz_name__": "xyz_hee", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "xyz_saturn_hee", "dataset": "saturn-orb-all", "display_type": "timeseries", "is_public": "True", "name": "xyz_hee", "size": "3", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "AU", "xmlid": "xyz_saturn_hee", "xyz_saturn_hee0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_saturn_hee(0)", "dataset": "saturn-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "xyz_saturn_hee", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "xmlid": "xyz_saturn_hee(0)"}, "xyz_saturn_hee1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_saturn_hee(1)", "dataset": "saturn-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "xyz_saturn_hee", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "xmlid": "xyz_saturn_hee(1)"}, "xyz_saturn_hee2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_saturn_hee(2)", "dataset": "saturn-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "xyz_saturn_hee", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "xmlid": "xyz_saturn_hee(2)"}}}, "uranus_orb_all": {"__spz_name__": "Uranus", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "uranus-orb-all", "att": "auto/uranus-orb-all", "dataSource": "SPICE", "desc": "
Sampling: 60M
Provider: SPICE", "is_public": "True", "lastModificationDate": "2018-06-28T14:05:56Z", "lastUpdate": "2018-06-28T13:17:40Z", "measurement_type": "Ephemeris", "name": "Uranus", "processing_level": "Calibrated", "r_uranus": {"__spz_name__": "distance uranus-sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "r_uranus", "dataset": "uranus-orb-all", "is_public": "True", "name": "distance uranus-sun", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "AU", "xmlid": "r_uranus"}, "rank": "92", "sampling": "60M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Ephemerides/uranus-orb-all", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "target": "Uranus", "uranus_hci_lat": {"__spz_name__": "latitude HCI", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "uranus_hci_lat", "dataset": "uranus-orb-all", "is_public": "True", "name": "latitude HCI", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "deg", "xmlid": "uranus_hci_lat"}, "uranus_hci_lon": {"__spz_name__": "longitude HCI", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "uranus_hci_lon", "dataset": "uranus-orb-all", "is_public": "True", "name": "longitude HCI", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "deg", "xmlid": "uranus_hci_lon"}, "uranus_lat_hee": {"__spz_name__": "latitude HEE", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "uranus_lat_hee", "dataset": "uranus-orb-all", "is_public": "True", "name": "latitude HEE", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "deg", "xmlid": "uranus_lat_hee"}, "uranus_lon_hee": {"__spz_name__": "longitude HEE", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "uranus_lon_hee", "dataset": "uranus-orb-all", "is_public": "True", "name": "longitude HEE", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "deg", "xmlid": "uranus_lon_hee"}, "uranus_sol_lat": {"__spz_name__": "latitude IAU_sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "uranus_sol_lat", "dataset": "uranus-orb-all", "is_public": "True", "name": "latitude IAU_sun", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "deg", "xmlid": "uranus_sol_lat"}, "uranus_sol_lon": {"__spz_name__": "longitude IAU_sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "uranus_sol_lon", "dataset": "uranus-orb-all", "is_public": "True", "name": "longitude IAU_sun", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "deg", "xmlid": "uranus_sol_lon"}, "uranus_sol_ls": {"__spz_name__": "solar longitude (Ls)", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "uranus_sol_ls", "dataset": "uranus-orb-all", "is_public": "True", "name": "solar longitude (Ls)", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "deg", "xmlid": "uranus_sol_ls"}, "xmlid": "uranus-orb-all", "xyz_uranus_hci": {"__spz_name__": "xyz_hci", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "xyz_uranus_hci", "dataset": "uranus-orb-all", "display_type": "timeseries", "is_public": "True", "name": "xyz_hci", "size": "3", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "AU", "xmlid": "xyz_uranus_hci", "xyz_uranus_hci0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_uranus_hci(0)", "dataset": "uranus-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "xyz_uranus_hci", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "xmlid": "xyz_uranus_hci(0)"}, "xyz_uranus_hci1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_uranus_hci(1)", "dataset": "uranus-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "xyz_uranus_hci", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "xmlid": "xyz_uranus_hci(1)"}, "xyz_uranus_hci2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_uranus_hci(2)", "dataset": "uranus-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "xyz_uranus_hci", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "xmlid": "xyz_uranus_hci(2)"}}, "xyz_uranus_hee": {"__spz_name__": "xyz_hee", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "xyz_uranus_hee", "dataset": "uranus-orb-all", "display_type": "timeseries", "is_public": "True", "name": "xyz_hee", "size": "3", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "AU", "xmlid": "xyz_uranus_hee", "xyz_uranus_hee0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_uranus_hee(0)", "dataset": "uranus-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "xyz_uranus_hee", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "xmlid": "xyz_uranus_hee(0)"}, "xyz_uranus_hee1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_uranus_hee(1)", "dataset": "uranus-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "xyz_uranus_hee", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "xmlid": "xyz_uranus_hee(1)"}, "xyz_uranus_hee2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_uranus_hee(2)", "dataset": "uranus-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "xyz_uranus_hee", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "xmlid": "xyz_uranus_hee(2)"}}}, "venus_orb_all": {"__spz_name__": "Venus", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "venus-orb-all", "att": "auto/venus-orb-all", "dataSource": "SPICE", "desc": "
Sampling: 60M
Provider: SPICE", "is_public": "True", "lastModificationDate": "2018-09-18T11:25:03Z", "lastUpdate": "2018-09-18T11:13:56Z", "measurement_type": "Ephemeris", "name": "Venus", "processing_level": "Calibrated", "r_venus": {"__spz_name__": "distance venus-sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "r_venus", "dataset": "venus-orb-all", "is_public": "True", "name": "distance venus-sun", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "AU", "xmlid": "r_venus"}, "rank": "3", "sampling": "60M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Ephemerides/venus-orb-all", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "target": "Venus", "venus_hci_lat": {"__spz_name__": "latitude HCI", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "venus_hci_lat", "dataset": "venus-orb-all", "is_public": "True", "name": "latitude HCI", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "deg", "xmlid": "venus_hci_lat"}, "venus_hci_lon": {"__spz_name__": "longitude HCI", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "venus_hci_lon", "dataset": "venus-orb-all", "is_public": "True", "name": "longitude HCI", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "deg", "xmlid": "venus_hci_lon"}, "venus_lat_hee": {"__spz_name__": "latitude HEE", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "venus_lat_hee", "dataset": "venus-orb-all", "is_public": "True", "name": "latitude HEE", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "deg", "xmlid": "venus_lat_hee"}, "venus_lon_hee": {"__spz_name__": "longitude HEE", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "venus_lon_hee", "dataset": "venus-orb-all", "is_public": "True", "name": "longitude HEE", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "deg", "xmlid": "venus_lon_hee"}, "venus_sol_lat": {"__spz_name__": "latitude IAU_sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "venus_sol_lat", "dataset": "venus-orb-all", "is_public": "True", "name": "latitude IAU_sun", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "deg", "xmlid": "venus_sol_lat"}, "venus_sol_lon": {"__spz_name__": "longitude IAU_sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "venus_sol_lon", "dataset": "venus-orb-all", "is_public": "True", "name": "longitude IAU_sun", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "deg", "xmlid": "venus_sol_lon"}, "venus_sol_ls": {"__spz_name__": "solar longitude (Ls)", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "venus_sol_ls", "dataset": "venus-orb-all", "is_public": "True", "name": "solar longitude (Ls)", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "deg", "xmlid": "venus_sol_ls"}, "xmlid": "venus-orb-all", "xyz_venus_hci": {"__spz_name__": "xyz_hci", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "xyz_venus_hci", "dataset": "venus-orb-all", "display_type": "timeseries", "is_public": "True", "name": "xyz_hci", "size": "3", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "AU", "xmlid": "xyz_venus_hci", "xyz_venus_hci0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_venus_hci(0)", "dataset": "venus-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "xyz_venus_hci", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "xmlid": "xyz_venus_hci(0)"}, "xyz_venus_hci1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_venus_hci(1)", "dataset": "venus-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "xyz_venus_hci", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "xmlid": "xyz_venus_hci(1)"}, "xyz_venus_hci2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_venus_hci(2)", "dataset": "venus-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "xyz_venus_hci", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "xmlid": "xyz_venus_hci(2)"}}, "xyz_venus_hee": {"__spz_name__": "xyz_hee", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "xyz_venus_hee", "dataset": "venus-orb-all", "display_type": "timeseries", "is_public": "True", "name": "xyz_hee", "size": "3", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "units": "AU", "xmlid": "xyz_venus_hee", "xyz_venus_hee0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_venus_hee(0)", "dataset": "venus-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "xyz_venus_hee", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "xmlid": "xyz_venus_hee(0)"}, "xyz_venus_hee1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_venus_hee(1)", "dataset": "venus-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "xyz_venus_hee", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "xmlid": "xyz_venus_hee(1)"}, "xyz_venus_hee2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_venus_hee(2)", "dataset": "venus-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "xyz_venus_hee", "start_date": "1970-01-01T00:00:05Z", "stop_date": "2035-01-19T22:00:04Z", "xmlid": "xyz_venus_hee(2)"}}}, "xmlid": "Ephemerides_ephemerides"}, "__spz_name__": "Astronomical Objects Ephemerides", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Ephemerides", "att": "auto/Ephemerides", "desc": "Planets/Moons Orbitography
1970-01-01T00:00:00", "is_public": "True", "name": "Astronomical Objects Ephemerides", "rank": "99", "target": "Heliosphere", "xmlid": "Ephemerides"}, "BepiColombo": {"Analytical_Models": {"KT17_model": {"__spz_name__": "KT17 model", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "bepi-kt17-model", "bepi_kt17_model1": {"PriorID": "bepi-orb-mercury1", "__spz_name__": "Mercury flyby #1", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "bepi-kt17-model1", "att": "auto/bepi-kt17-model1", "b_kt17_model_60_0_378_50_bepi_xyz_mso1": {"__spz_name__": "b msm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_kt17_model_60_0.378_50_bepi_xyz_mso1", "b_kt17_model_60_0_378_50_bepi_xyz_mso10": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_kt17_model_60_0.378_50_bepi_xyz_mso1(0)", "dataset": "bepi-kt17-model1", "index1": "0", "is_public": "True", "name": "bx", "parameter": "b_kt17_model_60_0.378_50_bepi_xyz_mso1", "start_date": "2021-10-01T00:00:00Z", "stop_date": "2021-10-03T23:58:00Z", "xmlid": "b_kt17_model_60_0.378_50_bepi_xyz_mso1(0)"}, "b_kt17_model_60_0_378_50_bepi_xyz_mso11": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_kt17_model_60_0.378_50_bepi_xyz_mso1(1)", "dataset": "bepi-kt17-model1", "index1": "1", "is_public": "True", "name": "by", "parameter": "b_kt17_model_60_0.378_50_bepi_xyz_mso1", "start_date": "2021-10-01T00:00:00Z", "stop_date": "2021-10-03T23:58:00Z", "xmlid": "b_kt17_model_60_0.378_50_bepi_xyz_mso1(1)"}, "b_kt17_model_60_0_378_50_bepi_xyz_mso12": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_kt17_model_60_0.378_50_bepi_xyz_mso1(2)", "dataset": "bepi-kt17-model1", "index1": "2", "is_public": "True", "name": "bz", "parameter": "b_kt17_model_60_0.378_50_bepi_xyz_mso1", "start_date": "2021-10-01T00:00:00Z", "stop_date": "2021-10-03T23:58:00Z", "xmlid": "b_kt17_model_60_0.378_50_bepi_xyz_mso1(2)"}, "dataset": "bepi-kt17-model1", "is_public": "True", "name": "b msm", "predefined": "1", "size": "3", "start_date": "2021-10-01T00:00:00Z", "stop_date": "2021-10-03T23:58:00Z", "template": "b_kt17_model_##sampling##_##rsun##_##dist##_##orbit##", "units": "nT", "xmlid": "b_kt17_model_60_0.378_50_bepi_xyz_mso1"}, "b_kt17_model_tot_60_0_378_50_bepi_xyz_mso1": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_kt17_model_tot_60_0.378_50_bepi_xyz_mso1", "dataset": "bepi-kt17-model1", "description": "Scalar magnitude of the magnetic field in nT", "display_type": "timeseries", "is_public": "True", "name": "|b|", "predefined": "1", "start_date": "2021-10-01T00:00:00Z", "stop_date": "2021-10-03T23:58:00Z", "template": "b_kt17_model_tot_##sampling##_##rsun##_##dist##_##orbit##", "ucd": "phys.magField", "units": "nT", "xmlid": "b_kt17_model_tot_60_0.378_50_bepi_xyz_mso1"}, "dataSource": "IRAP", "desc": "KT17 mercury magnetic field model for flyby #1
Sampling: 1M
Provider: IRAP", "is_public": "True", "lastModificationDate": "2023-10-26T07:46:39Z", "lastUpdate": "2023-10-26T07:44:08Z", "measurement_type": "MagneticField", "name": "Mercury flyby #1", "processing_level": "Calibrated", "sampling": "1M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/BepiColombo/Models/bepi-kt17-model1", "start_date": "2021-10-01T00:00:00Z", "stop_date": "2021-10-03T23:58:00Z", "target": "Mercury", "xmlid": "bepi-kt17-model1"}, "bepi_kt17_model2": {"PriorID": "bepi-orb-mercury2", "__spz_name__": "Mercury flyby #2", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "bepi-kt17-model2", "att": "auto/bepi-kt17-model2", "b_kt17_model_60_0_377_50_bepi_xyz_mso2": {"__spz_name__": "b msm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_kt17_model_60_0.377_50_bepi_xyz_mso2", "b_kt17_model_60_0_377_50_bepi_xyz_mso20": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_kt17_model_60_0.377_50_bepi_xyz_mso2(0)", "dataset": "bepi-kt17-model2", "index1": "0", "is_public": "True", "name": "bx", "parameter": "b_kt17_model_60_0.377_50_bepi_xyz_mso2", "start_date": "2022-06-22T00:00:00Z", "stop_date": "2022-06-24T23:58:00Z", "xmlid": "b_kt17_model_60_0.377_50_bepi_xyz_mso2(0)"}, "b_kt17_model_60_0_377_50_bepi_xyz_mso21": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_kt17_model_60_0.377_50_bepi_xyz_mso2(1)", "dataset": "bepi-kt17-model2", "index1": "1", "is_public": "True", "name": "by", "parameter": "b_kt17_model_60_0.377_50_bepi_xyz_mso2", "start_date": "2022-06-22T00:00:00Z", "stop_date": "2022-06-24T23:58:00Z", "xmlid": "b_kt17_model_60_0.377_50_bepi_xyz_mso2(1)"}, "b_kt17_model_60_0_377_50_bepi_xyz_mso22": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_kt17_model_60_0.377_50_bepi_xyz_mso2(2)", "dataset": "bepi-kt17-model2", "index1": "2", "is_public": "True", "name": "bz", "parameter": "b_kt17_model_60_0.377_50_bepi_xyz_mso2", "start_date": "2022-06-22T00:00:00Z", "stop_date": "2022-06-24T23:58:00Z", "xmlid": "b_kt17_model_60_0.377_50_bepi_xyz_mso2(2)"}, "dataset": "bepi-kt17-model2", "is_public": "True", "name": "b msm", "predefined": "1", "size": "3", "start_date": "2022-06-22T00:00:00Z", "stop_date": "2022-06-24T23:58:00Z", "template": "b_kt17_model_##sampling##_##rsun##_##dist##_##orbit##", "units": "nT", "xmlid": "b_kt17_model_60_0.377_50_bepi_xyz_mso2"}, "b_kt17_model_tot_60_0_377_50_bepi_xyz_mso2": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_kt17_model_tot_60_0.377_50_bepi_xyz_mso2", "dataset": "bepi-kt17-model2", "description": "Scalar magnitude of the magnetic field in nT", "display_type": "timeseries", "is_public": "True", "name": "|b|", "predefined": "1", "start_date": "2022-06-22T00:00:00Z", "stop_date": "2022-06-24T23:58:00Z", "template": "b_kt17_model_tot_##sampling##_##rsun##_##dist##_##orbit##", "ucd": "phys.magField", "units": "nT", "xmlid": "b_kt17_model_tot_60_0.377_50_bepi_xyz_mso2"}, "dataSource": "IRAP", "desc": "KT17 mercury magnetic field model for flyby #2
Sampling: 1M
Provider: IRAP", "is_public": "True", "lastModificationDate": "2023-10-26T07:52:03Z", "lastUpdate": "2023-10-26T07:44:08Z", "measurement_type": "MagneticField", "name": "Mercury flyby #2", "processing_level": "Calibrated", "sampling": "1M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/BepiColombo/Models/bepi-kt17-model2", "start_date": "2022-06-22T00:00:00Z", "stop_date": "2022-06-24T23:58:00Z", "target": "Mercury", "xmlid": "bepi-kt17-model2"}, "bepi_kt17_model3": {"PriorID": "bepi-orb-mercury3", "__spz_name__": "Mercury flyby #3", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "bepi-kt17-model3", "att": "auto/bepi-kt17-model3", "b_kt17_model_60_0_324_50_bepi_xyz_mso3": {"__spz_name__": "b msm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_kt17_model_60_0.324_50_bepi_xyz_mso3", "b_kt17_model_60_0_324_50_bepi_xyz_mso30": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_kt17_model_60_0.324_50_bepi_xyz_mso3(0)", "dataset": "bepi-kt17-model3", "index1": "0", "is_public": "True", "name": "bx", "parameter": "b_kt17_model_60_0.324_50_bepi_xyz_mso3", "start_date": "2023-06-19T00:00:00Z", "stop_date": "2023-06-21T23:58:00Z", "xmlid": "b_kt17_model_60_0.324_50_bepi_xyz_mso3(0)"}, "b_kt17_model_60_0_324_50_bepi_xyz_mso31": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_kt17_model_60_0.324_50_bepi_xyz_mso3(1)", "dataset": "bepi-kt17-model3", "index1": "1", "is_public": "True", "name": "by", "parameter": "b_kt17_model_60_0.324_50_bepi_xyz_mso3", "start_date": "2023-06-19T00:00:00Z", "stop_date": "2023-06-21T23:58:00Z", "xmlid": "b_kt17_model_60_0.324_50_bepi_xyz_mso3(1)"}, "b_kt17_model_60_0_324_50_bepi_xyz_mso32": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_kt17_model_60_0.324_50_bepi_xyz_mso3(2)", "dataset": "bepi-kt17-model3", "index1": "2", "is_public": "True", "name": "bz", "parameter": "b_kt17_model_60_0.324_50_bepi_xyz_mso3", "start_date": "2023-06-19T00:00:00Z", "stop_date": "2023-06-21T23:58:00Z", "xmlid": "b_kt17_model_60_0.324_50_bepi_xyz_mso3(2)"}, "dataset": "bepi-kt17-model3", "is_public": "True", "name": "b msm", "predefined": "1", "size": "3", "start_date": "2023-06-19T00:00:00Z", "stop_date": "2023-06-21T23:58:00Z", "template": "b_kt17_model_##sampling##_##rsun##_##dist##_##orbit##", "units": "nT", "xmlid": "b_kt17_model_60_0.324_50_bepi_xyz_mso3"}, "b_kt17_model_tot_60_0_324_50_bepi_xyz_mso3": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_kt17_model_tot_60_0.324_50_bepi_xyz_mso3", "dataset": "bepi-kt17-model3", "description": "Scalar magnitude of the magnetic field in nT", "display_type": "timeseries", "is_public": "True", "name": "|b|", "predefined": "1", "start_date": "2023-06-19T00:00:00Z", "stop_date": "2023-06-21T23:58:00Z", "template": "b_kt17_model_tot_##sampling##_##rsun##_##dist##_##orbit##", "ucd": "phys.magField", "units": "nT", "xmlid": "b_kt17_model_tot_60_0.324_50_bepi_xyz_mso3"}, "dataSource": "IRAP", "desc": "KT17 mercury magnetic field model for flyby #3
Sampling: 1M
Provider: IRAP", "is_public": "True", "lastModificationDate": "2023-10-26T07:52:50Z", "lastUpdate": "2023-10-26T07:44:08Z", "measurement_type": "MagneticField", "name": "Mercury flyby #3", "processing_level": "Calibrated", "sampling": "1M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/BepiColombo/Models/bepi-kt17-model3", "start_date": "2023-06-19T00:00:00Z", "stop_date": "2023-06-21T23:58:00Z", "target": "Mercury", "xmlid": "bepi-kt17-model3"}, "is_public": "True", "name": "KT17 model", "xmlid": "bepi-kt17-model"}, "__spz_name__": "Analytical Models", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "BepiColombo_models", "att": "auto/BepiColombo_models", "desc": "", "is_public": "True", "name": "Analytical Models", "xmlid": "BepiColombo_models"}, "Ephemeris": {"__spz_name__": "Ephemeris", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "BepiColombo_ephemeris", "att": "auto/BepiColombo_ephemeris", "bepi_cruise_all": {"__spz_name__": "cruise", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "bepi-cruise-all", "att": "auto/bepi-cruise-all", "bepi_lat_hci": {"__spz_name__": "lat hci", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "bepi_lat_hci", "dataset": "bepi-cruise-all", "display_type": "timeseries", "is_public": "True", "name": "lat hci", "start_date": "2018-10-21T00:00:00Z", "stop_date": "2025-10-31T22:00:00Z", "units": "deg", "xmlid": "bepi_lat_hci"}, "bepi_lat_hee": {"__spz_name__": "lat hee", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "bepi_lat_hee", "dataset": "bepi-cruise-all", "display_type": "timeseries", "is_public": "True", "name": "lat hee", "start_date": "2018-10-21T00:00:00Z", "stop_date": "2025-10-31T22:00:00Z", "units": "deg", "xmlid": "bepi_lat_hee"}, "bepi_lat_sun": {"__spz_name__": "lat iau_sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "bepi_lat_sun", "dataset": "bepi-cruise-all", "display_type": "timeseries", "is_public": "True", "name": "lat iau_sun", "start_date": "2018-10-21T00:00:00Z", "stop_date": "2025-10-31T22:00:00Z", "ucd": "pos.bodyrc.lat", "units": "deg", "xmlid": "bepi_lat_sun"}, "bepi_lon_hci": {"__spz_name__": "lon hci", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "bepi_lon_hci", "dataset": "bepi-cruise-all", "display_type": "timeseries", "is_public": "True", "name": "lon hci", "start_date": "2018-10-21T00:00:00Z", "stop_date": "2025-10-31T22:00:00Z", "units": "deg", "xmlid": "bepi_lon_hci"}, "bepi_lon_hee": {"__spz_name__": "lon hee", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "bepi_lon_hee", "dataset": "bepi-cruise-all", "display_type": "timeseries", "is_public": "True", "name": "lon hee", "start_date": "2018-10-21T00:00:00Z", "stop_date": "2025-10-31T22:00:00Z", "units": "deg", "xmlid": "bepi_lon_hee"}, "bepi_lon_sun": {"__spz_name__": "lon iau_sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "bepi_lon_sun", "dataset": "bepi-cruise-all", "display_type": "timeseries", "is_public": "True", "name": "lon iau_sun", "start_date": "2018-10-21T00:00:00Z", "stop_date": "2025-10-31T22:00:00Z", "units": "deg", "xmlid": "bepi_lon_sun"}, "bepi_r_sun": {"__spz_name__": "distance bepi-sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "bepi_r_sun", "dataset": "bepi-cruise-all", "display_type": "timeseries", "is_public": "True", "name": "distance bepi-sun", "start_date": "2018-10-21T00:00:00Z", "stop_date": "2025-10-31T22:00:00Z", "ucd": "pos.distance;instr.obsty", "units": "AU", "xmlid": "bepi_r_sun"}, "bepi_xyz_hci": {"__spz_name__": "xyz_hci", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "bepi_xyz_hci", "bepi_xyz_hci0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "bepi_xyz_hci(0)", "dataset": "bepi-cruise-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "bepi_xyz_hci", "start_date": "2018-10-21T00:00:00Z", "stop_date": "2025-10-31T22:00:00Z", "xmlid": "bepi_xyz_hci(0)"}, "bepi_xyz_hci1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "bepi_xyz_hci(1)", "dataset": "bepi-cruise-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "bepi_xyz_hci", "start_date": "2018-10-21T00:00:00Z", "stop_date": "2025-10-31T22:00:00Z", "xmlid": "bepi_xyz_hci(1)"}, "bepi_xyz_hci2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "bepi_xyz_hci(2)", "dataset": "bepi-cruise-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "bepi_xyz_hci", "start_date": "2018-10-21T00:00:00Z", "stop_date": "2025-10-31T22:00:00Z", "xmlid": "bepi_xyz_hci(2)"}, "dataset": "bepi-cruise-all", "display_type": "timeseries", "is_public": "True", "name": "xyz_hci", "size": "3", "start_date": "2018-10-21T00:00:00Z", "stop_date": "2025-10-31T22:00:00Z", "ucd": "pos.ephem;instr.obsty", "units": "AU", "xmlid": "bepi_xyz_hci"}, "bepi_xyz_hee": {"__spz_name__": "xyz_hee", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "bepi_xyz_hee", "bepi_xyz_hee0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "bepi_xyz_hee(0)", "dataset": "bepi-cruise-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "bepi_xyz_hee", "start_date": "2018-10-21T00:00:00Z", "stop_date": "2025-10-31T22:00:00Z", "xmlid": "bepi_xyz_hee(0)"}, "bepi_xyz_hee1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "bepi_xyz_hee(1)", "dataset": "bepi-cruise-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "bepi_xyz_hee", "start_date": "2018-10-21T00:00:00Z", "stop_date": "2025-10-31T22:00:00Z", "xmlid": "bepi_xyz_hee(1)"}, "bepi_xyz_hee2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "bepi_xyz_hee(2)", "dataset": "bepi-cruise-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "bepi_xyz_hee", "start_date": "2018-10-21T00:00:00Z", "stop_date": "2025-10-31T22:00:00Z", "xmlid": "bepi_xyz_hee(2)"}, "dataset": "bepi-cruise-all", "display_type": "timeseries", "is_public": "True", "name": "xyz_hee", "size": "3", "start_date": "2018-10-21T00:00:00Z", "stop_date": "2025-10-31T22:00:00Z", "ucd": "pos.ephem;instr.obsty", "units": "AU", "xmlid": "bepi_xyz_hee"}, "bepi_xyz_heeq": {"__spz_name__": "xyz_heeq", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "bepi_xyz_heeq", "bepi_xyz_heeq0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "bepi_xyz_heeq(0)", "dataset": "bepi-cruise-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "bepi_xyz_heeq", "start_date": "2018-10-21T00:00:00Z", "stop_date": "2025-10-31T22:00:00Z", "xmlid": "bepi_xyz_heeq(0)"}, "bepi_xyz_heeq1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "bepi_xyz_heeq(1)", "dataset": "bepi-cruise-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "bepi_xyz_heeq", "start_date": "2018-10-21T00:00:00Z", "stop_date": "2025-10-31T22:00:00Z", "xmlid": "bepi_xyz_heeq(1)"}, "bepi_xyz_heeq2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "bepi_xyz_heeq(2)", "dataset": "bepi-cruise-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "bepi_xyz_heeq", "start_date": "2018-10-21T00:00:00Z", "stop_date": "2025-10-31T22:00:00Z", "xmlid": "bepi_xyz_heeq(2)"}, "dataset": "bepi-cruise-all", "display_type": "timeseries", "is_public": "True", "name": "xyz_heeq", "size": "3", "start_date": "2018-10-21T00:00:00Z", "stop_date": "2025-10-31T22:00:00Z", "ucd": "pos.ephem;instr.obsty", "units": "AU", "xmlid": "bepi_xyz_heeq"}, "bepi_xyz_iausun": {"__spz_name__": "xyz_iau_sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "bepi_xyz_iausun", "bepi_xyz_iausun0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "bepi_xyz_iausun(0)", "dataset": "bepi-cruise-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "bepi_xyz_iausun", "start_date": "2018-10-21T00:00:00Z", "stop_date": "2025-10-31T22:00:00Z", "xmlid": "bepi_xyz_iausun(0)"}, "bepi_xyz_iausun1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "bepi_xyz_iausun(1)", "dataset": "bepi-cruise-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "bepi_xyz_iausun", "start_date": "2018-10-21T00:00:00Z", "stop_date": "2025-10-31T22:00:00Z", "xmlid": "bepi_xyz_iausun(1)"}, "bepi_xyz_iausun2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "bepi_xyz_iausun(2)", "dataset": "bepi-cruise-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "bepi_xyz_iausun", "start_date": "2018-10-21T00:00:00Z", "stop_date": "2025-10-31T22:00:00Z", "xmlid": "bepi_xyz_iausun(2)"}, "dataset": "bepi-cruise-all", "display_type": "timeseries", "is_public": "True", "name": "xyz_iau_sun", "size": "3", "start_date": "2018-10-21T00:00:00Z", "stop_date": "2025-10-31T22:00:00Z", "ucd": "pos.ephem;instr.obsty", "units": "AU", "xmlid": "bepi_xyz_iausun"}, "dataSource": "ESAC", "desc": "BepiColombo ephemeris during cruise phase
Sampling: 1H
Provider: ESAC", "is_public": "True", "lastModificationDate": "2023-06-20T16:02:53Z", "lastUpdate": "2023-06-20T16:02:24Z", "measurement_type": "Ephemeris", "name": "cruise", "processing_level": "Calibrated", "sampling": "1H", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/BepiColombo/Ephemeris/bepi-cruise-all", "start_date": "2018-10-21T00:00:00Z", "stop_date": "2025-10-31T22:00:00Z", "target": "Heliosphere", "xmlid": "bepi-cruise-all"}, "bepi_orb_earth": {"__spz_name__": "Earth flyby", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "bepi-orb-earth", "att": "auto/bepi-orb-earth", "bepi_r_earth": {"__spz_name__": "distance bepi-earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "bepi_r_earth", "dataset": "bepi-orb-earth", "display_type": "timeseries", "is_public": "True", "name": "distance bepi-earth", "start_date": "2020-04-09T00:00:00Z", "stop_date": "2020-04-11T23:50:00Z", "ucd": "pos.distance;instr.obsty", "units": "Re", "xmlid": "bepi_r_earth"}, "bepi_xyz_gse": {"__spz_name__": "xyz_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "bepi_xyz_gse", "bepi_xyz_gse0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "bepi_xyz_gse(0)", "dataset": "bepi-orb-earth", "index1": "0", "is_public": "True", "name": "x", "parameter": "bepi_xyz_gse", "start_date": "2020-04-09T00:00:00Z", "stop_date": "2020-04-11T23:50:00Z", "xmlid": "bepi_xyz_gse(0)"}, "bepi_xyz_gse1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "bepi_xyz_gse(1)", "dataset": "bepi-orb-earth", "index1": "1", "is_public": "True", "name": "y", "parameter": "bepi_xyz_gse", "start_date": "2020-04-09T00:00:00Z", "stop_date": "2020-04-11T23:50:00Z", "xmlid": "bepi_xyz_gse(1)"}, "bepi_xyz_gse2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "bepi_xyz_gse(2)", "dataset": "bepi-orb-earth", "index1": "2", "is_public": "True", "name": "z", "parameter": "bepi_xyz_gse", "start_date": "2020-04-09T00:00:00Z", "stop_date": "2020-04-11T23:50:00Z", "xmlid": "bepi_xyz_gse(2)"}, "dataset": "bepi-orb-earth", "display_type": "timeseries", "is_public": "True", "name": "xyz_gse", "size": "3", "start_date": "2020-04-09T00:00:00Z", "stop_date": "2020-04-11T23:50:00Z", "ucd": "pos.ephem;instr.obsty", "units": "Re", "xmlid": "bepi_xyz_gse"}, "bepi_xyz_gsm": {"__spz_name__": "xyz_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "bepi_xyz_gsm", "bepi_xyz_gsm0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "bepi_xyz_gsm(0)", "dataset": "bepi-orb-earth", "index1": "0", "is_public": "True", "name": "x", "parameter": "bepi_xyz_gsm", "start_date": "2020-04-09T00:00:00Z", "stop_date": "2020-04-11T23:50:00Z", "xmlid": "bepi_xyz_gsm(0)"}, "bepi_xyz_gsm1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "bepi_xyz_gsm(1)", "dataset": "bepi-orb-earth", "index1": "1", "is_public": "True", "name": "y", "parameter": "bepi_xyz_gsm", "start_date": "2020-04-09T00:00:00Z", "stop_date": "2020-04-11T23:50:00Z", "xmlid": "bepi_xyz_gsm(1)"}, "bepi_xyz_gsm2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "bepi_xyz_gsm(2)", "dataset": "bepi-orb-earth", "index1": "2", "is_public": "True", "name": "z", "parameter": "bepi_xyz_gsm", "start_date": "2020-04-09T00:00:00Z", "stop_date": "2020-04-11T23:50:00Z", "xmlid": "bepi_xyz_gsm(2)"}, "dataset": "bepi-orb-earth", "display_type": "timeseries", "is_public": "True", "name": "xyz_gsm", "size": "3", "start_date": "2020-04-09T00:00:00Z", "stop_date": "2020-04-11T23:50:00Z", "ucd": "pos.ephem;instr.obsty", "units": "Re", "xmlid": "bepi_xyz_gsm"}, "dataSource": "ESAC", "desc": "
Sampling: 300S
Provider: ESAC", "is_public": "True", "lastModificationDate": "2021-07-20T08:08:43Z", "lastUpdate": "2021-07-20T08:08:31Z", "measurement_type": "Ephemeris", "name": "Earth flyby", "processing_level": "Calibrated", "sampling": "300S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/BepiColombo/Ephemeris/bepi-orb-earth", "start_date": "2020-04-09T00:00:00Z", "stop_date": "2020-04-11T23:50:00Z", "target": "Earth.Magnetosphere", "xmlid": "bepi-orb-earth"}, "bepi_orb_mercury1": {"__spz_name__": "Mercury flyby #1", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "bepi-orb-mercury1", "att": "auto/bepi-orb-mercury1", "bepi_mercury1_r": {"__spz_name__": "distance bepi-mercury", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "bepi_mercury1_r", "dataset": "bepi-orb-mercury1", "is_public": "True", "name": "distance bepi-mercury", "start_date": "2021-10-01T00:00:00Z", "stop_date": "2021-10-03T23:58:00Z", "units": "Rv", "xmlid": "bepi_mercury1_r"}, "bepi_xyz_mso1": {"__spz_name__": "xyz_mso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "bepi_xyz_mso1", "bepi_xyz_mso10": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "bepi_xyz_mso1(0)", "dataset": "bepi-orb-mercury1", "index1": "0", "is_public": "True", "name": "x", "parameter": "bepi_xyz_mso1", "start_date": "2021-10-01T00:00:00Z", "stop_date": "2021-10-03T23:58:00Z", "xmlid": "bepi_xyz_mso1(0)"}, "bepi_xyz_mso11": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "bepi_xyz_mso1(1)", "dataset": "bepi-orb-mercury1", "index1": "1", "is_public": "True", "name": "y", "parameter": "bepi_xyz_mso1", "start_date": "2021-10-01T00:00:00Z", "stop_date": "2021-10-03T23:58:00Z", "xmlid": "bepi_xyz_mso1(1)"}, "bepi_xyz_mso12": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "bepi_xyz_mso1(2)", "dataset": "bepi-orb-mercury1", "index1": "2", "is_public": "True", "name": "z", "parameter": "bepi_xyz_mso1", "start_date": "2021-10-01T00:00:00Z", "stop_date": "2021-10-03T23:58:00Z", "xmlid": "bepi_xyz_mso1(2)"}, "dataset": "bepi-orb-mercury1", "is_public": "True", "name": "xyz_mso", "size": "3", "start_date": "2021-10-01T00:00:00Z", "stop_date": "2021-10-03T23:58:00Z", "units": "Rm", "xmlid": "bepi_xyz_mso1"}, "dataSource": "ESAC", "desc": "
Sampling: 60S
Provider: ESAC", "is_public": "True", "lastModificationDate": "2023-10-26T07:46:39Z", "lastUpdate": "2023-10-26T07:44:08Z", "lat_bepi_mercury1": {"__spz_name__": "lat iau_mercury", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "lat_bepi_mercury1", "dataset": "bepi-orb-mercury1", "is_public": "True", "name": "lat iau_mercury", "start_date": "2021-10-01T00:00:00Z", "stop_date": "2021-10-03T23:58:00Z", "units": "deg", "xmlid": "lat_bepi_mercury1"}, "lon_bepi_mercury1": {"__spz_name__": "lon iau_mercury", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "lon_bepi_mercury1", "dataset": "bepi-orb-mercury1", "is_public": "True", "name": "lon iau_mercury", "start_date": "2021-10-01T00:00:00Z", "stop_date": "2021-10-03T23:58:00Z", "units": "deg", "xmlid": "lon_bepi_mercury1"}, "measurement_type": "Ephemeris", "name": "Mercury flyby #1", "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/BepiColombo/Ephemeris/bepi-orb-mercury1", "start_date": "2021-10-01T00:00:00Z", "stop_date": "2021-10-03T23:58:00Z", "target": "Mercury", "xmlid": "bepi-orb-mercury1"}, "bepi_orb_mercury2": {"__spz_name__": "Mercury flyby #2", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "bepi-orb-mercury2", "att": "auto/bepi-orb-mercury2", "bepi_mercury2_r": {"__spz_name__": "distance bepi-mercury", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "bepi_mercury2_r", "dataset": "bepi-orb-mercury2", "is_public": "True", "name": "distance bepi-mercury", "start_date": "2022-06-22T00:00:00Z", "stop_date": "2022-06-24T23:58:00Z", "units": "Rv", "xmlid": "bepi_mercury2_r"}, "bepi_xyz_mso2": {"__spz_name__": "xyz_mso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "bepi_xyz_mso2", "bepi_xyz_mso20": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "bepi_xyz_mso2(0)", "dataset": "bepi-orb-mercury2", "index1": "0", "is_public": "True", "name": "x", "parameter": "bepi_xyz_mso2", "start_date": "2022-06-22T00:00:00Z", "stop_date": "2022-06-24T23:58:00Z", "xmlid": "bepi_xyz_mso2(0)"}, "bepi_xyz_mso21": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "bepi_xyz_mso2(1)", "dataset": "bepi-orb-mercury2", "index1": "1", "is_public": "True", "name": "y", "parameter": "bepi_xyz_mso2", "start_date": "2022-06-22T00:00:00Z", "stop_date": "2022-06-24T23:58:00Z", "xmlid": "bepi_xyz_mso2(1)"}, "bepi_xyz_mso22": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "bepi_xyz_mso2(2)", "dataset": "bepi-orb-mercury2", "index1": "2", "is_public": "True", "name": "z", "parameter": "bepi_xyz_mso2", "start_date": "2022-06-22T00:00:00Z", "stop_date": "2022-06-24T23:58:00Z", "xmlid": "bepi_xyz_mso2(2)"}, "dataset": "bepi-orb-mercury2", "is_public": "True", "name": "xyz_mso", "size": "3", "start_date": "2022-06-22T00:00:00Z", "stop_date": "2022-06-24T23:58:00Z", "units": "Rm", "xmlid": "bepi_xyz_mso2"}, "dataSource": "ESAC", "desc": "
Sampling: 60S
Provider: ESAC", "is_public": "True", "lastModificationDate": "2023-10-26T07:52:03Z", "lastUpdate": "2023-10-26T07:44:08Z", "lat_bepi_mercury2": {"__spz_name__": "lat iau_mercury", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "lat_bepi_mercury2", "dataset": "bepi-orb-mercury2", "is_public": "True", "name": "lat iau_mercury", "start_date": "2022-06-22T00:00:00Z", "stop_date": "2022-06-24T23:58:00Z", "units": "deg", "xmlid": "lat_bepi_mercury2"}, "lon_bepi_mercury2": {"__spz_name__": "lon iau_mercury", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "lon_bepi_mercury2", "dataset": "bepi-orb-mercury2", "is_public": "True", "name": "lon iau_mercury", "start_date": "2022-06-22T00:00:00Z", "stop_date": "2022-06-24T23:58:00Z", "units": "deg", "xmlid": "lon_bepi_mercury2"}, "measurement_type": "Ephemeris", "name": "Mercury flyby #2", "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/BepiColombo/Ephemeris/bepi-orb-mercury2", "start_date": "2022-06-22T00:00:00Z", "stop_date": "2022-06-24T23:58:00Z", "target": "Mercury", "xmlid": "bepi-orb-mercury2"}, "bepi_orb_mercury3": {"__spz_name__": "Mercury flyby #3", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "bepi-orb-mercury3", "att": "auto/bepi-orb-mercury3", "bepi_mercury3_r": {"__spz_name__": "distance bepi-mercury", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "bepi_mercury3_r", "dataset": "bepi-orb-mercury3", "is_public": "True", "name": "distance bepi-mercury", "start_date": "2023-06-19T00:00:00Z", "stop_date": "2023-06-21T23:58:00Z", "units": "Rv", "xmlid": "bepi_mercury3_r"}, "bepi_xyz_mso3": {"__spz_name__": "xyz_mso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "bepi_xyz_mso3", "bepi_xyz_mso30": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "bepi_xyz_mso3(0)", "dataset": "bepi-orb-mercury3", "index1": "0", "is_public": "True", "name": "x", "parameter": "bepi_xyz_mso3", "start_date": "2023-06-19T00:00:00Z", "stop_date": "2023-06-21T23:58:00Z", "xmlid": "bepi_xyz_mso3(0)"}, "bepi_xyz_mso31": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "bepi_xyz_mso3(1)", "dataset": "bepi-orb-mercury3", "index1": "1", "is_public": "True", "name": "y", "parameter": "bepi_xyz_mso3", "start_date": "2023-06-19T00:00:00Z", "stop_date": "2023-06-21T23:58:00Z", "xmlid": "bepi_xyz_mso3(1)"}, "bepi_xyz_mso32": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "bepi_xyz_mso3(2)", "dataset": "bepi-orb-mercury3", "index1": "2", "is_public": "True", "name": "z", "parameter": "bepi_xyz_mso3", "start_date": "2023-06-19T00:00:00Z", "stop_date": "2023-06-21T23:58:00Z", "xmlid": "bepi_xyz_mso3(2)"}, "dataset": "bepi-orb-mercury3", "is_public": "True", "name": "xyz_mso", "size": "3", "start_date": "2023-06-19T00:00:00Z", "stop_date": "2023-06-21T23:58:00Z", "units": "Rm", "xmlid": "bepi_xyz_mso3"}, "dataSource": "ESAC", "desc": "
Sampling: 60S
Provider: ESAC", "is_public": "True", "lastModificationDate": "2023-10-26T07:52:50Z", "lastUpdate": "2023-10-26T07:44:08Z", "lat_bepi_mercury3": {"__spz_name__": "lat iau_mercury", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "lat_bepi_mercury3", "dataset": "bepi-orb-mercury3", "is_public": "True", "name": "lat iau_mercury", "start_date": "2023-06-19T00:00:00Z", "stop_date": "2023-06-21T23:58:00Z", "units": "deg", "xmlid": "lat_bepi_mercury3"}, "lon_bepi_mercury3": {"__spz_name__": "lon iau_mercury", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "lon_bepi_mercury3", "dataset": "bepi-orb-mercury3", "is_public": "True", "name": "lon iau_mercury", "start_date": "2023-06-19T00:00:00Z", "stop_date": "2023-06-21T23:58:00Z", "units": "deg", "xmlid": "lon_bepi_mercury3"}, "measurement_type": "Ephemeris", "name": "Mercury flyby #3", "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/BepiColombo/Ephemeris/bepi-orb-mercury3", "start_date": "2023-06-19T00:00:00Z", "stop_date": "2023-06-21T23:58:00Z", "target": "Mercury", "xmlid": "bepi-orb-mercury3"}, "bepi_orb_venus1": {"__spz_name__": "Venus flyby #1", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "bepi-orb-venus1", "att": "auto/bepi-orb-venus1", "bepi_venus1_r": {"__spz_name__": "distance bepi-venus", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "bepi_venus1_r", "dataset": "bepi-orb-venus1", "is_public": "True", "name": "distance bepi-venus", "start_date": "2020-10-14T00:00:00Z", "stop_date": "2020-10-16T23:59:00Z", "units": "Rv", "xmlid": "bepi_venus1_r"}, "bepi_xyz_vso1": {"__spz_name__": "xyz_vso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "bepi_xyz_vso1", "bepi_xyz_vso10": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "bepi_xyz_vso1(0)", "dataset": "bepi-orb-venus1", "index1": "0", "is_public": "True", "name": "x", "parameter": "bepi_xyz_vso1", "start_date": "2020-10-14T00:00:00Z", "stop_date": "2020-10-16T23:59:00Z", "xmlid": "bepi_xyz_vso1(0)"}, "bepi_xyz_vso11": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "bepi_xyz_vso1(1)", "dataset": "bepi-orb-venus1", "index1": "1", "is_public": "True", "name": "y", "parameter": "bepi_xyz_vso1", "start_date": "2020-10-14T00:00:00Z", "stop_date": "2020-10-16T23:59:00Z", "xmlid": "bepi_xyz_vso1(1)"}, "bepi_xyz_vso12": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "bepi_xyz_vso1(2)", "dataset": "bepi-orb-venus1", "index1": "2", "is_public": "True", "name": "z", "parameter": "bepi_xyz_vso1", "start_date": "2020-10-14T00:00:00Z", "stop_date": "2020-10-16T23:59:00Z", "xmlid": "bepi_xyz_vso1(2)"}, "dataset": "bepi-orb-venus1", "is_public": "True", "name": "xyz_vso", "size": "3", "start_date": "2020-10-14T00:00:00Z", "stop_date": "2020-10-16T23:59:00Z", "units": "Rv", "xmlid": "bepi_xyz_vso1"}, "dataSource": "ESAC", "desc": "
Sampling: 60S
Provider: ESAC", "is_public": "True", "lastModificationDate": "2021-07-20T08:10:19Z", "lastUpdate": "2021-07-20T08:10:05Z", "lat_bepi_venus1": {"__spz_name__": "lat iau_venus", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "lat_bepi_venus1", "dataset": "bepi-orb-venus1", "is_public": "True", "name": "lat iau_venus", "start_date": "2020-10-14T00:00:00Z", "stop_date": "2020-10-16T23:59:00Z", "units": "deg", "xmlid": "lat_bepi_venus1"}, "lon_bepi_venus1": {"__spz_name__": "lon iau_venus", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "lon_bepi_venus1", "dataset": "bepi-orb-venus1", "is_public": "True", "name": "lon iau_venus", "start_date": "2020-10-14T00:00:00Z", "stop_date": "2020-10-16T23:59:00Z", "units": "deg", "xmlid": "lon_bepi_venus1"}, "measurement_type": "Ephemeris", "name": "Venus flyby #1", "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/BepiColombo/Ephemeris/bepi-orb-venus1", "start_date": "2020-10-14T00:00:00Z", "stop_date": "2020-10-16T23:59:00Z", "target": "Venus", "xmlid": "bepi-orb-venus1"}, "bepi_orb_venus2": {"__spz_name__": "Venus flyby #2", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "bepi-orb-venus2", "att": "auto/bepi-orb-venus2", "bepi_venus2_r": {"__spz_name__": "distance bepi-venus", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "bepi_venus2_r", "dataset": "bepi-orb-venus2", "is_public": "True", "name": "distance bepi-venus", "start_date": "2021-08-10T00:00:00Z", "stop_date": "2021-08-12T23:58:00Z", "units": "Rv", "xmlid": "bepi_venus2_r"}, "bepi_xyz_vso2": {"__spz_name__": "xyz_vso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "bepi_xyz_vso2", "bepi_xyz_vso20": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "bepi_xyz_vso2(0)", "dataset": "bepi-orb-venus2", "index1": "0", "is_public": "True", "name": "x", "parameter": "bepi_xyz_vso2", "start_date": "2021-08-10T00:00:00Z", "stop_date": "2021-08-12T23:58:00Z", "xmlid": "bepi_xyz_vso2(0)"}, "bepi_xyz_vso21": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "bepi_xyz_vso2(1)", "dataset": "bepi-orb-venus2", "index1": "1", "is_public": "True", "name": "y", "parameter": "bepi_xyz_vso2", "start_date": "2021-08-10T00:00:00Z", "stop_date": "2021-08-12T23:58:00Z", "xmlid": "bepi_xyz_vso2(1)"}, "bepi_xyz_vso22": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "bepi_xyz_vso2(2)", "dataset": "bepi-orb-venus2", "index1": "2", "is_public": "True", "name": "z", "parameter": "bepi_xyz_vso2", "start_date": "2021-08-10T00:00:00Z", "stop_date": "2021-08-12T23:58:00Z", "xmlid": "bepi_xyz_vso2(2)"}, "dataset": "bepi-orb-venus2", "is_public": "True", "name": "xyz_vso", "size": "3", "start_date": "2021-08-10T00:00:00Z", "stop_date": "2021-08-12T23:58:00Z", "units": "Rv", "xmlid": "bepi_xyz_vso2"}, "dataSource": "ESAC", "desc": "
Sampling: 60S
Provider: ESAC", "is_public": "True", "lastModificationDate": "2021-07-20T08:11:33Z", "lastUpdate": "2021-07-20T08:11:24Z", "lat_bepi_venus2": {"__spz_name__": "lat iau_venus", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "lat_bepi_venus2", "dataset": "bepi-orb-venus2", "is_public": "True", "name": "lat iau_venus", "start_date": "2021-08-10T00:00:00Z", "stop_date": "2021-08-12T23:58:00Z", "units": "deg", "xmlid": "lat_bepi_venus2"}, "lon_bepi_venus2": {"__spz_name__": "lon iau_venus", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "lon_bepi_venus2", "dataset": "bepi-orb-venus2", "is_public": "True", "name": "lon iau_venus", "start_date": "2021-08-10T00:00:00Z", "stop_date": "2021-08-12T23:58:00Z", "units": "deg", "xmlid": "lon_bepi_venus2"}, "measurement_type": "Ephemeris", "name": "Venus flyby #2", "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/BepiColombo/Ephemeris/bepi-orb-venus2", "start_date": "2021-08-10T00:00:00Z", "stop_date": "2021-08-12T23:58:00Z", "target": "Venus", "xmlid": "bepi-orb-venus2"}, "desc": "", "is_public": "True", "name": "Ephemeris", "xmlid": "BepiColombo_ephemeris"}, "MPO": {"MPO_MAG": {"__spz_name__": "MPO-MAG", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "MPO_mag", "att": "auto/MPO_mag", "cruise": {"__spz_name__": "cruise", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "bepi-mpo-cruise", "bepi_mpo_ibcruise": {"__spz_name__": "inboard", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "bepi-mpo-ibcruise", "att": "auto/bepi-mpo-ibcruise", "bepi_mpo_bibbtot": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "bepi_mpo_bibbtot", "dataset": "bepi-mpo-ibcruise", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "2018-12-15T00:00:55Z", "stop_date": "2023-08-03T23:59:59Z", "units": "nT", "xmlid": "bepi_mpo_bibbtot"}, "bepi_mpo_bibe2k": {"__spz_name__": "b_e2k", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "bepi_mpo_bibe2k", "bepi_mpo_bibe2k0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "bepi_mpo_bibe2k(0)", "dataset": "bepi-mpo-ibcruise", "index1": "0", "is_public": "True", "name": "bx", "parameter": "bepi_mpo_bibe2k", "start_date": "2018-12-15T00:00:55Z", "stop_date": "2023-08-03T23:59:59Z", "xmlid": "bepi_mpo_bibe2k(0)"}, "bepi_mpo_bibe2k1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "bepi_mpo_bibe2k(1)", "dataset": "bepi-mpo-ibcruise", "index1": "2", "is_public": "True", "name": "by", "parameter": "bepi_mpo_bibe2k", "start_date": "2018-12-15T00:00:55Z", "stop_date": "2023-08-03T23:59:59Z", "xmlid": "bepi_mpo_bibe2k(1)"}, "bepi_mpo_bibe2k2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "bepi_mpo_bibe2k(2)", "dataset": "bepi-mpo-ibcruise", "index1": "2", "is_public": "True", "name": "bz", "parameter": "bepi_mpo_bibe2k", "start_date": "2018-12-15T00:00:55Z", "stop_date": "2023-08-03T23:59:59Z", "xmlid": "bepi_mpo_bibe2k(2)"}, "dataset": "bepi-mpo-ibcruise", "display_type": "timeseries", "is_public": "True", "name": "b_e2k", "size": "3", "start_date": "2018-12-15T00:00:55Z", "stop_date": "2023-08-03T23:59:59Z", "units": "nT", "xmlid": "bepi_mpo_bibe2k"}, "bepi_mpo_bibscf": {"__spz_name__": "b_scf", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "bepi_mpo_bibscf", "bepi_mpo_bibscf0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "bepi_mpo_bibscf(0)", "dataset": "bepi-mpo-ibcruise", "index1": "0", "is_public": "True", "name": "bx", "parameter": "bepi_mpo_bibscf", "start_date": "2018-12-15T00:00:55Z", "stop_date": "2023-08-03T23:59:59Z", "xmlid": "bepi_mpo_bibscf(0)"}, "bepi_mpo_bibscf1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "bepi_mpo_bibscf(1)", "dataset": "bepi-mpo-ibcruise", "index1": "2", "is_public": "True", "name": "by", "parameter": "bepi_mpo_bibscf", "start_date": "2018-12-15T00:00:55Z", "stop_date": "2023-08-03T23:59:59Z", "xmlid": "bepi_mpo_bibscf(1)"}, "bepi_mpo_bibscf2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "bepi_mpo_bibscf(2)", "dataset": "bepi-mpo-ibcruise", "index1": "2", "is_public": "True", "name": "bz", "parameter": "bepi_mpo_bibscf", "start_date": "2018-12-15T00:00:55Z", "stop_date": "2023-08-03T23:59:59Z", "xmlid": "bepi_mpo_bibscf(2)"}, "dataset": "bepi-mpo-ibcruise", "display_type": "timeseries", "is_public": "True", "name": "b_scf", "size": "3", "start_date": "2018-12-15T00:00:55Z", "stop_date": "2023-08-03T23:59:59Z", "units": "nT", "xmlid": "bepi_mpo_bibscf"}, "dataSource": "PSA", "desc": "
MinSampling: 1S; MaxSampling:
Provider: PSA", "is_public": "True", "lastModificationDate": "2024-10-06T22:37:50Z", "lastUpdate": "2024-09-02T14:02:06Z", "maxSampling": "", "measurement_type": "MagneticField", "name": "inboard", "processing_level": "Calibrated", "sampling": "1S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/BepiColombo/MPO/MAG/bepi-mpo-ibcruise", "start_date": "2018-12-15T00:00:55Z", "stop_date": "2023-08-03T23:59:59Z", "xmlid": "bepi-mpo-ibcruise"}, "bepi_mpo_obcruise": {"__spz_name__": "outboard", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "bepi-mpo-obcruise", "att": "auto/bepi-mpo-obcruise", "bepi_mpo_bobbtot": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "bepi_mpo_bobbtot", "dataset": "bepi-mpo-obcruise", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "2018-12-15T00:00:55Z", "stop_date": "2023-08-03T23:59:59Z", "units": "nT", "xmlid": "bepi_mpo_bobbtot"}, "bepi_mpo_bobe2k": {"__spz_name__": "b_e2k", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "bepi_mpo_bobe2k", "bepi_mpo_bobe2k0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "bepi_mpo_bobe2k(0)", "dataset": "bepi-mpo-obcruise", "index1": "0", "is_public": "True", "name": "bx", "parameter": "bepi_mpo_bobe2k", "start_date": "2018-12-15T00:00:55Z", "stop_date": "2023-08-03T23:59:59Z", "xmlid": "bepi_mpo_bobe2k(0)"}, "bepi_mpo_bobe2k1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "bepi_mpo_bobe2k(1)", "dataset": "bepi-mpo-obcruise", "index1": "2", "is_public": "True", "name": "by", "parameter": "bepi_mpo_bobe2k", "start_date": "2018-12-15T00:00:55Z", "stop_date": "2023-08-03T23:59:59Z", "xmlid": "bepi_mpo_bobe2k(1)"}, "bepi_mpo_bobe2k2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "bepi_mpo_bobe2k(2)", "dataset": "bepi-mpo-obcruise", "index1": "2", "is_public": "True", "name": "bz", "parameter": "bepi_mpo_bobe2k", "start_date": "2018-12-15T00:00:55Z", "stop_date": "2023-08-03T23:59:59Z", "xmlid": "bepi_mpo_bobe2k(2)"}, "dataset": "bepi-mpo-obcruise", "display_type": "timeseries", "is_public": "True", "name": "b_e2k", "size": "3", "start_date": "2018-12-15T00:00:55Z", "stop_date": "2023-08-03T23:59:59Z", "units": "nT", "xmlid": "bepi_mpo_bobe2k"}, "bepi_mpo_bobscf": {"__spz_name__": "b_scf", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "bepi_mpo_bobscf", "bepi_mpo_bobscf0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "bepi_mpo_bobscf(0)", "dataset": "bepi-mpo-obcruise", "index1": "0", "is_public": "True", "name": "bx", "parameter": "bepi_mpo_bobscf", "start_date": "2018-12-15T00:00:55Z", "stop_date": "2023-08-03T23:59:59Z", "xmlid": "bepi_mpo_bobscf(0)"}, "bepi_mpo_bobscf1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "bepi_mpo_bobscf(1)", "dataset": "bepi-mpo-obcruise", "index1": "2", "is_public": "True", "name": "by", "parameter": "bepi_mpo_bobscf", "start_date": "2018-12-15T00:00:55Z", "stop_date": "2023-08-03T23:59:59Z", "xmlid": "bepi_mpo_bobscf(1)"}, "bepi_mpo_bobscf2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "bepi_mpo_bobscf(2)", "dataset": "bepi-mpo-obcruise", "index1": "2", "is_public": "True", "name": "bz", "parameter": "bepi_mpo_bobscf", "start_date": "2018-12-15T00:00:55Z", "stop_date": "2023-08-03T23:59:59Z", "xmlid": "bepi_mpo_bobscf(2)"}, "dataset": "bepi-mpo-obcruise", "display_type": "timeseries", "is_public": "True", "name": "b_scf", "size": "3", "start_date": "2018-12-15T00:00:55Z", "stop_date": "2023-08-03T23:59:59Z", "units": "nT", "xmlid": "bepi_mpo_bobscf"}, "dataSource": "PSA", "desc": "
MinSampling: 1S; MaxSampling:
Provider: PSA", "is_public": "True", "lastModificationDate": "2024-10-06T22:37:50Z", "lastUpdate": "2024-09-02T18:01:33Z", "maxSampling": "", "measurement_type": "MagneticField", "name": "outboard", "processing_level": "Calibrated", "sampling": "1S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/BepiColombo/MPO/MAG/bepi-mpo-obcruise", "start_date": "2018-12-15T00:00:55Z", "stop_date": "2023-08-03T23:59:59Z", "xmlid": "bepi-mpo-obcruise"}, "is_public": "True", "name": "cruise", "xmlid": "bepi-mpo-cruise"}, "desc": "Mercury Magnetometer
Magnetometer", "is_public": "True", "name": "MPO-MAG", "xmlid": "MPO_mag"}, "__spz_name__": "MPO", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "MPO", "att": "auto/MPO", "desc": "Mercury Planetary Orbiter
2018-10-20T02:13:28", "is_public": "True", "name": "MPO", "target": "Mercury", "xmlid": "MPO"}, "Mio": {"MPPEMEA1": {"__spz_name__": "MPPE/MEA1", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Mio_mea1", "att": "auto/Mio_mea1", "desc": "Mercury Electron Analyzer 1
ElectrostaticAnalyser", "is_public": "True", "name": "MPPE/MEA1", "xmlid": "Mio_mea1"}, "MPPEMEA2": {"__spz_name__": "MPPE/MEA2", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Mio_mea2", "att": "auto/Mio_mea2", "desc": "Mercury Electron Analyzer 2
ElectrostaticAnalyser", "is_public": "True", "name": "MPPE/MEA2", "xmlid": "Mio_mea2"}, "MPPEMIA": {"__spz_name__": "MPPE/MIA", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Mio_mia", "att": "auto/Mio_mia", "desc": "Mercury Ion Analyzer
ElectrostaticAnalyser", "is_public": "True", "name": "MPPE/MIA", "xmlid": "Mio_mia"}, "__spz_name__": "Mio", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Mio", "att": "auto/Mio", "desc": "Mio (MMO - Mercury Magnetospheric Orbiter)
2018-10-20T02:13:28", "is_public": "True", "name": "Mio", "target": "Mercury", "xmlid": "Mio"}, "__spz_name__": "BepiColombo", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "BepiColombo", "att": "auto/BepiColombo", "desc": "BepiColombo
2018-10-20T02:13:28", "is_public": "True", "name": "BepiColombo", "rank": "2", "target": "Mercury", "xmlid": "BepiColombo"}, "Cassini": {"CAPS": {"__spz_name__": "CAPS", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Cassini_caps", "att": "auto/Cassini_caps", "cass_caps_act": {"__spz_name__": "detector angle", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "cass-caps-act", "att": "auto/cass-caps-act", "cass_caps_actangle": {"__spz_name__": "angle", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_caps_actangle", "dataset": "cass-caps-act", "description": "Angular position of the actuator", "display_type": "timeseries", "is_public": "True", "name": "angle", "start_date": "2004-05-15T00:07:30Z", "stop_date": "2012-06-02T06:12:09Z", "ucd": "instr.setup;pos.posAng", "units": "deg", "xmlid": "cass_caps_actangle"}, "dataSource": "PDS", "desc": "
MinSampling: 1S; MaxSampling: 32S
Provider: PDS", "is_public": "True", "lastModificationDate": "2013-03-23T13:52:18Z", "lastUpdate": "2013-03-23T12:45:55Z", "maxSampling": "32S", "measurement_type": "InstrumentStatus", "name": "detector angle", "processing_level": "Calibrated", "sampling": "1S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cassini/CAPS/cass-caps-act", "start_date": "2004-05-15T00:07:30Z", "stop_date": "2012-06-02T06:12:09Z", "target": "Saturn", "xmlid": "cass-caps-act"}, "cass_caps_elemo": {"__spz_name__": "electron moments", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "cass-caps-elemo", "att": "auto/cass-caps-elemo", "cass_caps_e_anode": {"__spz_name__": "anode used", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_caps_e_anode", "dataset": "cass-caps-elemo", "display_type": "timeseries", "is_public": "True", "name": "anode used", "start_date": "1999-08-17T11:41:57Z", "stop_date": "2012-06-02T06:11:45Z", "ucd": "instr.setup", "xmlid": "cass_caps_e_anode"}, "cass_caps_e_charge": {"__spz_name__": "s/c charge state", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_caps_e_charge", "dataset": "cass-caps-elemo", "display_type": "timeseries", "is_public": "True", "name": "s/c charge state", "start_date": "1999-08-17T11:41:57Z", "stop_date": "2012-06-02T06:11:45Z", "ucd": "phys", "xmlid": "cass_caps_e_charge"}, "cass_caps_e_n": {"__spz_name__": "e- density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_caps_e_n", "dataset": "cass-caps-elemo", "display_type": "timeseries", "is_public": "True", "name": "e- density", "start_date": "1999-08-17T11:41:57Z", "stop_date": "2012-06-02T06:11:45Z", "ucd": "phys.density;phys.electron", "units": "m-3", "xmlid": "cass_caps_e_n"}, "cass_caps_e_n_nopenrad": {"__spz_name__": "e- density without penetrating radiation", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_caps_e_n_nopenrad", "dataset": "cass-caps-elemo", "display_type": "timeseries", "is_public": "True", "name": "e- density without penetrating radiation", "start_date": "1999-08-17T11:41:57Z", "stop_date": "2012-06-02T06:11:45Z", "ucd": "phys.density;phys.electron", "units": "m-3", "xmlid": "cass_caps_e_n_nopenrad"}, "cass_caps_e_qual": {"__spz_name__": "quality factor", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_caps_e_qual", "dataset": "cass-caps-elemo", "display_type": "timeseries", "is_public": "True", "name": "quality factor", "start_date": "1999-08-17T11:41:57Z", "stop_date": "2012-06-02T06:11:45Z", "ucd": "arith.factor", "xmlid": "cass_caps_e_qual"}, "cass_caps_e_qual_nopenrad": {"__spz_name__": "quality factor without penetrating radiation", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_caps_e_qual_nopenrad", "dataset": "cass-caps-elemo", "display_type": "timeseries", "is_public": "True", "name": "quality factor without penetrating radiation", "start_date": "1999-08-17T11:41:57Z", "stop_date": "2012-06-02T06:11:45Z", "ucd": "arith.factor", "xmlid": "cass_caps_e_qual_nopenrad"}, "cass_caps_e_rad": {"__spz_name__": "penetrating radiation", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_caps_e_rad", "dataset": "cass-caps-elemo", "display_type": "timeseries", "is_public": "True", "name": "penetrating radiation", "start_date": "1999-08-17T11:41:57Z", "stop_date": "2012-06-02T06:11:45Z", "ucd": "phys.absorption", "xmlid": "cass_caps_e_rad"}, "cass_caps_e_scpot": {"__spz_name__": "s/c pot", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_caps_e_scpot", "dataset": "cass-caps-elemo", "display_type": "timeseries", "is_public": "True", "name": "s/c pot", "start_date": "1999-08-17T11:41:57Z", "stop_date": "2012-06-02T06:11:45Z", "ucd": "phys.potential;phys.electField;instr.obsty", "units": "V", "xmlid": "cass_caps_e_scpot"}, "cass_caps_e_snr": {"__spz_name__": "signal/noise ratio", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_caps_e_snr", "dataset": "cass-caps-elemo", "display_type": "timeseries", "is_public": "True", "name": "signal/noise ratio", "start_date": "1999-08-17T11:41:57Z", "stop_date": "2012-06-02T06:11:45Z", "ucd": "stat.snr", "xmlid": "cass_caps_e_snr"}, "cass_caps_e_t": {"__spz_name__": "e- temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_caps_e_t", "dataset": "cass-caps-elemo", "display_type": "timeseries", "is_public": "True", "name": "e- temperature", "start_date": "1999-08-17T11:41:57Z", "stop_date": "2012-06-02T06:11:45Z", "ucd": "phys.temperature;phys.electron", "units": "eV", "xmlid": "cass_caps_e_t"}, "cass_caps_e_t_nopenrad": {"__spz_name__": "e- temperature without penetrating radiation", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_caps_e_t_nopenrad", "dataset": "cass-caps-elemo", "display_type": "timeseries", "is_public": "True", "name": "e- temperature without penetrating radiation", "start_date": "1999-08-17T11:41:57Z", "stop_date": "2012-06-02T06:11:45Z", "ucd": "phys.temperature;phys.electron", "units": "eV", "xmlid": "cass_caps_e_t_nopenrad"}, "dataSource": "PDS", "desc": "Electron moments derived from CAPS/ELS
Sampling: 32S
Provider: PDS", "is_public": "True", "lastModificationDate": "2014-09-08T15:58:52Z", "lastUpdate": "2014-09-01T10:53:19Z", "measurement_type": "ThermalPlasma", "name": "electron moments", "processing_level": "Calibrated", "sampling": "32S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cassini/CAPS/cass-caps-elemo", "start_date": "1999-08-17T11:41:57Z", "stop_date": "2012-06-02T06:11:45Z", "target": "Saturn", "xmlid": "cass-caps-elemo"}, "cass_caps_elssec": {"__spz_name__": "electron spectra", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "cass-caps-elssec", "att": "auto/cass-caps-elssec", "cass_caps_els": {"__spz_name__": "elec countrate ", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_caps_els", "dataset": "cass-caps-elssec", "description": "energy spectrogram of electron count rates", "display_type": "spectrogram", "is_public": "True", "name": "elec countrate ", "start_date": "2004-05-15T00:07:30Z", "stop_date": "2012-06-02T06:12:09Z", "template": "cass_caps_els_##ANODE##", "ucd": "phys.flux;phys.electron;arith.rate", "units": "cnts.s\u207b\u00b9", "xmlid": "cass_caps_els"}, "cass_caps_els_sum": {"__spz_name__": "elec countrate : sum over anodes", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_caps_els_sum", "dataset": "cass-caps-elssec", "description": "energy spectrogram of electron count rates", "display_type": "spectrogram", "is_public": "True", "name": "elec countrate : sum over anodes", "start_date": "2004-05-15T00:07:30Z", "stop_date": "2012-06-02T06:12:09Z", "ucd": "phys.flux;phys.electron;arith.rate", "units": "cnts.s\u207b\u00b9", "xmlid": "cass_caps_els_sum"}, "cass_caps_elssectel": {"__spz_name__": "telemetry mode", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_caps_elssectel", "dataset": "cass-caps-elssec", "display_type": "timeseries", "is_public": "True", "name": "telemetry mode", "start_date": "2004-05-15T00:07:30Z", "stop_date": "2012-06-02T06:12:09Z", "ucd": "meta.code;instr.setup", "xmlid": "cass_caps_elssectel"}, "dataSource": "PDS", "desc": "electron spectra : incalibrated : 8 anodes
MinSampling: 4S; MaxSampling: 32S
Provider: PDS", "is_public": "True", "lastModificationDate": "2018-01-26T15:45:31Z", "lastUpdate": "2018-01-31T06:26:23Z", "maxSampling": "32S", "measurement_type": "EnergeticParticles", "name": "electron spectra", "processing_level": "Calibrated", "sampling": "4S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cassini/CAPS/cass-caps-elssec", "start_date": "2004-05-15T00:07:30Z", "stop_date": "2012-06-02T06:12:09Z", "target": "Saturn", "xmlid": "cass-caps-elssec"}, "cass_caps_fit": {"__spz_name__": "fitted parameters", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "cass-caps-fit", "att": "auto/cass-caps-fit", "cass_capsfit_hn": {"__spz_name__": "density h+", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_capsfit_hn", "dataset": "cass-caps-fit", "display_type": "timeseries", "is_public": "True", "name": "density h+", "start_date": "2004-07-02T04:11:26Z", "stop_date": "2012-05-24T23:27:50Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm-3", "xmlid": "cass_capsfit_hn"}, "cass_capsfit_ht": {"__spz_name__": "temperature h+", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_capsfit_ht", "cass_capsfit_ht0": {"__spz_name__": "t perp", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_capsfit_ht(0)", "dataset": "cass-caps-fit", "index1": "0", "is_public": "True", "name": "t perp", "parameter": "cass_capsfit_ht", "start_date": "2004-07-02T04:11:26Z", "stop_date": "2012-05-24T23:27:50Z", "xmlid": "cass_capsfit_ht(0)"}, "cass_capsfit_ht1": {"__spz_name__": "t para", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_capsfit_ht(1)", "dataset": "cass-caps-fit", "index1": "1", "is_public": "True", "name": "t para", "parameter": "cass_capsfit_ht", "start_date": "2004-07-02T04:11:26Z", "stop_date": "2012-05-24T23:27:50Z", "xmlid": "cass_capsfit_ht(1)"}, "dataset": "cass-caps-fit", "display_type": "timeseries", "is_public": "True", "name": "temperature h+", "size": "2", "start_date": "2004-07-02T04:11:26Z", "stop_date": "2012-05-24T23:27:50Z", "ucd": "phys.temperature;phys.atmol.ionStage", "units": "eV", "xmlid": "cass_capsfit_ht"}, "cass_capsfit_pos": {"__spz_name__": "pos_sss", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_capsfit_pos", "cass_capsfit_pos0": {"__spz_name__": "sc_r", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_capsfit_pos(0)", "dataset": "cass-caps-fit", "index1": "0", "is_public": "True", "name": "sc_r", "parameter": "cass_capsfit_pos", "start_date": "2004-07-02T04:11:26Z", "stop_date": "2012-05-24T23:27:50Z", "xmlid": "cass_capsfit_pos(0)"}, "cass_capsfit_pos1": {"__spz_name__": "sc_lon", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_capsfit_pos(1)", "dataset": "cass-caps-fit", "index1": "1", "is_public": "True", "name": "sc_lon", "parameter": "cass_capsfit_pos", "start_date": "2004-07-02T04:11:26Z", "stop_date": "2012-05-24T23:27:50Z", "xmlid": "cass_capsfit_pos(1)"}, "cass_capsfit_pos2": {"__spz_name__": "sc_lat", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_capsfit_pos(2)", "dataset": "cass-caps-fit", "index1": "0", "is_public": "True", "name": "sc_lat", "parameter": "cass_capsfit_pos", "start_date": "2004-07-02T04:11:26Z", "stop_date": "2012-05-24T23:27:50Z", "xmlid": "cass_capsfit_pos(2)"}, "dataset": "cass-caps-fit", "description": "The co-ordinate system used in this study and for the fitted velocity vectors is Saturn de-Spun-Sun (SSS) where +z is the Saturn spin axis, +y is defined as the cross product ofthe +z with the Saturn-to-Sun vector, and +x is defined as the cross product of +y with +z.", "display_type": "timeseries", "is_public": "True", "name": "pos_sss", "size": "3", "start_date": "2004-07-02T04:11:26Z", "stop_date": "2012-05-24T23:27:50Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km", "xmlid": "cass_capsfit_pos"}, "cass_capsfit_qf": {"__spz_name__": "quality flag", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_capsfit_qf", "dataset": "cass-caps-fit", "description": "1=good fit, 0=bad fit", "display_type": "timeseries", "is_public": "True", "name": "quality flag", "start_date": "2004-07-02T04:11:26Z", "stop_date": "2012-05-24T23:27:50Z", "ucd": "arith.factor", "xmlid": "cass_capsfit_qf"}, "cass_capsfit_unhn": {"__spz_name__": "density h+ uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_capsfit_unhn", "dataset": "cass-caps-fit", "display_type": "timeseries", "is_public": "True", "name": "density h+ uncertainty", "start_date": "2004-07-02T04:11:26Z", "stop_date": "2012-05-24T23:27:50Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm-3", "xmlid": "cass_capsfit_unhn"}, "cass_capsfit_unht": {"__spz_name__": "temperature h+ uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_capsfit_unht", "cass_capsfit_unht0": {"__spz_name__": "sigma perp", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_capsfit_unht(0)", "dataset": "cass-caps-fit", "index1": "0", "is_public": "True", "name": "sigma perp", "parameter": "cass_capsfit_unht", "start_date": "2004-07-02T04:11:26Z", "stop_date": "2012-05-24T23:27:50Z", "xmlid": "cass_capsfit_unht(0)"}, "cass_capsfit_unht1": {"__spz_name__": "sigma para", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_capsfit_unht(1)", "dataset": "cass-caps-fit", "index1": "1", "is_public": "True", "name": "sigma para", "parameter": "cass_capsfit_unht", "start_date": "2004-07-02T04:11:26Z", "stop_date": "2012-05-24T23:27:50Z", "xmlid": "cass_capsfit_unht(1)"}, "dataset": "cass-caps-fit", "display_type": "timeseries", "is_public": "True", "name": "temperature h+ uncertainty", "size": "2", "start_date": "2004-07-02T04:11:26Z", "stop_date": "2012-05-24T23:27:50Z", "ucd": "phys.temperature;phys.atmol.ionStage", "units": "eV", "xmlid": "cass_capsfit_unht"}, "cass_capsfit_unv": {"__spz_name__": "velocity uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_capsfit_unv", "cass_capsfit_unv0": {"__spz_name__": "sigma vr", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_capsfit_unv(0)", "dataset": "cass-caps-fit", "index1": "0", "is_public": "True", "name": "sigma vr", "parameter": "cass_capsfit_unv", "start_date": "2004-07-02T04:11:26Z", "stop_date": "2012-05-24T23:27:50Z", "xmlid": "cass_capsfit_unv(0)"}, "cass_capsfit_unv1": {"__spz_name__": "sigma vp", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_capsfit_unv(1)", "dataset": "cass-caps-fit", "index1": "1", "is_public": "True", "name": "sigma vp", "parameter": "cass_capsfit_unv", "start_date": "2004-07-02T04:11:26Z", "stop_date": "2012-05-24T23:27:50Z", "xmlid": "cass_capsfit_unv(1)"}, "cass_capsfit_unv2": {"__spz_name__": "sigma vt", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_capsfit_unv(2)", "dataset": "cass-caps-fit", "index1": "2", "is_public": "True", "name": "sigma vt", "parameter": "cass_capsfit_unv", "start_date": "2004-07-02T04:11:26Z", "stop_date": "2012-05-24T23:27:50Z", "xmlid": "cass_capsfit_unv(2)"}, "dataset": "cass-caps-fit", "display_type": "timeseries", "is_public": "True", "name": "velocity uncertainty", "size": "3", "start_date": "2004-07-02T04:11:26Z", "stop_date": "2012-05-24T23:27:50Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "cass_capsfit_unv"}, "cass_capsfit_unwn": {"__spz_name__": "density w+ uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_capsfit_unwn", "dataset": "cass-caps-fit", "display_type": "timeseries", "is_public": "True", "name": "density w+ uncertainty", "start_date": "2004-07-02T04:11:26Z", "stop_date": "2012-05-24T23:27:50Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm-3", "xmlid": "cass_capsfit_unwn"}, "cass_capsfit_unwt": {"__spz_name__": "temperature w+ uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_capsfit_unwt", "cass_capsfit_unwt0": {"__spz_name__": "sigma perp", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_capsfit_unwt(0)", "dataset": "cass-caps-fit", "index1": "0", "is_public": "True", "name": "sigma perp", "parameter": "cass_capsfit_unwt", "start_date": "2004-07-02T04:11:26Z", "stop_date": "2012-05-24T23:27:50Z", "xmlid": "cass_capsfit_unwt(0)"}, "cass_capsfit_unwt1": {"__spz_name__": "sigma para", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_capsfit_unwt(1)", "dataset": "cass-caps-fit", "index1": "1", "is_public": "True", "name": "sigma para", "parameter": "cass_capsfit_unwt", "start_date": "2004-07-02T04:11:26Z", "stop_date": "2012-05-24T23:27:50Z", "xmlid": "cass_capsfit_unwt(1)"}, "dataset": "cass-caps-fit", "display_type": "timeseries", "is_public": "True", "name": "temperature w+ uncertainty", "size": "2", "start_date": "2004-07-02T04:11:26Z", "stop_date": "2012-05-24T23:27:50Z", "ucd": "phys.temperature;phys.atmol.ionStage", "units": "eV", "xmlid": "cass_capsfit_unwt"}, "cass_capsfit_v": {"__spz_name__": "velocity", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_capsfit_v", "cass_capsfit_v0": {"__spz_name__": "v_r", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_capsfit_v(0)", "dataset": "cass-caps-fit", "index1": "0", "is_public": "True", "name": "v_r", "parameter": "cass_capsfit_v", "start_date": "2004-07-02T04:11:26Z", "stop_date": "2012-05-24T23:27:50Z", "xmlid": "cass_capsfit_v(0)"}, "cass_capsfit_v1": {"__spz_name__": "v_phi", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_capsfit_v(1)", "dataset": "cass-caps-fit", "index1": "1", "is_public": "True", "name": "v_phi", "parameter": "cass_capsfit_v", "start_date": "2004-07-02T04:11:26Z", "stop_date": "2012-05-24T23:27:50Z", "xmlid": "cass_capsfit_v(1)"}, "cass_capsfit_v2": {"__spz_name__": "v_theta", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_capsfit_v(2)", "dataset": "cass-caps-fit", "index1": "2", "is_public": "True", "name": "v_theta", "parameter": "cass_capsfit_v", "start_date": "2004-07-02T04:11:26Z", "stop_date": "2012-05-24T23:27:50Z", "xmlid": "cass_capsfit_v(2)"}, "dataset": "cass-caps-fit", "display_type": "timeseries", "is_public": "True", "name": "velocity", "size": "3", "start_date": "2004-07-02T04:11:26Z", "stop_date": "2012-05-24T23:27:50Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "cass_capsfit_v"}, "cass_capsfit_wn": {"__spz_name__": "density w+", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_capsfit_wn", "dataset": "cass-caps-fit", "description": "Water Group : O+, OH+, H2O+, H3O+", "display_type": "timeseries", "is_public": "True", "name": "density w+", "start_date": "2004-07-02T04:11:26Z", "stop_date": "2012-05-24T23:27:50Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm-3", "xmlid": "cass_capsfit_wn"}, "cass_capsfit_wt": {"__spz_name__": "temperature w+", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_capsfit_wt", "cass_capsfit_wt0": {"__spz_name__": "t perp", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_capsfit_wt(0)", "dataset": "cass-caps-fit", "index1": "0", "is_public": "True", "name": "t perp", "parameter": "cass_capsfit_wt", "start_date": "2004-07-02T04:11:26Z", "stop_date": "2012-05-24T23:27:50Z", "xmlid": "cass_capsfit_wt(0)"}, "cass_capsfit_wt1": {"__spz_name__": "t para", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_capsfit_wt(1)", "dataset": "cass-caps-fit", "index1": "1", "is_public": "True", "name": "t para", "parameter": "cass_capsfit_wt", "start_date": "2004-07-02T04:11:26Z", "stop_date": "2012-05-24T23:27:50Z", "xmlid": "cass_capsfit_wt(1)"}, "dataset": "cass-caps-fit", "description": "Water Group : O+, OH+, H2O+, H3O+", "display_type": "timeseries", "is_public": "True", "name": "temperature w+", "size": "2", "start_date": "2004-07-02T04:11:26Z", "stop_date": "2012-05-24T23:27:50Z", "ucd": "phys.temperature;phys.atmol.ionStage", "units": "eV", "xmlid": "cass_capsfit_wt"}, "dataSource": "PDS", "desc": "Cassini CAPS Fitted Parameters
MinSampling: 26S; MaxSampling: 128S
Provider: PDS", "is_public": "True", "lastModificationDate": "2020-09-02T14:39:54Z", "lastUpdate": "2020-08-07T15:20:15Z", "maxSampling": "128S", "measurement_type": "ThermalPlasma", "name": "fitted parameters", "processing_level": "Calibrated", "sampling": "26S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cassini/CAPS/cass-caps-fit", "start_date": "2004-07-02T04:11:26Z", "stop_date": "2012-05-24T23:27:50Z", "target": "Saturn", "xmlid": "cass-caps-fit"}, "cass_caps_ionmo": {"__spz_name__": "ion moments", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "cass-caps-ionmo", "att": "auto/cass-caps-ionmo", "cass_caps_i_qual": {"__spz_name__": "quality flag", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_caps_i_qual", "dataset": "cass-caps-ionmo", "display_type": "timeseries", "is_public": "True", "name": "quality flag", "start_date": "2004-06-28T00:03:24Z", "stop_date": "2012-06-02T06:03:13Z", "ucd": "arith.factor", "xmlid": "cass_caps_i_qual"}, "cass_caps_imethod": {"__spz_name__": "method flag", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_caps_imethod", "dataset": "cass-caps-ionmo", "display_type": "timeseries", "is_public": "True", "name": "method flag", "start_date": "2004-06-28T00:03:24Z", "stop_date": "2012-06-02T06:03:13Z", "ucd": "meta.code.error;stat.fit", "xmlid": "cass_caps_imethod"}, "cass_caps_n_he": {"__spz_name__": "density he2+", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_caps_n_he", "dataset": "cass-caps-ionmo", "display_type": "timeseries", "is_public": "True", "name": "density he2+", "start_date": "2004-06-28T00:03:24Z", "stop_date": "2012-06-02T06:03:13Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm-3", "xmlid": "cass_caps_n_he"}, "cass_caps_n_p": {"__spz_name__": "density h+", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_caps_n_p", "dataset": "cass-caps-ionmo", "display_type": "timeseries", "is_public": "True", "name": "density h+", "start_date": "2004-06-28T00:03:24Z", "stop_date": "2012-06-02T06:03:13Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm-3", "xmlid": "cass_caps_n_p"}, "cass_caps_t_he": {"__spz_name__": "temperature he2+", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_caps_t_he", "dataset": "cass-caps-ionmo", "display_type": "timeseries", "is_public": "True", "name": "temperature he2+", "start_date": "2004-06-28T00:03:24Z", "stop_date": "2012-06-02T06:03:13Z", "ucd": "phys.temperature;phys.atmol.ionStage", "units": "eV", "xmlid": "cass_caps_t_he"}, "cass_caps_t_p": {"__spz_name__": "temperature h+", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_caps_t_p", "dataset": "cass-caps-ionmo", "display_type": "timeseries", "is_public": "True", "name": "temperature h+", "start_date": "2004-06-28T00:03:24Z", "stop_date": "2012-06-02T06:03:13Z", "ucd": "phys.temperature;phys.atmol.ionStage", "units": "eV", "xmlid": "cass_caps_t_p"}, "cass_caps_v_ion": {"__spz_name__": "v_krtp", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_caps_v_ion", "cass_caps_v_ion0": {"__spz_name__": "v_r", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_caps_v_ion(0)", "dataset": "cass-caps-ionmo", "index1": "0", "is_public": "True", "name": "v_r", "parameter": "cass_caps_v_ion", "start_date": "2004-06-28T00:03:24Z", "stop_date": "2012-06-02T06:03:13Z", "xmlid": "cass_caps_v_ion(0)"}, "cass_caps_v_ion1": {"__spz_name__": "v_phi", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_caps_v_ion(1)", "dataset": "cass-caps-ionmo", "index1": "1", "is_public": "True", "name": "v_phi", "parameter": "cass_caps_v_ion", "start_date": "2004-06-28T00:03:24Z", "stop_date": "2012-06-02T06:03:13Z", "xmlid": "cass_caps_v_ion(1)"}, "cass_caps_v_ion2": {"__spz_name__": "v_theta", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_caps_v_ion(2)", "dataset": "cass-caps-ionmo", "index1": "2", "is_public": "True", "name": "v_theta", "parameter": "cass_caps_v_ion", "start_date": "2004-06-28T00:03:24Z", "stop_date": "2012-06-02T06:03:13Z", "xmlid": "cass_caps_v_ion(2)"}, "dataset": "cass-caps-ionmo", "display_type": "timeseries", "is_public": "True", "name": "v_krtp", "size": "3", "start_date": "2004-06-28T00:03:24Z", "stop_date": "2012-06-02T06:03:13Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "cass_caps_v_ion"}, "cass_caps_vmag_ion": {"__spz_name__": "v_bulk", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_caps_vmag_ion", "dataset": "cass-caps-ionmo", "display_type": "timeseries", "is_public": "True", "name": "v_bulk", "start_date": "2004-06-28T00:03:24Z", "stop_date": "2012-06-02T06:03:13Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "cass_caps_vmag_ion"}, "cass_caps_w_n": {"__spz_name__": "density h2o group", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_caps_w_n", "dataset": "cass-caps-ionmo", "display_type": "timeseries", "is_public": "True", "name": "density h2o group", "start_date": "2004-06-28T00:03:24Z", "stop_date": "2012-06-02T06:03:13Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm-3", "xmlid": "cass_caps_w_n"}, "cass_caps_w_t": {"__spz_name__": "temperature h2o group", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_caps_w_t", "dataset": "cass-caps-ionmo", "display_type": "timeseries", "is_public": "True", "name": "temperature h2o group", "start_date": "2004-06-28T00:03:24Z", "stop_date": "2012-06-02T06:03:13Z", "ucd": "phys.temperature;phys.atmol.ionStage", "units": "eV", "xmlid": "cass_caps_w_t"}, "dataSource": "PDS", "desc": "Ion moments derived from CAPS/IMS
Sampling: 416S
Provider: PDS", "is_public": "True", "lastModificationDate": "2014-09-08T14:43:00Z", "lastUpdate": "2014-09-01T11:59:46Z", "measurement_type": "ThermalPlasma", "name": "ion moments", "processing_level": "Calibrated", "sampling": "416S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cassini/CAPS/cass-caps-ionmo", "start_date": "2004-06-28T00:03:24Z", "stop_date": "2012-06-02T06:03:13Z", "target": "Saturn", "xmlid": "cass-caps-ionmo"}, "cass_caps_scpot": {"__spz_name__": "s/c potential", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "cass-caps-scpot", "att": "auto/cass-caps-scpot", "cass_caps_scpot_accuracy": {"__spz_name__": "accuracy flag", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_caps_scpot_accuracy", "dataset": "cass-caps-scpot", "display_type": "timeseries", "is_public": "True", "name": "accuracy flag", "start_date": "1999-08-17T11:41:57Z", "stop_date": "2012-06-02T06:12:09Z", "ucd": "meta.code.error", "xmlid": "cass_caps_scpot_accuracy"}, "cass_caps_scpot_anode": {"__spz_name__": "anode used", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_caps_scpot_anode", "dataset": "cass-caps-scpot", "display_type": "timeseries", "is_public": "True", "name": "anode used", "start_date": "1999-08-17T11:41:57Z", "stop_date": "2012-06-02T06:12:09Z", "ucd": "instr.setup", "xmlid": "cass_caps_scpot_anode"}, "cass_caps_scpot_pot": {"__spz_name__": "s/c potential", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_caps_scpot_pot", "dataset": "cass-caps-scpot", "display_type": "timeseries", "is_public": "True", "name": "s/c potential", "start_date": "1999-08-17T11:41:57Z", "stop_date": "2012-06-02T06:12:09Z", "ucd": "phys.potential;phys.electField;instr.obsty", "units": "V", "xmlid": "cass_caps_scpot_pot"}, "dataSource": "PDS", "desc": "spacecraft potential derived from CAPS/ELS
Sampling: 8S
Provider: PDS", "is_public": "True", "lastModificationDate": "2014-09-08T16:18:11Z", "lastUpdate": "2014-08-28T17:50:08Z", "measurement_type": "ThermalPlasma", "name": "s/c potential", "processing_level": "Calibrated", "sampling": "8S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cassini/CAPS/cass-caps-scpot", "start_date": "1999-08-17T11:41:57Z", "stop_date": "2012-06-02T06:12:09Z", "target": "Saturn", "xmlid": "cass-caps-scpot"}, "cass_caps_snghr": {"__spz_name__": "ion spectra", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "cass-caps-snghr", "att": "auto/cass-caps-snghr", "cass_caps_sng": {"__spz_name__": "ion countrate ", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_caps_sng", "dataset": "cass-caps-snghr", "description": "energy spectrogram of ion count rates", "display_type": "spectrogram", "is_public": "True", "name": "ion countrate ", "start_date": "2004-05-15T00:07:30Z", "stop_date": "2012-06-02T06:11:45Z", "template": "cass_caps_sng_##ANODE##", "ucd": "phys.flux;phys.atmol.ionStage;arith.rate", "units": "cnts.s\u207b\u00b9", "xmlid": "cass_caps_sng"}, "cass_caps_sng_sum": {"__spz_name__": "ion countrate : sum over anodes", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_caps_sng_sum", "dataset": "cass-caps-snghr", "description": "energy spectrogram of ion count rates", "display_type": "spectrogram", "is_public": "True", "name": "ion countrate : sum over anodes", "start_date": "2004-05-15T00:07:30Z", "stop_date": "2012-06-02T06:11:45Z", "ucd": "phys.flux;phys.atmol.ionStage;arith.rate", "units": "cnts.s\u207b\u00b9", "xmlid": "cass_caps_sng_sum"}, "cass_caps_sngtel": {"__spz_name__": "telemetry mode", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_caps_sngtel", "dataset": "cass-caps-snghr", "description": "Telemetry mode", "display_type": "timeseries", "is_public": "True", "name": "telemetry mode", "start_date": "2004-05-15T00:07:30Z", "stop_date": "2012-06-02T06:11:45Z", "ucd": "meta.code;instr.setup", "xmlid": "cass_caps_sngtel"}, "dataSource": "PDS", "desc": "
MinSampling: 4S; MaxSampling: 32S
Provider: PDS", "is_public": "True", "lastModificationDate": "2018-02-01T12:39:50Z", "lastUpdate": "2018-02-02T05:58:22Z", "maxSampling": "32S", "measurement_type": "ThermalPlasma", "name": "ion spectra", "processing_level": "Calibrated", "sampling": "4S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cassini/CAPS/cass-caps-snghr", "start_date": "2004-05-15T00:07:30Z", "stop_date": "2012-06-02T06:11:45Z", "target": "Saturn", "xmlid": "cass-caps-snghr"}, "desc": "Cassini Plasma Spectrometer
ElectrostaticAnalyser", "is_public": "True", "name": "CAPS", "xmlid": "Cassini_caps"}, "Ephemeris__Cassini": {"__spz_name__": "Ephemeris: Cassini", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Cassini_ephemeris", "att": "auto/Cassini_ephemeris", "cass_ephem_eqt": {"__spz_name__": "flyby jupiter", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "cass-ephem-eqt", "att": "auto/cass-ephem-eqt", "cass_r_eqt": {"__spz_name__": "distance cass-jup", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_r_eqt", "dataset": "cass-ephem-eqt", "description": "Cassini distance to Jupiter (in Jovian radii)", "display_type": "timeseries", "is_public": "True", "name": "distance cass-jup", "start_date": "2000-10-07T00:00:00Z", "stop_date": "2001-05-10T23:55:00Z", "ucd": "pos.distance;instr.obsty", "units": "Rj", "xmlid": "cass_r_eqt"}, "cass_xyz_eqt": {"__spz_name__": "xyz_eqt", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_xyz_eqt", "cass_xyz_eqt0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_xyz_eqt(0)", "dataset": "cass-ephem-eqt", "index1": "0", "is_public": "True", "name": "x", "parameter": "cass_xyz_eqt", "start_date": "2000-10-07T00:00:00Z", "stop_date": "2001-05-10T23:55:00Z", "xmlid": "cass_xyz_eqt(0)"}, "cass_xyz_eqt1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_xyz_eqt(1)", "dataset": "cass-ephem-eqt", "index1": "1", "is_public": "True", "name": "y", "parameter": "cass_xyz_eqt", "start_date": "2000-10-07T00:00:00Z", "stop_date": "2001-05-10T23:55:00Z", "xmlid": "cass_xyz_eqt(1)"}, "cass_xyz_eqt2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_xyz_eqt(2)", "dataset": "cass-ephem-eqt", "index1": "2", "is_public": "True", "name": "z", "parameter": "cass_xyz_eqt", "start_date": "2000-10-07T00:00:00Z", "stop_date": "2001-05-10T23:55:00Z", "xmlid": "cass_xyz_eqt(2)"}, "dataset": "cass-ephem-eqt", "description": "Cassini cartesian coordinates in the Jovian equatorial system (in Jovian radii)", "display_type": "timeseries", "is_public": "True", "name": "xyz_eqt", "size": "3", "start_date": "2000-10-07T00:00:00Z", "stop_date": "2001-05-10T23:55:00Z", "ucd": "pos.ephem;instr.obsty", "units": "Rj", "xmlid": "cass_xyz_eqt"}, "dataSource": "University of Iowa", "desc": "Cassini ephemeris during Jupiter flyby
Sampling: 300S
Provider: University of Iowa", "is_public": "True", "lastModificationDate": "2013-06-17T16:34:13Z", "lastUpdate": "2011-09-09T09:59:19Z", "measurement_type": "Ephemeris", "name": "flyby jupiter", "processing_level": "Calibrated", "sampling": "300S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cassini/Ephemeris/cass-ephem-eqt", "start_date": "2000-10-07T00:00:00Z", "stop_date": "2001-05-10T23:55:00Z", "target": "Saturn", "xmlid": "cass-ephem-eqt"}, "cass_orb_cruise": {"__spz_name__": "cruise", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "cass-orb-cruise", "att": "auto/cass-orb-cruise", "cass_lat_sun": {"__spz_name__": "lat IAU_SUN", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_lat_sun", "dataset": "cass-orb-cruise", "display_type": "timeseries", "is_public": "True", "name": "lat IAU_SUN", "start_date": "1997-11-15T00:00:00Z", "stop_date": "2004-07-04T10:00:00Z", "ucd": "pos.bodyrc.lat", "units": "deg", "xmlid": "cass_lat_sun"}, "cass_lon_hci": {"__spz_name__": "lon HCI", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_lon_hci", "dataset": "cass-orb-cruise", "is_public": "True", "name": "lon HCI", "start_date": "1997-11-15T00:00:00Z", "stop_date": "2004-07-04T10:00:00Z", "units": "deg", "xmlid": "cass_lon_hci"}, "cass_lon_sun": {"__spz_name__": "lon IAU_SUN", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_lon_sun", "dataset": "cass-orb-cruise", "display_type": "timeseries", "is_public": "True", "name": "lon IAU_SUN", "start_date": "1997-11-15T00:00:00Z", "stop_date": "2004-07-04T10:00:00Z", "units": "deg", "xmlid": "cass_lon_sun"}, "cass_r_sun": {"__spz_name__": "distance cass-sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_r_sun", "dataset": "cass-orb-cruise", "display_type": "timeseries", "is_public": "True", "name": "distance cass-sun", "start_date": "1997-11-15T00:00:00Z", "stop_date": "2004-07-04T10:00:00Z", "ucd": "pos.distance;instr.obsty", "units": "AU", "xmlid": "cass_r_sun"}, "cass_xyz_hci": {"__spz_name__": "xyz_hci", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_xyz_hci", "cass_xyz_hci0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_xyz_hci(0)", "dataset": "cass-orb-cruise", "index1": "0", "is_public": "True", "name": "x", "parameter": "cass_xyz_hci", "start_date": "1997-11-15T00:00:00Z", "stop_date": "2004-07-04T10:00:00Z", "xmlid": "cass_xyz_hci(0)"}, "cass_xyz_hci1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_xyz_hci(1)", "dataset": "cass-orb-cruise", "index1": "1", "is_public": "True", "name": "y", "parameter": "cass_xyz_hci", "start_date": "1997-11-15T00:00:00Z", "stop_date": "2004-07-04T10:00:00Z", "xmlid": "cass_xyz_hci(1)"}, "cass_xyz_hci2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_xyz_hci(2)", "dataset": "cass-orb-cruise", "index1": "2", "is_public": "True", "name": "z", "parameter": "cass_xyz_hci", "start_date": "1997-11-15T00:00:00Z", "stop_date": "2004-07-04T10:00:00Z", "xmlid": "cass_xyz_hci(2)"}, "dataset": "cass-orb-cruise", "display_type": "timeseries", "is_public": "True", "name": "xyz_hci", "size": "3", "start_date": "1997-11-15T00:00:00Z", "stop_date": "2004-07-04T10:00:00Z", "ucd": "pos.ephem;instr.obsty", "units": "AU", "xmlid": "cass_xyz_hci"}, "cass_xyz_hee": {"__spz_name__": "xyz_hee", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_xyz_hee", "cass_xyz_hee0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_xyz_hee(0)", "dataset": "cass-orb-cruise", "index1": "0", "is_public": "True", "name": "x", "parameter": "cass_xyz_hee", "start_date": "1997-11-15T00:00:00Z", "stop_date": "2004-07-04T10:00:00Z", "xmlid": "cass_xyz_hee(0)"}, "cass_xyz_hee1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_xyz_hee(1)", "dataset": "cass-orb-cruise", "index1": "1", "is_public": "True", "name": "y", "parameter": "cass_xyz_hee", "start_date": "1997-11-15T00:00:00Z", "stop_date": "2004-07-04T10:00:00Z", "xmlid": "cass_xyz_hee(1)"}, "cass_xyz_hee2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_xyz_hee(2)", "dataset": "cass-orb-cruise", "index1": "2", "is_public": "True", "name": "z", "parameter": "cass_xyz_hee", "start_date": "1997-11-15T00:00:00Z", "stop_date": "2004-07-04T10:00:00Z", "xmlid": "cass_xyz_hee(2)"}, "dataset": "cass-orb-cruise", "display_type": "timeseries", "is_public": "True", "name": "xyz_hee", "size": "3", "start_date": "1997-11-15T00:00:00Z", "stop_date": "2004-07-04T10:00:00Z", "ucd": "pos.ephem;instr.obsty", "units": "AU", "xmlid": "cass_xyz_hee"}, "cass_xyz_heeq": {"__spz_name__": "xyz_heeq", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_xyz_heeq", "cass_xyz_heeq0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_xyz_heeq(0)", "dataset": "cass-orb-cruise", "index1": "0", "is_public": "True", "name": "x", "parameter": "cass_xyz_heeq", "start_date": "1997-11-15T00:00:00Z", "stop_date": "2004-07-04T10:00:00Z", "xmlid": "cass_xyz_heeq(0)"}, "cass_xyz_heeq1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_xyz_heeq(1)", "dataset": "cass-orb-cruise", "index1": "1", "is_public": "True", "name": "y", "parameter": "cass_xyz_heeq", "start_date": "1997-11-15T00:00:00Z", "stop_date": "2004-07-04T10:00:00Z", "xmlid": "cass_xyz_heeq(1)"}, "cass_xyz_heeq2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_xyz_heeq(2)", "dataset": "cass-orb-cruise", "index1": "2", "is_public": "True", "name": "z", "parameter": "cass_xyz_heeq", "start_date": "1997-11-15T00:00:00Z", "stop_date": "2004-07-04T10:00:00Z", "xmlid": "cass_xyz_heeq(2)"}, "dataset": "cass-orb-cruise", "display_type": "timeseries", "is_public": "True", "name": "xyz_heeq", "size": "3", "start_date": "1997-11-15T00:00:00Z", "stop_date": "2004-07-04T10:00:00Z", "ucd": "pos.ephem;instr.obsty", "units": "AU", "xmlid": "cass_xyz_heeq"}, "cass_xyz_iausun": {"__spz_name__": "xyz_iau_sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_xyz_iausun", "cass_xyz_iausun0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_xyz_iausun(0)", "dataset": "cass-orb-cruise", "index1": "0", "is_public": "True", "name": "x", "parameter": "cass_xyz_iausun", "start_date": "1997-11-15T00:00:00Z", "stop_date": "2004-07-04T10:00:00Z", "xmlid": "cass_xyz_iausun(0)"}, "cass_xyz_iausun1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_xyz_iausun(1)", "dataset": "cass-orb-cruise", "index1": "1", "is_public": "True", "name": "y", "parameter": "cass_xyz_iausun", "start_date": "1997-11-15T00:00:00Z", "stop_date": "2004-07-04T10:00:00Z", "xmlid": "cass_xyz_iausun(1)"}, "cass_xyz_iausun2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_xyz_iausun(2)", "dataset": "cass-orb-cruise", "index1": "2", "is_public": "True", "name": "z", "parameter": "cass_xyz_iausun", "start_date": "1997-11-15T00:00:00Z", "stop_date": "2004-07-04T10:00:00Z", "xmlid": "cass_xyz_iausun(2)"}, "dataset": "cass-orb-cruise", "display_type": "timeseries", "is_public": "True", "name": "xyz_iau_sun", "size": "3", "start_date": "1997-11-15T00:00:00Z", "stop_date": "2004-07-04T10:00:00Z", "ucd": "pos.ephem;instr.obsty", "units": "AU", "xmlid": "cass_xyz_iausun"}, "dataSource": "NAIF/SPICE", "desc": "Cassini ephemeris during cruise phase
Sampling: 1H
Provider: NAIF/SPICE", "is_public": "True", "lastModificationDate": "2019-04-04T11:08:43Z", "lastUpdate": "2019-08-28T18:58:18Z", "measurement_type": "Ephemeris", "name": "cruise", "processing_level": "Calibrated", "sampling": "1H", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cassini/Ephemeris/cass-orb-cruise", "start_date": "1997-11-15T00:00:00Z", "stop_date": "2004-07-04T10:00:00Z", "target": "Heliosphere", "xmlid": "cass-orb-cruise"}, "desc": "", "is_public": "True", "name": "Ephemeris: Cassini", "orbit_saturn": {"__spz_name__": "orbit saturn", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "cass-saturn-orb", "att": "auto/cass-saturn-orb", "cass_orb_1s": {"__spz_name__": "1 sec", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "cass-orb-1s", "att": "auto/cass-orb-1s", "cass_lat_sat_1s": {"__spz_name__": "lat_iau_saturn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_lat_sat_1s", "dataset": "cass-orb-1s", "display_type": "timeseries", "is_public": "True", "name": "lat_iau_saturn", "start_date": "2004-03-01T00:00:00Z", "stop_date": "2017-09-15T11:54:58Z", "ucd": "pos.bodyrc.lat", "units": "deg", "xmlid": "cass_lat_sat_1s"}, "cass_lon_sat_1s": {"__spz_name__": "lon_iau_saturn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_lon_sat_1s", "dataset": "cass-orb-1s", "display_type": "timeseries", "is_public": "True", "name": "lon_iau_saturn", "start_date": "2004-03-01T00:00:00Z", "stop_date": "2017-09-15T11:54:58Z", "units": "deg", "xmlid": "cass_lon_sat_1s"}, "cass_r_sat_1s": {"__spz_name__": "distance cassini-saturn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_r_sat_1s", "dataset": "cass-orb-1s", "display_type": "timeseries", "is_public": "True", "name": "distance cassini-saturn", "start_date": "2004-03-01T00:00:00Z", "stop_date": "2017-09-15T11:54:58Z", "ucd": "pos.distance;instr.obsty", "units": "Rs", "xmlid": "cass_r_sat_1s"}, "cass_xyz_krtp_1s": {"__spz_name__": "xyz_krtp", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_xyz_krtp_1s", "cass_xyz_krtp_1s0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_xyz_krtp_1s(0)", "dataset": "cass-orb-1s", "index1": "0", "is_public": "True", "name": "x", "parameter": "cass_xyz_krtp_1s", "start_date": "2004-03-01T00:00:00Z", "stop_date": "2017-09-15T11:54:58Z", "xmlid": "cass_xyz_krtp_1s(0)"}, "cass_xyz_krtp_1s1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_xyz_krtp_1s(1)", "dataset": "cass-orb-1s", "index1": "1", "is_public": "True", "name": "y", "parameter": "cass_xyz_krtp_1s", "start_date": "2004-03-01T00:00:00Z", "stop_date": "2017-09-15T11:54:58Z", "xmlid": "cass_xyz_krtp_1s(1)"}, "cass_xyz_krtp_1s2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_xyz_krtp_1s(2)", "dataset": "cass-orb-1s", "index1": "2", "is_public": "True", "name": "z", "parameter": "cass_xyz_krtp_1s", "start_date": "2004-03-01T00:00:00Z", "stop_date": "2017-09-15T11:54:58Z", "xmlid": "cass_xyz_krtp_1s(2)"}, "dataset": "cass-orb-1s", "display_type": "timeseries", "is_public": "True", "name": "xyz_krtp", "size": "3", "start_date": "2004-03-01T00:00:00Z", "stop_date": "2017-09-15T11:54:58Z", "ucd": "pos.ephem;instr.obsty", "units": "Rs", "xmlid": "cass_xyz_krtp_1s"}, "cass_xyz_ksm_1s": {"__spz_name__": "xyz_ksm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_xyz_ksm_1s", "cass_xyz_ksm_1s0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_xyz_ksm_1s(0)", "dataset": "cass-orb-1s", "index1": "0", "is_public": "True", "name": "x", "parameter": "cass_xyz_ksm_1s", "start_date": "2004-03-01T00:00:00Z", "stop_date": "2017-09-15T11:54:58Z", "xmlid": "cass_xyz_ksm_1s(0)"}, "cass_xyz_ksm_1s1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_xyz_ksm_1s(1)", "dataset": "cass-orb-1s", "index1": "1", "is_public": "True", "name": "y", "parameter": "cass_xyz_ksm_1s", "start_date": "2004-03-01T00:00:00Z", "stop_date": "2017-09-15T11:54:58Z", "xmlid": "cass_xyz_ksm_1s(1)"}, "cass_xyz_ksm_1s2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_xyz_ksm_1s(2)", "dataset": "cass-orb-1s", "index1": "2", "is_public": "True", "name": "z", "parameter": "cass_xyz_ksm_1s", "start_date": "2004-03-01T00:00:00Z", "stop_date": "2017-09-15T11:54:58Z", "xmlid": "cass_xyz_ksm_1s(2)"}, "dataset": "cass-orb-1s", "display_type": "timeseries", "is_public": "True", "name": "xyz_ksm", "size": "3", "start_date": "2004-03-01T00:00:00Z", "stop_date": "2017-09-15T11:54:58Z", "ucd": "pos.ephem;instr.obsty", "units": "Rs", "xmlid": "cass_xyz_ksm_1s"}, "cass_xyz_kso_1s": {"__spz_name__": "xyz_kso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_xyz_kso_1s", "cass_xyz_kso_1s0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_xyz_kso_1s(0)", "dataset": "cass-orb-1s", "index1": "0", "is_public": "True", "name": "x", "parameter": "cass_xyz_kso_1s", "start_date": "2004-03-01T00:00:00Z", "stop_date": "2017-09-15T11:54:58Z", "xmlid": "cass_xyz_kso_1s(0)"}, "cass_xyz_kso_1s1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_xyz_kso_1s(1)", "dataset": "cass-orb-1s", "index1": "1", "is_public": "True", "name": "y", "parameter": "cass_xyz_kso_1s", "start_date": "2004-03-01T00:00:00Z", "stop_date": "2017-09-15T11:54:58Z", "xmlid": "cass_xyz_kso_1s(1)"}, "cass_xyz_kso_1s2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_xyz_kso_1s(2)", "dataset": "cass-orb-1s", "index1": "2", "is_public": "True", "name": "z", "parameter": "cass_xyz_kso_1s", "start_date": "2004-03-01T00:00:00Z", "stop_date": "2017-09-15T11:54:58Z", "xmlid": "cass_xyz_kso_1s(2)"}, "dataset": "cass-orb-1s", "display_type": "timeseries", "is_public": "True", "name": "xyz_kso", "size": "3", "start_date": "2004-03-01T00:00:00Z", "stop_date": "2017-09-15T11:54:58Z", "ucd": "pos.ephem;instr.obsty", "units": "Rs", "xmlid": "cass_xyz_kso_1s"}, "cass_xyz_szs_1s": {"__spz_name__": "xyz_szs", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_xyz_szs_1s", "cass_xyz_szs_1s0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_xyz_szs_1s(0)", "dataset": "cass-orb-1s", "index1": "0", "is_public": "True", "name": "x", "parameter": "cass_xyz_szs_1s", "start_date": "2004-03-01T00:00:00Z", "stop_date": "2017-09-15T11:54:58Z", "xmlid": "cass_xyz_szs_1s(0)"}, "cass_xyz_szs_1s1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_xyz_szs_1s(1)", "dataset": "cass-orb-1s", "index1": "1", "is_public": "True", "name": "y", "parameter": "cass_xyz_szs_1s", "start_date": "2004-03-01T00:00:00Z", "stop_date": "2017-09-15T11:54:58Z", "xmlid": "cass_xyz_szs_1s(1)"}, "cass_xyz_szs_1s2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_xyz_szs_1s(2)", "dataset": "cass-orb-1s", "index1": "2", "is_public": "True", "name": "z", "parameter": "cass_xyz_szs_1s", "start_date": "2004-03-01T00:00:00Z", "stop_date": "2017-09-15T11:54:58Z", "xmlid": "cass_xyz_szs_1s(2)"}, "dataset": "cass-orb-1s", "display_type": "timeseries", "is_public": "True", "name": "xyz_szs", "size": "3", "start_date": "2004-03-01T00:00:00Z", "stop_date": "2017-09-15T11:54:58Z", "ucd": "pos.ephem;instr.obsty", "units": "Rs", "xmlid": "cass_xyz_szs_1s"}, "dataSource": "NAIF/SPICE", "desc": "Cassini ephemeris during Saturn orbiting : 1sec
Sampling: 1S
Provider: NAIF/SPICE", "is_public": "True", "lastModificationDate": "2019-03-18T16:38:54Z", "lastUpdate": "2019-03-18T16:38:24Z", "measurement_type": "Ephemeris", "name": "1 sec", "processing_level": "Calibrated", "sampling": "1S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cassini/Ephemeris/cass-orb-1s", "start_date": "2004-03-01T00:00:00Z", "stop_date": "2017-09-15T11:54:58Z", "target": "Saturn", "xmlid": "cass-orb-1s"}, "cass_orb_60s": {"__spz_name__": "1 min", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "cass-orb-60s", "att": "auto/cass-orb-60s", "cass_lat_sat_1m": {"__spz_name__": "lat_iau_saturn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_lat_sat_1m", "dataset": "cass-orb-60s", "display_type": "timeseries", "is_public": "True", "name": "lat_iau_saturn", "start_date": "2004-03-01T00:00:00Z", "stop_date": "2017-09-15T11:55:00Z", "ucd": "pos.bodyrc.lat", "units": "deg", "xmlid": "cass_lat_sat_1m"}, "cass_lon_sat_1m": {"__spz_name__": "lon_iau_saturn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_lon_sat_1m", "dataset": "cass-orb-60s", "display_type": "timeseries", "is_public": "True", "name": "lon_iau_saturn", "start_date": "2004-03-01T00:00:00Z", "stop_date": "2017-09-15T11:55:00Z", "units": "deg", "xmlid": "cass_lon_sat_1m"}, "cass_orb_num": {"__spz_name__": "cass_orbit_num", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_orb_num", "dataset": "cass-orb-60s", "display_type": "timeseries", "is_public": "True", "name": "cass_orbit_num", "start_date": "2004-03-01T00:00:00Z", "stop_date": "2017-09-15T11:55:00Z", "xmlid": "cass_orb_num"}, "cass_r_sat_1m": {"__spz_name__": "distance cassini-saturn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_r_sat_1m", "dataset": "cass-orb-60s", "display_type": "timeseries", "is_public": "True", "name": "distance cassini-saturn", "start_date": "2004-03-01T00:00:00Z", "stop_date": "2017-09-15T11:55:00Z", "ucd": "pos.distance;instr.obsty", "units": "Rs", "xmlid": "cass_r_sat_1m"}, "cass_xyz_krtp_1m": {"__spz_name__": "xyz_krtp", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_xyz_krtp_1m", "cass_xyz_krtp_1m0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_xyz_krtp_1m(0)", "dataset": "cass-orb-60s", "index1": "0", "is_public": "True", "name": "x", "parameter": "cass_xyz_krtp_1m", "start_date": "2004-03-01T00:00:00Z", "stop_date": "2017-09-15T11:55:00Z", "xmlid": "cass_xyz_krtp_1m(0)"}, "cass_xyz_krtp_1m1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_xyz_krtp_1m(1)", "dataset": "cass-orb-60s", "index1": "1", "is_public": "True", "name": "y", "parameter": "cass_xyz_krtp_1m", "start_date": "2004-03-01T00:00:00Z", "stop_date": "2017-09-15T11:55:00Z", "xmlid": "cass_xyz_krtp_1m(1)"}, "cass_xyz_krtp_1m2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_xyz_krtp_1m(2)", "dataset": "cass-orb-60s", "index1": "2", "is_public": "True", "name": "z", "parameter": "cass_xyz_krtp_1m", "start_date": "2004-03-01T00:00:00Z", "stop_date": "2017-09-15T11:55:00Z", "xmlid": "cass_xyz_krtp_1m(2)"}, "dataset": "cass-orb-60s", "display_type": "timeseries", "is_public": "True", "name": "xyz_krtp", "size": "3", "start_date": "2004-03-01T00:00:00Z", "stop_date": "2017-09-15T11:55:00Z", "ucd": "pos.ephem;instr.obsty", "units": "Rs", "xmlid": "cass_xyz_krtp_1m"}, "cass_xyz_ksm_1m": {"__spz_name__": "xyz_ksm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_xyz_ksm_1m", "cass_xyz_ksm_1m0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_xyz_ksm_1m(0)", "dataset": "cass-orb-60s", "index1": "0", "is_public": "True", "name": "x", "parameter": "cass_xyz_ksm_1m", "start_date": "2004-03-01T00:00:00Z", "stop_date": "2017-09-15T11:55:00Z", "xmlid": "cass_xyz_ksm_1m(0)"}, "cass_xyz_ksm_1m1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_xyz_ksm_1m(1)", "dataset": "cass-orb-60s", "index1": "1", "is_public": "True", "name": "y", "parameter": "cass_xyz_ksm_1m", "start_date": "2004-03-01T00:00:00Z", "stop_date": "2017-09-15T11:55:00Z", "xmlid": "cass_xyz_ksm_1m(1)"}, "cass_xyz_ksm_1m2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_xyz_ksm_1m(2)", "dataset": "cass-orb-60s", "index1": "2", "is_public": "True", "name": "z", "parameter": "cass_xyz_ksm_1m", "start_date": "2004-03-01T00:00:00Z", "stop_date": "2017-09-15T11:55:00Z", "xmlid": "cass_xyz_ksm_1m(2)"}, "dataset": "cass-orb-60s", "display_type": "timeseries", "is_public": "True", "name": "xyz_ksm", "size": "3", "start_date": "2004-03-01T00:00:00Z", "stop_date": "2017-09-15T11:55:00Z", "ucd": "pos.ephem;instr.obsty", "units": "Rs", "xmlid": "cass_xyz_ksm_1m"}, "cass_xyz_kso_1m": {"__spz_name__": "xyz_kso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_xyz_kso_1m", "cass_xyz_kso_1m0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_xyz_kso_1m(0)", "dataset": "cass-orb-60s", "index1": "0", "is_public": "True", "name": "x", "parameter": "cass_xyz_kso_1m", "start_date": "2004-03-01T00:00:00Z", "stop_date": "2017-09-15T11:55:00Z", "xmlid": "cass_xyz_kso_1m(0)"}, "cass_xyz_kso_1m1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_xyz_kso_1m(1)", "dataset": "cass-orb-60s", "index1": "1", "is_public": "True", "name": "y", "parameter": "cass_xyz_kso_1m", "start_date": "2004-03-01T00:00:00Z", "stop_date": "2017-09-15T11:55:00Z", "xmlid": "cass_xyz_kso_1m(1)"}, "cass_xyz_kso_1m2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_xyz_kso_1m(2)", "dataset": "cass-orb-60s", "index1": "2", "is_public": "True", "name": "z", "parameter": "cass_xyz_kso_1m", "start_date": "2004-03-01T00:00:00Z", "stop_date": "2017-09-15T11:55:00Z", "xmlid": "cass_xyz_kso_1m(2)"}, "dataset": "cass-orb-60s", "display_type": "timeseries", "is_public": "True", "name": "xyz_kso", "size": "3", "start_date": "2004-03-01T00:00:00Z", "stop_date": "2017-09-15T11:55:00Z", "ucd": "pos.ephem;instr.obsty", "units": "Rs", "xmlid": "cass_xyz_kso_1m"}, "cass_xyz_szs_1m": {"__spz_name__": "xyz_szs", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_xyz_szs_1m", "cass_xyz_szs_1m0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_xyz_szs_1m(0)", "dataset": "cass-orb-60s", "index1": "0", "is_public": "True", "name": "x", "parameter": "cass_xyz_szs_1m", "start_date": "2004-03-01T00:00:00Z", "stop_date": "2017-09-15T11:55:00Z", "xmlid": "cass_xyz_szs_1m(0)"}, "cass_xyz_szs_1m1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_xyz_szs_1m(1)", "dataset": "cass-orb-60s", "index1": "1", "is_public": "True", "name": "y", "parameter": "cass_xyz_szs_1m", "start_date": "2004-03-01T00:00:00Z", "stop_date": "2017-09-15T11:55:00Z", "xmlid": "cass_xyz_szs_1m(1)"}, "cass_xyz_szs_1m2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_xyz_szs_1m(2)", "dataset": "cass-orb-60s", "index1": "2", "is_public": "True", "name": "z", "parameter": "cass_xyz_szs_1m", "start_date": "2004-03-01T00:00:00Z", "stop_date": "2017-09-15T11:55:00Z", "xmlid": "cass_xyz_szs_1m(2)"}, "dataset": "cass-orb-60s", "display_type": "timeseries", "is_public": "True", "name": "xyz_szs", "size": "3", "start_date": "2004-03-01T00:00:00Z", "stop_date": "2017-09-15T11:55:00Z", "ucd": "pos.ephem;instr.obsty", "units": "Rs", "xmlid": "cass_xyz_szs_1m"}, "dataSource": "NAIF/SPICE", "desc": "Cassini ephemeris during Saturn orbiting : 1 min
Sampling: 60S
Provider: NAIF/SPICE", "is_public": "True", "lastModificationDate": "2019-03-18T12:57:50Z", "lastUpdate": "2019-03-18T12:57:11Z", "measurement_type": "Ephemeris", "name": "1 min", "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cassini/Ephemeris/cass-orb-60s", "start_date": "2004-03-01T00:00:00Z", "stop_date": "2017-09-15T11:55:00Z", "target": "Saturn", "xmlid": "cass-orb-60s"}, "cass_orb_saturn": {"__spz_name__": "5 min", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "cass-orb-saturn", "att": "auto/cass-orb-saturn", "cass_lat_sat": {"__spz_name__": "lat_iau_saturn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_lat_sat", "dataset": "cass-orb-saturn", "display_type": "timeseries", "is_public": "True", "name": "lat_iau_saturn", "start_date": "2004-03-01T00:00:00Z", "stop_date": "2017-09-15T11:50:00Z", "ucd": "pos.bodyrc.lat", "units": "deg", "xmlid": "cass_lat_sat"}, "cass_lon_sat": {"__spz_name__": "lon_iau_saturn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_lon_sat", "dataset": "cass-orb-saturn", "display_type": "timeseries", "is_public": "True", "name": "lon_iau_saturn", "start_date": "2004-03-01T00:00:00Z", "stop_date": "2017-09-15T11:50:00Z", "units": "deg", "xmlid": "cass_lon_sat"}, "cass_r_sat": {"__spz_name__": "distance cassini-saturn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_r_sat", "dataset": "cass-orb-saturn", "display_type": "timeseries", "is_public": "True", "name": "distance cassini-saturn", "start_date": "2004-03-01T00:00:00Z", "stop_date": "2017-09-15T11:50:00Z", "ucd": "pos.distance;instr.obsty", "units": "Rs", "xmlid": "cass_r_sat"}, "cass_xyz_krtp": {"__spz_name__": "xyz_krtp", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_xyz_krtp", "cass_xyz_krtp0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_xyz_krtp(0)", "dataset": "cass-orb-saturn", "index1": "0", "is_public": "True", "name": "x", "parameter": "cass_xyz_krtp", "start_date": "2004-03-01T00:00:00Z", "stop_date": "2017-09-15T11:50:00Z", "xmlid": "cass_xyz_krtp(0)"}, "cass_xyz_krtp1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_xyz_krtp(1)", "dataset": "cass-orb-saturn", "index1": "1", "is_public": "True", "name": "y", "parameter": "cass_xyz_krtp", "start_date": "2004-03-01T00:00:00Z", "stop_date": "2017-09-15T11:50:00Z", "xmlid": "cass_xyz_krtp(1)"}, "cass_xyz_krtp2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_xyz_krtp(2)", "dataset": "cass-orb-saturn", "index1": "2", "is_public": "True", "name": "z", "parameter": "cass_xyz_krtp", "start_date": "2004-03-01T00:00:00Z", "stop_date": "2017-09-15T11:50:00Z", "xmlid": "cass_xyz_krtp(2)"}, "dataset": "cass-orb-saturn", "display_type": "timeseries", "is_public": "True", "name": "xyz_krtp", "size": "3", "start_date": "2004-03-01T00:00:00Z", "stop_date": "2017-09-15T11:50:00Z", "ucd": "pos.ephem;instr.obsty", "units": "Rs", "xmlid": "cass_xyz_krtp"}, "cass_xyz_ksm": {"__spz_name__": "xyz_ksm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_xyz_ksm", "cass_xyz_ksm0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_xyz_ksm(0)", "dataset": "cass-orb-saturn", "index1": "0", "is_public": "True", "name": "x", "parameter": "cass_xyz_ksm", "start_date": "2004-03-01T00:00:00Z", "stop_date": "2017-09-15T11:50:00Z", "xmlid": "cass_xyz_ksm(0)"}, "cass_xyz_ksm1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_xyz_ksm(1)", "dataset": "cass-orb-saturn", "index1": "1", "is_public": "True", "name": "y", "parameter": "cass_xyz_ksm", "start_date": "2004-03-01T00:00:00Z", "stop_date": "2017-09-15T11:50:00Z", "xmlid": "cass_xyz_ksm(1)"}, "cass_xyz_ksm2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_xyz_ksm(2)", "dataset": "cass-orb-saturn", "index1": "2", "is_public": "True", "name": "z", "parameter": "cass_xyz_ksm", "start_date": "2004-03-01T00:00:00Z", "stop_date": "2017-09-15T11:50:00Z", "xmlid": "cass_xyz_ksm(2)"}, "dataset": "cass-orb-saturn", "display_type": "timeseries", "is_public": "True", "name": "xyz_ksm", "size": "3", "start_date": "2004-03-01T00:00:00Z", "stop_date": "2017-09-15T11:50:00Z", "ucd": "pos.ephem;instr.obsty", "units": "Rs", "xmlid": "cass_xyz_ksm"}, "cass_xyz_kso": {"__spz_name__": "xyz_kso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_xyz_kso", "cass_xyz_kso0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_xyz_kso(0)", "dataset": "cass-orb-saturn", "index1": "0", "is_public": "True", "name": "x", "parameter": "cass_xyz_kso", "start_date": "2004-03-01T00:00:00Z", "stop_date": "2017-09-15T11:50:00Z", "xmlid": "cass_xyz_kso(0)"}, "cass_xyz_kso1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_xyz_kso(1)", "dataset": "cass-orb-saturn", "index1": "1", "is_public": "True", "name": "y", "parameter": "cass_xyz_kso", "start_date": "2004-03-01T00:00:00Z", "stop_date": "2017-09-15T11:50:00Z", "xmlid": "cass_xyz_kso(1)"}, "cass_xyz_kso2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_xyz_kso(2)", "dataset": "cass-orb-saturn", "index1": "2", "is_public": "True", "name": "z", "parameter": "cass_xyz_kso", "start_date": "2004-03-01T00:00:00Z", "stop_date": "2017-09-15T11:50:00Z", "xmlid": "cass_xyz_kso(2)"}, "dataset": "cass-orb-saturn", "display_type": "timeseries", "is_public": "True", "name": "xyz_kso", "size": "3", "start_date": "2004-03-01T00:00:00Z", "stop_date": "2017-09-15T11:50:00Z", "ucd": "pos.ephem;instr.obsty", "units": "Rs", "xmlid": "cass_xyz_kso"}, "cass_xyz_szs": {"__spz_name__": "xyz_szs", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_xyz_szs", "cass_xyz_szs0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_xyz_szs(0)", "dataset": "cass-orb-saturn", "index1": "0", "is_public": "True", "name": "x", "parameter": "cass_xyz_szs", "start_date": "2004-03-01T00:00:00Z", "stop_date": "2017-09-15T11:50:00Z", "xmlid": "cass_xyz_szs(0)"}, "cass_xyz_szs1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_xyz_szs(1)", "dataset": "cass-orb-saturn", "index1": "1", "is_public": "True", "name": "y", "parameter": "cass_xyz_szs", "start_date": "2004-03-01T00:00:00Z", "stop_date": "2017-09-15T11:50:00Z", "xmlid": "cass_xyz_szs(1)"}, "cass_xyz_szs2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_xyz_szs(2)", "dataset": "cass-orb-saturn", "index1": "2", "is_public": "True", "name": "z", "parameter": "cass_xyz_szs", "start_date": "2004-03-01T00:00:00Z", "stop_date": "2017-09-15T11:50:00Z", "xmlid": "cass_xyz_szs(2)"}, "dataset": "cass-orb-saturn", "display_type": "timeseries", "is_public": "True", "name": "xyz_szs", "size": "3", "start_date": "2004-03-01T00:00:00Z", "stop_date": "2017-09-15T11:50:00Z", "ucd": "pos.ephem;instr.obsty", "units": "Rs", "xmlid": "cass_xyz_szs"}, "dataSource": "NAIF/SPICE", "desc": "Cassini ephemeris during Saturn orbiting : 5 min
Sampling: 60S
Provider: NAIF/SPICE", "is_public": "True", "lastModificationDate": "2019-03-18T15:04:26Z", "lastUpdate": "2019-03-18T12:59:48Z", "measurement_type": "Ephemeris", "name": "5 min", "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cassini/Ephemeris/cass-orb-saturn", "start_date": "2004-03-01T00:00:00Z", "stop_date": "2017-09-15T11:50:00Z", "target": "Saturn", "xmlid": "cass-orb-saturn"}, "is_public": "True", "name": "orbit saturn", "xmlid": "cass-saturn-orb"}, "orbit_saturn___special": {"__spz_name__": "orbit saturn : special", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "cass-orb-spec", "cass_ephem_polar": {"__spz_name__": "polar", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "cass-ephem-polar", "att": "auto/cass-ephem-polar", "cass_l": {"__spz_name__": "L-shell", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_l", "dataset": "cass-ephem-polar", "description": "Cassini L-shell (assuming dipolar magnetic field)", "display_type": "timeseries", "is_public": "True", "name": "L-shell", "start_date": "2003-01-01T00:00:00Z", "stop_date": "2017-09-15T00:00:00Z", "ucd": "pos.distance;phys.magField", "xmlid": "cass_l"}, "cass_lt": {"__spz_name__": "local time", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_lt", "dataset": "cass-ephem-polar", "description": "Cassini Local Time", "display_type": "timeseries", "is_public": "True", "name": "local time", "start_date": "2003-01-01T00:00:00Z", "stop_date": "2017-09-15T00:00:00Z", "ucd": "pos.bodyrc.lon;instr.obsty", "units": "hours", "xmlid": "cass_lt"}, "cass_wl": {"__spz_name__": "wl iau_saturn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_wl", "dataset": "cass-ephem-polar", "display_type": "timeseries", "is_public": "True", "name": "wl iau_saturn", "start_date": "2003-01-01T00:00:00Z", "stop_date": "2017-09-15T00:00:00Z", "units": "degrees", "xmlid": "cass_wl"}, "dataSource": "University of Iowa", "desc": "special Cassini ephemeris
Sampling: 300S
Provider: University of Iowa", "is_public": "True", "lastModificationDate": "2018-01-19T18:31:56Z", "lastUpdate": "2018-01-19T18:28:51Z", "measurement_type": "Ephemeris", "name": "polar", "processing_level": "Calibrated", "sampling": "300S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cassini/Ephemeris/cass-ephem-polar", "start_date": "2003-01-01T00:00:00Z", "stop_date": "2017-09-15T00:00:00Z", "xmlid": "cass-ephem-polar"}, "cass_ephem_sls3": {"__spz_name__": "wl sls3", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "cass-ephem-sls3", "att": "auto/cass-ephem-sls3", "cass_wl_sls3": {"__spz_name__": "lon_sls3", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_wl_sls3", "dataset": "cass-ephem-sls3", "description": "Cassini Longitude around Saturn (relative to the SLS3 period)", "display_type": "timeseries", "is_public": "True", "name": "lon_sls3", "start_date": "2004-01-01T00:10:00Z", "stop_date": "2007-08-11T00:00:00Z", "ucd": "pos.bodyrc.lon;instr.obsty", "units": "deg", "xmlid": "cass_wl_sls3"}, "dataSource": "University of Iowa", "desc": "Saturnian Longitude System 3 (western)
Sampling: 300S
Provider: University of Iowa", "is_public": "True", "lastModificationDate": "2018-02-02T15:56:46Z", "lastUpdate": "2022-09-22T12:14:24Z", "measurement_type": "Ephemeris", "name": "wl sls3", "processing_level": "Calibrated", "sampling": "300S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cassini/Ephemeris/cass-ephem-sls3", "start_date": "2004-01-01T00:10:00Z", "stop_date": "2007-08-11T00:00:00Z", "xmlid": "cass-ephem-sls3"}, "cass_sls4_north": {"__spz_name__": "wl sls4 north", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "cass-sls4-north", "att": "auto/cass-sls4-north", "cass_sls4_northsc": {"__spz_name__": "lon_sls4_north_sc", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_sls4_northsc", "dataset": "cass-sls4-north", "description": "Northern SLS4 sub-spacecraft Longitude", "display_type": "timeseries", "is_public": "True", "name": "lon_sls4_north_sc", "start_date": "2006-04-05T00:00:00Z", "stop_date": "2009-09-17T00:00:00Z", "ucd": "pos.bodyrc.lon", "units": "deg", "xmlid": "cass_sls4_northsc"}, "cass_sls4_northsolar": {"__spz_name__": "lon_sls4_north_sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_sls4_northsolar", "dataset": "cass-sls4-north", "description": "Northern SLS4 sub-solar Longitude", "display_type": "timeseries", "is_public": "True", "name": "lon_sls4_north_sun", "start_date": "2006-04-05T00:00:00Z", "stop_date": "2009-09-17T00:00:00Z", "ucd": "pos.bodyrc.lon", "units": "deg", "xmlid": "cass_sls4_northsolar"}, "dataSource": "University of Iowa", "desc": "Saturnian Longitude System 4 (western), north
Sampling: 60S
Provider: University of Iowa", "is_public": "True", "lastModificationDate": "2012-03-06T22:48:42Z", "lastUpdate": "2012-03-06T22:48:45Z", "measurement_type": "Ephemeris", "name": "wl sls4 north", "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cassini/Ephemeris/cass-sls4-north", "start_date": "2006-04-05T00:00:00Z", "stop_date": "2009-09-17T00:00:00Z", "target": "Saturn", "xmlid": "cass-sls4-north"}, "cass_sls4_south": {"__spz_name__": "wl sls4 south", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "cass-sls4-south", "att": "auto/cass-sls4-south", "cass_sls4_southsc": {"__spz_name__": "lon_sls4_south_sc", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_sls4_southsc", "dataset": "cass-sls4-south", "description": "Southern SLS4 sub-spacecraft Longitude", "display_type": "timeseries", "is_public": "True", "name": "lon_sls4_south_sc", "start_date": "2004-09-12T00:00:00Z", "stop_date": "2011-01-10T00:00:00Z", "ucd": "pos.bodyrc.lon", "units": "deg", "xmlid": "cass_sls4_southsc"}, "cass_sls4_southsolar": {"__spz_name__": "lon_sls4_south_sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_sls4_southsolar", "dataset": "cass-sls4-south", "description": "Southern SLS4 sub-solar Longitude", "display_type": "timeseries", "is_public": "True", "name": "lon_sls4_south_sun", "start_date": "2004-09-12T00:00:00Z", "stop_date": "2011-01-10T00:00:00Z", "ucd": "pos.bodyrc.lon", "units": "deg", "xmlid": "cass_sls4_southsolar"}, "dataSource": "University of Iowa", "desc": "Saturnian Longitude System 4 (western), south
Sampling: 60S
Provider: University of Iowa", "is_public": "True", "lastModificationDate": "2012-03-06T22:48:45Z", "lastUpdate": "2012-03-06T22:48:52Z", "measurement_type": "Ephemeris", "name": "wl sls4 south", "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cassini/Ephemeris/cass-sls4-south", "start_date": "2004-09-12T00:00:00Z", "stop_date": "2011-01-10T00:00:00Z", "target": "Saturn", "xmlid": "cass-sls4-south"}, "is_public": "True", "name": "orbit saturn : special", "xmlid": "cass-orb-spec"}, "xmlid": "Cassini_ephemeris"}, "Ephemeris__Saturn_Moons___special": {"Dione": {"__spz_name__": "Dione", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "dione-orb-spec", "dione_ephem_polar": {"__spz_name__": "polar", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "dione-ephem-polar", "att": "auto/dione-ephem-polar", "dataSource": "University of Iowa", "desc": "
Sampling: 300S
Provider: University of Iowa", "dione_l": {"__spz_name__": "L-shell", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "dione_l", "dataset": "dione-ephem-polar", "is_public": "True", "name": "L-shell", "start_date": "2003-01-01T00:00:00Z", "stop_date": "2018-01-01T00:00:00Z", "xmlid": "dione_l"}, "dione_lat": {"__spz_name__": "lat iau_saturn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "dione_lat", "dataset": "dione-ephem-polar", "is_public": "True", "name": "lat iau_saturn", "start_date": "2003-01-01T00:00:00Z", "stop_date": "2018-01-01T00:00:00Z", "units": "deg", "xmlid": "dione_lat"}, "dione_lt": {"__spz_name__": "local time", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "dione_lt", "dataset": "dione-ephem-polar", "is_public": "True", "name": "local time", "start_date": "2003-01-01T00:00:00Z", "stop_date": "2018-01-01T00:00:00Z", "units": "hours", "xmlid": "dione_lt"}, "dione_r_polar": {"__spz_name__": "distance dione-saturn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "dione_r_polar", "dataset": "dione-ephem-polar", "is_public": "True", "name": "distance dione-saturn", "start_date": "2003-01-01T00:00:00Z", "stop_date": "2018-01-01T00:00:00Z", "units": "Rs", "xmlid": "dione_r_polar"}, "dione_wl_iau": {"__spz_name__": "wl iau_saturn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "dione_wl_iau", "dataset": "dione-ephem-polar", "is_public": "True", "name": "wl iau_saturn", "start_date": "2003-01-01T00:00:00Z", "stop_date": "2018-01-01T00:00:00Z", "units": "deg", "xmlid": "dione_wl_iau"}, "is_public": "True", "lastModificationDate": "2018-02-02T16:21:54Z", "lastUpdate": "2018-02-02T14:53:07Z", "measurement_type": "Ephemeris", "name": "polar", "processing_level": "Calibrated", "sampling": "300S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cassini/Moons_Ephemeris/dione-ephem-polar", "start_date": "2003-01-01T00:00:00Z", "stop_date": "2018-01-01T00:00:00Z", "target": "Saturn", "xmlid": "dione-ephem-polar"}, "dione_orb_sls3": {"__spz_name__": "wl sls3", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "dione-orb-sls3", "att": "auto/dione-orb-sls3", "dataSource": "University of Iowa", "desc": "
Sampling: 300S
Provider: University of Iowa", "dione_wl_sls3": {"__spz_name__": "lon_sls3", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "dione_wl_sls3", "dataset": "dione-orb-sls3", "is_public": "True", "name": "lon_sls3", "start_date": "2004-01-01T00:10:00Z", "stop_date": "2007-08-11T00:00:00Z", "units": "deg", "xmlid": "dione_wl_sls3"}, "is_public": "True", "lastModificationDate": "2018-02-02T16:12:51Z", "lastUpdate": "2018-02-02T16:12:04Z", "measurement_type": "Ephemeris", "name": "wl sls3", "processing_level": "Calibrated", "sampling": "300S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cassini/Moons_Ephemeris/dione-orb-sls3", "start_date": "2004-01-01T00:10:00Z", "stop_date": "2007-08-11T00:00:00Z", "target": "Saturn", "xmlid": "dione-orb-sls3"}, "is_public": "True", "name": "Dione", "xmlid": "dione-orb-spec"}, "Enceladus": {"__spz_name__": "Enceladus", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "encelad-orb-spec", "encelad_ephem_pol": {"__spz_name__": "polar", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "encelad-ephem-pol", "att": "auto/encelad-ephem-pol", "dataSource": "University of Iowa", "desc": "
Sampling: 300S
Provider: University of Iowa", "encelad_l": {"__spz_name__": "L-shell", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "encelad_l", "dataset": "encelad-ephem-pol", "is_public": "True", "name": "L-shell", "start_date": "2003-01-01T00:00:00Z", "stop_date": "2018-01-01T00:00:00Z", "xmlid": "encelad_l"}, "encelad_lat": {"__spz_name__": "lat iau_saturn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "encelad_lat", "dataset": "encelad-ephem-pol", "is_public": "True", "name": "lat iau_saturn", "start_date": "2003-01-01T00:00:00Z", "stop_date": "2018-01-01T00:00:00Z", "units": "deg", "xmlid": "encelad_lat"}, "encelad_lt": {"__spz_name__": "local time", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "encelad_lt", "dataset": "encelad-ephem-pol", "is_public": "True", "name": "local time", "start_date": "2003-01-01T00:00:00Z", "stop_date": "2018-01-01T00:00:00Z", "units": "hours", "xmlid": "encelad_lt"}, "encelad_r_polar": {"__spz_name__": "distance enceladus-saturn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "encelad_r_polar", "dataset": "encelad-ephem-pol", "is_public": "True", "name": "distance enceladus-saturn", "start_date": "2003-01-01T00:00:00Z", "stop_date": "2018-01-01T00:00:00Z", "units": "Rs", "xmlid": "encelad_r_polar"}, "encelad_wl_iau": {"__spz_name__": "wl iau_saturn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "encelad_wl_iau", "dataset": "encelad-ephem-pol", "is_public": "True", "name": "wl iau_saturn", "start_date": "2003-01-01T00:00:00Z", "stop_date": "2018-01-01T00:00:00Z", "units": "deg", "xmlid": "encelad_wl_iau"}, "is_public": "True", "lastModificationDate": "2018-02-02T16:22:06Z", "lastUpdate": "2018-02-02T15:02:35Z", "measurement_type": "Ephemeris", "name": "polar", "processing_level": "Calibrated", "sampling": "300S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cassini/Moons_Ephemeris/encelad-ephem-pol", "start_date": "2003-01-01T00:00:00Z", "stop_date": "2018-01-01T00:00:00Z", "target": "Saturn", "xmlid": "encelad-ephem-pol"}, "encelad_orb_sls3": {"__spz_name__": "wl sls3", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "encelad-orb-sls3", "att": "auto/encelad-orb-sls3", "dataSource": "University of Iowa", "desc": "
Sampling: 300S
Provider: University of Iowa", "encelad_wl_sls3": {"__spz_name__": "lon_sls3", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "encelad_wl_sls3", "dataset": "encelad-orb-sls3", "is_public": "True", "name": "lon_sls3", "start_date": "2004-01-01T00:10:00Z", "stop_date": "2007-08-11T00:00:00Z", "units": "deg", "xmlid": "encelad_wl_sls3"}, "is_public": "True", "lastModificationDate": "2018-02-02T16:24:27Z", "lastUpdate": "2018-02-02T16:23:37Z", "measurement_type": "Ephemeris", "name": "wl sls3", "processing_level": "Calibrated", "sampling": "300S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cassini/Moons_Ephemeris/encelad-orb-sls3", "start_date": "2004-01-01T00:10:00Z", "stop_date": "2007-08-11T00:00:00Z", "target": "Saturn", "xmlid": "encelad-orb-sls3"}, "is_public": "True", "name": "Enceladus", "xmlid": "encelad-orb-spec"}, "Mimas": {"__spz_name__": "Mimas", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "mimas-orb-spec", "is_public": "True", "mimas_ephem_polar": {"__spz_name__": "polar", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mimas-ephem-polar", "att": "auto/mimas-ephem-polar", "dataSource": "University of Iowa", "desc": "
Sampling: 300S
Provider: University of Iowa", "is_public": "True", "lastModificationDate": "2018-02-02T16:22:13Z", "lastUpdate": "2018-02-02T15:10:18Z", "measurement_type": "Ephemeris", "mimas_l": {"__spz_name__": "L-shell", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mimas_l", "dataset": "mimas-ephem-polar", "is_public": "True", "name": "L-shell", "start_date": "2003-01-01T00:00:00Z", "stop_date": "2018-01-01T00:00:00Z", "xmlid": "mimas_l"}, "mimas_lat": {"__spz_name__": "lat iau_saturn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mimas_lat", "dataset": "mimas-ephem-polar", "is_public": "True", "name": "lat iau_saturn", "start_date": "2003-01-01T00:00:00Z", "stop_date": "2018-01-01T00:00:00Z", "units": "deg", "xmlid": "mimas_lat"}, "mimas_lt": {"__spz_name__": "local time", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mimas_lt", "dataset": "mimas-ephem-polar", "is_public": "True", "name": "local time", "start_date": "2003-01-01T00:00:00Z", "stop_date": "2018-01-01T00:00:00Z", "units": "hours", "xmlid": "mimas_lt"}, "mimas_r_polar": {"__spz_name__": "distance mimas-saturn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mimas_r_polar", "dataset": "mimas-ephem-polar", "is_public": "True", "name": "distance mimas-saturn", "start_date": "2003-01-01T00:00:00Z", "stop_date": "2018-01-01T00:00:00Z", "units": "Rs", "xmlid": "mimas_r_polar"}, "mimas_wl_iau": {"__spz_name__": "wl iau_saturn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mimas_wl_iau", "dataset": "mimas-ephem-polar", "is_public": "True", "name": "wl iau_saturn", "start_date": "2003-01-01T00:00:00Z", "stop_date": "2018-01-01T00:00:00Z", "units": "deg", "xmlid": "mimas_wl_iau"}, "name": "polar", "processing_level": "Calibrated", "sampling": "300S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cassini/Moons_Ephemeris/mimas-ephem-polar", "start_date": "2003-01-01T00:00:00Z", "stop_date": "2018-01-01T00:00:00Z", "target": "Saturn", "xmlid": "mimas-ephem-polar"}, "mimas_orb_sls3": {"__spz_name__": "wl sls3", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mimas-orb-sls3", "att": "auto/mimas-orb-sls3", "dataSource": "University of Iowa", "desc": "
Sampling: 300S
Provider: University of Iowa", "is_public": "True", "lastModificationDate": "2018-02-02T16:34:32Z", "lastUpdate": "2018-02-02T16:33:47Z", "measurement_type": "Ephemeris", "mimas_wl_sls3": {"__spz_name__": "lon_sls3", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mimas_wl_sls3", "dataset": "mimas-orb-sls3", "is_public": "True", "name": "lon_sls3", "start_date": "2004-01-01T00:10:00Z", "stop_date": "2007-08-11T00:00:00Z", "units": "deg", "xmlid": "mimas_wl_sls3"}, "name": "wl sls3", "processing_level": "Calibrated", "sampling": "300S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cassini/Moons_Ephemeris/mimas-orb-sls3", "start_date": "2004-01-01T00:10:00Z", "stop_date": "2007-08-11T00:00:00Z", "target": "Saturn", "xmlid": "mimas-orb-sls3"}, "name": "Mimas", "xmlid": "mimas-orb-spec"}, "Rhea": {"__spz_name__": "Rhea", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "rhea-orb-spec", "is_public": "True", "name": "Rhea", "rhea_ephem_polar": {"__spz_name__": "polar", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "rhea-ephem-polar", "att": "auto/rhea-ephem-polar", "dataSource": "University of Iowa", "desc": "
Sampling: 300S
Provider: University of Iowa", "is_public": "True", "lastModificationDate": "2018-02-02T16:22:19Z", "lastUpdate": "2018-02-02T15:16:41Z", "measurement_type": "Ephemeris", "name": "polar", "processing_level": "Calibrated", "rhea_l": {"__spz_name__": "L-shell", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "rhea_l", "dataset": "rhea-ephem-polar", "is_public": "True", "name": "L-shell", "start_date": "2003-01-01T00:00:00Z", "stop_date": "2018-01-01T00:00:00Z", "xmlid": "rhea_l"}, "rhea_lat": {"__spz_name__": "lat iau_saturn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "rhea_lat", "dataset": "rhea-ephem-polar", "is_public": "True", "name": "lat iau_saturn", "start_date": "2003-01-01T00:00:00Z", "stop_date": "2018-01-01T00:00:00Z", "units": "deg", "xmlid": "rhea_lat"}, "rhea_lt": {"__spz_name__": "local time", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "rhea_lt", "dataset": "rhea-ephem-polar", "is_public": "True", "name": "local time", "start_date": "2003-01-01T00:00:00Z", "stop_date": "2018-01-01T00:00:00Z", "units": "hours", "xmlid": "rhea_lt"}, "rhea_r_polar": {"__spz_name__": "distance rhea-saturn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "rhea_r_polar", "dataset": "rhea-ephem-polar", "is_public": "True", "name": "distance rhea-saturn", "start_date": "2003-01-01T00:00:00Z", "stop_date": "2018-01-01T00:00:00Z", "units": "Rs", "xmlid": "rhea_r_polar"}, "rhea_wl_iau": {"__spz_name__": "wl iau_saturn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "rhea_wl_iau", "dataset": "rhea-ephem-polar", "is_public": "True", "name": "wl iau_saturn", "start_date": "2003-01-01T00:00:00Z", "stop_date": "2018-01-01T00:00:00Z", "units": "deg", "xmlid": "rhea_wl_iau"}, "sampling": "300S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cassini/Moons_Ephemeris/rhea-ephem-polar", "start_date": "2003-01-01T00:00:00Z", "stop_date": "2018-01-01T00:00:00Z", "target": "Saturn", "xmlid": "rhea-ephem-polar"}, "rhea_orb_sls3": {"__spz_name__": "wl sls3", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "rhea-orb-sls3", "att": "auto/rhea-orb-sls3", "dataSource": "University of Iowa", "desc": "
Sampling: 300S
Provider: University of Iowa", "is_public": "True", "lastModificationDate": "2018-02-02T16:43:19Z", "lastUpdate": "2018-02-02T16:42:34Z", "measurement_type": "Ephemeris", "name": "wl sls3", "processing_level": "Calibrated", "rhea_wl_sls3": {"__spz_name__": "lon_sls3", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "rhea_wl_sls3", "dataset": "rhea-orb-sls3", "is_public": "True", "name": "lon_sls3", "start_date": "2004-01-01T00:10:00Z", "stop_date": "2007-08-11T00:00:00Z", "units": "deg", "xmlid": "rhea_wl_sls3"}, "sampling": "300S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cassini/Moons_Ephemeris/rhea-orb-sls3", "start_date": "2004-01-01T00:10:00Z", "stop_date": "2007-08-11T00:00:00Z", "target": "Saturn", "xmlid": "rhea-orb-sls3"}, "xmlid": "rhea-orb-spec"}, "Tethys": {"__spz_name__": "Tethys", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "tethys-orb-spec", "is_public": "True", "name": "Tethys", "tethys_ephem_pol": {"__spz_name__": "polar", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "tethys-ephem-pol", "att": "auto/tethys-ephem-pol", "dataSource": "University of Iowa", "desc": "
Sampling: 300S
Provider: University of Iowa", "is_public": "True", "lastModificationDate": "2018-02-02T16:22:25Z", "lastUpdate": "2018-02-02T15:23:55Z", "measurement_type": "Ephemeris", "name": "polar", "processing_level": "Calibrated", "sampling": "300S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cassini/Moons_Ephemeris/tethys-ephem-pol", "start_date": "2003-01-01T00:00:00Z", "stop_date": "2018-01-01T00:00:00Z", "target": "Saturn", "tethys_l": {"__spz_name__": "L-shell", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "tethys_l", "dataset": "tethys-ephem-pol", "is_public": "True", "name": "L-shell", "start_date": "2003-01-01T00:00:00Z", "stop_date": "2018-01-01T00:00:00Z", "xmlid": "tethys_l"}, "tethys_lat": {"__spz_name__": "lat iau_saturn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "tethys_lat", "dataset": "tethys-ephem-pol", "is_public": "True", "name": "lat iau_saturn", "start_date": "2003-01-01T00:00:00Z", "stop_date": "2018-01-01T00:00:00Z", "units": "deg", "xmlid": "tethys_lat"}, "tethys_lt": {"__spz_name__": "local time", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "tethys_lt", "dataset": "tethys-ephem-pol", "is_public": "True", "name": "local time", "start_date": "2003-01-01T00:00:00Z", "stop_date": "2018-01-01T00:00:00Z", "units": "hours", "xmlid": "tethys_lt"}, "tethys_r_polar": {"__spz_name__": "distance tethys-saturn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "tethys_r_polar", "dataset": "tethys-ephem-pol", "is_public": "True", "name": "distance tethys-saturn", "start_date": "2003-01-01T00:00:00Z", "stop_date": "2018-01-01T00:00:00Z", "units": "Rs", "xmlid": "tethys_r_polar"}, "tethys_wl_iau": {"__spz_name__": "wl iau_saturn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "tethys_wl_iau", "dataset": "tethys-ephem-pol", "is_public": "True", "name": "wl iau_saturn", "start_date": "2003-01-01T00:00:00Z", "stop_date": "2018-01-01T00:00:00Z", "units": "deg", "xmlid": "tethys_wl_iau"}, "xmlid": "tethys-ephem-pol"}, "tethys_orb_sls3": {"__spz_name__": "wl sls3", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "tethys-orb-sls3", "att": "auto/tethys-orb-sls3", "dataSource": "University of Iowa", "desc": "
Sampling: 300S
Provider: University of Iowa", "is_public": "True", "lastModificationDate": "2018-02-02T17:21:41Z", "lastUpdate": "2018-02-02T17:20:55Z", "measurement_type": "Ephemeris", "name": "wl sls3", "processing_level": "Calibrated", "sampling": "300S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cassini/Moons_Ephemeris/tethys-orb-sls3", "start_date": "2004-01-01T00:10:00Z", "stop_date": "2007-08-11T00:00:00Z", "target": "Saturn", "tethys_wl_sls3": {"__spz_name__": "lon_sls3", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "tethys_wl_sls3", "dataset": "tethys-orb-sls3", "is_public": "True", "name": "lon_sls3", "start_date": "2004-01-01T00:10:00Z", "stop_date": "2007-08-11T00:00:00Z", "units": "deg", "xmlid": "tethys_wl_sls3"}, "xmlid": "tethys-orb-sls3"}, "xmlid": "tethys-orb-spec"}, "Titan": {"__spz_name__": "Titan", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "titan-orb-spec", "is_public": "True", "name": "Titan", "titan_ephem_polar": {"__spz_name__": "polar", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "titan-ephem-polar", "att": "auto/titan-ephem-polar", "dataSource": "University of Iowa", "desc": "
Sampling: 300S
Provider: University of Iowa", "is_public": "True", "lastModificationDate": "2018-02-02T16:22:31Z", "lastUpdate": "2018-02-02T15:30:30Z", "measurement_type": "Ephemeris", "name": "polar", "processing_level": "Calibrated", "sampling": "300S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cassini/Moons_Ephemeris/titan-ephem-polar", "start_date": "2003-01-01T00:00:00Z", "stop_date": "2018-01-01T00:00:00Z", "target": "Saturn", "titan_l": {"__spz_name__": "L-shell", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "titan_l", "dataset": "titan-ephem-polar", "is_public": "True", "name": "L-shell", "start_date": "2003-01-01T00:00:00Z", "stop_date": "2018-01-01T00:00:00Z", "xmlid": "titan_l"}, "titan_lat": {"__spz_name__": "lat iau_saturn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "titan_lat", "dataset": "titan-ephem-polar", "is_public": "True", "name": "lat iau_saturn", "start_date": "2003-01-01T00:00:00Z", "stop_date": "2018-01-01T00:00:00Z", "units": "deg", "xmlid": "titan_lat"}, "titan_lt": {"__spz_name__": "local time", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "titan_lt", "dataset": "titan-ephem-polar", "is_public": "True", "name": "local time", "start_date": "2003-01-01T00:00:00Z", "stop_date": "2018-01-01T00:00:00Z", "units": "hours", "xmlid": "titan_lt"}, "titan_r_polar": {"__spz_name__": "distance titan-saturn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "titan_r_polar", "dataset": "titan-ephem-polar", "is_public": "True", "name": "distance titan-saturn", "start_date": "2003-01-01T00:00:00Z", "stop_date": "2018-01-01T00:00:00Z", "units": "Rs", "xmlid": "titan_r_polar"}, "titan_wl_iau": {"__spz_name__": "wl iau_saturn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "titan_wl_iau", "dataset": "titan-ephem-polar", "is_public": "True", "name": "wl iau_saturn", "start_date": "2003-01-01T00:00:00Z", "stop_date": "2018-01-01T00:00:00Z", "units": "deg", "xmlid": "titan_wl_iau"}, "xmlid": "titan-ephem-polar"}, "titan_orb_sls3": {"__spz_name__": "wl sls3", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "titan-orb-sls3", "att": "auto/titan-orb-sls3", "dataSource": "University of Iowa", "desc": "
Sampling: 300S
Provider: University of Iowa", "is_public": "True", "lastModificationDate": "2018-02-02T17:30:27Z", "lastUpdate": "2018-02-02T17:29:40Z", "measurement_type": "Ephemeris", "name": "wl sls3", "processing_level": "Calibrated", "sampling": "300S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cassini/Moons_Ephemeris/titan-orb-sls3", "start_date": "2004-01-01T00:10:00Z", "stop_date": "2007-08-11T00:00:00Z", "target": "Saturn", "titan_wl_sls3": {"__spz_name__": "lon_sls3", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "titan_wl_sls3", "dataset": "titan-orb-sls3", "is_public": "True", "name": "lon_sls3", "start_date": "2004-01-01T00:10:00Z", "stop_date": "2007-08-11T00:00:00Z", "units": "deg", "xmlid": "titan_wl_sls3"}, "xmlid": "titan-orb-sls3"}, "xmlid": "titan-orb-spec"}, "__spz_name__": "Ephemeris: Saturn Moons : special", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Cassini_moons_ephemeris", "att": "auto/Cassini_moons_ephemeris", "desc": "", "is_public": "True", "name": "Ephemeris: Saturn Moons : special", "xmlid": "Cassini_moons_ephemeris"}, "MAG": {"__spz_name__": "MAG", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Cassini_mag", "att": "auto/Cassini_mag", "cass_mag_jup": {"__spz_name__": "flyby jupiter", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "cass-mag-jup", "att": "auto/cass-mag-jup", "cass_b_jup": {"__spz_name__": "b_rtn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_b_jup", "cass_b_jup0": {"__spz_name__": "br", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_b_jup(0)", "dataset": "cass-mag-jup", "index1": "0", "is_public": "True", "name": "br", "parameter": "cass_b_jup", "start_date": "2001-01-01T02:26:04Z", "stop_date": "2001-03-02T06:32:37Z", "xmlid": "cass_b_jup(0)"}, "cass_b_jup1": {"__spz_name__": "bt", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_b_jup(1)", "dataset": "cass-mag-jup", "index1": "1", "is_public": "True", "name": "bt", "parameter": "cass_b_jup", "start_date": "2001-01-01T02:26:04Z", "stop_date": "2001-03-02T06:32:37Z", "xmlid": "cass_b_jup(1)"}, "cass_b_jup2": {"__spz_name__": "bn", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_b_jup(2)", "dataset": "cass-mag-jup", "index1": "2", "is_public": "True", "name": "bn", "parameter": "cass_b_jup", "start_date": "2001-01-01T02:26:04Z", "stop_date": "2001-03-02T06:32:37Z", "xmlid": "cass_b_jup(2)"}, "dataset": "cass-mag-jup", "description": "Magnetic field vector components in RTN coordinates", "display_type": "timeseries", "is_public": "True", "name": "b_rtn", "size": "3", "start_date": "2001-01-01T02:26:04Z", "stop_date": "2001-03-02T06:32:37Z", "ucd": "phys.magField", "units": "nT", "xmlid": "cass_b_jup"}, "cass_b_jup_phi": {"__spz_name__": "phi", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_b_jup_phi", "dataset": "cass-mag-jup", "description": "Magnetic field phi angle", "display_type": "timeseries", "is_public": "True", "name": "phi", "start_date": "2001-01-01T02:26:04Z", "stop_date": "2001-03-02T06:32:37Z", "ucd": "phys.magField", "units": "degrees", "xmlid": "cass_b_jup_phi"}, "cass_b_jup_theta": {"__spz_name__": "theta", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_b_jup_theta", "dataset": "cass-mag-jup", "description": "Magnetic field theta angle", "display_type": "timeseries", "is_public": "True", "name": "theta", "start_date": "2001-01-01T02:26:04Z", "stop_date": "2001-03-02T06:32:37Z", "ucd": "phys.magField", "units": "degrees", "xmlid": "cass_b_jup_theta"}, "cass_bj3_jup": {"__spz_name__": "b_j3", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_bj3_jup", "cass_bj3_jup0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_bj3_jup(0)", "dataset": "cass-mag-jup", "index1": "0", "is_public": "True", "name": "bx", "parameter": "cass_bj3_jup", "start_date": "2001-01-01T02:26:04Z", "stop_date": "2001-03-02T06:32:37Z", "xmlid": "cass_bj3_jup(0)"}, "cass_bj3_jup1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_bj3_jup(1)", "dataset": "cass-mag-jup", "index1": "1", "is_public": "True", "name": "by", "parameter": "cass_bj3_jup", "start_date": "2001-01-01T02:26:04Z", "stop_date": "2001-03-02T06:32:37Z", "xmlid": "cass_bj3_jup(1)"}, "cass_bj3_jup2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_bj3_jup(2)", "dataset": "cass-mag-jup", "index1": "2", "is_public": "True", "name": "bz", "parameter": "cass_bj3_jup", "start_date": "2001-01-01T02:26:04Z", "stop_date": "2001-03-02T06:32:37Z", "xmlid": "cass_bj3_jup(2)"}, "dataset": "cass-mag-jup", "description": "Magnetic field vector components in Jup_IAU coordinates", "display_type": "timeseries", "is_public": "True", "name": "b_j3", "size": "3", "start_date": "2001-01-01T02:26:04Z", "stop_date": "2001-03-02T06:32:37Z", "ucd": "phys.magField", "units": "nT", "xmlid": "cass_bj3_jup"}, "cass_bjm_jup": {"__spz_name__": "b_jm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_bjm_jup", "cass_bjm_jup0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_bjm_jup(0)", "dataset": "cass-mag-jup", "index1": "0", "is_public": "True", "name": "bx", "parameter": "cass_bjm_jup", "start_date": "2001-01-01T02:26:04Z", "stop_date": "2001-03-02T06:32:37Z", "xmlid": "cass_bjm_jup(0)"}, "cass_bjm_jup1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_bjm_jup(1)", "dataset": "cass-mag-jup", "index1": "1", "is_public": "True", "name": "by", "parameter": "cass_bjm_jup", "start_date": "2001-01-01T02:26:04Z", "stop_date": "2001-03-02T06:32:37Z", "xmlid": "cass_bjm_jup(1)"}, "cass_bjm_jup2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_bjm_jup(2)", "dataset": "cass-mag-jup", "index1": "2", "is_public": "True", "name": "bz", "parameter": "cass_bjm_jup", "start_date": "2001-01-01T02:26:04Z", "stop_date": "2001-03-02T06:32:37Z", "xmlid": "cass_bjm_jup(2)"}, "dataset": "cass-mag-jup", "description": "Magnetic field vector components in JMAG coordinates", "display_type": "timeseries", "is_public": "True", "name": "b_jm", "size": "3", "start_date": "2001-01-01T02:26:04Z", "stop_date": "2001-03-02T06:32:37Z", "ucd": "phys.magField", "units": "nT", "xmlid": "cass_bjm_jup"}, "cass_bmag_jup": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_bmag_jup", "dataset": "cass-mag-jup", "description": "Magnetic field vector magnitude", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "2001-01-01T02:26:04Z", "stop_date": "2001-03-02T06:32:37Z", "ucd": "phys.magField", "units": "nT", "xmlid": "cass_bmag_jup"}, "dataSource": "PDS", "desc": "high resolution MAG data during Jupiter flyby
MinSampling: 0.031S; MaxSampling: 8S
Provider: PDS", "is_public": "True", "lastModificationDate": "2024-10-04T07:38:19Z", "lastUpdate": "2019-08-23T12:50:36Z", "maxSampling": "8S", "measurement_type": "MagneticField", "name": "flyby jupiter", "processing_level": "Calibrated", "sampling": "0.031S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cassini/MAG/cass-mag-jup", "start_date": "2001-01-01T02:26:04Z", "stop_date": "2001-03-02T06:32:37Z", "target": "Jupiter", "xmlid": "cass-mag-jup"}, "desc": "Dual Technique Magnetometer
Magnetometer", "full_mission": {"__spz_name__": "full mission", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "cass-mag-rtn", "cass_mag_rtn1": {"__spz_name__": "1 sec", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "cass-mag-rtn1", "att": "auto/cass-mag-rtn1", "cass_b_rtn1": {"__spz_name__": "b_rtn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_b_rtn1", "cass_b_rtn10": {"__spz_name__": "br", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_b_rtn1(0)", "dataset": "cass-mag-rtn1", "index1": "0", "is_public": "True", "name": "br", "parameter": "cass_b_rtn1", "start_date": "2001-01-01T02:26:04Z", "stop_date": "2017-09-12T05:27:18Z", "xmlid": "cass_b_rtn1(0)"}, "cass_b_rtn11": {"__spz_name__": "bt", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_b_rtn1(1)", "dataset": "cass-mag-rtn1", "index1": "1", "is_public": "True", "name": "bt", "parameter": "cass_b_rtn1", "start_date": "2001-01-01T02:26:04Z", "stop_date": "2017-09-12T05:27:18Z", "xmlid": "cass_b_rtn1(1)"}, "cass_b_rtn12": {"__spz_name__": "bn", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_b_rtn1(2)", "dataset": "cass-mag-rtn1", "index1": "2", "is_public": "True", "name": "bn", "parameter": "cass_b_rtn1", "start_date": "2001-01-01T02:26:04Z", "stop_date": "2017-09-12T05:27:18Z", "xmlid": "cass_b_rtn1(2)"}, "dataset": "cass-mag-rtn1", "description": "Magnetic field vector components in RTN coordinates", "display_type": "timeseries", "is_public": "True", "name": "b_rtn", "size": "3", "start_date": "2001-01-01T02:26:04Z", "stop_date": "2017-09-12T05:27:18Z", "ucd": "phys.magField", "units": "nT", "xmlid": "cass_b_rtn1"}, "cass_b_rtn1_phi": {"__spz_name__": "phi", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_b_rtn1_phi", "dataset": "cass-mag-rtn1", "description": "Magnetic field phi angle", "display_type": "timeseries", "is_public": "True", "name": "phi", "start_date": "2001-01-01T02:26:04Z", "stop_date": "2017-09-12T05:27:18Z", "ucd": "phys.magField", "units": "degrees", "xmlid": "cass_b_rtn1_phi"}, "cass_b_rtn1_theta": {"__spz_name__": "theta", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_b_rtn1_theta", "dataset": "cass-mag-rtn1", "description": "Magnetic field theta angle", "display_type": "timeseries", "is_public": "True", "name": "theta", "start_date": "2001-01-01T02:26:04Z", "stop_date": "2017-09-12T05:27:18Z", "ucd": "phys.magField", "units": "degrees", "xmlid": "cass_b_rtn1_theta"}, "cass_bmag_rtn1": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_bmag_rtn1", "dataset": "cass-mag-rtn1", "description": "Scalar magnitude of the magnetic field in nT", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "2001-01-01T02:26:04Z", "stop_date": "2017-09-12T05:27:18Z", "ucd": "phys.magField", "units": "nT", "xmlid": "cass_bmag_rtn1"}, "dataSource": "PDS", "desc": "1-sec averaged MAG data
Sampling: 1S
Provider: PDS", "is_public": "True", "lastModificationDate": "2019-07-26T10:01:01Z", "lastUpdate": "2019-07-26T01:34:39Z", "measurement_type": "MagneticField", "name": "1 sec", "processing_level": "Calibrated", "sampling": "1S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cassini/MAG/cass-mag-rtn1", "start_date": "2001-01-01T02:26:04Z", "stop_date": "2017-09-12T05:27:18Z", "target": "Heliosphere", "xmlid": "cass-mag-rtn1"}, "cass_mag_rtn60": {"__spz_name__": "60 sec", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "cass-mag-rtn60", "att": "auto/cass-mag-rtn60", "cass_b_rtn60": {"__spz_name__": "b_rtn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_b_rtn60", "cass_b_rtn600": {"__spz_name__": "br", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_b_rtn60(0)", "dataset": "cass-mag-rtn60", "index1": "0", "is_public": "True", "name": "br", "parameter": "cass_b_rtn60", "start_date": "2001-01-01T02:26:30Z", "stop_date": "2017-09-12T22:14:31Z", "xmlid": "cass_b_rtn60(0)"}, "cass_b_rtn601": {"__spz_name__": "bt", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_b_rtn60(1)", "dataset": "cass-mag-rtn60", "index1": "1", "is_public": "True", "name": "bt", "parameter": "cass_b_rtn60", "start_date": "2001-01-01T02:26:30Z", "stop_date": "2017-09-12T22:14:31Z", "xmlid": "cass_b_rtn60(1)"}, "cass_b_rtn602": {"__spz_name__": "bn", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_b_rtn60(2)", "dataset": "cass-mag-rtn60", "index1": "2", "is_public": "True", "name": "bn", "parameter": "cass_b_rtn60", "start_date": "2001-01-01T02:26:30Z", "stop_date": "2017-09-12T22:14:31Z", "xmlid": "cass_b_rtn60(2)"}, "dataset": "cass-mag-rtn60", "description": "Magnetic field vector components in RTN coordinates", "display_type": "timeseries", "is_public": "True", "name": "b_rtn", "size": "3", "start_date": "2001-01-01T02:26:30Z", "stop_date": "2017-09-12T22:14:31Z", "ucd": "phys.magField", "units": "nT", "xmlid": "cass_b_rtn60"}, "cass_b_rtn60_phi": {"__spz_name__": "phi", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_b_rtn60_phi", "dataset": "cass-mag-rtn60", "description": "Magnetic field phi angle", "display_type": "timeseries", "is_public": "True", "name": "phi", "start_date": "2001-01-01T02:26:30Z", "stop_date": "2017-09-12T22:14:31Z", "ucd": "phys.magField", "units": "degrees", "xmlid": "cass_b_rtn60_phi"}, "cass_b_rtn60_theta": {"__spz_name__": "theta", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_b_rtn60_theta", "dataset": "cass-mag-rtn60", "description": "Magnetic field theta angle", "display_type": "timeseries", "is_public": "True", "name": "theta", "start_date": "2001-01-01T02:26:30Z", "stop_date": "2017-09-12T22:14:31Z", "ucd": "phys.magField", "units": "degrees", "xmlid": "cass_b_rtn60_theta"}, "cass_bmag_rtn60": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_bmag_rtn60", "dataset": "cass-mag-rtn60", "description": "Scalar magnitude of the magnetic field in nT", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "2001-01-01T02:26:30Z", "stop_date": "2017-09-12T22:14:31Z", "ucd": "phys.magField", "units": "nT", "xmlid": "cass_bmag_rtn60"}, "dataSource": "PDS", "desc": "60-sec averaged MAG data
Sampling: 1M
Provider: PDS", "is_public": "True", "lastModificationDate": "2019-07-26T10:01:02Z", "lastUpdate": "2019-07-25T15:54:30Z", "measurement_type": "MagneticField", "name": "60 sec", "processing_level": "Calibrated", "sampling": "1M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cassini/MAG/cass-mag-rtn60", "start_date": "2001-01-01T02:26:30Z", "stop_date": "2017-09-12T22:14:31Z", "target": "Heliosphere", "xmlid": "cass-mag-rtn60"}, "is_public": "True", "name": "full mission", "xmlid": "cass-mag-rtn"}, "is_public": "True", "name": "MAG", "orbit_saturn": {"__spz_name__": "orbit saturn", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "cass-mag-orb", "cass_mag_krtphr": {"__spz_name__": "0.02 sec", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "cass-mag-krtphr", "att": "auto/cass-mag-krtphr", "cass_b_krtphr": {"__spz_name__": "b_krtp", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_b_krtphr", "cass_b_krtphr0": {"__spz_name__": "br", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_b_krtphr(0)", "dataset": "cass-mag-krtphr", "index1": "0", "is_public": "True", "name": "br", "parameter": "cass_b_krtphr", "start_date": "2004-05-11T00:00:04Z", "stop_date": "2017-09-15T10:31:44Z", "xmlid": "cass_b_krtphr(0)"}, "cass_b_krtphr1": {"__spz_name__": "btheta", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_b_krtphr(1)", "dataset": "cass-mag-krtphr", "index1": "1", "is_public": "True", "name": "btheta", "parameter": "cass_b_krtphr", "start_date": "2004-05-11T00:00:04Z", "stop_date": "2017-09-15T10:31:44Z", "xmlid": "cass_b_krtphr(1)"}, "cass_b_krtphr2": {"__spz_name__": "bphi", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_b_krtphr(2)", "dataset": "cass-mag-krtphr", "index1": "2", "is_public": "True", "name": "bphi", "parameter": "cass_b_krtphr", "start_date": "2004-05-11T00:00:04Z", "stop_date": "2017-09-15T10:31:44Z", "xmlid": "cass_b_krtphr(2)"}, "dataset": "cass-mag-krtphr", "description": "Magnetic Field in KRTP coordinates", "display_type": "timeseries", "is_public": "True", "name": "b_krtp", "size": "3", "start_date": "2004-05-11T00:00:04Z", "stop_date": "2017-09-15T10:31:44Z", "ucd": "phys.magField", "units": "nT", "xmlid": "cass_b_krtphr"}, "cass_bmag_krtphr": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_bmag_krtphr", "dataset": "cass-mag-krtphr", "description": "Magnetic field vector magnitude", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "2004-05-11T00:00:04Z", "stop_date": "2017-09-15T10:31:44Z", "ucd": "phys.magField", "units": "nT", "xmlid": "cass_bmag_krtphr"}, "dataSource": "PDS", "desc": "high resolution MAG data
MinSampling: 0.02S; MaxSampling: 0.25S
Provider: PDS", "is_public": "True", "lastModificationDate": "2024-10-02T19:29:39Z", "lastUpdate": "2024-10-02T19:29:38Z", "maxSampling": "0.25S", "measurement_type": "MagneticField", "name": "0.02 sec", "processing_level": "Calibrated", "sampling": "0.02S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cassini/MAG/Saturn_Orbit/cass-mag-krtphr", "start_date": "2004-05-11T00:00:04Z", "stop_date": "2017-09-15T10:31:44Z", "target": "Saturn", "xmlid": "cass-mag-krtphr"}, "cass_mag_orb1": {"__spz_name__": "1 sec", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "cass-mag-orb1", "att": "auto/cass-mag-orb1", "cass_b_krtp1s": {"__spz_name__": "b_krtp", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_b_krtp1s", "cass_b_krtp1s0": {"__spz_name__": "br", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_b_krtp1s(0)", "dataset": "cass-mag-orb1", "index1": "0", "is_public": "True", "name": "br", "parameter": "cass_b_krtp1s", "start_date": "2004-05-14T00:00:24Z", "stop_date": "2017-09-12T05:27:18Z", "xmlid": "cass_b_krtp1s(0)"}, "cass_b_krtp1s1": {"__spz_name__": "btheta", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_b_krtp1s(1)", "dataset": "cass-mag-orb1", "index1": "1", "is_public": "True", "name": "btheta", "parameter": "cass_b_krtp1s", "start_date": "2004-05-14T00:00:24Z", "stop_date": "2017-09-12T05:27:18Z", "xmlid": "cass_b_krtp1s(1)"}, "cass_b_krtp1s2": {"__spz_name__": "bphi", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_b_krtp1s(2)", "dataset": "cass-mag-orb1", "index1": "2", "is_public": "True", "name": "bphi", "parameter": "cass_b_krtp1s", "start_date": "2004-05-14T00:00:24Z", "stop_date": "2017-09-12T05:27:18Z", "xmlid": "cass_b_krtp1s(2)"}, "dataset": "cass-mag-orb1", "description": "Magnetic field vector components in KRTP coordinates", "display_type": "timeseries", "is_public": "True", "name": "b_krtp", "size": "3", "start_date": "2004-05-14T00:00:24Z", "stop_date": "2017-09-12T05:27:18Z", "ucd": "phys.magField", "units": "nT", "xmlid": "cass_b_krtp1s"}, "cass_b_ksm1s": {"__spz_name__": "b_ksm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_b_ksm1s", "cass_b_ksm1s0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_b_ksm1s(0)", "dataset": "cass-mag-orb1", "index1": "0", "is_public": "True", "name": "bx", "parameter": "cass_b_ksm1s", "start_date": "2004-05-14T00:00:24Z", "stop_date": "2017-09-12T05:27:18Z", "xmlid": "cass_b_ksm1s(0)"}, "cass_b_ksm1s1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_b_ksm1s(1)", "dataset": "cass-mag-orb1", "index1": "1", "is_public": "True", "name": "by", "parameter": "cass_b_ksm1s", "start_date": "2004-05-14T00:00:24Z", "stop_date": "2017-09-12T05:27:18Z", "xmlid": "cass_b_ksm1s(1)"}, "cass_b_ksm1s2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_b_ksm1s(2)", "dataset": "cass-mag-orb1", "index1": "2", "is_public": "True", "name": "bz", "parameter": "cass_b_ksm1s", "start_date": "2004-05-14T00:00:24Z", "stop_date": "2017-09-12T05:27:18Z", "xmlid": "cass_b_ksm1s(2)"}, "dataset": "cass-mag-orb1", "description": "Magnetic field vector components in KSM coordinates", "display_type": "timeseries", "is_public": "True", "name": "b_ksm", "size": "3", "start_date": "2004-05-14T00:00:24Z", "stop_date": "2017-09-12T05:27:18Z", "ucd": "phys.magField", "units": "nT", "xmlid": "cass_b_ksm1s"}, "cass_b_kso1s": {"__spz_name__": "b_kso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_b_kso1s", "cass_b_kso1s0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_b_kso1s(0)", "dataset": "cass-mag-orb1", "index1": "0", "is_public": "True", "name": "bx", "parameter": "cass_b_kso1s", "start_date": "2004-05-14T00:00:24Z", "stop_date": "2017-09-12T05:27:18Z", "xmlid": "cass_b_kso1s(0)"}, "cass_b_kso1s1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_b_kso1s(1)", "dataset": "cass-mag-orb1", "index1": "1", "is_public": "True", "name": "by", "parameter": "cass_b_kso1s", "start_date": "2004-05-14T00:00:24Z", "stop_date": "2017-09-12T05:27:18Z", "xmlid": "cass_b_kso1s(1)"}, "cass_b_kso1s2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_b_kso1s(2)", "dataset": "cass-mag-orb1", "index1": "2", "is_public": "True", "name": "bz", "parameter": "cass_b_kso1s", "start_date": "2004-05-14T00:00:24Z", "stop_date": "2017-09-12T05:27:18Z", "xmlid": "cass_b_kso1s(2)"}, "dataset": "cass-mag-orb1", "description": "Magnetic field vector components in KSO coordinates", "display_type": "timeseries", "is_public": "True", "name": "b_kso", "size": "3", "start_date": "2004-05-14T00:00:24Z", "stop_date": "2017-09-12T05:27:18Z", "ucd": "phys.magField", "units": "nT", "xmlid": "cass_b_kso1s"}, "cass_b_rtn1s": {"__spz_name__": "b_rtn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_b_rtn1s", "cass_b_rtn1s0": {"__spz_name__": "br", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_b_rtn1s(0)", "dataset": "cass-mag-orb1", "index1": "0", "is_public": "True", "name": "br", "parameter": "cass_b_rtn1s", "start_date": "2004-05-14T00:00:24Z", "stop_date": "2017-09-12T05:27:18Z", "xmlid": "cass_b_rtn1s(0)"}, "cass_b_rtn1s1": {"__spz_name__": "bt", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_b_rtn1s(1)", "dataset": "cass-mag-orb1", "index1": "1", "is_public": "True", "name": "bt", "parameter": "cass_b_rtn1s", "start_date": "2004-05-14T00:00:24Z", "stop_date": "2017-09-12T05:27:18Z", "xmlid": "cass_b_rtn1s(1)"}, "cass_b_rtn1s2": {"__spz_name__": "bn", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_b_rtn1s(2)", "dataset": "cass-mag-orb1", "index1": "2", "is_public": "True", "name": "bn", "parameter": "cass_b_rtn1s", "start_date": "2004-05-14T00:00:24Z", "stop_date": "2017-09-12T05:27:18Z", "xmlid": "cass_b_rtn1s(2)"}, "dataset": "cass-mag-orb1", "description": "Magnetic field vector components in RTN coordinates", "display_type": "timeseries", "is_public": "True", "name": "b_rtn", "size": "3", "start_date": "2004-05-14T00:00:24Z", "stop_date": "2017-09-12T05:27:18Z", "ucd": "phys.magField", "units": "nT", "xmlid": "cass_b_rtn1s"}, "cass_b_rtn1s_phi": {"__spz_name__": "phi", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_b_rtn1s_phi", "dataset": "cass-mag-orb1", "description": "Magnetic field phi angle", "display_type": "timeseries", "is_public": "True", "name": "phi", "start_date": "2004-05-14T00:00:24Z", "stop_date": "2017-09-12T05:27:18Z", "ucd": "phys.magField", "units": "degrees", "xmlid": "cass_b_rtn1s_phi"}, "cass_b_rtn1s_theta": {"__spz_name__": "theta", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_b_rtn1s_theta", "dataset": "cass-mag-orb1", "description": "Magnetic field theta angle", "display_type": "timeseries", "is_public": "True", "name": "theta", "start_date": "2004-05-14T00:00:24Z", "stop_date": "2017-09-12T05:27:18Z", "ucd": "phys.magField", "units": "degrees", "xmlid": "cass_b_rtn1s_theta"}, "cass_bmag_orb1s": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_bmag_orb1s", "dataset": "cass-mag-orb1", "description": "Scalar magnitude of the magnetic field in nT", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "2004-05-14T00:00:24Z", "stop_date": "2017-09-12T05:27:18Z", "ucd": "phys.magField", "units": "nT", "xmlid": "cass_bmag_orb1s"}, "dataSource": "PDS", "desc": "1-sec averaged MAG data
Sampling: 1S
Provider: PDS", "is_public": "True", "lastModificationDate": "2024-10-03T18:43:57Z", "lastUpdate": "2024-10-03T18:43:55Z", "measurement_type": "MagneticField", "name": "1 sec", "processing_level": "Calibrated", "sampling": "1S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cassini/MAG/Saturn_Orbit/cass-mag-orb1", "start_date": "2004-05-14T00:00:24Z", "stop_date": "2017-09-12T05:27:18Z", "target": "Saturn", "xmlid": "cass-mag-orb1"}, "cass_mag_orb60": {"__spz_name__": "60 sec", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "cass-mag-orb60", "att": "auto/cass-mag-orb60", "cass_b_krtp": {"__spz_name__": "b_krtp", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_b_krtp", "cass_b_krtp0": {"__spz_name__": "br", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_b_krtp(0)", "dataset": "cass-mag-orb60", "index1": "0", "is_public": "True", "name": "br", "parameter": "cass_b_krtp", "start_date": "2004-01-01T00:00:30Z", "stop_date": "2017-09-15T10:30:31Z", "xmlid": "cass_b_krtp(0)"}, "cass_b_krtp1": {"__spz_name__": "btheta", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_b_krtp(1)", "dataset": "cass-mag-orb60", "index1": "1", "is_public": "True", "name": "btheta", "parameter": "cass_b_krtp", "start_date": "2004-01-01T00:00:30Z", "stop_date": "2017-09-15T10:30:31Z", "xmlid": "cass_b_krtp(1)"}, "cass_b_krtp2": {"__spz_name__": "bphi", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_b_krtp(2)", "dataset": "cass-mag-orb60", "index1": "2", "is_public": "True", "name": "bphi", "parameter": "cass_b_krtp", "start_date": "2004-01-01T00:00:30Z", "stop_date": "2017-09-15T10:30:31Z", "xmlid": "cass_b_krtp(2)"}, "dataset": "cass-mag-orb60", "description": "Magnetic field vector components in KRTP coordinates", "display_type": "timeseries", "is_public": "True", "name": "b_krtp", "size": "3", "start_date": "2004-01-01T00:00:30Z", "stop_date": "2017-09-15T10:30:31Z", "ucd": "phys.magField", "units": "nT", "xmlid": "cass_b_krtp"}, "cass_b_ksm": {"__spz_name__": "b_ksm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_b_ksm", "cass_b_ksm0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_b_ksm(0)", "dataset": "cass-mag-orb60", "index1": "0", "is_public": "True", "name": "bx", "parameter": "cass_b_ksm", "start_date": "2004-01-01T00:00:30Z", "stop_date": "2017-09-15T10:30:31Z", "xmlid": "cass_b_ksm(0)"}, "cass_b_ksm1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_b_ksm(1)", "dataset": "cass-mag-orb60", "index1": "1", "is_public": "True", "name": "by", "parameter": "cass_b_ksm", "start_date": "2004-01-01T00:00:30Z", "stop_date": "2017-09-15T10:30:31Z", "xmlid": "cass_b_ksm(1)"}, "cass_b_ksm2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_b_ksm(2)", "dataset": "cass-mag-orb60", "index1": "2", "is_public": "True", "name": "bz", "parameter": "cass_b_ksm", "start_date": "2004-01-01T00:00:30Z", "stop_date": "2017-09-15T10:30:31Z", "xmlid": "cass_b_ksm(2)"}, "dataset": "cass-mag-orb60", "description": "Magnetic field vector components in KSM coordinates", "display_type": "timeseries", "is_public": "True", "name": "b_ksm", "size": "3", "start_date": "2004-01-01T00:00:30Z", "stop_date": "2017-09-15T10:30:31Z", "ucd": "phys.magField", "units": "nT", "xmlid": "cass_b_ksm"}, "cass_b_kso": {"__spz_name__": "b_kso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_b_kso", "cass_b_kso0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_b_kso(0)", "dataset": "cass-mag-orb60", "index1": "0", "is_public": "True", "name": "bx", "parameter": "cass_b_kso", "start_date": "2004-01-01T00:00:30Z", "stop_date": "2017-09-15T10:30:31Z", "xmlid": "cass_b_kso(0)"}, "cass_b_kso1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_b_kso(1)", "dataset": "cass-mag-orb60", "index1": "1", "is_public": "True", "name": "by", "parameter": "cass_b_kso", "start_date": "2004-01-01T00:00:30Z", "stop_date": "2017-09-15T10:30:31Z", "xmlid": "cass_b_kso(1)"}, "cass_b_kso2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_b_kso(2)", "dataset": "cass-mag-orb60", "index1": "2", "is_public": "True", "name": "bz", "parameter": "cass_b_kso", "start_date": "2004-01-01T00:00:30Z", "stop_date": "2017-09-15T10:30:31Z", "xmlid": "cass_b_kso(2)"}, "dataset": "cass-mag-orb60", "description": "Magnetic field vector components in KSO coordinates", "display_type": "timeseries", "is_public": "True", "name": "b_kso", "size": "3", "start_date": "2004-01-01T00:00:30Z", "stop_date": "2017-09-15T10:30:31Z", "ucd": "phys.magField", "units": "nT", "xmlid": "cass_b_kso"}, "cass_b_rtn": {"__spz_name__": "b_rtn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_b_rtn", "cass_b_rtn0": {"__spz_name__": "br", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_b_rtn(0)", "dataset": "cass-mag-orb60", "index1": "0", "is_public": "True", "name": "br", "parameter": "cass_b_rtn", "start_date": "2004-01-01T00:00:30Z", "stop_date": "2017-09-15T10:30:31Z", "xmlid": "cass_b_rtn(0)"}, "cass_b_rtn1": {"__spz_name__": "bt", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_b_rtn(1)", "dataset": "cass-mag-orb60", "index1": "1", "is_public": "True", "name": "bt", "parameter": "cass_b_rtn", "start_date": "2004-01-01T00:00:30Z", "stop_date": "2017-09-15T10:30:31Z", "xmlid": "cass_b_rtn(1)"}, "cass_b_rtn2": {"__spz_name__": "bn", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_b_rtn(2)", "dataset": "cass-mag-orb60", "index1": "2", "is_public": "True", "name": "bn", "parameter": "cass_b_rtn", "start_date": "2004-01-01T00:00:30Z", "stop_date": "2017-09-15T10:30:31Z", "xmlid": "cass_b_rtn(2)"}, "dataset": "cass-mag-orb60", "description": "Magnetic field vector components in RTN coordinates", "display_type": "timeseries", "is_public": "True", "name": "b_rtn", "size": "3", "start_date": "2004-01-01T00:00:30Z", "stop_date": "2017-09-15T10:30:31Z", "ucd": "phys.magField", "units": "nT", "xmlid": "cass_b_rtn"}, "cass_b_rtn_phi": {"__spz_name__": "phi", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_b_rtn_phi", "dataset": "cass-mag-orb60", "description": "Magnetic field phi angle", "display_type": "timeseries", "is_public": "True", "name": "phi", "start_date": "2004-01-01T00:00:30Z", "stop_date": "2017-09-15T10:30:31Z", "ucd": "phys.magField", "units": "degrees", "xmlid": "cass_b_rtn_phi"}, "cass_b_rtn_theta": {"__spz_name__": "theta", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_b_rtn_theta", "dataset": "cass-mag-orb60", "description": "Magnetic field theta angle", "display_type": "timeseries", "is_public": "True", "name": "theta", "start_date": "2004-01-01T00:00:30Z", "stop_date": "2017-09-15T10:30:31Z", "ucd": "phys.magField", "units": "degrees", "xmlid": "cass_b_rtn_theta"}, "cass_bmag_orb": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_bmag_orb", "dataset": "cass-mag-orb60", "description": "Scalar magnitude of the magnetic field in nT", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "2004-01-01T00:00:30Z", "stop_date": "2017-09-15T10:30:31Z", "ucd": "phys.magField", "units": "nT", "xmlid": "cass_bmag_orb"}, "dataSource": "PDS", "desc": "1-min averaged MAG data
Sampling: 60S
Provider: PDS", "is_public": "True", "lastModificationDate": "2024-10-03T18:53:23Z", "lastUpdate": "2024-10-03T18:53:22Z", "measurement_type": "MagneticField", "name": "60 sec", "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cassini/MAG/Saturn_Orbit/cass-mag-orb60", "start_date": "2004-01-01T00:00:30Z", "stop_date": "2017-09-15T10:30:31Z", "target": "Saturn", "xmlid": "cass-mag-orb60"}, "is_public": "True", "name": "orbit saturn", "xmlid": "cass-mag-orb"}, "xmlid": "Cassini_mag"}, "MIMI_LEMMS": {"__spz_name__": "MIMI-LEMMS", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Cassini_mimi-lemms", "att": "auto/Cassini_mimi-lemms", "desc": "Magnetosperic IMaging Instrument
Spectrometer", "flux_from_PHA_data": {"__spz_name__": "flux from PHA data", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "cass-lemms-pha", "cass_lemms_pha1hour": {"__spz_name__": "1 hour", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "cass-lemms-pha1hour", "att": "auto/cass-lemms-pha1hour", "cass_lemms_pha1houra": {"__spz_name__": "ions A", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_lemms_pha1houra", "dataset": "cass-lemms-pha1hour", "display_type": "spectrogram", "is_public": "True", "name": "ions A", "start_date": "2004-01-01T00:30:00Z", "stop_date": "2017-09-15T23:30:00Z", "ucd": "phot.count;phys.atmol.ionStage", "units": "cm-2.sr-1.s-1.keV-1", "xmlid": "cass_lemms_pha1houra"}, "cass_lemms_pha1houre": {"__spz_name__": "electrons E", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_lemms_pha1houre", "dataset": "cass-lemms-pha1hour", "display_type": "spectrogram", "is_public": "True", "name": "electrons E", "start_date": "2004-01-01T00:30:00Z", "stop_date": "2017-09-15T23:30:00Z", "ucd": "phys.electron", "units": "cm-2.sr-1.s-1.keV-1", "xmlid": "cass_lemms_pha1houre"}, "cass_lemms_pha1hourf1": {"__spz_name__": "electrons F1", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_lemms_pha1hourf1", "dataset": "cass-lemms-pha1hour", "display_type": "spectrogram", "is_public": "True", "name": "electrons F1", "start_date": "2004-01-01T00:30:00Z", "stop_date": "2017-09-15T23:30:00Z", "ucd": "phys.electron", "units": "cm-2.sr-1.s-1.keV-1", "xmlid": "cass_lemms_pha1hourf1"}, "dataSource": "PDS", "desc": "One hour average particle intensity from PHA
Sampling: 1H
Provider: PDS", "is_public": "True", "lastModificationDate": "2021-10-11T10:45:27Z", "lastUpdate": "2021-10-11T10:45:27Z", "measurement_type": "EnergeticParticles", "name": "1 hour", "processing_level": "Calibrated", "sampling": "1H", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cassini/MIMI-LEMMS/cass-lemms-pha1hour", "start_date": "2004-01-01T00:30:00Z", "stop_date": "2017-09-15T23:30:00Z", "target": "Saturn", "xmlid": "cass-lemms-pha1hour"}, "cass_lemms_pha1min": {"__spz_name__": "1min", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "cass-lemms-pha1min", "att": "auto/cass-lemms-pha1min", "cass_lemms_pha1mina": {"__spz_name__": "ions A", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_lemms_pha1mina", "dataset": "cass-lemms-pha1min", "display_type": "spectrogram", "is_public": "True", "name": "ions A", "start_date": "2004-01-01T00:00:30Z", "stop_date": "2017-09-15T23:59:30Z", "ucd": "phot.count;phys.atmol.ionStage", "units": "cm-2.sr-1.s-1.keV-1", "xmlid": "cass_lemms_pha1mina"}, "cass_lemms_pha1mine": {"__spz_name__": "electrons E", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_lemms_pha1mine", "dataset": "cass-lemms-pha1min", "display_type": "spectrogram", "is_public": "True", "name": "electrons E", "start_date": "2004-01-01T00:00:30Z", "stop_date": "2017-09-15T23:59:30Z", "ucd": "phot.count;phys.electron", "units": "cm-2.sr-1.s-1.keV-1", "xmlid": "cass_lemms_pha1mine"}, "cass_lemms_pha1minf1": {"__spz_name__": "electrons F1", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_lemms_pha1minf1", "dataset": "cass-lemms-pha1min", "display_type": "spectrogram", "is_public": "True", "name": "electrons F1", "start_date": "2004-01-01T00:00:30Z", "stop_date": "2017-09-15T23:59:30Z", "ucd": "phot.count;phys.electron", "units": "cm-2.sr-1.s-1.keV-1", "xmlid": "cass_lemms_pha1minf1"}, "dataSource": "PDS", "desc": "One minute average particle intensity from PHA
Sampling: 60S
Provider: PDS", "is_public": "True", "lastModificationDate": "2021-10-11T16:26:54Z", "lastUpdate": "2021-10-11T16:26:54Z", "measurement_type": "EnergeticParticles", "name": "1min", "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cassini/MIMI-LEMMS/cass-lemms-pha1min", "start_date": "2004-01-01T00:00:30Z", "stop_date": "2017-09-15T23:59:30Z", "target": "Saturn", "xmlid": "cass-lemms-pha1min"}, "is_public": "True", "name": "flux from PHA data", "xmlid": "cass-lemms-pha"}, "flux_from_accumulator_rate": {"__spz_name__": "flux from accumulator rate", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "cass-lemms-acc", "cass_lemms_acc1hour": {"__spz_name__": "1 hour", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "cass-lemms-acc1hour", "att": "auto/cass-lemms-acc1hour", "cass_lemms_acc1houra": {"__spz_name__": "LET ions A", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_lemms_acc1houra", "cass_lemms_acc1houra0": {"__spz_name__": "A0 : 27-35 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_lemms_acc1houra(0)", "dataset": "cass-lemms-acc1hour", "index1": "0", "is_public": "True", "name": "A0 : 27-35 keV", "parameter": "cass_lemms_acc1houra", "start_date": "2004-01-01T00:30:30Z", "stop_date": "2017-09-15T22:52:30Z", "xmlid": "cass_lemms_acc1houra(0)"}, "cass_lemms_acc1houra1": {"__spz_name__": "A1 : 35-56 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_lemms_acc1houra(1)", "dataset": "cass-lemms-acc1hour", "index1": "1", "is_public": "True", "name": "A1 : 35-56 keV", "parameter": "cass_lemms_acc1houra", "start_date": "2004-01-01T00:30:30Z", "stop_date": "2017-09-15T22:52:30Z", "xmlid": "cass_lemms_acc1houra(1)"}, "cass_lemms_acc1houra2": {"__spz_name__": "A2 : 56-106 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_lemms_acc1houra(2)", "dataset": "cass-lemms-acc1hour", "index1": "2", "is_public": "True", "name": "A2 : 56-106 keV", "parameter": "cass_lemms_acc1houra", "start_date": "2004-01-01T00:30:30Z", "stop_date": "2017-09-15T22:52:30Z", "xmlid": "cass_lemms_acc1houra(2)"}, "cass_lemms_acc1houra3": {"__spz_name__": "A3 : 106-255 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_lemms_acc1houra(3)", "dataset": "cass-lemms-acc1hour", "index1": "3", "is_public": "True", "name": "A3 : 106-255 keV", "parameter": "cass_lemms_acc1houra", "start_date": "2004-01-01T00:30:30Z", "stop_date": "2017-09-15T22:52:30Z", "xmlid": "cass_lemms_acc1houra(3)"}, "cass_lemms_acc1houra4": {"__spz_name__": "A4 : 255-506 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_lemms_acc1houra(4)", "dataset": "cass-lemms-acc1hour", "index1": "4", "is_public": "True", "name": "A4 : 255-506 keV", "parameter": "cass_lemms_acc1houra", "start_date": "2004-01-01T00:30:30Z", "stop_date": "2017-09-15T22:52:30Z", "xmlid": "cass_lemms_acc1houra(4)"}, "cass_lemms_acc1houra5": {"__spz_name__": "A5 : 506-805 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_lemms_acc1houra(5)", "dataset": "cass-lemms-acc1hour", "index1": "5", "is_public": "True", "name": "A5 : 506-805 keV", "parameter": "cass_lemms_acc1houra", "start_date": "2004-01-01T00:30:30Z", "stop_date": "2017-09-15T22:52:30Z", "xmlid": "cass_lemms_acc1houra(5)"}, "cass_lemms_acc1houra6": {"__spz_name__": "A6 : 805-1600 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_lemms_acc1houra(6)", "dataset": "cass-lemms-acc1hour", "index1": "6", "is_public": "True", "name": "A6 : 805-1600 keV", "parameter": "cass_lemms_acc1houra", "start_date": "2004-01-01T00:30:30Z", "stop_date": "2017-09-15T22:52:30Z", "xmlid": "cass_lemms_acc1houra(6)"}, "cass_lemms_acc1houra7": {"__spz_name__": "A7 : 1615-4000 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_lemms_acc1houra(7)", "dataset": "cass-lemms-acc1hour", "index1": "7", "is_public": "True", "name": "A7 : 1615-4000 keV", "parameter": "cass_lemms_acc1houra", "start_date": "2004-01-01T00:30:30Z", "stop_date": "2017-09-15T22:52:30Z", "xmlid": "cass_lemms_acc1houra(7)"}, "cass_lemms_acc1houra8": {"__spz_name__": "A8 (He) : 1270-3930 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_lemms_acc1houra(8)", "dataset": "cass-lemms-acc1hour", "index1": "8", "is_public": "True", "name": "A8 (He) : 1270-3930 keV", "parameter": "cass_lemms_acc1houra", "start_date": "2004-01-01T00:30:30Z", "stop_date": "2017-09-15T22:52:30Z", "xmlid": "cass_lemms_acc1houra(8)"}, "dataset": "cass-lemms-acc1hour", "display_type": "timeseries", "is_public": "True", "name": "LET ions A", "size": "9", "start_date": "2004-01-01T00:30:30Z", "stop_date": "2017-09-15T22:52:30Z", "ucd": "phot.count;phys.atmol.ionStage", "units": "cm-2.sr-1.s-1.keV-1", "xmlid": "cass_lemms_acc1houra"}, "cass_lemms_acc1hourc": {"__spz_name__": "LET electrons C", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_lemms_acc1hourc", "cass_lemms_acc1hourc0": {"__spz_name__": "C0 : 18-40 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_lemms_acc1hourc(0)", "dataset": "cass-lemms-acc1hour", "index1": "0", "is_public": "True", "name": "C0 : 18-40 keV", "parameter": "cass_lemms_acc1hourc", "start_date": "2004-01-01T00:30:30Z", "stop_date": "2017-09-15T22:52:30Z", "xmlid": "cass_lemms_acc1hourc(0)"}, "cass_lemms_acc1hourc1": {"__spz_name__": "C1 : 27-48 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_lemms_acc1hourc(1)", "dataset": "cass-lemms-acc1hour", "index1": "1", "is_public": "True", "name": "C1 : 27-48 keV", "parameter": "cass_lemms_acc1hourc", "start_date": "2004-01-01T00:30:30Z", "stop_date": "2017-09-15T22:52:30Z", "xmlid": "cass_lemms_acc1hourc(1)"}, "cass_lemms_acc1hourc2": {"__spz_name__": "C2 : 41-60 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_lemms_acc1hourc(2)", "dataset": "cass-lemms-acc1hour", "index1": "2", "is_public": "True", "name": "C2 : 41-60 keV", "parameter": "cass_lemms_acc1hourc", "start_date": "2004-01-01T00:30:30Z", "stop_date": "2017-09-15T22:52:30Z", "xmlid": "cass_lemms_acc1hourc(2)"}, "cass_lemms_acc1hourc3": {"__spz_name__": "C3 : 56-100 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_lemms_acc1hourc(3)", "dataset": "cass-lemms-acc1hour", "index1": "3", "is_public": "True", "name": "C3 : 56-100 keV", "parameter": "cass_lemms_acc1hourc", "start_date": "2004-01-01T00:30:30Z", "stop_date": "2017-09-15T22:52:30Z", "xmlid": "cass_lemms_acc1hourc(3)"}, "cass_lemms_acc1hourc4": {"__spz_name__": "C4 : 92-183 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_lemms_acc1hourc(4)", "dataset": "cass-lemms-acc1hour", "index1": "4", "is_public": "True", "name": "C4 : 92-183 keV", "parameter": "cass_lemms_acc1hourc", "start_date": "2004-01-01T00:30:30Z", "stop_date": "2017-09-15T22:52:30Z", "xmlid": "cass_lemms_acc1hourc(4)"}, "cass_lemms_acc1hourc5": {"__spz_name__": "C5 : 175-300 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_lemms_acc1hourc(5)", "dataset": "cass-lemms-acc1hour", "index1": "5", "is_public": "True", "name": "C5 : 175-300 keV", "parameter": "cass_lemms_acc1hourc", "start_date": "2004-01-01T00:30:30Z", "stop_date": "2017-09-15T22:52:30Z", "xmlid": "cass_lemms_acc1hourc(5)"}, "cass_lemms_acc1hourc6": {"__spz_name__": "C6 : 265-550 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_lemms_acc1hourc(6)", "dataset": "cass-lemms-acc1hour", "index1": "6", "is_public": "True", "name": "C6 : 265-550 keV", "parameter": "cass_lemms_acc1hourc", "start_date": "2004-01-01T00:30:30Z", "stop_date": "2017-09-15T22:52:30Z", "xmlid": "cass_lemms_acc1hourc(6)"}, "cass_lemms_acc1hourc7": {"__spz_name__": "C7 : 510-832 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_lemms_acc1hourc(7)", "dataset": "cass-lemms-acc1hour", "index1": "7", "is_public": "True", "name": "C7 : 510-832 keV", "parameter": "cass_lemms_acc1hourc", "start_date": "2004-01-01T00:30:30Z", "stop_date": "2017-09-15T22:52:30Z", "xmlid": "cass_lemms_acc1hourc(7)"}, "dataset": "cass-lemms-acc1hour", "display_type": "timeseries", "is_public": "True", "name": "LET electrons C", "size": "8", "start_date": "2004-01-01T00:30:30Z", "stop_date": "2017-09-15T22:52:30Z", "ucd": "phot.count;phys.electron", "units": "cm-2.sr-1.s-1.keV-1", "xmlid": "cass_lemms_acc1hourc"}, "cass_lemms_acc1houre": {"__spz_name__": "HET electrons E", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_lemms_acc1houre", "cass_lemms_acc1houre0": {"__spz_name__": "E0 : 110-365 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_lemms_acc1houre(0)", "dataset": "cass-lemms-acc1hour", "index1": "0", "is_public": "True", "name": "E0 : 110-365 keV", "parameter": "cass_lemms_acc1houre", "start_date": "2004-01-01T00:30:30Z", "stop_date": "2017-09-15T22:52:30Z", "xmlid": "cass_lemms_acc1houre(0)"}, "cass_lemms_acc1houre1": {"__spz_name__": "E1 : 220-485 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_lemms_acc1houre(1)", "dataset": "cass-lemms-acc1hour", "index1": "1", "is_public": "True", "name": "E1 : 220-485 keV", "parameter": "cass_lemms_acc1houre", "start_date": "2004-01-01T00:30:30Z", "stop_date": "2017-09-15T22:52:30Z", "xmlid": "cass_lemms_acc1houre(1)"}, "cass_lemms_acc1houre2": {"__spz_name__": "E2 : 340-1350 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_lemms_acc1houre(2)", "dataset": "cass-lemms-acc1hour", "index1": "2", "is_public": "True", "name": "E2 : 340-1350 keV", "parameter": "cass_lemms_acc1houre", "start_date": "2004-01-01T00:30:30Z", "stop_date": "2017-09-15T22:52:30Z", "xmlid": "cass_lemms_acc1houre(2)"}, "cass_lemms_acc1houre3": {"__spz_name__": "E3 : 600-4950 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_lemms_acc1houre(3)", "dataset": "cass-lemms-acc1hour", "index1": "3", "is_public": "True", "name": "E3 : 600-4950 keV", "parameter": "cass_lemms_acc1houre", "start_date": "2004-01-01T00:30:30Z", "stop_date": "2017-09-15T22:52:30Z", "xmlid": "cass_lemms_acc1houre(3)"}, "cass_lemms_acc1houre4": {"__spz_name__": "E4 : 790-4750 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_lemms_acc1houre(4)", "dataset": "cass-lemms-acc1hour", "index1": "4", "is_public": "True", "name": "E4 : 790-4750 keV", "parameter": "cass_lemms_acc1houre", "start_date": "2004-01-01T00:30:30Z", "stop_date": "2017-09-15T22:52:30Z", "xmlid": "cass_lemms_acc1houre(4)"}, "dataset": "cass-lemms-acc1hour", "display_type": "timeseries", "is_public": "True", "name": "HET electrons E", "size": "5", "start_date": "2004-01-01T00:30:30Z", "stop_date": "2017-09-15T22:52:30Z", "ucd": "phot.count;phys.electron", "units": "cm-2.sr-1.s-1.keV-1", "xmlid": "cass_lemms_acc1houre"}, "cass_lemms_acc1hourp": {"__spz_name__": "HET ions P", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_lemms_acc1hourp", "cass_lemms_acc1hourp0": {"__spz_name__": "P1 : 1424-2278 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_lemms_acc1hourp(0)", "dataset": "cass-lemms-acc1hour", "index1": "0", "is_public": "True", "name": "P1 : 1424-2278 keV", "parameter": "cass_lemms_acc1hourp", "start_date": "2004-01-01T00:30:30Z", "stop_date": "2017-09-15T22:52:30Z", "xmlid": "cass_lemms_acc1hourp(0)"}, "cass_lemms_acc1hourp1": {"__spz_name__": "P2 : 2280-4490 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_lemms_acc1hourp(1)", "dataset": "cass-lemms-acc1hour", "index1": "1", "is_public": "True", "name": "P2 : 2280-4490 keV", "parameter": "cass_lemms_acc1hourp", "start_date": "2004-01-01T00:30:30Z", "stop_date": "2017-09-15T22:52:30Z", "xmlid": "cass_lemms_acc1hourp(1)"}, "cass_lemms_acc1hourp2": {"__spz_name__": "P3 : 4490-5744 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_lemms_acc1hourp(2)", "dataset": "cass-lemms-acc1hour", "index1": "2", "is_public": "True", "name": "P3 : 4490-5744 keV", "parameter": "cass_lemms_acc1hourp", "start_date": "2004-01-01T00:30:30Z", "stop_date": "2017-09-15T22:52:30Z", "xmlid": "cass_lemms_acc1hourp(2)"}, "cass_lemms_acc1hourp3": {"__spz_name__": "P4 : 13200-25400 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_lemms_acc1hourp(3)", "dataset": "cass-lemms-acc1hour", "index1": "3", "is_public": "True", "name": "P4 : 13200-25400 keV", "parameter": "cass_lemms_acc1hourp", "start_date": "2004-01-01T00:30:30Z", "stop_date": "2017-09-15T22:52:30Z", "xmlid": "cass_lemms_acc1hourp(3)"}, "cass_lemms_acc1hourp4": {"__spz_name__": "P5 : 8311-11449 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_lemms_acc1hourp(4)", "dataset": "cass-lemms-acc1hour", "index1": "4", "is_public": "True", "name": "P5 : 8311-11449 keV", "parameter": "cass_lemms_acc1hourp", "start_date": "2004-01-01T00:30:30Z", "stop_date": "2017-09-15T22:52:30Z", "xmlid": "cass_lemms_acc1hourp(4)"}, "cass_lemms_acc1hourp5": {"__spz_name__": "P6 : 11474-13433 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_lemms_acc1hourp(5)", "dataset": "cass-lemms-acc1hour", "index1": "5", "is_public": "True", "name": "P6 : 11474-13433 keV", "parameter": "cass_lemms_acc1hourp", "start_date": "2004-01-01T00:30:30Z", "stop_date": "2017-09-15T22:52:30Z", "xmlid": "cass_lemms_acc1hourp(5)"}, "cass_lemms_acc1hourp6": {"__spz_name__": "P7 : 12101-58902 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_lemms_acc1hourp(6)", "dataset": "cass-lemms-acc1hour", "index1": "6", "is_public": "True", "name": "P7 : 12101-58902 keV", "parameter": "cass_lemms_acc1hourp", "start_date": "2004-01-01T00:30:30Z", "stop_date": "2017-09-15T22:52:30Z", "xmlid": "cass_lemms_acc1hourp(6)"}, "cass_lemms_acc1hourp7": {"__spz_name__": "P8 : 25158-59000 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_lemms_acc1hourp(7)", "dataset": "cass-lemms-acc1hour", "index1": "7", "is_public": "True", "name": "P8 : 25158-59000 keV", "parameter": "cass_lemms_acc1hourp", "start_date": "2004-01-01T00:30:30Z", "stop_date": "2017-09-15T22:52:30Z", "xmlid": "cass_lemms_acc1hourp(7)"}, "cass_lemms_acc1hourp8": {"__spz_name__": "P9 : 58650-158700 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_lemms_acc1hourp(8)", "dataset": "cass-lemms-acc1hour", "index1": "8", "is_public": "True", "name": "P9 : 58650-158700 keV", "parameter": "cass_lemms_acc1hourp", "start_date": "2004-01-01T00:30:30Z", "stop_date": "2017-09-15T22:52:30Z", "xmlid": "cass_lemms_acc1hourp(8)"}, "dataset": "cass-lemms-acc1hour", "display_type": "timeseries", "is_public": "True", "name": "HET ions P", "size": "9", "start_date": "2004-01-01T00:30:30Z", "stop_date": "2017-09-15T22:52:30Z", "ucd": "phot.count;phys.atmol.ionStage", "units": "cm-2.sr-1.s-1.keV-1", "xmlid": "cass_lemms_acc1hourp"}, "dataSource": "PDS", "desc": "1 hour averages of LEMMS accumulator rates data
Sampling: 1H
Provider: PDS", "is_public": "True", "lastModificationDate": "2021-10-08T20:32:46Z", "lastUpdate": "2021-10-08T20:32:46Z", "measurement_type": "EnergeticParticles", "name": "1 hour", "processing_level": "Calibrated", "sampling": "1H", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cassini/MIMI-LEMMS/cass-lemms-acc1hour", "start_date": "2004-01-01T00:30:30Z", "stop_date": "2017-09-15T22:52:30Z", "target": "Saturn", "xmlid": "cass-lemms-acc1hour"}, "cass_lemms_acc1min": {"__spz_name__": "1 min", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "cass-lemms-acc1min", "att": "auto/cass-lemms-acc1min", "cass_lemms_acc1mina": {"__spz_name__": "LET ions A", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_lemms_acc1mina", "cass_lemms_acc1mina0": {"__spz_name__": "A0 : 27-35 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_lemms_acc1mina(0)", "dataset": "cass-lemms-acc1min", "index1": "0", "is_public": "True", "name": "A0 : 27-35 keV", "parameter": "cass_lemms_acc1mina", "start_date": "2004-01-01T00:00:30Z", "stop_date": "2017-09-15T23:59:30Z", "xmlid": "cass_lemms_acc1mina(0)"}, "cass_lemms_acc1mina1": {"__spz_name__": "A1 : 35-56 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_lemms_acc1mina(1)", "dataset": "cass-lemms-acc1min", "index1": "1", "is_public": "True", "name": "A1 : 35-56 keV", "parameter": "cass_lemms_acc1mina", "start_date": "2004-01-01T00:00:30Z", "stop_date": "2017-09-15T23:59:30Z", "xmlid": "cass_lemms_acc1mina(1)"}, "cass_lemms_acc1mina2": {"__spz_name__": "A2 : 56-106 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_lemms_acc1mina(2)", "dataset": "cass-lemms-acc1min", "index1": "2", "is_public": "True", "name": "A2 : 56-106 keV", "parameter": "cass_lemms_acc1mina", "start_date": "2004-01-01T00:00:30Z", "stop_date": "2017-09-15T23:59:30Z", "xmlid": "cass_lemms_acc1mina(2)"}, "cass_lemms_acc1mina3": {"__spz_name__": "A3 : 106-255 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_lemms_acc1mina(3)", "dataset": "cass-lemms-acc1min", "index1": "3", "is_public": "True", "name": "A3 : 106-255 keV", "parameter": "cass_lemms_acc1mina", "start_date": "2004-01-01T00:00:30Z", "stop_date": "2017-09-15T23:59:30Z", "xmlid": "cass_lemms_acc1mina(3)"}, "cass_lemms_acc1mina4": {"__spz_name__": "A4 : 255-506 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_lemms_acc1mina(4)", "dataset": "cass-lemms-acc1min", "index1": "4", "is_public": "True", "name": "A4 : 255-506 keV", "parameter": "cass_lemms_acc1mina", "start_date": "2004-01-01T00:00:30Z", "stop_date": "2017-09-15T23:59:30Z", "xmlid": "cass_lemms_acc1mina(4)"}, "cass_lemms_acc1mina5": {"__spz_name__": "A5 : 506-805 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_lemms_acc1mina(5)", "dataset": "cass-lemms-acc1min", "index1": "5", "is_public": "True", "name": "A5 : 506-805 keV", "parameter": "cass_lemms_acc1mina", "start_date": "2004-01-01T00:00:30Z", "stop_date": "2017-09-15T23:59:30Z", "xmlid": "cass_lemms_acc1mina(5)"}, "cass_lemms_acc1mina6": {"__spz_name__": "A6 : 805-1600 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_lemms_acc1mina(6)", "dataset": "cass-lemms-acc1min", "index1": "6", "is_public": "True", "name": "A6 : 805-1600 keV", "parameter": "cass_lemms_acc1mina", "start_date": "2004-01-01T00:00:30Z", "stop_date": "2017-09-15T23:59:30Z", "xmlid": "cass_lemms_acc1mina(6)"}, "cass_lemms_acc1mina7": {"__spz_name__": "A7 : 1615-4000 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_lemms_acc1mina(7)", "dataset": "cass-lemms-acc1min", "index1": "7", "is_public": "True", "name": "A7 : 1615-4000 keV", "parameter": "cass_lemms_acc1mina", "start_date": "2004-01-01T00:00:30Z", "stop_date": "2017-09-15T23:59:30Z", "xmlid": "cass_lemms_acc1mina(7)"}, "cass_lemms_acc1mina8": {"__spz_name__": "A8 (He) : 1270-3930 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_lemms_acc1mina(8)", "dataset": "cass-lemms-acc1min", "index1": "8", "is_public": "True", "name": "A8 (He) : 1270-3930 keV", "parameter": "cass_lemms_acc1mina", "start_date": "2004-01-01T00:00:30Z", "stop_date": "2017-09-15T23:59:30Z", "xmlid": "cass_lemms_acc1mina(8)"}, "dataset": "cass-lemms-acc1min", "display_type": "timeseries", "is_public": "True", "name": "LET ions A", "size": "9", "start_date": "2004-01-01T00:00:30Z", "stop_date": "2017-09-15T23:59:30Z", "ucd": "phot.count;phys.atmol.ionStage", "units": "cm-2.sr-1.s-1.keV-1", "xmlid": "cass_lemms_acc1mina"}, "cass_lemms_acc1minc": {"__spz_name__": "LET electrons C", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_lemms_acc1minc", "cass_lemms_acc1minc0": {"__spz_name__": "C0 : 18-40 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_lemms_acc1minc(0)", "dataset": "cass-lemms-acc1min", "index1": "0", "is_public": "True", "name": "C0 : 18-40 keV", "parameter": "cass_lemms_acc1minc", "start_date": "2004-01-01T00:00:30Z", "stop_date": "2017-09-15T23:59:30Z", "xmlid": "cass_lemms_acc1minc(0)"}, "cass_lemms_acc1minc1": {"__spz_name__": "C1 : 27-48 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_lemms_acc1minc(1)", "dataset": "cass-lemms-acc1min", "index1": "1", "is_public": "True", "name": "C1 : 27-48 keV", "parameter": "cass_lemms_acc1minc", "start_date": "2004-01-01T00:00:30Z", "stop_date": "2017-09-15T23:59:30Z", "xmlid": "cass_lemms_acc1minc(1)"}, "cass_lemms_acc1minc2": {"__spz_name__": "C2 : 41-60 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_lemms_acc1minc(2)", "dataset": "cass-lemms-acc1min", "index1": "2", "is_public": "True", "name": "C2 : 41-60 keV", "parameter": "cass_lemms_acc1minc", "start_date": "2004-01-01T00:00:30Z", "stop_date": "2017-09-15T23:59:30Z", "xmlid": "cass_lemms_acc1minc(2)"}, "cass_lemms_acc1minc3": {"__spz_name__": "C3 : 56-100 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_lemms_acc1minc(3)", "dataset": "cass-lemms-acc1min", "index1": "3", "is_public": "True", "name": "C3 : 56-100 keV", "parameter": "cass_lemms_acc1minc", "start_date": "2004-01-01T00:00:30Z", "stop_date": "2017-09-15T23:59:30Z", "xmlid": "cass_lemms_acc1minc(3)"}, "cass_lemms_acc1minc4": {"__spz_name__": "C4 : 92-183 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_lemms_acc1minc(4)", "dataset": "cass-lemms-acc1min", "index1": "4", "is_public": "True", "name": "C4 : 92-183 keV", "parameter": "cass_lemms_acc1minc", "start_date": "2004-01-01T00:00:30Z", "stop_date": "2017-09-15T23:59:30Z", "xmlid": "cass_lemms_acc1minc(4)"}, "cass_lemms_acc1minc5": {"__spz_name__": "C5 : 175-300 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_lemms_acc1minc(5)", "dataset": "cass-lemms-acc1min", "index1": "5", "is_public": "True", "name": "C5 : 175-300 keV", "parameter": "cass_lemms_acc1minc", "start_date": "2004-01-01T00:00:30Z", "stop_date": "2017-09-15T23:59:30Z", "xmlid": "cass_lemms_acc1minc(5)"}, "cass_lemms_acc1minc6": {"__spz_name__": "C6 : 265-550 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_lemms_acc1minc(6)", "dataset": "cass-lemms-acc1min", "index1": "6", "is_public": "True", "name": "C6 : 265-550 keV", "parameter": "cass_lemms_acc1minc", "start_date": "2004-01-01T00:00:30Z", "stop_date": "2017-09-15T23:59:30Z", "xmlid": "cass_lemms_acc1minc(6)"}, "cass_lemms_acc1minc7": {"__spz_name__": "C7 : 510-832 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_lemms_acc1minc(7)", "dataset": "cass-lemms-acc1min", "index1": "7", "is_public": "True", "name": "C7 : 510-832 keV", "parameter": "cass_lemms_acc1minc", "start_date": "2004-01-01T00:00:30Z", "stop_date": "2017-09-15T23:59:30Z", "xmlid": "cass_lemms_acc1minc(7)"}, "dataset": "cass-lemms-acc1min", "display_type": "timeseries", "is_public": "True", "name": "LET electrons C", "size": "8", "start_date": "2004-01-01T00:00:30Z", "stop_date": "2017-09-15T23:59:30Z", "ucd": "phot.count;phys.electron", "units": "cm-2.sr-1.s-1.keV-1", "xmlid": "cass_lemms_acc1minc"}, "cass_lemms_acc1mine": {"__spz_name__": "HET electrons E", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_lemms_acc1mine", "cass_lemms_acc1mine0": {"__spz_name__": "E0 : 110-365 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_lemms_acc1mine(0)", "dataset": "cass-lemms-acc1min", "index1": "0", "is_public": "True", "name": "E0 : 110-365 keV", "parameter": "cass_lemms_acc1mine", "start_date": "2004-01-01T00:00:30Z", "stop_date": "2017-09-15T23:59:30Z", "xmlid": "cass_lemms_acc1mine(0)"}, "cass_lemms_acc1mine1": {"__spz_name__": "E1 : 220-485 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_lemms_acc1mine(1)", "dataset": "cass-lemms-acc1min", "index1": "1", "is_public": "True", "name": "E1 : 220-485 keV", "parameter": "cass_lemms_acc1mine", "start_date": "2004-01-01T00:00:30Z", "stop_date": "2017-09-15T23:59:30Z", "xmlid": "cass_lemms_acc1mine(1)"}, "cass_lemms_acc1mine2": {"__spz_name__": "E2 : 340-1350 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_lemms_acc1mine(2)", "dataset": "cass-lemms-acc1min", "index1": "2", "is_public": "True", "name": "E2 : 340-1350 keV", "parameter": "cass_lemms_acc1mine", "start_date": "2004-01-01T00:00:30Z", "stop_date": "2017-09-15T23:59:30Z", "xmlid": "cass_lemms_acc1mine(2)"}, "cass_lemms_acc1mine3": {"__spz_name__": "E3 : 600-4950 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_lemms_acc1mine(3)", "dataset": "cass-lemms-acc1min", "index1": "3", "is_public": "True", "name": "E3 : 600-4950 keV", "parameter": "cass_lemms_acc1mine", "start_date": "2004-01-01T00:00:30Z", "stop_date": "2017-09-15T23:59:30Z", "xmlid": "cass_lemms_acc1mine(3)"}, "cass_lemms_acc1mine4": {"__spz_name__": "E4 : 790-4750 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_lemms_acc1mine(4)", "dataset": "cass-lemms-acc1min", "index1": "4", "is_public": "True", "name": "E4 : 790-4750 keV", "parameter": "cass_lemms_acc1mine", "start_date": "2004-01-01T00:00:30Z", "stop_date": "2017-09-15T23:59:30Z", "xmlid": "cass_lemms_acc1mine(4)"}, "dataset": "cass-lemms-acc1min", "display_type": "timeseries", "is_public": "True", "name": "HET electrons E", "size": "5", "start_date": "2004-01-01T00:00:30Z", "stop_date": "2017-09-15T23:59:30Z", "ucd": "phot.count;phys.electron", "units": "cm-2.sr-1.s-1.keV-1", "xmlid": "cass_lemms_acc1mine"}, "cass_lemms_acc1minp": {"__spz_name__": "HET ions P", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_lemms_acc1minp", "cass_lemms_acc1minp0": {"__spz_name__": "P1 : 1424-2278 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_lemms_acc1minp(0)", "dataset": "cass-lemms-acc1min", "index1": "0", "is_public": "True", "name": "P1 : 1424-2278 keV", "parameter": "cass_lemms_acc1minp", "start_date": "2004-01-01T00:00:30Z", "stop_date": "2017-09-15T23:59:30Z", "xmlid": "cass_lemms_acc1minp(0)"}, "cass_lemms_acc1minp1": {"__spz_name__": "P2 : 2280-4490 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_lemms_acc1minp(1)", "dataset": "cass-lemms-acc1min", "index1": "1", "is_public": "True", "name": "P2 : 2280-4490 keV", "parameter": "cass_lemms_acc1minp", "start_date": "2004-01-01T00:00:30Z", "stop_date": "2017-09-15T23:59:30Z", "xmlid": "cass_lemms_acc1minp(1)"}, "cass_lemms_acc1minp2": {"__spz_name__": "P3 : 4490-5744 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_lemms_acc1minp(2)", "dataset": "cass-lemms-acc1min", "index1": "2", "is_public": "True", "name": "P3 : 4490-5744 keV", "parameter": "cass_lemms_acc1minp", "start_date": "2004-01-01T00:00:30Z", "stop_date": "2017-09-15T23:59:30Z", "xmlid": "cass_lemms_acc1minp(2)"}, "cass_lemms_acc1minp3": {"__spz_name__": "P4 : 13200-25400 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_lemms_acc1minp(3)", "dataset": "cass-lemms-acc1min", "index1": "3", "is_public": "True", "name": "P4 : 13200-25400 keV", "parameter": "cass_lemms_acc1minp", "start_date": "2004-01-01T00:00:30Z", "stop_date": "2017-09-15T23:59:30Z", "xmlid": "cass_lemms_acc1minp(3)"}, "cass_lemms_acc1minp4": {"__spz_name__": "P5 : 8311-11449 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_lemms_acc1minp(4)", "dataset": "cass-lemms-acc1min", "index1": "4", "is_public": "True", "name": "P5 : 8311-11449 keV", "parameter": "cass_lemms_acc1minp", "start_date": "2004-01-01T00:00:30Z", "stop_date": "2017-09-15T23:59:30Z", "xmlid": "cass_lemms_acc1minp(4)"}, "cass_lemms_acc1minp5": {"__spz_name__": "P6 : 11474-13433 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_lemms_acc1minp(5)", "dataset": "cass-lemms-acc1min", "index1": "5", "is_public": "True", "name": "P6 : 11474-13433 keV", "parameter": "cass_lemms_acc1minp", "start_date": "2004-01-01T00:00:30Z", "stop_date": "2017-09-15T23:59:30Z", "xmlid": "cass_lemms_acc1minp(5)"}, "cass_lemms_acc1minp6": {"__spz_name__": "P7 : 12101-58902 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_lemms_acc1minp(6)", "dataset": "cass-lemms-acc1min", "index1": "6", "is_public": "True", "name": "P7 : 12101-58902 keV", "parameter": "cass_lemms_acc1minp", "start_date": "2004-01-01T00:00:30Z", "stop_date": "2017-09-15T23:59:30Z", "xmlid": "cass_lemms_acc1minp(6)"}, "cass_lemms_acc1minp7": {"__spz_name__": "P8 : 25158-59000 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_lemms_acc1minp(7)", "dataset": "cass-lemms-acc1min", "index1": "7", "is_public": "True", "name": "P8 : 25158-59000 keV", "parameter": "cass_lemms_acc1minp", "start_date": "2004-01-01T00:00:30Z", "stop_date": "2017-09-15T23:59:30Z", "xmlid": "cass_lemms_acc1minp(7)"}, "cass_lemms_acc1minp8": {"__spz_name__": "P9 : 58650-158700 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_lemms_acc1minp(8)", "dataset": "cass-lemms-acc1min", "index1": "8", "is_public": "True", "name": "P9 : 58650-158700 keV", "parameter": "cass_lemms_acc1minp", "start_date": "2004-01-01T00:00:30Z", "stop_date": "2017-09-15T23:59:30Z", "xmlid": "cass_lemms_acc1minp(8)"}, "dataset": "cass-lemms-acc1min", "display_type": "timeseries", "is_public": "True", "name": "HET ions P", "size": "9", "start_date": "2004-01-01T00:00:30Z", "stop_date": "2017-09-15T23:59:30Z", "ucd": "phot.count;phys.atmol.ionStage", "units": "cm-2.sr-1.s-1.keV-1", "xmlid": "cass_lemms_acc1minp"}, "dataSource": "PDS", "desc": "1 minute averages of LEMMS accumulator rates data
Sampling: 60S
Provider: PDS", "is_public": "True", "lastModificationDate": "2021-10-08T19:07:04Z", "lastUpdate": "2021-10-08T19:07:04Z", "measurement_type": "EnergeticParticles", "name": "1 min", "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cassini/MIMI-LEMMS/cass-lemms-acc1min", "start_date": "2004-01-01T00:00:30Z", "stop_date": "2017-09-15T23:59:30Z", "target": "Saturn", "xmlid": "cass-lemms-acc1min"}, "is_public": "True", "name": "flux from accumulator rate", "xmlid": "cass-lemms-acc"}, "is_public": "True", "name": "MIMI-LEMMS", "xmlid": "Cassini_mimi-lemms"}, "RPWS": {"__spz_name__": "RPWS", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Cassini_rpws", "att": "auto/Cassini_rpws", "cass_fpe_earth": {"__spz_name__": "electron density derived @ earth", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "cass-fpe-earth", "att": "auto/cass-fpe-earth", "cass_earth_ne": {"__spz_name__": "density e-", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_earth_ne", "dataset": "cass-fpe-earth", "display_type": "timeseries", "is_public": "True", "name": "density e-", "start_date": "1999-08-18T02:36:40Z", "stop_date": "1999-08-18T03:38:17Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm-3", "xmlid": "cass_earth_ne"}, "cass_earth_nerr": {"__spz_name__": "density error", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_earth_nerr", "dataset": "cass-fpe-earth", "display_type": "timeseries", "is_public": "True", "name": "density error", "start_date": "1999-08-18T02:36:40Z", "stop_date": "1999-08-18T03:38:17Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm-3", "xmlid": "cass_earth_nerr"}, "dataSource": "PDS", "desc": "Electron Densities from Upper Hybrid and Plasma Wave Frequencies
Sampling: 8S
Provider: PDS", "is_public": "True", "lastModificationDate": "2020-06-22T16:28:08Z", "lastUpdate": "2020-06-22T16:00:16Z", "measurement_type": "ThermalPlasma", "name": "electron density derived @ earth", "processing_level": "Calibrated", "sampling": "8S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cassini/RPWS/cass-fpe-earth", "start_date": "1999-08-18T02:36:40Z", "stop_date": "1999-08-18T03:38:17Z", "target": "Earth", "xmlid": "cass-fpe-earth"}, "cass_fpe_encel": {"__spz_name__": "electron density derived @ enceladus", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "cass-fpe-encel", "att": "auto/cass-fpe-encel", "cass_encel_ne": {"__spz_name__": "density e-", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_encel_ne", "dataset": "cass-fpe-encel", "display_type": "timeseries", "is_public": "True", "name": "density e-", "start_date": "2005-02-17T01:26:31Z", "stop_date": "2015-12-19T19:15:02Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm-3", "xmlid": "cass_encel_ne"}, "cass_encel_nerr": {"__spz_name__": "density error", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_encel_nerr", "dataset": "cass-fpe-encel", "display_type": "timeseries", "is_public": "True", "name": "density error", "start_date": "2005-02-17T01:26:31Z", "stop_date": "2015-12-19T19:15:02Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm-3", "xmlid": "cass_encel_nerr"}, "dataSource": "PDS", "desc": "Electron Densities from Upper Hybrid and Plasma Wave Frequencies
Sampling: 8S
Provider: PDS", "is_public": "True", "lastModificationDate": "2020-06-22T16:25:52Z", "lastUpdate": "2020-06-22T16:00:53Z", "measurement_type": "ThermalPlasma", "name": "electron density derived @ enceladus", "processing_level": "Calibrated", "sampling": "8S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cassini/RPWS/cass-fpe-encel", "start_date": "2005-02-17T01:26:31Z", "stop_date": "2015-12-19T19:15:02Z", "target": "Saturn.Enceladus", "xmlid": "cass-fpe-encel"}, "cass_fpe_jup": {"__spz_name__": "electron density derived @ jupiter", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "cass-fpe-jup", "att": "auto/cass-fpe-jup", "cass_jup_ne": {"__spz_name__": "density e-", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_jup_ne", "dataset": "cass-fpe-jup", "display_type": "timeseries", "is_public": "True", "name": "density e-", "start_date": "2001-01-09T08:00:32Z", "stop_date": "2001-02-18T23:58:31Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm-3", "xmlid": "cass_jup_ne"}, "cass_jup_nerr": {"__spz_name__": "density error", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_jup_nerr", "dataset": "cass-fpe-jup", "display_type": "timeseries", "is_public": "True", "name": "density error", "start_date": "2001-01-09T08:00:32Z", "stop_date": "2001-02-18T23:58:31Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm-3", "xmlid": "cass_jup_nerr"}, "dataSource": "PDS", "desc": "Electron Densities from Upper Hybrid and Plasma Wave Frequencies
Sampling: 8S
Provider: PDS", "is_public": "True", "lastModificationDate": "2020-06-22T16:26:43Z", "lastUpdate": "2020-06-22T16:00:16Z", "measurement_type": "ThermalPlasma", "name": "electron density derived @ jupiter", "processing_level": "Calibrated", "sampling": "8S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cassini/RPWS/cass-fpe-jup", "start_date": "2001-01-09T08:00:32Z", "stop_date": "2001-02-18T23:58:31Z", "target": "Jupiter", "xmlid": "cass-fpe-jup"}, "cass_fpe_sat": {"__spz_name__": "electron density derived @ saturn", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "cass-fpe-sat", "att": "auto/cass-fpe-sat", "cass_sat_ne": {"__spz_name__": "density e-", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_sat_ne", "dataset": "cass-fpe-sat", "display_type": "timeseries", "is_public": "True", "name": "density e-", "start_date": "2004-06-30T20:34:57Z", "stop_date": "2017-09-15T10:31:33Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm-3", "xmlid": "cass_sat_ne"}, "cass_sat_nerr": {"__spz_name__": "density error", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_sat_nerr", "dataset": "cass-fpe-sat", "display_type": "timeseries", "is_public": "True", "name": "density error", "start_date": "2004-06-30T20:34:57Z", "stop_date": "2017-09-15T10:31:33Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm-3", "xmlid": "cass_sat_nerr"}, "dataSource": "PDS", "desc": "Electron Densities from Upper Hybrid and Plasma Wave Frequencies
Sampling: 8S
Provider: PDS", "is_public": "True", "lastModificationDate": "2020-06-22T16:27:36Z", "lastUpdate": "2020-06-22T16:00:59Z", "measurement_type": "ThermalPlasma", "name": "electron density derived @ saturn", "processing_level": "Calibrated", "sampling": "8S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cassini/RPWS/cass-fpe-sat", "start_date": "2004-06-30T20:34:57Z", "stop_date": "2017-09-15T10:31:33Z", "target": "Saturn", "xmlid": "cass-fpe-sat"}, "cass_lp_ni": {"__spz_name__": "ion proxy", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "cass-lp-ni", "att": "auto/cass-lp-ni", "cass_lp_ni": {"__spz_name__": "ion density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_lp_ni", "dataset": "cass-lp-ni", "display_type": "timeseries", "is_public": "True", "name": "ion density", "start_date": "2005-02-16T05:10:50Z", "stop_date": "2016-06-29T19:36:05Z", "units": "cm-3", "xmlid": "cass_lp_ni"}, "cass_lp_ni_err": {"__spz_name__": "ion density error", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_lp_ni_err", "dataset": "cass-lp-ni", "display_type": "timeseries", "is_public": "True", "name": "ion density error", "start_date": "2005-02-16T05:10:50Z", "stop_date": "2016-06-29T19:36:05Z", "units": "%", "xmlid": "cass_lp_ni_err"}, "dataSource": "IRAP", "desc": "Langmuir Probe : ion density proxy
MinSampling: 24S; MaxSampling: 1H
Provider: IRAP", "is_public": "True", "lastModificationDate": "2017-10-06T16:25:04Z", "lastUpdate": "2017-10-06T16:23:53Z", "maxSampling": "1H", "measurement_type": "ThermalPlasma", "name": "ion proxy", "processing_level": "Calibrated", "sampling": "24S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cassini/RPWS/cass-lp-ni", "start_date": "2005-02-16T05:10:50Z", "stop_date": "2016-06-29T19:36:05Z", "target": "Saturn", "xmlid": "cass-lp-ni"}, "cass_rpws_encelad": {"__spz_name__": "electron proxy @ enceladus", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "cass-rpws-encelad", "att": "auto/cass-rpws-encelad", "cass_encelad_density": {"__spz_name__": "density e-", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_encelad_density", "dataset": "cass-rpws-encelad", "display_type": "timeseries", "is_public": "True", "name": "density e-", "start_date": "2008-03-12T18:40:37Z", "stop_date": "2008-10-31T17:35:51Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm-3", "xmlid": "cass_encelad_density"}, "cass_encelad_radius": {"__spz_name__": "distance cassini-enceladus", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_encelad_radius", "dataset": "cass-rpws-encelad", "display_type": "timeseries", "is_public": "True", "name": "distance cassini-enceladus", "start_date": "2008-03-12T18:40:37Z", "stop_date": "2008-10-31T17:35:51Z", "ucd": "pos.distance;instr.obsty", "units": "Titan radius", "xmlid": "cass_encelad_radius"}, "cass_encelad_scpot": {"__spz_name__": "s/c potential", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_encelad_scpot", "dataset": "cass-rpws-encelad", "display_type": "timeseries", "is_public": "True", "name": "s/c potential", "start_date": "2008-03-12T18:40:37Z", "stop_date": "2008-10-31T17:35:51Z", "ucd": "phys.potential;phys.electField;instr.obsty", "units": "V", "xmlid": "cass_encelad_scpot"}, "cass_encelad_temperature": {"__spz_name__": "temperature e-", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_encelad_temperature", "dataset": "cass-rpws-encelad", "is_public": "True", "name": "temperature e-", "start_date": "2008-03-12T18:40:37Z", "stop_date": "2008-10-31T17:35:51Z", "ucd": "phys.temperature;phys.atmol.ionStage", "units": "eV", "xmlid": "cass_encelad_temperature"}, "dataSource": "PDS", "desc": "Langmuir Probe : electron proxy @ enceladus
Sampling: 24S
Provider: PDS", "is_public": "True", "lastModificationDate": "2018-01-24T09:53:14Z", "lastUpdate": "2018-01-24T09:52:50Z", "measurement_type": "ThermalPlasma", "name": "electron proxy @ enceladus", "processing_level": "Calibrated", "sampling": "24S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cassini/RPWS/cass-rpws-encelad", "start_date": "2008-03-12T18:40:37Z", "stop_date": "2008-10-31T17:35:51Z", "target": "Saturn", "xmlid": "cass-rpws-encelad"}, "cass_rpws_neproxy": {"__spz_name__": "electron proxy", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "cass-rpws-neproxy", "att": "auto/cass-rpws-neproxy", "cass_neproxy_e": {"__spz_name__": "density e-", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_neproxy_e", "dataset": "cass-rpws-neproxy", "display_type": "timeseries", "is_public": "True", "name": "density e-", "start_date": "2004-08-27T00:03:27Z", "stop_date": "2015-12-31T22:28:25Z", "ucd": "phys.density;phys.electron", "units": "cm-3", "xmlid": "cass_neproxy_e"}, "cass_neproxy_fpot": {"__spz_name__": "floating potential", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_neproxy_fpot", "dataset": "cass-rpws-neproxy", "display_type": "timeseries", "is_public": "True", "name": "floating potential", "start_date": "2004-08-27T00:03:27Z", "stop_date": "2015-12-31T22:28:25Z", "ucd": "phys.potential;phys.electField;instr.obsty", "units": "V", "xmlid": "cass_neproxy_fpot"}, "cass_neproxy_scpot": {"__spz_name__": "s/c potential", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_neproxy_scpot", "dataset": "cass-rpws-neproxy", "display_type": "timeseries", "is_public": "True", "name": "s/c potential", "start_date": "2004-08-27T00:03:27Z", "stop_date": "2015-12-31T22:28:25Z", "ucd": "phys.potential;phys.electField;instr.obsty", "units": "V", "xmlid": "cass_neproxy_scpot"}, "dataSource": "PDS", "desc": "Langmuir Probe : electron proxy
Sampling: 640S
Provider: PDS", "is_public": "True", "lastModificationDate": "2018-01-23T16:20:08Z", "lastUpdate": "2018-01-23T16:12:07Z", "measurement_type": "ThermalPlasma", "name": "electron proxy", "processing_level": "Calibrated", "sampling": "640S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cassini/RPWS/cass-rpws-neproxy", "start_date": "2004-08-27T00:03:27Z", "stop_date": "2015-12-31T22:28:25Z", "target": "Saturn", "xmlid": "cass-rpws-neproxy"}, "cass_rpws_qtn": {"__spz_name__": "qtn", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "cass-rpws-qtn", "att": "auto/cass-rpws-qtn", "cass_qtn_dne": {"__spz_name__": "density e- : error", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_qtn_dne", "dataset": "cass-rpws-qtn", "display_type": "timeseries", "is_public": "True", "name": "density e- : error", "start_date": "2004-06-30T15:05:05Z", "stop_date": "2012-04-15T04:15:42Z", "ucd": "phys.density;phys.electron", "units": "cm-3", "xmlid": "cass_qtn_dne"}, "cass_qtn_dte": {"__spz_name__": "temperature e- : error", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_qtn_dte", "dataset": "cass-rpws-qtn", "display_type": "timeseries", "is_public": "True", "name": "temperature e- : error", "start_date": "2004-06-30T15:05:05Z", "stop_date": "2012-04-15T04:15:42Z", "ucd": "phys.temperature;phys.electron", "units": "eV", "xmlid": "cass_qtn_dte"}, "cass_qtn_ne": {"__spz_name__": "density e-", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_qtn_ne", "dataset": "cass-rpws-qtn", "display_type": "timeseries", "is_public": "True", "name": "density e-", "start_date": "2004-06-30T15:05:05Z", "stop_date": "2012-04-15T04:15:42Z", "ucd": "phys.density;phys.electron", "units": "cm-3", "xmlid": "cass_qtn_ne"}, "cass_qtn_qfte": {"__spz_name__": "quality flag", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_qtn_qfte", "dataset": "cass-rpws-qtn", "display_type": "timeseries", "is_public": "True", "name": "quality flag", "start_date": "2004-06-30T15:05:05Z", "stop_date": "2012-04-15T04:15:42Z", "ucd": "meta.code.qual", "xmlid": "cass_qtn_qfte"}, "cass_qtn_te": {"__spz_name__": "temperature e-", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_qtn_te", "dataset": "cass-rpws-qtn", "display_type": "timeseries", "is_public": "True", "name": "temperature e-", "start_date": "2004-06-30T15:05:05Z", "stop_date": "2012-04-15T04:15:42Z", "ucd": "phys.temperature;phys.electron", "units": "eV", "xmlid": "cass_qtn_te"}, "dataSource": "LESIA-OBSPM", "desc": "quasi thermal noise
Sampling: 8S
Provider: LESIA-OBSPM", "is_public": "True", "lastModificationDate": "2014-11-17T13:48:27Z", "lastUpdate": "2014-11-17T13:40:57Z", "measurement_type": "ThermalPlasma", "name": "qtn", "processing_level": "Calibrated", "sampling": "8S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cassini/RPWS/cass-rpws-qtn", "start_date": "2004-06-30T15:05:05Z", "stop_date": "2012-04-15T04:15:42Z", "target": "Saturn", "xmlid": "cass-rpws-qtn"}, "cass_rpws_saturn": {"__spz_name__": "electron proxy @ saturn", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "cass-rpws-saturn", "att": "auto/cass-rpws-saturn", "cass_saturn_density": {"__spz_name__": "density e-", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_saturn_density", "dataset": "cass-rpws-saturn", "display_type": "timeseries", "is_public": "True", "name": "density e-", "start_date": "2004-12-14T00:02:06Z", "stop_date": "2016-01-30T16:04:08Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm-3", "xmlid": "cass_saturn_density"}, "cass_saturn_radius": {"__spz_name__": "distance cassini-saturn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_saturn_radius", "dataset": "cass-rpws-saturn", "display_type": "timeseries", "is_public": "True", "name": "distance cassini-saturn", "start_date": "2004-12-14T00:02:06Z", "stop_date": "2016-01-30T16:04:08Z", "ucd": "pos.distance;instr.obsty", "units": "Titan radius", "xmlid": "cass_saturn_radius"}, "cass_saturn_scpot": {"__spz_name__": "s/c potential", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_saturn_scpot", "dataset": "cass-rpws-saturn", "display_type": "timeseries", "is_public": "True", "name": "s/c potential", "start_date": "2004-12-14T00:02:06Z", "stop_date": "2016-01-30T16:04:08Z", "ucd": "phys.potential;phys.electField;instr.obsty", "units": "V", "xmlid": "cass_saturn_scpot"}, "cass_saturn_temperature": {"__spz_name__": "temperature e-", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_saturn_temperature", "dataset": "cass-rpws-saturn", "is_public": "True", "name": "temperature e-", "start_date": "2004-12-14T00:02:06Z", "stop_date": "2016-01-30T16:04:08Z", "ucd": "phys.temperature;phys.atmol.ionStage", "units": "eV", "xmlid": "cass_saturn_temperature"}, "dataSource": "PDS", "desc": "Langmuir Probe : electron proxy @ saturn
Sampling: 600S
Provider: PDS", "is_public": "True", "lastModificationDate": "2018-01-23T18:02:15Z", "lastUpdate": "2018-01-23T18:01:52Z", "measurement_type": "ThermalPlasma", "name": "electron proxy @ saturn", "processing_level": "Calibrated", "sampling": "600S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cassini/RPWS/cass-rpws-saturn", "start_date": "2004-12-14T00:02:06Z", "stop_date": "2016-01-30T16:04:08Z", "target": "Saturn", "xmlid": "cass-rpws-saturn"}, "cass_rpws_skr": {"__spz_name__": "skr", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "cass-rpws-skr", "att": "auto/cass-rpws-skr", "dataSource": "LESIA-OBSPM", "desc": "saturn kilometric radiation
Sampling: 180S
Provider: LESIA-OBSPM", "is_public": "True", "lastModificationDate": "2018-06-08T19:40:18Z", "lastUpdate": "2018-06-08T19:40:16Z", "measurement_type": "Waves", "name": "skr", "processing_level": "Calibrated", "sampling": "180S", "skr_e": {"__spz_name__": "total emitted power", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "skr_e", "dataset": "cass-rpws-skr", "description": "SKR total emitted power", "display_type": "timeseries", "is_public": "True", "name": "total emitted power", "size": "4", "skr_e0": {"__spz_name__": "RH:100-400kHz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "skr_e(0)", "dataset": "cass-rpws-skr", "index1": "0", "is_public": "True", "name": "RH:100-400kHz", "parameter": "skr_e", "start_date": "2003-01-01T00:00:00Z", "stop_date": "2017-09-15T23:59:59Z", "xmlid": "skr_e(0)"}, "skr_e1": {"__spz_name__": "LH:100-400kHz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "skr_e(1)", "dataset": "cass-rpws-skr", "index1": "1", "is_public": "True", "name": "LH:100-400kHz", "parameter": "skr_e", "start_date": "2003-01-01T00:00:00Z", "stop_date": "2017-09-15T23:59:59Z", "xmlid": "skr_e(1)"}, "skr_e2": {"__spz_name__": "RH:10-1000kHz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "skr_e(2)", "dataset": "cass-rpws-skr", "index1": "2", "is_public": "True", "name": "RH:10-1000kHz", "parameter": "skr_e", "start_date": "2003-01-01T00:00:00Z", "stop_date": "2017-09-15T23:59:59Z", "xmlid": "skr_e(2)"}, "skr_e3": {"__spz_name__": "LH:10-1000kHz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "skr_e(3)", "dataset": "cass-rpws-skr", "index1": "3", "is_public": "True", "name": "LH:10-1000kHz", "parameter": "skr_e", "start_date": "2003-01-01T00:00:00Z", "stop_date": "2017-09-15T23:59:59Z", "xmlid": "skr_e(3)"}, "start_date": "2003-01-01T00:00:00Z", "stop_date": "2017-09-15T23:59:59Z", "ucd": "phys.flux;em.radio", "units": "W/sr", "xmlid": "skr_e"}, "skr_lh": {"__spz_name__": "flux LH", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "skr_lh", "dataset": "cass-rpws-skr", "description": "SKR flux densities in Left-Hand Circular polarization", "display_type": "spectrogram", "is_public": "True", "name": "flux LH", "start_date": "2003-01-01T00:00:00Z", "stop_date": "2017-09-15T23:59:59Z", "ucd": "phys.flux;phys.polarization.circular.LL;phys.electField;em.radio", "units": "W/m\u00b2/Hz", "xmlid": "skr_lh"}, "skr_rh": {"__spz_name__": "flux RH", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "skr_rh", "dataset": "cass-rpws-skr", "description": "SKR flux densities in Right-Hand Circular polarization", "display_type": "spectrogram", "is_public": "True", "name": "flux RH", "start_date": "2003-01-01T00:00:00Z", "stop_date": "2017-09-15T23:59:59Z", "ucd": "phys.flux;phys.polarization.circular.RR;phys.electField;em.radio", "units": "W/m\u00b2/Hz", "xmlid": "skr_rh"}, "skr_v": {"__spz_name__": "polarisation", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "skr_v", "dataset": "cass-rpws-skr", "description": "SKR Circular polarization degree", "display_type": "spectrogram", "is_public": "True", "name": "polarisation", "start_date": "2003-01-01T00:00:00Z", "stop_date": "2017-09-15T23:59:59Z", "ucd": "phys.polarization.circular;phys.electField;em.radio", "xmlid": "skr_v"}, "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cassini/RPWS/cass-rpws-skr", "start_date": "2003-01-01T00:00:00Z", "stop_date": "2017-09-15T23:59:59Z", "target": "Saturn", "xmlid": "cass-rpws-skr"}, "cass_rpws_titan": {"__spz_name__": "electron proxy @ titan", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "cass-rpws-titan", "att": "auto/cass-rpws-titan", "cass_titan_density": {"__spz_name__": "density e-", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_titan_density", "dataset": "cass-rpws-titan", "display_type": "timeseries", "is_public": "True", "name": "density e-", "start_date": "2004-10-26T15:08:31Z", "stop_date": "2016-02-17T00:01:09Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm-3", "xmlid": "cass_titan_density"}, "cass_titan_radius": {"__spz_name__": "distance cassini-titan", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_titan_radius", "dataset": "cass-rpws-titan", "display_type": "timeseries", "is_public": "True", "name": "distance cassini-titan", "start_date": "2004-10-26T15:08:31Z", "stop_date": "2016-02-17T00:01:09Z", "ucd": "pos.distance;instr.obsty", "units": "Titan radius", "xmlid": "cass_titan_radius"}, "cass_titan_scpot": {"__spz_name__": "s/c potential", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_titan_scpot", "dataset": "cass-rpws-titan", "display_type": "timeseries", "is_public": "True", "name": "s/c potential", "start_date": "2004-10-26T15:08:31Z", "stop_date": "2016-02-17T00:01:09Z", "ucd": "phys.potential;phys.electField;instr.obsty", "units": "V", "xmlid": "cass_titan_scpot"}, "cass_titan_temperature": {"__spz_name__": "temperature e-", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_titan_temperature", "dataset": "cass-rpws-titan", "is_public": "True", "name": "temperature e-", "start_date": "2004-10-26T15:08:31Z", "stop_date": "2016-02-17T00:01:09Z", "ucd": "phys.temperature;phys.atmol.ionStage", "units": "eV", "xmlid": "cass_titan_temperature"}, "dataSource": "PDS", "desc": "Langmuir Probe : electron proxy @ titan
Sampling: 24S
Provider: PDS", "is_public": "True", "lastModificationDate": "2018-01-23T17:44:14Z", "lastUpdate": "2018-01-23T17:25:30Z", "measurement_type": "ThermalPlasma", "name": "electron proxy @ titan", "processing_level": "Calibrated", "sampling": "24S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cassini/RPWS/cass-rpws-titan", "start_date": "2004-10-26T15:08:31Z", "stop_date": "2016-02-17T00:01:09Z", "target": "Saturn", "xmlid": "cass-rpws-titan"}, "cass_rpws_ui": {"__spz_name__": "u-i", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "cass-rpws-ui", "att": "auto/cass-rpws-ui", "cass_ui_curr": {"__spz_name__": "current", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_ui_curr", "dataset": "cass-rpws-ui", "display_type": "timeseries", "is_public": "True", "name": "current", "start_date": "1997-10-25T00:09:18Z", "stop_date": "2014-04-29T23:59:23Z", "units": "A", "xmlid": "cass_ui_curr"}, "cass_ui_pot": {"__spz_name__": "potential", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_ui_pot", "dataset": "cass-rpws-ui", "display_type": "timeseries", "is_public": "True", "name": "potential", "start_date": "1997-10-25T00:09:18Z", "stop_date": "2014-04-29T23:59:23Z", "ucd": "phys.potential;phys.electField;instr.obsty", "units": "V", "xmlid": "cass_ui_pot"}, "dataSource": "PDS", "desc": "Langmuir Probe : voltage - current
Sampling: 0.001S
Provider: PDS", "is_public": "True", "lastModificationDate": "2014-11-18T12:53:08Z", "lastUpdate": "2014-11-18T11:42:57Z", "measurement_type": "Waves", "name": "u-i", "processing_level": "Calibrated", "sampling": "0.001S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cassini/RPWS/cass-rpws-ui", "start_date": "1997-10-25T00:09:18Z", "stop_date": "2014-04-29T23:59:23Z", "target": "Saturn", "xmlid": "cass-rpws-ui"}, "cass_skr_phase": {"__spz_name__": "skr phase", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "cass-skr-phase", "att": "auto/cass-skr-phase", "cass_skr_driftn": {"__spz_name__": "drift north", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_skr_driftn", "dataset": "cass-skr-phase", "description": "Northern SKR phase drift from fixed 10.6h period)", "display_type": "timeseries", "is_public": "True", "name": "drift north", "start_date": "2004-01-01T00:00:00Z", "stop_date": "2010-07-12T00:00:00Z", "ucd": "time.phase", "units": "deg", "xmlid": "cass_skr_driftn"}, "cass_skr_drifts": {"__spz_name__": "drift south", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_skr_drifts", "dataset": "cass-skr-phase", "description": "Southern SKR phase drift from fixed 10.7928h period)", "display_type": "timeseries", "is_public": "True", "name": "drift south", "start_date": "2004-01-01T00:00:00Z", "stop_date": "2010-07-12T00:00:00Z", "ucd": "time.phase", "units": "deg", "xmlid": "cass_skr_drifts"}, "cass_skr_phin": {"__spz_name__": "phi north", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_skr_phin", "dataset": "cass-skr-phase", "description": "Northern SKR phase", "display_type": "timeseries", "is_public": "True", "name": "phi north", "start_date": "2004-01-01T00:00:00Z", "stop_date": "2010-07-12T00:00:00Z", "ucd": "time.phase", "units": "deg", "xmlid": "cass_skr_phin"}, "cass_skr_phis": {"__spz_name__": "phi south", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_skr_phis", "dataset": "cass-skr-phase", "description": "Southern SKR phase", "display_type": "timeseries", "is_public": "True", "name": "phi south", "start_date": "2004-01-01T00:00:00Z", "stop_date": "2010-07-12T00:00:00Z", "ucd": "time.phase", "units": "deg", "xmlid": "cass_skr_phis"}, "cass_skr_pn": {"__spz_name__": "period north", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_skr_pn", "dataset": "cass-skr-phase", "description": "Northern SKR dominant period", "display_type": "timeseries", "is_public": "True", "name": "period north", "start_date": "2004-01-01T00:00:00Z", "stop_date": "2010-07-12T00:00:00Z", "ucd": "time.period", "units": "hours", "xmlid": "cass_skr_pn"}, "cass_skr_ps": {"__spz_name__": "period south", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_skr_ps", "dataset": "cass-skr-phase", "description": "Southern SKR dominant period", "display_type": "timeseries", "is_public": "True", "name": "period south", "start_date": "2004-01-01T00:00:00Z", "stop_date": "2010-07-12T00:00:00Z", "ucd": "time.period", "units": "hours", "xmlid": "cass_skr_ps"}, "dataSource": "LESIA-OBSPM", "desc": "southern and northern skr phase systems
Sampling: 180S
Provider: LESIA-OBSPM", "is_public": "True", "lastModificationDate": "2012-03-06T22:48:40Z", "lastUpdate": "2012-03-06T22:48:42Z", "measurement_type": "Waves", "name": "skr phase", "processing_level": "Calibrated", "sampling": "180S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cassini/RPWS/cass-skr-phase", "start_date": "2004-01-01T00:00:00Z", "stop_date": "2010-07-12T00:00:00Z", "target": "Saturn", "xmlid": "cass-skr-phase"}, "desc": "Radio and Plasma Wave Science
Antenna", "is_public": "True", "name": "RPWS", "xmlid": "Cassini_rpws"}, "__spz_name__": "Cassini", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Cassini", "att": "auto/Cassini", "desc": "Cassini-Huygens, NASA/ESA mission to Saturn
1997-10-15T00:00:00 - 2017-09-15T00:00:00
Saturn arrival : 2004-07-01", "is_public": "True", "name": "Cassini", "rank": "91", "target": "Saturn", "xmlid": "Cassini"}, "Cluster": {"Cluster_1": {"Analytical_Models": {"__spz_name__": "Analytical Models", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Cluster1_models", "att": "auto/Cluster1_models", "c1_msph_models": {"PriorID": "clust1-orb-all", "__spz_name__": "distance to neutral sheet", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "c1-msph-models", "att": "auto/c1-msph-models", "dataSource": "IRAP", "desc": "Distance to model neutral sheet
Sampling: 1M
Provider: IRAP", "dz_fairfield70_c1_xyz_gse": {"__spz_name__": "dZ Fairfield70", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "dz_fairfield70_c1_xyz_gse", "dataset": "c1-msph-models", "description": "Distance (Re) from s/c location to Fairfield1970 neutral sheet position. Depends on spacecraft location in SM coordinates and dipole tilt angle. Valid for Ysm less than 15 Re.", "is_public": "True", "name": "dZ Fairfield70", "predefined": "1", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-10-02T00:00:00Z", "template": "dz_fairfield70_##ORBIT##", "units": "Re", "xmlid": "dz_fairfield70_c1_xyz_gse"}, "dz_fairfield80_c1_xyz_gse": {"__spz_name__": "dZ Fairfield80", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "dz_fairfield80_c1_xyz_gse", "dataset": "c1-msph-models", "description": "Distance (Re) from s/c location to Fairfield1980 neutral sheet position. Depends on spacecraft location in SM coordinates and dipole tilt angle.", "is_public": "True", "name": "dZ Fairfield80", "predefined": "1", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-10-02T00:00:00Z", "template": "dz_fairfield80_##ORBIT##", "units": "Re", "xmlid": "dz_fairfield80_c1_xyz_gse"}, "is_public": "True", "lastModificationDate": "2024-10-06T22:08:27Z", "lastUpdate": "2024-10-06T22:08:27Z", "measurement_type": "Ephemeris", "name": "distance to neutral sheet", "processing_level": "Calibrated", "sampling": "1M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cluster/Cluster1/Models/c1-msph-models", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-10-02T00:00:00Z", "target": "Earth", "xmlid": "c1-msph-models"}, "c1_t96_model": {"PriorID": "clust1-orb-all", "__spz_name__": "T96 field model", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "c1-t96-model", "att": "auto/c1-t96-model", "b_t96gse_c1_xyz_gse": {"__spz_name__": "b_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_t96gse_c1_xyz_gse", "b_t96gse_c1_xyz_gse0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gse_c1_xyz_gse(0)", "dataset": "c1-t96-model", "index1": "0", "is_public": "True", "name": "bx", "parameter": "b_t96gse_c1_xyz_gse", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-10-02T00:00:00Z", "xmlid": "b_t96gse_c1_xyz_gse(0)"}, "b_t96gse_c1_xyz_gse1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gse_c1_xyz_gse(1)", "dataset": "c1-t96-model", "index1": "1", "is_public": "True", "name": "by", "parameter": "b_t96gse_c1_xyz_gse", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-10-02T00:00:00Z", "xmlid": "b_t96gse_c1_xyz_gse(1)"}, "b_t96gse_c1_xyz_gse2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gse_c1_xyz_gse(2)", "dataset": "c1-t96-model", "index1": "2", "is_public": "True", "name": "bz", "parameter": "b_t96gse_c1_xyz_gse", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-10-02T00:00:00Z", "xmlid": "b_t96gse_c1_xyz_gse(2)"}, "dataset": "c1-t96-model", "is_public": "True", "name": "b_gse", "predefined": "1", "size": "3", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-10-02T00:00:00Z", "template": "b_t96gse_##ORBIT##", "units": "nT", "xmlid": "b_t96gse_c1_xyz_gse"}, "b_t96gsm_c1_xyz_gse": {"__spz_name__": "b_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_t96gsm_c1_xyz_gse", "b_t96gsm_c1_xyz_gse0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gsm_c1_xyz_gse(0)", "dataset": "c1-t96-model", "index1": "0", "is_public": "True", "name": "bx", "parameter": "b_t96gsm_c1_xyz_gse", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-10-02T00:00:00Z", "xmlid": "b_t96gsm_c1_xyz_gse(0)"}, "b_t96gsm_c1_xyz_gse1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gsm_c1_xyz_gse(1)", "dataset": "c1-t96-model", "index1": "1", "is_public": "True", "name": "by", "parameter": "b_t96gsm_c1_xyz_gse", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-10-02T00:00:00Z", "xmlid": "b_t96gsm_c1_xyz_gse(1)"}, "b_t96gsm_c1_xyz_gse2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gsm_c1_xyz_gse(2)", "dataset": "c1-t96-model", "index1": "2", "is_public": "True", "name": "bz", "parameter": "b_t96gsm_c1_xyz_gse", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-10-02T00:00:00Z", "xmlid": "b_t96gsm_c1_xyz_gse(2)"}, "dataset": "c1-t96-model", "is_public": "True", "name": "b_gsm", "predefined": "1", "size": "3", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-10-02T00:00:00Z", "template": "b_t96gsm_##ORBIT##", "units": "nT", "xmlid": "b_t96gsm_c1_xyz_gse"}, "b_t96tot_c1_xyz_gse": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_t96tot_c1_xyz_gse", "dataset": "c1-t96-model", "description": "Average Magnetic Field magnitude", "display_type": "timeseries", "is_public": "True", "name": "|b|", "predefined": "1", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-10-02T00:00:00Z", "template": "b_t96tot_##ORBIT##", "ucd": "phys.magField", "units": "nT", "xmlid": "b_t96tot_c1_xyz_gse"}, "dataSource": "IRAP", "desc": "Tsyganenko96 geomagnetospheric magnetic field model
Sampling: 1M
Provider: IRAP", "is_public": "True", "lastModificationDate": "2024-10-06T22:08:27Z", "lastUpdate": "2024-10-06T22:08:27Z", "measurement_type": "MagneticField", "name": "T96 field model", "processing_level": "Calibrated", "sampling": "1M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cluster/Cluster1/Models/c1-t96-model", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-10-02T00:00:00Z", "target": "Earth", "xmlid": "c1-t96-model"}, "desc": "", "is_public": "True", "name": "Analytical Models", "xmlid": "Cluster1_models"}, "CIS_CODIF": {"__spz_name__": "CIS-CODIF", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Cluster1_cis-codif", "att": "auto/Cluster1_cis-codif", "clust1_cis_prp": {"__spz_name__": "prime parameters", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "clust1-cis-prp", "att": "auto/clust1-cis-prp", "c1_h_dens": {"__spz_name__": "h+ density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c1_h_dens", "dataset": "clust1-cis-prp", "description": "Cluster II Rumba Prime Parameter Cluster Ion Spectrometry CODIF H number density at spin time resolution", "display_type": "timeseries", "is_public": "True", "name": "h+ density", "start_date": "2001-01-10T14:54:04Z", "stop_date": "2018-12-24T15:46:53Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm\u207b\u00b3", "xmlid": "c1_h_dens"}, "c1_h_t": {"__spz_name__": "h+ temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c1_h_t", "c1_h_t0": {"__spz_name__": "t_para", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_h_t(0)", "dataset": "clust1-cis-prp", "index1": "0", "is_public": "True", "name": "t_para", "parameter": "c1_h_t", "start_date": "2001-01-10T14:54:04Z", "stop_date": "2018-12-24T15:46:53Z", "xmlid": "c1_h_t(0)"}, "c1_h_t1": {"__spz_name__": "t_perp", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_h_t(1)", "dataset": "clust1-cis-prp", "index1": "1", "is_public": "True", "name": "t_perp", "parameter": "c1_h_t", "start_date": "2001-01-10T14:54:04Z", "stop_date": "2018-12-24T15:46:53Z", "xmlid": "c1_h_t(1)"}, "dataset": "clust1-cis-prp", "display_type": "timeseries", "is_public": "True", "name": "h+ temperature", "size": "2", "start_date": "2001-01-10T14:54:04Z", "stop_date": "2018-12-24T15:46:53Z", "ucd": "phys.temperature;phys.atmol.ionStage", "units": "eV", "xmlid": "c1_h_t"}, "c1_h_v": {"__spz_name__": "h+ v_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c1_h_v", "c1_h_v0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_h_v(0)", "dataset": "clust1-cis-prp", "index1": "0", "is_public": "True", "name": "vx", "parameter": "c1_h_v", "start_date": "2001-01-10T14:54:04Z", "stop_date": "2018-12-24T15:46:53Z", "xmlid": "c1_h_v(0)"}, "c1_h_v1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_h_v(1)", "dataset": "clust1-cis-prp", "index1": "1", "is_public": "True", "name": "vy", "parameter": "c1_h_v", "start_date": "2001-01-10T14:54:04Z", "stop_date": "2018-12-24T15:46:53Z", "xmlid": "c1_h_v(1)"}, "c1_h_v2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_h_v(2)", "dataset": "clust1-cis-prp", "index1": "2", "is_public": "True", "name": "vz", "parameter": "c1_h_v", "start_date": "2001-01-10T14:54:04Z", "stop_date": "2018-12-24T15:46:53Z", "xmlid": "c1_h_v(2)"}, "dataset": "clust1-cis-prp", "description": "Cluster II Rumba Prime Parameter Cluster Ion Spectrometry H velocity at spin time resolution", "display_type": "timeseries", "is_public": "True", "name": "h+ v_gse", "size": "3", "start_date": "2001-01-10T14:54:04Z", "stop_date": "2018-12-24T15:46:53Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "c1_h_v"}, "c1_h_v_gsm": {"__spz_name__": "h+ v_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c1_h_v_gsm", "c1_h_v_gsm0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_h_v_gsm(0)", "dataset": "clust1-cis-prp", "index1": "0", "is_public": "True", "name": "vx", "parameter": "c1_h_v_gsm", "start_date": "2001-01-10T14:54:04Z", "stop_date": "2018-12-24T15:46:53Z", "xmlid": "c1_h_v_gsm(0)"}, "c1_h_v_gsm1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_h_v_gsm(1)", "dataset": "clust1-cis-prp", "index1": "1", "is_public": "True", "name": "vy", "parameter": "c1_h_v_gsm", "start_date": "2001-01-10T14:54:04Z", "stop_date": "2018-12-24T15:46:53Z", "xmlid": "c1_h_v_gsm(1)"}, "c1_h_v_gsm2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_h_v_gsm(2)", "dataset": "clust1-cis-prp", "index1": "2", "is_public": "True", "name": "vz", "parameter": "c1_h_v_gsm", "start_date": "2001-01-10T14:54:04Z", "stop_date": "2018-12-24T15:46:53Z", "xmlid": "c1_h_v_gsm(2)"}, "dataset": "clust1-cis-prp", "description": "Cluster II Rumba Prime Parameter Cluster Ion Spectrometry H velocity at spin time resolution", "display_type": "timeseries", "is_public": "True", "name": "h+ v_gsm", "size": "3", "start_date": "2001-01-10T14:54:04Z", "stop_date": "2018-12-24T15:46:53Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "c1_h_v_gsm"}, "c1_h_vtot": {"__spz_name__": "h+ |v|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c1_h_vtot", "dataset": "clust1-cis-prp", "description": "Cluster Rumba Fluxgate Magnetometer Velocity magnitude at spin time resolution", "display_type": "timeseries", "is_public": "True", "name": "h+ |v|", "start_date": "2001-01-10T14:54:04Z", "stop_date": "2018-12-24T15:46:53Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "nT", "xmlid": "c1_h_vtot"}, "c1_o_dens": {"__spz_name__": "o+ density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c1_o_dens", "dataset": "clust1-cis-prp", "description": "Cluster II Rumba Prime Parameter Cluster Ion Spectrometry CODIF O number density at spin time resolution", "display_type": "timeseries", "is_public": "True", "name": "o+ density", "start_date": "2001-01-10T14:54:04Z", "stop_date": "2018-12-24T15:46:53Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm\u207b\u00b3", "xmlid": "c1_o_dens"}, "dataSource": "CSA", "desc": "CIS-CODIF Prime (Preliminary) Parameters
Sampling: 4S
Provider: CSA", "is_public": "True", "lastModificationDate": "2024-10-06T22:08:47Z", "lastUpdate": "2024-08-26T19:21:20Z", "measurement_type": "IonComposition", "name": "prime parameters", "processing_level": "Calibrated", "sampling": "4S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cluster/Cluster1/CIS-CODIF/clust1-cis-prp", "start_date": "2001-01-10T14:54:04Z", "stop_date": "2018-12-24T15:46:53Z", "target": "Earth.Magnetosheath", "xmlid": "clust1-cis-prp"}, "desc": "Cluster Ion Spectrometry : Composition Distribution Function
MassSpectrometer", "is_public": "True", "name": "CIS-CODIF", "xmlid": "Cluster1_cis-codif"}, "CIS_HIA": {"__spz_name__": "CIS-HIA", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Cluster1_cis-hia", "att": "auto/Cluster1_cis-hia", "clust1_hia_mom": {"__spz_name__": "ion moments", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "clust1-hia-mom", "att": "auto/clust1-hia-mom", "c1_hia_dens": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c1_hia_dens", "dataset": "clust1-hia-mom", "description": "Hot ion number density at spin time resolution", "display_type": "timeseries", "is_public": "True", "name": "density", "start_date": "2001-01-10T16:57:51Z", "stop_date": "2020-06-16T19:03:12Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm\u207b\u00b3", "xmlid": "c1_hia_dens"}, "c1_hia_press": {"__spz_name__": "pressure total", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c1_hia_press", "dataset": "clust1-hia-mom", "description": "Hot ion pressure (scalar) at spin time resolution", "display_type": "timeseries", "is_public": "True", "name": "pressure total", "start_date": "2001-01-10T16:57:51Z", "stop_date": "2020-06-16T19:03:12Z", "ucd": "phys.pressure;phys.atmol.ionStage", "units": "nPa", "xmlid": "c1_hia_press"}, "c1_hia_prest": {"__spz_name__": "pressure tensor gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c1_hia_prest", "c1_hia_prest0": {"__spz_name__": "xx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_hia_prest(0)", "dataset": "clust1-hia-mom", "index1": "0", "is_public": "True", "name": "xx", "parameter": "c1_hia_prest", "start_date": "2001-01-10T16:57:51Z", "stop_date": "2020-06-16T19:03:12Z", "xmlid": "c1_hia_prest(0)"}, "c1_hia_prest1": {"__spz_name__": "xy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_hia_prest(1)", "dataset": "clust1-hia-mom", "index1": "1", "is_public": "True", "name": "xy", "parameter": "c1_hia_prest", "start_date": "2001-01-10T16:57:51Z", "stop_date": "2020-06-16T19:03:12Z", "xmlid": "c1_hia_prest(1)"}, "c1_hia_prest2": {"__spz_name__": "xz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_hia_prest(2)", "dataset": "clust1-hia-mom", "index1": "2", "is_public": "True", "name": "xz", "parameter": "c1_hia_prest", "start_date": "2001-01-10T16:57:51Z", "stop_date": "2020-06-16T19:03:12Z", "xmlid": "c1_hia_prest(2)"}, "c1_hia_prest3": {"__spz_name__": "yx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_hia_prest(3)", "dataset": "clust1-hia-mom", "index1": "3", "is_public": "True", "name": "yx", "parameter": "c1_hia_prest", "start_date": "2001-01-10T16:57:51Z", "stop_date": "2020-06-16T19:03:12Z", "xmlid": "c1_hia_prest(3)"}, "c1_hia_prest4": {"__spz_name__": "yy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_hia_prest(4)", "dataset": "clust1-hia-mom", "index1": "4", "is_public": "True", "name": "yy", "parameter": "c1_hia_prest", "start_date": "2001-01-10T16:57:51Z", "stop_date": "2020-06-16T19:03:12Z", "xmlid": "c1_hia_prest(4)"}, "c1_hia_prest5": {"__spz_name__": "yz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_hia_prest(5)", "dataset": "clust1-hia-mom", "index1": "5", "is_public": "True", "name": "yz", "parameter": "c1_hia_prest", "start_date": "2001-01-10T16:57:51Z", "stop_date": "2020-06-16T19:03:12Z", "xmlid": "c1_hia_prest(5)"}, "c1_hia_prest6": {"__spz_name__": "zx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_hia_prest(6)", "dataset": "clust1-hia-mom", "index1": "6", "is_public": "True", "name": "zx", "parameter": "c1_hia_prest", "start_date": "2001-01-10T16:57:51Z", "stop_date": "2020-06-16T19:03:12Z", "xmlid": "c1_hia_prest(6)"}, "c1_hia_prest7": {"__spz_name__": "zy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_hia_prest(7)", "dataset": "clust1-hia-mom", "index1": "7", "is_public": "True", "name": "zy", "parameter": "c1_hia_prest", "start_date": "2001-01-10T16:57:51Z", "stop_date": "2020-06-16T19:03:12Z", "xmlid": "c1_hia_prest(7)"}, "c1_hia_prest8": {"__spz_name__": "zz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_hia_prest(8)", "dataset": "clust1-hia-mom", "index1": "8", "is_public": "True", "name": "zz", "parameter": "c1_hia_prest", "start_date": "2001-01-10T16:57:51Z", "stop_date": "2020-06-16T19:03:12Z", "xmlid": "c1_hia_prest(8)"}, "dataset": "clust1-hia-mom", "description": "Hot ion pressure (tensor) at spin time resolution in GSE", "display_type": "timeseries", "is_public": "True", "name": "pressure tensor gse", "size": "9", "start_date": "2001-01-10T16:57:51Z", "stop_date": "2020-06-16T19:03:12Z", "ucd": "phys.pressure;phys.atmol.ionStage", "units": "nPa", "xmlid": "c1_hia_prest"}, "c1_hia_t": {"__spz_name__": "temperature total", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c1_hia_t", "dataset": "clust1-hia-mom", "description": "Hot ion temperature at spin time resolution", "display_type": "timeseries", "is_public": "True", "name": "temperature total", "start_date": "2001-01-10T16:57:51Z", "stop_date": "2020-06-16T19:03:12Z", "ucd": "phys.temperature;phys.atmol.ionStage", "units": "eV", "xmlid": "c1_hia_t"}, "c1_hia_tpar": {"__spz_name__": "t_para", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c1_hia_tpar", "dataset": "clust1-hia-mom", "description": "Hot ion parallel temperature at spin time resolution", "display_type": "timeseries", "is_public": "True", "name": "t_para", "start_date": "2001-01-10T16:57:51Z", "stop_date": "2020-06-16T19:03:12Z", "ucd": "phys.temperature;phys.atmol.ionStage", "units": "eV", "xmlid": "c1_hia_tpar"}, "c1_hia_tperp": {"__spz_name__": "t_perp", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c1_hia_tperp", "dataset": "clust1-hia-mom", "description": "Hot ion perpendicular temperature at spin time resolution", "display_type": "timeseries", "is_public": "True", "name": "t_perp", "start_date": "2001-01-10T16:57:51Z", "stop_date": "2020-06-16T19:03:12Z", "ucd": "phys.temperature;phys.atmol.ionStage", "units": "eV", "xmlid": "c1_hia_tperp"}, "c1_hia_v": {"__spz_name__": "v_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c1_hia_v", "c1_hia_v0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_hia_v(0)", "dataset": "clust1-hia-mom", "index1": "0", "is_public": "True", "name": "vx", "parameter": "c1_hia_v", "start_date": "2001-01-10T16:57:51Z", "stop_date": "2020-06-16T19:03:12Z", "xmlid": "c1_hia_v(0)"}, "c1_hia_v1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_hia_v(1)", "dataset": "clust1-hia-mom", "index1": "1", "is_public": "True", "name": "vy", "parameter": "c1_hia_v", "start_date": "2001-01-10T16:57:51Z", "stop_date": "2020-06-16T19:03:12Z", "xmlid": "c1_hia_v(1)"}, "c1_hia_v2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_hia_v(2)", "dataset": "clust1-hia-mom", "index1": "2", "is_public": "True", "name": "vz", "parameter": "c1_hia_v", "start_date": "2001-01-10T16:57:51Z", "stop_date": "2020-06-16T19:03:12Z", "xmlid": "c1_hia_v(2)"}, "dataset": "clust1-hia-mom", "description": "Hot ion bulk velocity at spin time resolution in GSE", "display_type": "timeseries", "is_public": "True", "name": "v_gse", "size": "3", "start_date": "2001-01-10T16:57:51Z", "stop_date": "2020-06-16T19:03:12Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "c1_hia_v"}, "c1_hia_v_gsm": {"__spz_name__": "v_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c1_hia_v_gsm", "c1_hia_v_gsm0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_hia_v_gsm(0)", "dataset": "clust1-hia-mom", "index1": "0", "is_public": "True", "name": "vx", "parameter": "c1_hia_v_gsm", "start_date": "2001-01-10T16:57:51Z", "stop_date": "2020-06-16T19:03:12Z", "xmlid": "c1_hia_v_gsm(0)"}, "c1_hia_v_gsm1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_hia_v_gsm(1)", "dataset": "clust1-hia-mom", "index1": "1", "is_public": "True", "name": "vy", "parameter": "c1_hia_v_gsm", "start_date": "2001-01-10T16:57:51Z", "stop_date": "2020-06-16T19:03:12Z", "xmlid": "c1_hia_v_gsm(1)"}, "c1_hia_v_gsm2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_hia_v_gsm(2)", "dataset": "clust1-hia-mom", "index1": "2", "is_public": "True", "name": "vz", "parameter": "c1_hia_v_gsm", "start_date": "2001-01-10T16:57:51Z", "stop_date": "2020-06-16T19:03:12Z", "xmlid": "c1_hia_v_gsm(2)"}, "dataset": "clust1-hia-mom", "description": "Hot ion bulk velocity at spin time resolution in GSM", "display_type": "timeseries", "is_public": "True", "name": "v_gsm", "size": "3", "start_date": "2001-01-10T16:57:51Z", "stop_date": "2020-06-16T19:03:12Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "c1_hia_v_gsm"}, "c1_hia_vtot": {"__spz_name__": "|v|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c1_hia_vtot", "dataset": "clust1-hia-mom", "description": "Hot ion bulk velocity magnitude at spin time resolution", "display_type": "timeseries", "is_public": "True", "name": "|v|", "start_date": "2001-01-10T16:57:51Z", "stop_date": "2020-06-16T19:03:12Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "c1_hia_vtot"}, "dataSource": "CSA", "desc": "HIA onboard hot ion moments
Sampling: 4S
Provider: CSA", "is_public": "True", "lastModificationDate": "2024-10-06T22:10:48Z", "lastUpdate": "2024-08-27T11:19:33Z", "measurement_type": "ThermalPlasma", "name": "ion moments", "processing_level": "Calibrated", "sampling": "4S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cluster/Cluster1/CIS-HIA/clust1-hia-mom", "start_date": "2001-01-10T16:57:51Z", "stop_date": "2020-06-16T19:03:12Z", "target": "Earth.Magnetosheath", "xmlid": "clust1-hia-mom"}, "clust1_hia_pad": {"__spz_name__": "pitch-angle/energy distribution", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "clust1-hia-pad", "att": "auto/clust1-hia-pad", "c1_hia_pad": {"__spz_name__": "ion flux : 2D pa/energy", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c1_hia_pad", "dataset": "clust1-hia-pad", "description": "Hot ion pitch angle distribution", "display_type": "spectrogram", "is_public": "True", "name": "ion flux : 2D pa/energy", "start_date": "2001-01-31T01:02:11Z", "stop_date": "2020-06-16T19:03:48Z", "units": "1/(cm\u00b2-s-sr-keV)", "xmlid": "c1_hia_pad"}, "c1_hia_pad_angle": {"__spz_name__": "ion flux : sum over energy", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c1_hia_pad_angle", "dataset": "clust1-hia-pad", "description": "Hot ion pitch angle distribution (sum over all energy bins)", "display_type": "spectrogram", "is_public": "True", "name": "ion flux : sum over energy", "start_date": "2001-01-31T01:02:11Z", "stop_date": "2020-06-16T19:03:48Z", "units": "1/(cm\u00b2-s-sr-keV)", "xmlid": "c1_hia_pad_angle"}, "c1_hia_pad_omni": {"__spz_name__": "ion flux : omni", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c1_hia_pad_omni", "dataset": "clust1-hia-pad", "description": "Hot ion pitch angle distribution (sum over all angle bins)", "display_type": "spectrogram", "is_public": "True", "name": "ion flux : omni", "start_date": "2001-01-31T01:02:11Z", "stop_date": "2020-06-16T19:03:48Z", "units": "1/(cm\u00b2-s-sr-keV)", "xmlid": "c1_hia_pad_omni"}, "dataSource": "CSA", "desc": "2D Pitch-Angle/Energy distribution
Sampling: 4S
Provider: CSA", "is_public": "True", "lastModificationDate": "2024-10-06T22:11:54Z", "lastUpdate": "2024-08-28T18:10:07Z", "measurement_type": "ThermalPlasma", "name": "pitch-angle/energy distribution", "processing_level": "Calibrated", "sampling": "4S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cluster/Cluster1/CIS-HIA/clust1-hia-pad", "start_date": "2001-01-31T01:02:11Z", "stop_date": "2020-06-16T19:03:48Z", "target": "Earth.Magnetosheath", "xmlid": "clust1-hia-pad"}, "desc": "Cluster Ion Spectrometry : Hot Ion Analyser
ElectrostaticAnalyser", "is_public": "True", "name": "CIS-HIA", "xmlid": "Cluster1_cis-hia"}, "EFW": {"__spz_name__": "EFW", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Cluster1_efw", "att": "auto/Cluster1_efw", "clust1_efw_ppp": {"__spz_name__": "prime parameters", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "clust1-efw-ppp", "att": "auto/clust1-efw-ppp", "c1_edusk": {"__spz_name__": "e_dusk", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c1_edusk", "dataset": "clust1-efw-ppp", "description": "Duskward Electric Field, In spin plane perp to x-gse at spin time resolution (4s)", "display_type": "timeseries", "is_public": "True", "name": "e_dusk", "start_date": "2001-01-01T00:00:02Z", "stop_date": "2019-09-30T23:59:58Z", "ucd": "phys.electField", "units": "mV/m", "xmlid": "c1_edusk"}, "c1_efw_f1": {"__spz_name__": "e_spectral_density_F1", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c1_efw_f1", "dataset": "clust1-efw-ppp", "description": "E-field spectral density [0.3-10] Hz, from EFW waveform at spin time resolution (4s)", "display_type": "timeseries", "is_public": "True", "name": "e_spectral_density_F1", "start_date": "2001-01-01T00:00:02Z", "stop_date": "2019-09-30T23:59:58Z", "ucd": "phys.density", "units": "(V/m)\u00b2/Hz", "xmlid": "c1_efw_f1"}, "c1_efw_f2": {"__spz_name__": "e_spectral_density_F2", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c1_efw_f2", "dataset": "clust1-efw-ppp", "description": "E-field spectral density [10-180] Hz, from EFW waveform at spin time resolution (4s)", "display_type": "timeseries", "is_public": "True", "name": "e_spectral_density_F2", "start_date": "2001-01-01T00:00:02Z", "stop_date": "2019-09-30T23:59:58Z", "ucd": "phys.density", "units": "(V/m)\u00b2/Hz", "xmlid": "c1_efw_f2"}, "c1_pot": {"__spz_name__": "s/c pot", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c1_pot", "dataset": "clust1-efw-ppp", "description": "Probe potential, Relative to Spacecraft at spin time resolution (4s)", "display_type": "timeseries", "is_public": "True", "name": "s/c pot", "start_date": "2001-01-01T00:00:02Z", "stop_date": "2019-09-30T23:59:58Z", "ucd": "phys.potential;phys.electField;instr.obsty", "units": "V", "xmlid": "c1_pot"}, "dataSource": "CSA", "desc": "Cluster 1 Prime Parameters EFW Data
Sampling: 4S
Provider: CSA", "is_public": "True", "lastModificationDate": "2024-10-06T22:09:10Z", "lastUpdate": "2024-08-29T21:58:46Z", "measurement_type": "ElectricField", "name": "prime parameters", "processing_level": "Calibrated", "sampling": "4S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cluster/Cluster1/EFW/clust1-efw-ppp", "start_date": "2001-01-01T00:00:02Z", "stop_date": "2019-09-30T23:59:58Z", "target": "Earth.Magnetosheath", "xmlid": "clust1-efw-ppp"}, "desc": "Electric Field and Waves
LongWire", "electric_field": {"__spz_name__": "electric field", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "c1-efw-efield", "clust1_efw_gse": {"__spz_name__": "3D gse", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "clust1-efw-gse", "att": "auto/clust1-efw-gse", "c1_e_gse": {"__spz_name__": "e_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c1_e_gse", "c1_e_gse0": {"__spz_name__": "ex", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_e_gse(0)", "dataset": "clust1-efw-gse", "index1": "0", "is_public": "True", "name": "ex", "parameter": "c1_e_gse", "start_date": "2000-12-05T19:32:46Z", "stop_date": "2018-12-10T03:00:14Z", "xmlid": "c1_e_gse(0)"}, "c1_e_gse1": {"__spz_name__": "ey", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_e_gse(1)", "dataset": "clust1-efw-gse", "index1": "1", "is_public": "True", "name": "ey", "parameter": "c1_e_gse", "start_date": "2000-12-05T19:32:46Z", "stop_date": "2018-12-10T03:00:14Z", "xmlid": "c1_e_gse(1)"}, "c1_e_gse2": {"__spz_name__": "ez", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_e_gse(2)", "dataset": "clust1-efw-gse", "index1": "2", "is_public": "True", "name": "ez", "parameter": "c1_e_gse", "start_date": "2000-12-05T19:32:46Z", "stop_date": "2018-12-10T03:00:14Z", "xmlid": "c1_e_gse(2)"}, "dataset": "clust1-efw-gse", "description": "Electric Field in GSE at spin time (4s) resolution (3 components)", "display_type": "timeseries", "is_public": "True", "name": "e_gse", "size": "3", "start_date": "2000-12-05T19:32:46Z", "stop_date": "2018-12-10T03:00:14Z", "ucd": "phys.electField", "units": "mV/m", "xmlid": "c1_e_gse"}, "c1_e_gse_qual": {"__spz_name__": "e_quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c1_e_gse_qual", "dataset": "clust1-efw-gse", "description": "Data quality: 0 (Bad data) to 4 (Excellent data)", "display_type": "timeseries", "is_public": "True", "name": "e_quality", "start_date": "2000-12-05T19:32:46Z", "stop_date": "2018-12-10T03:00:14Z", "ucd": "meta.code.qual", "xmlid": "c1_e_gse_qual"}, "c1_e_gsm": {"__spz_name__": "e_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c1_e_gsm", "c1_e_gsm0": {"__spz_name__": "ex", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_e_gsm(0)", "dataset": "clust1-efw-gse", "index1": "0", "is_public": "True", "name": "ex", "parameter": "c1_e_gsm", "start_date": "2000-12-05T19:32:46Z", "stop_date": "2018-12-10T03:00:14Z", "xmlid": "c1_e_gsm(0)"}, "c1_e_gsm1": {"__spz_name__": "ey", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_e_gsm(1)", "dataset": "clust1-efw-gse", "index1": "1", "is_public": "True", "name": "ey", "parameter": "c1_e_gsm", "start_date": "2000-12-05T19:32:46Z", "stop_date": "2018-12-10T03:00:14Z", "xmlid": "c1_e_gsm(1)"}, "c1_e_gsm2": {"__spz_name__": "ez", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_e_gsm(2)", "dataset": "clust1-efw-gse", "index1": "2", "is_public": "True", "name": "ez", "parameter": "c1_e_gsm", "start_date": "2000-12-05T19:32:46Z", "stop_date": "2018-12-10T03:00:14Z", "xmlid": "c1_e_gsm(2)"}, "dataset": "clust1-efw-gse", "description": "Electric Field in GSM at spin time (4s) resolution (3 components)", "display_type": "timeseries", "is_public": "True", "name": "e_gsm", "size": "3", "start_date": "2000-12-05T19:32:46Z", "stop_date": "2018-12-10T03:00:14Z", "ucd": "phys.electField", "units": "mV/m", "xmlid": "c1_e_gsm"}, "c1_etot": {"__spz_name__": "|e|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c1_etot", "dataset": "clust1-efw-gse", "description": "Electric Field Magnitude at spin time (4s) resolution", "display_type": "timeseries", "is_public": "True", "name": "|e|", "start_date": "2000-12-05T19:32:46Z", "stop_date": "2018-12-10T03:00:14Z", "ucd": "phys.electField", "units": "mV/m", "xmlid": "c1_etot"}, "c1_ez_error": {"__spz_name__": "ez_error", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c1_ez_error", "dataset": "clust1-efw-gse", "description": "Error on the (reconstructed) Z component of the electric field", "display_type": "timeseries", "is_public": "True", "name": "ez_error", "start_date": "2000-12-05T19:32:46Z", "stop_date": "2018-12-10T03:00:14Z", "ucd": "stat.error", "xmlid": "c1_ez_error"}, "dataSource": "CSA", "desc": "Cluster 1 3D electric field (L3)
Sampling: 4S
Provider: CSA", "is_public": "True", "lastModificationDate": "2024-10-06T22:09:05Z", "lastUpdate": "2024-08-29T10:28:50Z", "measurement_type": "ElectricField", "name": "3D gse", "processing_level": "Calibrated", "sampling": "4S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cluster/Cluster1/EFW/clust1-efw-gse", "start_date": "2000-12-05T19:32:46Z", "stop_date": "2018-12-10T03:00:14Z", "target": "Earth.Magnetosheath", "xmlid": "clust1-efw-gse"}, "clust1_efw_sr2": {"__spz_name__": "2D isr2", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "clust1-efw-sr2", "att": "auto/clust1-efw-sr2", "c1_e_sr2": {"__spz_name__": "e_sr2", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c1_e_sr2", "c1_e_sr20": {"__spz_name__": "ex", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_e_sr2(0)", "dataset": "clust1-efw-sr2", "index1": "0", "is_public": "True", "name": "ex", "parameter": "c1_e_sr2", "start_date": "2000-12-05T19:32:46Z", "stop_date": "2018-12-10T03:00:14Z", "xmlid": "c1_e_sr2(0)"}, "c1_e_sr21": {"__spz_name__": "ey", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_e_sr2(1)", "dataset": "clust1-efw-sr2", "index1": "1", "is_public": "True", "name": "ey", "parameter": "c1_e_sr2", "start_date": "2000-12-05T19:32:46Z", "stop_date": "2018-12-10T03:00:14Z", "xmlid": "c1_e_sr2(1)"}, "dataset": "clust1-efw-sr2", "description": "Electric Field in ISR2 at spin time (4s) resolution (2 components)", "display_type": "timeseries", "is_public": "True", "name": "e_sr2", "size": "2", "start_date": "2000-12-05T19:32:46Z", "stop_date": "2018-12-10T03:00:14Z", "ucd": "phys.electField", "units": "mV/m", "xmlid": "c1_e_sr2"}, "c1_e_sr2_qual": {"__spz_name__": "e_quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c1_e_sr2_qual", "dataset": "clust1-efw-sr2", "description": "Data quality: 0 (Bad data) to 4 (Excellent data)", "display_type": "timeseries", "is_public": "True", "name": "e_quality", "start_date": "2000-12-05T19:32:46Z", "stop_date": "2018-12-10T03:00:14Z", "ucd": "meta.code.qual", "xmlid": "c1_e_sr2_qual"}, "dataSource": "CSA", "desc": "Cluster 1 2D electric field (L3)
Sampling: 4S
Provider: CSA", "is_public": "True", "lastModificationDate": "2024-10-06T22:09:29Z", "lastUpdate": "2024-08-28T10:49:10Z", "measurement_type": "ElectricField", "name": "2D isr2", "processing_level": "Calibrated", "sampling": "4S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cluster/Cluster1/EFW/clust1-efw-sr2", "start_date": "2000-12-05T19:32:46Z", "stop_date": "2018-12-10T03:00:14Z", "target": "Earth.Magnetosheath", "xmlid": "clust1-efw-sr2"}, "is_public": "True", "name": "electric field", "xmlid": "c1-efw-efield"}, "is_public": "True", "name": "EFW", "sc_potential": {"__spz_name__": "s/c potential", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "c1-efw-pot", "clust1_pot_full": {"__spz_name__": "0.2 sec (full)", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "clust1-pot-full", "att": "auto/clust1-pot-full", "c1_potfull": {"__spz_name__": "s/c pot", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c1_potfull", "dataset": "clust1-pot-full", "description": "Probe potential, Relative to Spacecraft at full resolution (0.2s)", "display_type": "timeseries", "is_public": "True", "name": "s/c pot", "start_date": "2000-12-05T18:17:00Z", "stop_date": "2024-05-31T23:59:59Z", "ucd": "phys.potential;phys.electField;instr.obsty", "units": "V", "xmlid": "c1_potfull"}, "dataSource": "CSA", "desc": "Cluster 1 Spacecraft Potential (L2)
Sampling: 0.2S
Provider: CSA", "is_public": "True", "lastModificationDate": "2024-10-06T22:12:02Z", "lastUpdate": "2024-09-30T10:15:49Z", "measurement_type": "ElectricField", "name": "0.2 sec (full)", "processing_level": "Calibrated", "sampling": "0.2S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cluster/Cluster1/EFW/clust1-pot-full", "start_date": "2000-12-05T18:17:00Z", "stop_date": "2024-05-31T23:59:59Z", "target": "Earth.Magnetosheath", "xmlid": "clust1-pot-full"}, "clust1_pot_spin": {"__spz_name__": "4 sec (spin)", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "clust1-pot-spin", "att": "auto/clust1-pot-spin", "c1_potspin": {"__spz_name__": "s/c pot", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c1_potspin", "dataset": "clust1-pot-spin", "description": "Probe potential, Relative to Spacecraft at spin time resolution (4s)", "display_type": "timeseries", "is_public": "True", "name": "s/c pot", "start_date": "2000-12-05T19:32:46Z", "stop_date": "2024-05-31T23:59:58Z", "ucd": "phys.potential;phys.electField;instr.obsty", "units": "V", "xmlid": "c1_potspin"}, "dataSource": "CSA", "desc": "Cluster 1 Spacecraft Potential (L3)
Sampling: 4S
Provider: CSA", "is_public": "True", "lastModificationDate": "2024-10-06T22:12:05Z", "lastUpdate": "2024-09-30T10:16:19Z", "measurement_type": "ElectricField", "name": "4 sec (spin)", "processing_level": "Calibrated", "sampling": "4S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cluster/Cluster1/EFW/clust1-pot-spin", "start_date": "2000-12-05T19:32:46Z", "stop_date": "2024-05-31T23:59:58Z", "target": "Earth.Magnetosheath", "xmlid": "clust1-pot-spin"}, "is_public": "True", "name": "s/c potential", "xmlid": "c1-efw-pot"}, "xmlid": "Cluster1_efw"}, "Ephemeris": {"__spz_name__": "Ephemeris", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Cluster1_ephemeris", "att": "auto/Cluster1_ephemeris", "clust1_orb_all": {"__spz_name__": "orbit", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "clust1-orb-all", "att": "auto/clust1-orb-all", "c1_r": {"__spz_name__": "distance c1-earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c1_r", "dataset": "clust1-orb-all", "display_type": "timeseries", "is_public": "True", "name": "distance c1-earth", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-10-02T00:00:00Z", "ucd": "pos.distance;instr.obsty", "units": "Re", "xmlid": "c1_r"}, "c1_xyz_gse": {"__spz_name__": "xyz_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c1_xyz_gse", "c1_xyz_gse0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_xyz_gse(0)", "dataset": "clust1-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "c1_xyz_gse", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-10-02T00:00:00Z", "xmlid": "c1_xyz_gse(0)"}, "c1_xyz_gse1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_xyz_gse(1)", "dataset": "clust1-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "c1_xyz_gse", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-10-02T00:00:00Z", "xmlid": "c1_xyz_gse(1)"}, "c1_xyz_gse2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_xyz_gse(2)", "dataset": "clust1-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "c1_xyz_gse", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-10-02T00:00:00Z", "xmlid": "c1_xyz_gse(2)"}, "dataset": "clust1-orb-all", "description": "Spacecraft position in GSE", "display_type": "timeseries", "is_public": "True", "name": "xyz_gse", "size": "3", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-10-02T00:00:00Z", "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "Re", "xmlid": "c1_xyz_gse"}, "c1_xyz_gsm": {"__spz_name__": "xyz_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c1_xyz_gsm", "c1_xyz_gsm0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_xyz_gsm(0)", "dataset": "clust1-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "c1_xyz_gsm", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-10-02T00:00:00Z", "xmlid": "c1_xyz_gsm(0)"}, "c1_xyz_gsm1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_xyz_gsm(1)", "dataset": "clust1-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "c1_xyz_gsm", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-10-02T00:00:00Z", "xmlid": "c1_xyz_gsm(1)"}, "c1_xyz_gsm2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_xyz_gsm(2)", "dataset": "clust1-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "c1_xyz_gsm", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-10-02T00:00:00Z", "xmlid": "c1_xyz_gsm(2)"}, "dataset": "clust1-orb-all", "description": "Spacecraft position in GSM", "display_type": "timeseries", "is_public": "True", "name": "xyz_gsm", "size": "3", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-10-02T00:00:00Z", "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "Re", "xmlid": "c1_xyz_gsm"}, "dataSource": "IRAP", "desc": "
Sampling: 1M
Provider: IRAP", "is_public": "True", "lastModificationDate": "2024-10-06T22:08:27Z", "lastUpdate": "2024-10-06T22:08:27Z", "measurement_type": "Ephemeris", "name": "orbit", "processing_level": "Calibrated", "sampling": "1M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cluster/Cluster1/Ephemeris/clust1-orb-all", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-10-02T00:00:00Z", "xmlid": "clust1-orb-all"}, "desc": "", "is_public": "True", "name": "Ephemeris", "xmlid": "Cluster1_ephemeris"}, "FGM": {"__spz_name__": "FGM", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Cluster1_fgm", "att": "auto/Cluster1_fgm", "clust1_fgm_high": {"__spz_name__": "0.2 sec (5vps)", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "clust1-fgm-high", "att": "auto/clust1-fgm-high", "c1_b_5vps": {"__spz_name__": "b_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c1_b_5vps", "c1_b_5vps0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_b_5vps(0)", "dataset": "clust1-fgm-high", "index1": "0", "is_public": "True", "name": "bx", "parameter": "c1_b_5vps", "start_date": "2001-01-07T05:14:25Z", "stop_date": "2023-05-01T23:59:59Z", "xmlid": "c1_b_5vps(0)"}, "c1_b_5vps1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_b_5vps(1)", "dataset": "clust1-fgm-high", "index1": "1", "is_public": "True", "name": "by", "parameter": "c1_b_5vps", "start_date": "2001-01-07T05:14:25Z", "stop_date": "2023-05-01T23:59:59Z", "xmlid": "c1_b_5vps(1)"}, "c1_b_5vps2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_b_5vps(2)", "dataset": "clust1-fgm-high", "index1": "2", "is_public": "True", "name": "bz", "parameter": "c1_b_5vps", "start_date": "2001-01-07T05:14:25Z", "stop_date": "2023-05-01T23:59:59Z", "xmlid": "c1_b_5vps(2)"}, "dataset": "clust1-fgm-high", "description": "FGM: magnetic field vector (3 GSE components), 0.2 s resolution", "display_type": "timeseries", "is_public": "True", "name": "b_gse", "size": "3", "start_date": "2001-01-07T05:14:25Z", "stop_date": "2023-05-01T23:59:59Z", "ucd": "phys.magField", "units": "nT", "xmlid": "c1_b_5vps"}, "c1_bgsm_5vps": {"__spz_name__": "b_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c1_bgsm_5vps", "c1_bgsm_5vps0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_bgsm_5vps(0)", "dataset": "clust1-fgm-high", "index1": "0", "is_public": "True", "name": "bx", "parameter": "c1_bgsm_5vps", "start_date": "2001-01-07T05:14:25Z", "stop_date": "2023-05-01T23:59:59Z", "xmlid": "c1_bgsm_5vps(0)"}, "c1_bgsm_5vps1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_bgsm_5vps(1)", "dataset": "clust1-fgm-high", "index1": "1", "is_public": "True", "name": "by", "parameter": "c1_bgsm_5vps", "start_date": "2001-01-07T05:14:25Z", "stop_date": "2023-05-01T23:59:59Z", "xmlid": "c1_bgsm_5vps(1)"}, "c1_bgsm_5vps2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_bgsm_5vps(2)", "dataset": "clust1-fgm-high", "index1": "2", "is_public": "True", "name": "bz", "parameter": "c1_bgsm_5vps", "start_date": "2001-01-07T05:14:25Z", "stop_date": "2023-05-01T23:59:59Z", "xmlid": "c1_bgsm_5vps(2)"}, "dataset": "clust1-fgm-high", "description": "FGM: magnetic field vector (3 GSM components), 0.2 s resolution", "display_type": "timeseries", "is_public": "True", "name": "b_gsm", "size": "3", "start_date": "2001-01-07T05:14:25Z", "stop_date": "2023-05-01T23:59:59Z", "ucd": "phys.magField", "units": "nT", "xmlid": "c1_bgsm_5vps"}, "c1_btot_5vps": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c1_btot_5vps", "dataset": "clust1-fgm-high", "description": "FGM: magnetic field vector magnitude", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "2001-01-07T05:14:25Z", "stop_date": "2023-05-01T23:59:59Z", "ucd": "phys.magField", "units": "nT", "xmlid": "c1_btot_5vps"}, "dataSource": "CSA", "desc": "Cluster 1 5-vector-per-spin FGM Data
Sampling: 0.2S
Provider: CSA", "is_public": "True", "lastModificationDate": "2024-10-06T22:09:34Z", "lastUpdate": "2024-08-22T16:48:37Z", "measurement_type": "MagneticField", "name": "0.2 sec (5vps)", "processing_level": "Calibrated", "sampling": "0.2S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cluster/Cluster1/FGM/clust1-fgm-high", "start_date": "2001-01-07T05:14:25Z", "stop_date": "2023-05-01T23:59:59Z", "target": "Earth.Magnetosheath", "xmlid": "clust1-fgm-high"}, "clust1_fgm_prp": {"__spz_name__": "4 sec (spin)", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "clust1-fgm-prp", "att": "auto/clust1-fgm-prp", "c1_b_gse": {"__spz_name__": "b_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c1_b_gse", "c1_b_gse0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_b_gse(0)", "dataset": "clust1-fgm-prp", "index1": "0", "is_public": "True", "name": "bx", "parameter": "c1_b_gse", "start_date": "2001-01-07T05:14:29Z", "stop_date": "2023-05-01T23:59:56Z", "xmlid": "c1_b_gse(0)"}, "c1_b_gse1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_b_gse(1)", "dataset": "clust1-fgm-prp", "index1": "1", "is_public": "True", "name": "by", "parameter": "c1_b_gse", "start_date": "2001-01-07T05:14:29Z", "stop_date": "2023-05-01T23:59:56Z", "xmlid": "c1_b_gse(1)"}, "c1_b_gse2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_b_gse(2)", "dataset": "clust1-fgm-prp", "index1": "2", "is_public": "True", "name": "bz", "parameter": "c1_b_gse", "start_date": "2001-01-07T05:14:29Z", "stop_date": "2023-05-01T23:59:56Z", "xmlid": "c1_b_gse(2)"}, "dataset": "clust1-fgm-prp", "description": "FGM: magnetic field vector (3 GSE components), 4s resolution", "display_type": "timeseries", "is_public": "True", "name": "b_gse", "size": "3", "start_date": "2001-01-07T05:14:29Z", "stop_date": "2023-05-01T23:59:56Z", "ucd": "phys.magField", "units": "nT", "xmlid": "c1_b_gse"}, "c1_b_gsm": {"__spz_name__": "b_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c1_b_gsm", "c1_b_gsm0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_b_gsm(0)", "dataset": "clust1-fgm-prp", "index1": "0", "is_public": "True", "name": "bx", "parameter": "c1_b_gsm", "start_date": "2001-01-07T05:14:29Z", "stop_date": "2023-05-01T23:59:56Z", "xmlid": "c1_b_gsm(0)"}, "c1_b_gsm1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_b_gsm(1)", "dataset": "clust1-fgm-prp", "index1": "1", "is_public": "True", "name": "by", "parameter": "c1_b_gsm", "start_date": "2001-01-07T05:14:29Z", "stop_date": "2023-05-01T23:59:56Z", "xmlid": "c1_b_gsm(1)"}, "c1_b_gsm2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_b_gsm(2)", "dataset": "clust1-fgm-prp", "index1": "2", "is_public": "True", "name": "bz", "parameter": "c1_b_gsm", "start_date": "2001-01-07T05:14:29Z", "stop_date": "2023-05-01T23:59:56Z", "xmlid": "c1_b_gsm(2)"}, "dataset": "clust1-fgm-prp", "description": "FGM: magnetic field vector (3 GSM components), 4s resolution", "display_type": "timeseries", "is_public": "True", "name": "b_gsm", "size": "3", "start_date": "2001-01-07T05:14:29Z", "stop_date": "2023-05-01T23:59:56Z", "ucd": "phys.magField", "units": "nT", "xmlid": "c1_b_gsm"}, "c1_btot": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c1_btot", "dataset": "clust1-fgm-prp", "description": "FGM: magnetic field vector magnitude", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "2001-01-07T05:14:29Z", "stop_date": "2023-05-01T23:59:56Z", "ucd": "phys.magField", "units": "nT", "xmlid": "c1_btot"}, "dataSource": "CSA", "desc": "Cluster 1 Spin Resolution FGM Data
Sampling: 4S
Provider: CSA", "is_public": "True", "lastModificationDate": "2024-10-06T22:09:37Z", "lastUpdate": "2024-08-22T16:20:06Z", "measurement_type": "MagneticField", "name": "4 sec (spin)", "processing_level": "Calibrated", "sampling": "4S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cluster/Cluster1/FGM/clust1-fgm-prp", "start_date": "2001-01-07T05:14:29Z", "stop_date": "2023-05-01T23:59:56Z", "target": "Earth.Magnetosheath", "xmlid": "clust1-fgm-prp"}, "desc": "Fluxgate Magnetometer
Magnetometer", "is_public": "True", "name": "FGM", "xmlid": "Cluster1_fgm"}, "PEACE": {"__spz_name__": "PEACE", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Cluster1_peace", "att": "auto/Cluster1_peace", "clust1_pea_mom": {"__spz_name__": "electron moments", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "clust1-pea-mom", "att": "auto/clust1-pea-mom", "c1_pea_dens": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c1_pea_dens", "dataset": "clust1-pea-mom", "description": "Electron number density at spin time resolution", "display_type": "timeseries", "is_public": "True", "name": "density", "start_date": "2001-01-09T15:15:23Z", "stop_date": "2022-12-30T23:59:39Z", "ucd": "phys.density;phys.electron", "units": "cm\u207b\u00b3", "xmlid": "c1_pea_dens"}, "c1_pea_flux": {"__spz_name__": "heat_flux_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c1_pea_flux", "c1_pea_flux0": {"__spz_name__": "flux_x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_pea_flux(0)", "dataset": "clust1-pea-mom", "index1": "0", "is_public": "True", "name": "flux_x", "parameter": "c1_pea_flux", "start_date": "2001-01-09T15:15:23Z", "stop_date": "2022-12-30T23:59:39Z", "xmlid": "c1_pea_flux(0)"}, "c1_pea_flux1": {"__spz_name__": "flux_y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_pea_flux(1)", "dataset": "clust1-pea-mom", "index1": "0", "is_public": "True", "name": "flux_y", "parameter": "c1_pea_flux", "start_date": "2001-01-09T15:15:23Z", "stop_date": "2022-12-30T23:59:39Z", "xmlid": "c1_pea_flux(1)"}, "c1_pea_flux2": {"__spz_name__": "flux_z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_pea_flux(2)", "dataset": "clust1-pea-mom", "index1": "0", "is_public": "True", "name": "flux_z", "parameter": "c1_pea_flux", "start_date": "2001-01-09T15:15:23Z", "stop_date": "2022-12-30T23:59:39Z", "xmlid": "c1_pea_flux(2)"}, "dataset": "clust1-pea-mom", "description": "Parallel electron heat flux at spin time resolution, in GSE", "display_type": "timeseries", "is_public": "True", "name": "heat_flux_gse", "size": "3", "start_date": "2001-01-09T15:15:23Z", "stop_date": "2022-12-30T23:59:39Z", "ucd": "phys.flux.energy;phys.atmol.ionStage", "units": "microW/m\u00b2", "xmlid": "c1_pea_flux"}, "c1_pea_press": {"__spz_name__": "pressure_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c1_pea_press", "c1_pea_press0": {"__spz_name__": "xx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_pea_press(0)", "dataset": "clust1-pea-mom", "index1": "0", "is_public": "True", "name": "xx", "parameter": "c1_pea_press", "start_date": "2001-01-09T15:15:23Z", "stop_date": "2022-12-30T23:59:39Z", "xmlid": "c1_pea_press(0)"}, "c1_pea_press1": {"__spz_name__": "xy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_pea_press(1)", "dataset": "clust1-pea-mom", "index1": "1", "is_public": "True", "name": "xy", "parameter": "c1_pea_press", "start_date": "2001-01-09T15:15:23Z", "stop_date": "2022-12-30T23:59:39Z", "xmlid": "c1_pea_press(1)"}, "c1_pea_press2": {"__spz_name__": "xz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_pea_press(2)", "dataset": "clust1-pea-mom", "index1": "2", "is_public": "True", "name": "xz", "parameter": "c1_pea_press", "start_date": "2001-01-09T15:15:23Z", "stop_date": "2022-12-30T23:59:39Z", "xmlid": "c1_pea_press(2)"}, "c1_pea_press3": {"__spz_name__": "yx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_pea_press(3)", "dataset": "clust1-pea-mom", "index1": "3", "is_public": "True", "name": "yx", "parameter": "c1_pea_press", "start_date": "2001-01-09T15:15:23Z", "stop_date": "2022-12-30T23:59:39Z", "xmlid": "c1_pea_press(3)"}, "c1_pea_press4": {"__spz_name__": "yy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_pea_press(4)", "dataset": "clust1-pea-mom", "index1": "4", "is_public": "True", "name": "yy", "parameter": "c1_pea_press", "start_date": "2001-01-09T15:15:23Z", "stop_date": "2022-12-30T23:59:39Z", "xmlid": "c1_pea_press(4)"}, "c1_pea_press5": {"__spz_name__": "yz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_pea_press(5)", "dataset": "clust1-pea-mom", "index1": "5", "is_public": "True", "name": "yz", "parameter": "c1_pea_press", "start_date": "2001-01-09T15:15:23Z", "stop_date": "2022-12-30T23:59:39Z", "xmlid": "c1_pea_press(5)"}, "c1_pea_press6": {"__spz_name__": "zx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_pea_press(6)", "dataset": "clust1-pea-mom", "index1": "6", "is_public": "True", "name": "zx", "parameter": "c1_pea_press", "start_date": "2001-01-09T15:15:23Z", "stop_date": "2022-12-30T23:59:39Z", "xmlid": "c1_pea_press(6)"}, "c1_pea_press7": {"__spz_name__": "zy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_pea_press(7)", "dataset": "clust1-pea-mom", "index1": "7", "is_public": "True", "name": "zy", "parameter": "c1_pea_press", "start_date": "2001-01-09T15:15:23Z", "stop_date": "2022-12-30T23:59:39Z", "xmlid": "c1_pea_press(7)"}, "c1_pea_press8": {"__spz_name__": "zz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_pea_press(8)", "dataset": "clust1-pea-mom", "index1": "8", "is_public": "True", "name": "zz", "parameter": "c1_pea_press", "start_date": "2001-01-09T15:15:23Z", "stop_date": "2022-12-30T23:59:39Z", "xmlid": "c1_pea_press(8)"}, "dataset": "clust1-pea-mom", "description": "Electron pressure tensor at spin time resolution, in GSE", "display_type": "timeseries", "is_public": "True", "name": "pressure_gse", "size": "9", "start_date": "2001-01-09T15:15:23Z", "stop_date": "2022-12-30T23:59:39Z", "ucd": "phys.pressure", "units": "nPa", "xmlid": "c1_pea_press"}, "c1_pea_tpar": {"__spz_name__": "t_para", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c1_pea_tpar", "dataset": "clust1-pea-mom", "description": "Parallel electron temperature at spin time resolution", "display_type": "timeseries", "is_public": "True", "name": "t_para", "start_date": "2001-01-09T15:15:23Z", "stop_date": "2022-12-30T23:59:39Z", "ucd": "phys.temperature;phys.electron", "units": "eV", "xmlid": "c1_pea_tpar"}, "c1_pea_tperp": {"__spz_name__": "t_perp", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c1_pea_tperp", "dataset": "clust1-pea-mom", "description": "Perpendicular electron temperature at spin time resolution", "display_type": "timeseries", "is_public": "True", "name": "t_perp", "start_date": "2001-01-09T15:15:23Z", "stop_date": "2022-12-30T23:59:39Z", "ucd": "phys.temperature;phys.electron", "units": "eV", "xmlid": "c1_pea_tperp"}, "c1_pea_vgse": {"__spz_name__": "v_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c1_pea_vgse", "c1_pea_vgse0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_pea_vgse(0)", "dataset": "clust1-pea-mom", "index1": "0", "is_public": "True", "name": "vx", "parameter": "c1_pea_vgse", "start_date": "2001-01-09T15:15:23Z", "stop_date": "2022-12-30T23:59:39Z", "xmlid": "c1_pea_vgse(0)"}, "c1_pea_vgse1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_pea_vgse(1)", "dataset": "clust1-pea-mom", "index1": "1", "is_public": "True", "name": "vy", "parameter": "c1_pea_vgse", "start_date": "2001-01-09T15:15:23Z", "stop_date": "2022-12-30T23:59:39Z", "xmlid": "c1_pea_vgse(1)"}, "c1_pea_vgse2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_pea_vgse(2)", "dataset": "clust1-pea-mom", "index1": "2", "is_public": "True", "name": "vz", "parameter": "c1_pea_vgse", "start_date": "2001-01-09T15:15:23Z", "stop_date": "2022-12-30T23:59:39Z", "xmlid": "c1_pea_vgse(2)"}, "dataset": "clust1-pea-mom", "description": "Electron velocity at spin time resolution", "display_type": "timeseries", "is_public": "True", "name": "v_gse", "size": "3", "start_date": "2001-01-09T15:15:23Z", "stop_date": "2022-12-30T23:59:39Z", "ucd": "phys.veloc;phys.electron", "units": "km/s", "xmlid": "c1_pea_vgse"}, "c1_pea_vgsm": {"__spz_name__": "v_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c1_pea_vgsm", "c1_pea_vgsm0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_pea_vgsm(0)", "dataset": "clust1-pea-mom", "index1": "0", "is_public": "True", "name": "vx", "parameter": "c1_pea_vgsm", "start_date": "2001-01-09T15:15:23Z", "stop_date": "2022-12-30T23:59:39Z", "xmlid": "c1_pea_vgsm(0)"}, "c1_pea_vgsm1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_pea_vgsm(1)", "dataset": "clust1-pea-mom", "index1": "1", "is_public": "True", "name": "vy", "parameter": "c1_pea_vgsm", "start_date": "2001-01-09T15:15:23Z", "stop_date": "2022-12-30T23:59:39Z", "xmlid": "c1_pea_vgsm(1)"}, "c1_pea_vgsm2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_pea_vgsm(2)", "dataset": "clust1-pea-mom", "index1": "2", "is_public": "True", "name": "vz", "parameter": "c1_pea_vgsm", "start_date": "2001-01-09T15:15:23Z", "stop_date": "2022-12-30T23:59:39Z", "xmlid": "c1_pea_vgsm(2)"}, "dataset": "clust1-pea-mom", "description": "Electron velocity at spin time resolution, in GSM", "display_type": "timeseries", "is_public": "True", "name": "v_gsm", "size": "3", "start_date": "2001-01-09T15:15:23Z", "stop_date": "2022-12-30T23:59:39Z", "ucd": "phys.veloc;phys.electron", "units": "km/s", "xmlid": "c1_pea_vgsm"}, "c1_pea_vpar": {"__spz_name__": "v_para_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c1_pea_vpar", "c1_pea_vpar0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_pea_vpar(0)", "dataset": "clust1-pea-mom", "index1": "0", "is_public": "True", "name": "vx", "parameter": "c1_pea_vpar", "start_date": "2001-01-09T15:15:23Z", "stop_date": "2022-12-30T23:59:39Z", "xmlid": "c1_pea_vpar(0)"}, "c1_pea_vpar1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_pea_vpar(1)", "dataset": "clust1-pea-mom", "index1": "1", "is_public": "True", "name": "vy", "parameter": "c1_pea_vpar", "start_date": "2001-01-09T15:15:23Z", "stop_date": "2022-12-30T23:59:39Z", "xmlid": "c1_pea_vpar(1)"}, "c1_pea_vpar2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_pea_vpar(2)", "dataset": "clust1-pea-mom", "index1": "2", "is_public": "True", "name": "vz", "parameter": "c1_pea_vpar", "start_date": "2001-01-09T15:15:23Z", "stop_date": "2022-12-30T23:59:39Z", "xmlid": "c1_pea_vpar(2)"}, "dataset": "clust1-pea-mom", "description": "Electron parallel velocity at spin time resolution, in GSE", "display_type": "timeseries", "is_public": "True", "name": "v_para_gse", "size": "3", "start_date": "2001-01-09T15:15:23Z", "stop_date": "2022-12-30T23:59:39Z", "ucd": "phys.veloc;phys.electron", "units": "km/s", "xmlid": "c1_pea_vpar"}, "c1_pea_vpar_gsm": {"__spz_name__": "v_para_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c1_pea_vpar_gsm", "c1_pea_vpar_gsm0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_pea_vpar_gsm(0)", "dataset": "clust1-pea-mom", "index1": "0", "is_public": "True", "name": "vx", "parameter": "c1_pea_vpar_gsm", "start_date": "2001-01-09T15:15:23Z", "stop_date": "2022-12-30T23:59:39Z", "xmlid": "c1_pea_vpar_gsm(0)"}, "c1_pea_vpar_gsm1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_pea_vpar_gsm(1)", "dataset": "clust1-pea-mom", "index1": "1", "is_public": "True", "name": "vy", "parameter": "c1_pea_vpar_gsm", "start_date": "2001-01-09T15:15:23Z", "stop_date": "2022-12-30T23:59:39Z", "xmlid": "c1_pea_vpar_gsm(1)"}, "c1_pea_vpar_gsm2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_pea_vpar_gsm(2)", "dataset": "clust1-pea-mom", "index1": "2", "is_public": "True", "name": "vz", "parameter": "c1_pea_vpar_gsm", "start_date": "2001-01-09T15:15:23Z", "stop_date": "2022-12-30T23:59:39Z", "xmlid": "c1_pea_vpar_gsm(2)"}, "dataset": "clust1-pea-mom", "description": "Electron parallel velocity at spin time resolution, in GSM", "display_type": "timeseries", "is_public": "True", "name": "v_para_gsm", "size": "3", "start_date": "2001-01-09T15:15:23Z", "stop_date": "2022-12-30T23:59:39Z", "ucd": "phys.veloc;phys.electron", "units": "km/s", "xmlid": "c1_pea_vpar_gsm"}, "c1_pea_vperp": {"__spz_name__": "v_perp_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c1_pea_vperp", "c1_pea_vperp0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_pea_vperp(0)", "dataset": "clust1-pea-mom", "index1": "0", "is_public": "True", "name": "vx", "parameter": "c1_pea_vperp", "start_date": "2001-01-09T15:15:23Z", "stop_date": "2022-12-30T23:59:39Z", "xmlid": "c1_pea_vperp(0)"}, "c1_pea_vperp1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_pea_vperp(1)", "dataset": "clust1-pea-mom", "index1": "1", "is_public": "True", "name": "vy", "parameter": "c1_pea_vperp", "start_date": "2001-01-09T15:15:23Z", "stop_date": "2022-12-30T23:59:39Z", "xmlid": "c1_pea_vperp(1)"}, "c1_pea_vperp2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_pea_vperp(2)", "dataset": "clust1-pea-mom", "index1": "2", "is_public": "True", "name": "vz", "parameter": "c1_pea_vperp", "start_date": "2001-01-09T15:15:23Z", "stop_date": "2022-12-30T23:59:39Z", "xmlid": "c1_pea_vperp(2)"}, "dataset": "clust1-pea-mom", "description": "Electron perpendicular velocity at spin time resolution, in GSE", "display_type": "timeseries", "is_public": "True", "name": "v_perp_gse", "size": "3", "start_date": "2001-01-09T15:15:23Z", "stop_date": "2022-12-30T23:59:39Z", "ucd": "phys.veloc;phys.electron", "units": "km/s", "xmlid": "c1_pea_vperp"}, "c1_pea_vperp_gsm": {"__spz_name__": "v_perp_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c1_pea_vperp_gsm", "c1_pea_vperp_gsm0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_pea_vperp_gsm(0)", "dataset": "clust1-pea-mom", "index1": "0", "is_public": "True", "name": "vx", "parameter": "c1_pea_vperp_gsm", "start_date": "2001-01-09T15:15:23Z", "stop_date": "2022-12-30T23:59:39Z", "xmlid": "c1_pea_vperp_gsm(0)"}, "c1_pea_vperp_gsm1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_pea_vperp_gsm(1)", "dataset": "clust1-pea-mom", "index1": "1", "is_public": "True", "name": "vy", "parameter": "c1_pea_vperp_gsm", "start_date": "2001-01-09T15:15:23Z", "stop_date": "2022-12-30T23:59:39Z", "xmlid": "c1_pea_vperp_gsm(1)"}, "c1_pea_vperp_gsm2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_pea_vperp_gsm(2)", "dataset": "clust1-pea-mom", "index1": "2", "is_public": "True", "name": "vz", "parameter": "c1_pea_vperp_gsm", "start_date": "2001-01-09T15:15:23Z", "stop_date": "2022-12-30T23:59:39Z", "xmlid": "c1_pea_vperp_gsm(2)"}, "dataset": "clust1-pea-mom", "description": "Electron perpendicular velocity at spin time resolution, in GSM", "display_type": "timeseries", "is_public": "True", "name": "v_perp_gsm", "size": "3", "start_date": "2001-01-09T15:15:23Z", "stop_date": "2022-12-30T23:59:39Z", "ucd": "phys.veloc;phys.electron", "units": "km/s", "xmlid": "c1_pea_vperp_gsm"}, "dataSource": "CSA", "desc": "Cluster 1 electron moments
Sampling: 4S
Provider: CSA", "is_public": "True", "lastModificationDate": "2024-10-06T22:11:56Z", "lastUpdate": "2024-08-22T12:44:33Z", "measurement_type": "ThermalPlasma", "name": "electron moments", "processing_level": "Calibrated", "sampling": "4S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cluster/Cluster1/PEACE/clust1-pea-mom", "start_date": "2001-01-09T15:15:23Z", "stop_date": "2022-12-30T23:59:39Z", "target": "Earth.Magnetosheath", "xmlid": "clust1-pea-mom"}, "clust1_pea_pa": {"__spz_name__": "pitch-angle/energy distribution", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "clust1-pea-pa", "att": "auto/clust1-pea-pa", "c1_pea_bckgrd": {"__spz_name__": "background : 2D pa/energy", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c1_pea_bckgrd", "dataset": "clust1-pea-pa", "description": "Background energy flux at spin time resolution", "display_type": "spectrogram", "is_public": "True", "name": "background : 2D pa/energy", "start_date": "2000-12-22T06:01:16Z", "stop_date": "2022-12-30T23:59:52Z", "ucd": "phys.density;phys.electron", "units": "keV/cm\u00b2-s-str-keV", "xmlid": "c1_pea_bckgrd"}, "c1_pea_pad": {"__spz_name__": "diff energy flux : 2D pa/energy", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c1_pea_pad", "dataset": "clust1-pea-pa", "description": "Electron differential energy flux at spin time resolution", "display_type": "spectrogram", "is_public": "True", "name": "diff energy flux : 2D pa/energy", "start_date": "2000-12-22T06:01:16Z", "stop_date": "2022-12-30T23:59:52Z", "ucd": "phys.density;phys.electron", "units": "keV/cm\u00b2-s-str-keV", "xmlid": "c1_pea_pad"}, "dataSource": "CSA", "desc": "Cluster1 2D Pitch-Angle/Energy electron distribution
Sampling: 4S
Provider: CSA", "is_public": "True", "lastModificationDate": "2024-10-06T22:11:59Z", "lastUpdate": "2024-09-03T15:31:25Z", "measurement_type": "ThermalPlasma", "name": "pitch-angle/energy distribution", "processing_level": "Calibrated", "sampling": "4S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cluster/Cluster1/PEACE/clust1-pea-pa", "start_date": "2000-12-22T06:01:16Z", "stop_date": "2022-12-30T23:59:52Z", "target": "Earth.Magnetosheath", "xmlid": "clust1-pea-pa"}, "desc": "Plasma Electron and Current Experiment
ElectrostaticAnalyser", "is_public": "True", "name": "PEACE", "xmlid": "Cluster1_peace"}, "STAFF": {"__spz_name__": "STAFF", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Cluster1_staff", "att": "auto/Cluster1_staff", "clust1_sta_pp": {"__spz_name__": "prime parameters", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "clust1-sta-pp", "att": "auto/clust1-sta-pp", "c1_sta_f1": {"__spz_name__": "b spectral density (1-10 Hz)", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c1_sta_f1", "c1_sta_f10": {"__spz_name__": "parallel to b0", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_sta_f1(0)", "dataset": "clust1-sta-pp", "index1": "0", "is_public": "True", "name": "parallel to b0", "parameter": "c1_sta_f1", "start_date": "2001-01-09T09:04:28Z", "stop_date": "2012-12-31T23:59:48Z", "xmlid": "c1_sta_f1(0)"}, "c1_sta_f11": {"__spz_name__": "perpendicular to b0", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_sta_f1(1)", "dataset": "clust1-sta-pp", "index1": "1", "is_public": "True", "name": "perpendicular to b0", "parameter": "c1_sta_f1", "start_date": "2001-01-09T09:04:28Z", "stop_date": "2012-12-31T23:59:48Z", "xmlid": "c1_sta_f1(1)"}, "dataset": "clust1-sta-pp", "description": "Magnetic field spectral power in the 1-10 Hz (f1) at spin time resolution (parallel and perp components)", "display_type": "timeseries", "is_public": "True", "name": "b spectral density (1-10 Hz)", "size": "2", "start_date": "2001-01-09T09:04:28Z", "stop_date": "2012-12-31T23:59:48Z", "ucd": "phys.magField", "units": "nT\u00b2 Hz\u207b\u00b9", "xmlid": "c1_sta_f1"}, "c1_sta_f2": {"__spz_name__": "b spectral density (10-180 Hz)", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c1_sta_f2", "c1_sta_f20": {"__spz_name__": "parallel to b0", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_sta_f2(0)", "dataset": "clust1-sta-pp", "index1": "0", "is_public": "True", "name": "parallel to b0", "parameter": "c1_sta_f2", "start_date": "2001-01-09T09:04:28Z", "stop_date": "2012-12-31T23:59:48Z", "xmlid": "c1_sta_f2(0)"}, "c1_sta_f21": {"__spz_name__": "perpendicular to b0", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_sta_f2(1)", "dataset": "clust1-sta-pp", "index1": "1", "is_public": "True", "name": "perpendicular to b0", "parameter": "c1_sta_f2", "start_date": "2001-01-09T09:04:28Z", "stop_date": "2012-12-31T23:59:48Z", "xmlid": "c1_sta_f2(1)"}, "dataset": "clust1-sta-pp", "description": "Magnetic field spectral power in the 10-180 Hz (f2) at spin time resolution (parallel and perp components)", "display_type": "timeseries", "is_public": "True", "name": "b spectral density (10-180 Hz)", "size": "2", "start_date": "2001-01-09T09:04:28Z", "stop_date": "2012-12-31T23:59:48Z", "ucd": "phys.magField", "units": "nT\u00b2 Hz\u207b\u00b9", "xmlid": "c1_sta_f2"}, "c1_sta_f3": {"__spz_name__": "b spectral density (180-4000 Hz)", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c1_sta_f3", "c1_sta_f30": {"__spz_name__": "parallel to b0", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_sta_f3(0)", "dataset": "clust1-sta-pp", "index1": "0", "is_public": "True", "name": "parallel to b0", "parameter": "c1_sta_f3", "start_date": "2001-01-09T09:04:28Z", "stop_date": "2012-12-31T23:59:48Z", "xmlid": "c1_sta_f3(0)"}, "c1_sta_f31": {"__spz_name__": "perpendicular to b0", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c1_sta_f3(1)", "dataset": "clust1-sta-pp", "index1": "1", "is_public": "True", "name": "perpendicular to b0", "parameter": "c1_sta_f3", "start_date": "2001-01-09T09:04:28Z", "stop_date": "2012-12-31T23:59:48Z", "xmlid": "c1_sta_f3(1)"}, "dataset": "clust1-sta-pp", "description": "Magnetic field spectral power in the 80-4000 Hz (f3) at spin time resolution (parallel and perp components)", "display_type": "timeseries", "is_public": "True", "name": "b spectral density (180-4000 Hz)", "size": "2", "start_date": "2001-01-09T09:04:28Z", "stop_date": "2012-12-31T23:59:48Z", "ucd": "phys.magField", "units": "nT\u00b2 Hz\u207b\u00b9", "xmlid": "c1_sta_f3"}, "c1_stae_f2": {"__spz_name__": "e spectral density (10-180 Hz)", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c1_stae_f2", "dataset": "clust1-sta-pp", "description": "Electric field spectral power in the 10-180 Hz (f2) frequency range at spin time resolution.", "display_type": "timeseries", "is_public": "True", "name": "e spectral density (10-180 Hz)", "start_date": "2001-01-09T09:04:28Z", "stop_date": "2012-12-31T23:59:48Z", "ucd": "phys.electField", "units": "V\u00b2 m\u207b\u00b2 Hz\u207b\u00b9", "xmlid": "c1_stae_f2"}, "c1_stae_f3": {"__spz_name__": "e spectral density (180-4000 Hz)", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c1_stae_f3", "dataset": "clust1-sta-pp", "description": "Electric field spectral power in the 180-4000 Hz (f3) frequency range at spin time resolution.", "display_type": "timeseries", "is_public": "True", "name": "e spectral density (180-4000 Hz)", "start_date": "2001-01-09T09:04:28Z", "stop_date": "2012-12-31T23:59:48Z", "ucd": "phys.electField", "units": "V\u00b2 m\u207b\u00b2 Hz\u207b\u00b9", "xmlid": "c1_stae_f3"}, "dataSource": "CSDS-CNES", "desc": "Cluster 1 Prime Parameter STAFF Data
Sampling: 4S
Provider: CSDS-CNES", "is_public": "True", "lastModificationDate": "2013-05-03T14:12:27Z", "lastUpdate": "2013-04-22T17:33:56Z", "measurement_type": "ElectricField", "name": "prime parameters", "processing_level": "Calibrated", "sampling": "4S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cluster/Cluster1/STAFF/clust1-sta-pp", "start_date": "2001-01-09T09:04:28Z", "stop_date": "2012-12-31T23:59:48Z", "target": "Earth.Magnetosphere", "xmlid": "clust1-sta-pp"}, "desc": "Spatio-Temporal Analysis of Magnetic Field Fluctuations
SearchCoil", "is_public": "True", "name": "STAFF", "xmlid": "Cluster1_staff"}, "WHISPER": {"__spz_name__": "WHISPER", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Cluster1_whisper", "att": "auto/Cluster1_whisper", "clust1_whi_pp": {"__spz_name__": "electric field : spectral density", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "clust1-whi-pp", "att": "auto/clust1-whi-pp", "c1_whipp_f4": {"__spz_name__": "f4 : 4-10 kHz", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c1_whipp_f4", "dataset": "clust1-whi-pp", "description": "Electric field spectral density in the 4-10 kHz (f4) frequency range at spin time resolution", "display_type": "timeseries", "is_public": "True", "name": "f4 : 4-10 kHz", "start_date": "2001-01-09T09:04:42Z", "stop_date": "2012-12-31T23:59:54Z", "ucd": "phys.density;phys.electron", "units": "V\u00b2 m\u207b\u00b2 Hz\u207b\u00b9", "xmlid": "c1_whipp_f4"}, "c1_whipp_f5": {"__spz_name__": "f5 : 10-20 kHz", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c1_whipp_f5", "dataset": "clust1-whi-pp", "description": "Electric field spectral density in the 10-20 kHz (f5) frequency range at spin time resolution", "display_type": "timeseries", "is_public": "True", "name": "f5 : 10-20 kHz", "start_date": "2001-01-09T09:04:42Z", "stop_date": "2012-12-31T23:59:54Z", "ucd": "phys.density;phys.electron", "units": "V\u00b2 m\u207b\u00b2 Hz\u207b\u00b9", "xmlid": "c1_whipp_f5"}, "c1_whipp_f6": {"__spz_name__": "f6 : 20-80 kHz", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c1_whipp_f6", "dataset": "clust1-whi-pp", "description": "Electric field spectral density in the 20-80 kHz (f6) frequency range at spin time resolution", "display_type": "timeseries", "is_public": "True", "name": "f6 : 20-80 kHz", "start_date": "2001-01-09T09:04:42Z", "stop_date": "2012-12-31T23:59:54Z", "ucd": "phys.density;phys.electron", "units": "V\u00b2 m\u207b\u00b2 Hz\u207b\u00b9", "xmlid": "c1_whipp_f6"}, "dataSource": "CSDS-CNES", "desc": "Cluster 1 Prime Parameter WHISPER Data
Sampling: 4S
Provider: CSDS-CNES", "is_public": "True", "lastModificationDate": "2018-10-04T10:46:42Z", "lastUpdate": "2013-04-23T13:06:22Z", "measurement_type": "ElectricField", "name": "electric field : spectral density", "processing_level": "Calibrated", "sampling": "4S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cluster/Cluster1/WHISPER/clust1-whi-pp", "start_date": "2001-01-09T09:04:42Z", "stop_date": "2012-12-31T23:59:54Z", "target": "Earth.Magnetosheath", "xmlid": "clust1-whi-pp"}, "clust1_whi_whi": {"__spz_name__": "electron density", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "clust1-whi-whi", "att": "auto/clust1-whi-whi", "c1_whi_ne": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c1_whi_ne", "dataset": "clust1-whi-whi", "description": "Electron number density derived from plasma frequency recognition at spin time resolution", "display_type": "timeseries", "is_public": "True", "name": "density", "start_date": "2001-02-04T10:45:59Z", "stop_date": "2023-12-30T09:54:05Z", "ucd": "phys.density;phys.electron", "units": "cm\u207b\u00b3", "xmlid": "c1_whi_ne"}, "c1_whi_ne_qual": {"__spz_name__": "density quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c1_whi_ne_qual", "dataset": "clust1-whi-whi", "description": "Electron number density quality of the resonance recognition flag at spin time resolution", "display_type": "timeseries", "is_public": "True", "name": "density quality", "start_date": "2001-02-04T10:45:59Z", "stop_date": "2023-12-30T09:54:05Z", "ucd": "meta.code.qual", "units": "cm\u207b\u00b3", "xmlid": "c1_whi_ne_qual"}, "c1_whi_ne_unc": {"__spz_name__": "density uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c1_whi_ne_unc", "dataset": "clust1-whi-whi", "description": "Electron number density uncertainty of the resonance recognition flag at spin time resolution", "display_type": "timeseries", "is_public": "True", "name": "density uncertainty", "start_date": "2001-02-04T10:45:59Z", "stop_date": "2023-12-30T09:54:05Z", "ucd": "meta.code.qual", "xmlid": "c1_whi_ne_unc"}, "dataSource": "CSA", "desc": "Cluster 1 WHISPER Data
Sampling: 1.5S
Provider: CSA", "is_public": "True", "lastModificationDate": "2024-10-06T22:12:09Z", "lastUpdate": "2024-09-30T10:16:30Z", "measurement_type": "ElectricField", "name": "electron density", "processing_level": "Calibrated", "sampling": "1.5S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cluster/Cluster1/WHISPER/clust1-whi-whi", "start_date": "2001-02-04T10:45:59Z", "stop_date": "2023-12-30T09:54:05Z", "target": "Earth.Magnetosheath", "xmlid": "clust1-whi-whi"}, "desc": "Waves of High Frequency and Sounder for Probing Electron Density by Relaxation
DoubleSphere", "is_public": "True", "name": "WHISPER", "xmlid": "Cluster1_whisper"}, "__spz_name__": "Cluster 1", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Cluster1", "att": "auto/Cluster1", "desc": "Rumba
2000-12-01T00:00:00
Start of full orbit coverage: 2002-06-01T00:00:00", "is_public": "True", "name": "Cluster 1", "target": "Earth.Magnetosphere", "xmlid": "Cluster1"}, "Cluster_2": {"Analytical_Models": {"__spz_name__": "Analytical Models", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Cluster2_models", "att": "auto/Cluster2_models", "c2_msph_models": {"PriorID": "clust2-orb-all", "__spz_name__": "distance to neutral sheet", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "c2-msph-models", "att": "auto/c2-msph-models", "dataSource": "IRAP", "desc": "Distance to model neutral sheet
Sampling: 1M
Provider: IRAP", "dz_fairfield70_c2_xyz_gse": {"__spz_name__": "dZ Fairfield70", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "dz_fairfield70_c2_xyz_gse", "dataset": "c2-msph-models", "description": "Distance (Re) from s/c location to Fairfield1970 neutral sheet position. Depends on spacecraft location in SM coordinates and dipole tilt angle. Valid for Ysm less than 15 Re.", "is_public": "True", "name": "dZ Fairfield70", "predefined": "1", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-09-08T18:45:00Z", "template": "dz_fairfield70_##ORBIT##", "units": "Re", "xmlid": "dz_fairfield70_c2_xyz_gse"}, "dz_fairfield80_c2_xyz_gse": {"__spz_name__": "dZ Fairfield80", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "dz_fairfield80_c2_xyz_gse", "dataset": "c2-msph-models", "description": "Distance (Re) from s/c location to Fairfield1980 neutral sheet position. Depends on spacecraft location in SM coordinates and dipole tilt angle.", "is_public": "True", "name": "dZ Fairfield80", "predefined": "1", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-09-08T18:45:00Z", "template": "dz_fairfield80_##ORBIT##", "units": "Re", "xmlid": "dz_fairfield80_c2_xyz_gse"}, "is_public": "True", "lastModificationDate": "2024-10-06T22:08:32Z", "lastUpdate": "2024-09-25T11:44:36Z", "measurement_type": "Ephemeris", "name": "distance to neutral sheet", "processing_level": "Calibrated", "sampling": "1M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cluster/Cluster2/Models/c2-msph-models", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-09-08T18:45:00Z", "target": "Earth", "xmlid": "c2-msph-models"}, "c2_t96_model": {"PriorID": "clust2-orb-all", "__spz_name__": "T96 field model", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "c2-t96-model", "att": "auto/c2-t96-model", "b_t96gse_c2_xyz_gse": {"__spz_name__": "b_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_t96gse_c2_xyz_gse", "b_t96gse_c2_xyz_gse0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gse_c2_xyz_gse(0)", "dataset": "c2-t96-model", "index1": "0", "is_public": "True", "name": "bx", "parameter": "b_t96gse_c2_xyz_gse", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-09-08T18:45:00Z", "xmlid": "b_t96gse_c2_xyz_gse(0)"}, "b_t96gse_c2_xyz_gse1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gse_c2_xyz_gse(1)", "dataset": "c2-t96-model", "index1": "1", "is_public": "True", "name": "by", "parameter": "b_t96gse_c2_xyz_gse", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-09-08T18:45:00Z", "xmlid": "b_t96gse_c2_xyz_gse(1)"}, "b_t96gse_c2_xyz_gse2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gse_c2_xyz_gse(2)", "dataset": "c2-t96-model", "index1": "2", "is_public": "True", "name": "bz", "parameter": "b_t96gse_c2_xyz_gse", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-09-08T18:45:00Z", "xmlid": "b_t96gse_c2_xyz_gse(2)"}, "dataset": "c2-t96-model", "is_public": "True", "name": "b_gse", "predefined": "1", "size": "3", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-09-08T18:45:00Z", "template": "b_t96gse_##ORBIT##", "units": "nT", "xmlid": "b_t96gse_c2_xyz_gse"}, "b_t96gsm_c2_xyz_gse": {"__spz_name__": "b_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_t96gsm_c2_xyz_gse", "b_t96gsm_c2_xyz_gse0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gsm_c2_xyz_gse(0)", "dataset": "c2-t96-model", "index1": "0", "is_public": "True", "name": "bx", "parameter": "b_t96gsm_c2_xyz_gse", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-09-08T18:45:00Z", "xmlid": "b_t96gsm_c2_xyz_gse(0)"}, "b_t96gsm_c2_xyz_gse1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gsm_c2_xyz_gse(1)", "dataset": "c2-t96-model", "index1": "1", "is_public": "True", "name": "by", "parameter": "b_t96gsm_c2_xyz_gse", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-09-08T18:45:00Z", "xmlid": "b_t96gsm_c2_xyz_gse(1)"}, "b_t96gsm_c2_xyz_gse2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gsm_c2_xyz_gse(2)", "dataset": "c2-t96-model", "index1": "2", "is_public": "True", "name": "bz", "parameter": "b_t96gsm_c2_xyz_gse", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-09-08T18:45:00Z", "xmlid": "b_t96gsm_c2_xyz_gse(2)"}, "dataset": "c2-t96-model", "is_public": "True", "name": "b_gsm", "predefined": "1", "size": "3", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-09-08T18:45:00Z", "template": "b_t96gsm_##ORBIT##", "units": "nT", "xmlid": "b_t96gsm_c2_xyz_gse"}, "b_t96tot_c2_xyz_gse": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_t96tot_c2_xyz_gse", "dataset": "c2-t96-model", "description": "Average Magnetic Field magnitude", "display_type": "timeseries", "is_public": "True", "name": "|b|", "predefined": "1", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-09-08T18:45:00Z", "template": "b_t96tot_##ORBIT##", "ucd": "phys.magField", "units": "nT", "xmlid": "b_t96tot_c2_xyz_gse"}, "dataSource": "IRAP", "desc": "Tsyganenko96 geomagnetospheric magnetic field model
Sampling: 1M
Provider: IRAP", "is_public": "True", "lastModificationDate": "2024-10-06T22:08:32Z", "lastUpdate": "2024-09-25T11:44:36Z", "measurement_type": "MagneticField", "name": "T96 field model", "processing_level": "Calibrated", "sampling": "1M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cluster/Cluster2/Models/c2-t96-model", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-09-08T18:45:00Z", "target": "Earth", "xmlid": "c2-t96-model"}, "desc": "", "is_public": "True", "name": "Analytical Models", "xmlid": "Cluster2_models"}, "EFW": {"__spz_name__": "EFW", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Cluster2_efw", "att": "auto/Cluster2_efw", "clust2_efw_ppp": {"__spz_name__": "prime parameters", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "clust2-efw-ppp", "att": "auto/clust2-efw-ppp", "c2_edusk": {"__spz_name__": "e_dusk", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c2_edusk", "dataset": "clust2-efw-ppp", "description": "Duskward Electric Field, In spin plane perp to x-gse at spin time resolution (4s)", "display_type": "timeseries", "is_public": "True", "name": "e_dusk", "start_date": "2001-01-01T00:00:06Z", "stop_date": "2019-09-30T23:59:54Z", "ucd": "phys.electField", "units": "mV/m", "xmlid": "c2_edusk"}, "c2_efw_f1": {"__spz_name__": "e_spectral_density_F1", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c2_efw_f1", "dataset": "clust2-efw-ppp", "description": "E-field spectral density [0.3-10] Hz, from EFW waveform at spin time resolution (4s)", "display_type": "timeseries", "is_public": "True", "name": "e_spectral_density_F1", "start_date": "2001-01-01T00:00:06Z", "stop_date": "2019-09-30T23:59:54Z", "ucd": "phys.density", "units": "(V/m)\u00b2/Hz", "xmlid": "c2_efw_f1"}, "c2_efw_f2": {"__spz_name__": "e_spectral_density_F2", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c2_efw_f2", "dataset": "clust2-efw-ppp", "description": "E-field spectral density [10-180] Hz, from EFW waveform at spin time resolution (4s)", "display_type": "timeseries", "is_public": "True", "name": "e_spectral_density_F2", "start_date": "2001-01-01T00:00:06Z", "stop_date": "2019-09-30T23:59:54Z", "ucd": "phys.density", "units": "(V/m)\u00b2/Hz", "xmlid": "c2_efw_f2"}, "c2_pot": {"__spz_name__": "s/c pot", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c2_pot", "dataset": "clust2-efw-ppp", "description": "Probe potential, Relative to Spacecraft at spin time resolution (4s)", "display_type": "timeseries", "is_public": "True", "name": "s/c pot", "start_date": "2001-01-01T00:00:06Z", "stop_date": "2019-09-30T23:59:54Z", "ucd": "phys.potential;phys.electField;instr.obsty", "units": "V", "xmlid": "c2_pot"}, "dataSource": "CSA", "desc": "Cluster 2 Prime Parameters EFW Data
Sampling: 4S
Provider: CSA", "is_public": "True", "lastModificationDate": "2024-10-06T22:09:11Z", "lastUpdate": "2024-08-30T03:07:14Z", "measurement_type": "ElectricField", "name": "prime parameters", "processing_level": "Calibrated", "sampling": "4S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cluster/Cluster2/EFW/clust2-efw-ppp", "start_date": "2001-01-01T00:00:06Z", "stop_date": "2019-09-30T23:59:54Z", "target": "Earth.Magnetosheath", "xmlid": "clust2-efw-ppp"}, "desc": "Electric Field and Waves
LongWire", "electric_field": {"__spz_name__": "electric field", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "c2-efw-efield", "clust2_efw_gse": {"__spz_name__": "3D gse", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "clust2-efw-gse", "att": "auto/clust2-efw-gse", "c2_e_gse": {"__spz_name__": "e_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c2_e_gse", "c2_e_gse0": {"__spz_name__": "ex", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c2_e_gse(0)", "dataset": "clust2-efw-gse", "index1": "0", "is_public": "True", "name": "ex", "parameter": "c2_e_gse", "start_date": "2000-12-02T14:03:02Z", "stop_date": "2022-08-23T13:29:58Z", "xmlid": "c2_e_gse(0)"}, "c2_e_gse1": {"__spz_name__": "ey", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c2_e_gse(1)", "dataset": "clust2-efw-gse", "index1": "1", "is_public": "True", "name": "ey", "parameter": "c2_e_gse", "start_date": "2000-12-02T14:03:02Z", "stop_date": "2022-08-23T13:29:58Z", "xmlid": "c2_e_gse(1)"}, "c2_e_gse2": {"__spz_name__": "ez", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c2_e_gse(2)", "dataset": "clust2-efw-gse", "index1": "2", "is_public": "True", "name": "ez", "parameter": "c2_e_gse", "start_date": "2000-12-02T14:03:02Z", "stop_date": "2022-08-23T13:29:58Z", "xmlid": "c2_e_gse(2)"}, "dataset": "clust2-efw-gse", "description": "Electric Field in GSE at spin time (4s) resolution (3 components)", "display_type": "timeseries", "is_public": "True", "name": "e_gse", "size": "3", "start_date": "2000-12-02T14:03:02Z", "stop_date": "2022-08-23T13:29:58Z", "ucd": "phys.electField", "units": "mV/m", "xmlid": "c2_e_gse"}, "c2_e_gse_qual": {"__spz_name__": "e_quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c2_e_gse_qual", "dataset": "clust2-efw-gse", "description": "Data quality: 0 (Bad data) to 4 (Excellent data)", "display_type": "timeseries", "is_public": "True", "name": "e_quality", "start_date": "2000-12-02T14:03:02Z", "stop_date": "2022-08-23T13:29:58Z", "ucd": "meta.code.qual", "xmlid": "c2_e_gse_qual"}, "c2_e_gsm": {"__spz_name__": "e_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c2_e_gsm", "c2_e_gsm0": {"__spz_name__": "ex", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c2_e_gsm(0)", "dataset": "clust2-efw-gse", "index1": "0", "is_public": "True", "name": "ex", "parameter": "c2_e_gsm", "start_date": "2000-12-02T14:03:02Z", "stop_date": "2022-08-23T13:29:58Z", "xmlid": "c2_e_gsm(0)"}, "c2_e_gsm1": {"__spz_name__": "ey", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c2_e_gsm(1)", "dataset": "clust2-efw-gse", "index1": "1", "is_public": "True", "name": "ey", "parameter": "c2_e_gsm", "start_date": "2000-12-02T14:03:02Z", "stop_date": "2022-08-23T13:29:58Z", "xmlid": "c2_e_gsm(1)"}, "c2_e_gsm2": {"__spz_name__": "ez", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c2_e_gsm(2)", "dataset": "clust2-efw-gse", "index1": "2", "is_public": "True", "name": "ez", "parameter": "c2_e_gsm", "start_date": "2000-12-02T14:03:02Z", "stop_date": "2022-08-23T13:29:58Z", "xmlid": "c2_e_gsm(2)"}, "dataset": "clust2-efw-gse", "description": "Electric Field in GSM at spin time (4s) resolution (3 components)", "display_type": "timeseries", "is_public": "True", "name": "e_gsm", "size": "3", "start_date": "2000-12-02T14:03:02Z", "stop_date": "2022-08-23T13:29:58Z", "ucd": "phys.electField", "units": "mV/m", "xmlid": "c2_e_gsm"}, "c2_etot": {"__spz_name__": "|e|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c2_etot", "dataset": "clust2-efw-gse", "description": "Electric Field Magnitude at spin time (4s) resolution", "display_type": "timeseries", "is_public": "True", "name": "|e|", "start_date": "2000-12-02T14:03:02Z", "stop_date": "2022-08-23T13:29:58Z", "ucd": "phys.electField", "units": "mV/m", "xmlid": "c2_etot"}, "c2_ez_error": {"__spz_name__": "ez_error", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c2_ez_error", "dataset": "clust2-efw-gse", "description": "Error on the (reconstructed) Z component of the electric field", "display_type": "timeseries", "is_public": "True", "name": "ez_error", "start_date": "2000-12-02T14:03:02Z", "stop_date": "2022-08-23T13:29:58Z", "ucd": "stat.error", "xmlid": "c2_ez_error"}, "dataSource": "CSA", "desc": "Cluster 2 3D electric field (L3)
Sampling: 4S
Provider: CSA", "is_public": "True", "lastModificationDate": "2024-10-06T22:09:08Z", "lastUpdate": "2024-08-29T12:36:49Z", "measurement_type": "ElectricField", "name": "3D gse", "processing_level": "Calibrated", "sampling": "4S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cluster/Cluster2/EFW/clust2-efw-gse", "start_date": "2000-12-02T14:03:02Z", "stop_date": "2022-08-23T13:29:58Z", "target": "Earth.Magnetosheath", "xmlid": "clust2-efw-gse"}, "clust2_efw_sr2": {"__spz_name__": "2D isr2", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "clust2-efw-sr2", "att": "auto/clust2-efw-sr2", "c2_e_sr2": {"__spz_name__": "e_sr2", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c2_e_sr2", "c2_e_sr20": {"__spz_name__": "ex", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c2_e_sr2(0)", "dataset": "clust2-efw-sr2", "index1": "0", "is_public": "True", "name": "ex", "parameter": "c2_e_sr2", "start_date": "2000-12-01T00:00:02Z", "stop_date": "2022-08-23T13:29:58Z", "xmlid": "c2_e_sr2(0)"}, "c2_e_sr21": {"__spz_name__": "ey", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c2_e_sr2(1)", "dataset": "clust2-efw-sr2", "index1": "1", "is_public": "True", "name": "ey", "parameter": "c2_e_sr2", "start_date": "2000-12-01T00:00:02Z", "stop_date": "2022-08-23T13:29:58Z", "xmlid": "c2_e_sr2(1)"}, "dataset": "clust2-efw-sr2", "description": "Electric Field in ISR2 at spin time (4s) resolution (2 components)", "display_type": "timeseries", "is_public": "True", "name": "e_sr2", "size": "2", "start_date": "2000-12-01T00:00:02Z", "stop_date": "2022-08-23T13:29:58Z", "ucd": "phys.electField", "units": "mV/m", "xmlid": "c2_e_sr2"}, "c2_e_sr2_qual": {"__spz_name__": "e_quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c2_e_sr2_qual", "dataset": "clust2-efw-sr2", "description": "Data quality: 0 (Bad data) to 4 (Excellent data)", "display_type": "timeseries", "is_public": "True", "name": "e_quality", "start_date": "2000-12-01T00:00:02Z", "stop_date": "2022-08-23T13:29:58Z", "ucd": "meta.code.qual", "xmlid": "c2_e_sr2_qual"}, "dataSource": "CSA", "desc": "Cluster 2 2D electric field (L3)
Sampling: 4S
Provider: CSA", "is_public": "True", "lastModificationDate": "2024-10-06T22:09:32Z", "lastUpdate": "2024-08-28T12:45:12Z", "measurement_type": "ElectricField", "name": "2D isr2", "processing_level": "Calibrated", "sampling": "4S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cluster/Cluster2/EFW/clust2-efw-sr2", "start_date": "2000-12-01T00:00:02Z", "stop_date": "2022-08-23T13:29:58Z", "target": "Earth.Magnetosheath", "xmlid": "clust2-efw-sr2"}, "is_public": "True", "name": "electric field", "xmlid": "c2-efw-efield"}, "is_public": "True", "name": "EFW", "sc_potential": {"__spz_name__": "s/c potential", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "c2-efw-pot", "clust2_pot_full": {"__spz_name__": "0.2 sec (full)", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "clust2-pot-full", "att": "auto/clust2-pot-full", "c2_potfull": {"__spz_name__": "s/c pot", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c2_potfull", "dataset": "clust2-pot-full", "description": "Probe potential, Relative to Spacecraft at full resolution (0.2s)", "display_type": "timeseries", "is_public": "True", "name": "s/c pot", "start_date": "2000-12-01T00:00:00Z", "stop_date": "2024-05-31T23:59:59Z", "ucd": "phys.potential;phys.electField;instr.obsty", "units": "V", "xmlid": "c2_potfull"}, "dataSource": "CSA", "desc": "Cluster 2 Spacecraft Potential (L2)
Sampling: 0.2S
Provider: CSA", "is_public": "True", "lastModificationDate": "2024-10-06T22:12:03Z", "lastUpdate": "2024-09-30T10:15:58Z", "measurement_type": "ElectricField", "name": "0.2 sec (full)", "processing_level": "Calibrated", "sampling": "0.2S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cluster/Cluster2/EFW/clust2-pot-full", "start_date": "2000-12-01T00:00:00Z", "stop_date": "2024-05-31T23:59:59Z", "target": "Earth.Magnetosheath", "xmlid": "clust2-pot-full"}, "clust2_pot_spin": {"__spz_name__": "4 sec (spin)", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "clust2-pot-spin", "att": "auto/clust2-pot-spin", "c2_potspin": {"__spz_name__": "s/c pot", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c2_potspin", "dataset": "clust2-pot-spin", "description": "Probe potential, Relative to Spacecraft at spin time resolution (4s)", "display_type": "timeseries", "is_public": "True", "name": "s/c pot", "start_date": "2000-12-01T00:00:02Z", "stop_date": "2024-05-31T23:59:58Z", "ucd": "phys.potential;phys.electField;instr.obsty", "units": "V", "xmlid": "c2_potspin"}, "dataSource": "CSA", "desc": "Cluster 2 Spacecraft Potential (L3)
Sampling: 4S
Provider: CSA", "is_public": "True", "lastModificationDate": "2024-10-06T22:12:06Z", "lastUpdate": "2024-09-30T10:16:22Z", "measurement_type": "ElectricField", "name": "4 sec (spin)", "processing_level": "Calibrated", "sampling": "4S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cluster/Cluster2/EFW/clust2-pot-spin", "start_date": "2000-12-01T00:00:02Z", "stop_date": "2024-05-31T23:59:58Z", "target": "Earth.Magnetosheath", "xmlid": "clust2-pot-spin"}, "is_public": "True", "name": "s/c potential", "xmlid": "c2-efw-pot"}, "xmlid": "Cluster2_efw"}, "Ephemeris": {"__spz_name__": "Ephemeris", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Cluster2_ephemeris", "att": "auto/Cluster2_ephemeris", "clust2_orb_all": {"__spz_name__": "orbit", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "clust2-orb-all", "att": "auto/clust2-orb-all", "c2_r": {"__spz_name__": "distance c2-earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c2_r", "dataset": "clust2-orb-all", "display_type": "timeseries", "is_public": "True", "name": "distance c2-earth", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-09-08T18:45:00Z", "ucd": "pos.distance;instr.obsty", "units": "Re", "xmlid": "c2_r"}, "c2_xyz_gse": {"__spz_name__": "xyz_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c2_xyz_gse", "c2_xyz_gse0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c2_xyz_gse(0)", "dataset": "clust2-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "c2_xyz_gse", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-09-08T18:45:00Z", "xmlid": "c2_xyz_gse(0)"}, "c2_xyz_gse1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c2_xyz_gse(1)", "dataset": "clust2-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "c2_xyz_gse", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-09-08T18:45:00Z", "xmlid": "c2_xyz_gse(1)"}, "c2_xyz_gse2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c2_xyz_gse(2)", "dataset": "clust2-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "c2_xyz_gse", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-09-08T18:45:00Z", "xmlid": "c2_xyz_gse(2)"}, "dataset": "clust2-orb-all", "description": "Spacecraft position in GSE", "display_type": "timeseries", "is_public": "True", "name": "xyz_gse", "size": "3", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-09-08T18:45:00Z", "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "Re", "xmlid": "c2_xyz_gse"}, "c2_xyz_gsm": {"__spz_name__": "xyz_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c2_xyz_gsm", "c2_xyz_gsm0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c2_xyz_gsm(0)", "dataset": "clust2-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "c2_xyz_gsm", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-09-08T18:45:00Z", "xmlid": "c2_xyz_gsm(0)"}, "c2_xyz_gsm1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c2_xyz_gsm(1)", "dataset": "clust2-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "c2_xyz_gsm", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-09-08T18:45:00Z", "xmlid": "c2_xyz_gsm(1)"}, "c2_xyz_gsm2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c2_xyz_gsm(2)", "dataset": "clust2-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "c2_xyz_gsm", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-09-08T18:45:00Z", "xmlid": "c2_xyz_gsm(2)"}, "dataset": "clust2-orb-all", "description": "Spacecraft position in GSM", "display_type": "timeseries", "is_public": "True", "name": "xyz_gsm", "size": "3", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-09-08T18:45:00Z", "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "Re", "xmlid": "c2_xyz_gsm"}, "dataSource": "IRAP", "desc": "
Sampling: 1M
Provider: IRAP", "is_public": "True", "lastModificationDate": "2024-10-06T22:08:32Z", "lastUpdate": "2024-09-25T11:44:36Z", "measurement_type": "Ephemeris", "name": "orbit", "processing_level": "Calibrated", "sampling": "1M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cluster/Cluster2/Ephemeris/clust2-orb-all", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-09-08T18:45:00Z", "xmlid": "clust2-orb-all"}, "desc": "", "is_public": "True", "name": "Ephemeris", "xmlid": "Cluster2_ephemeris"}, "FGM": {"__spz_name__": "FGM", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Cluster2_fgm", "att": "auto/Cluster2_fgm", "clust2_fgm_high": {"__spz_name__": "0.2 sec (5vps)", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "clust2-fgm-high", "att": "auto/clust2-fgm-high", "c2_b_5vps": {"__spz_name__": "b_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c2_b_5vps", "c2_b_5vps0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c2_b_5vps(0)", "dataset": "clust2-fgm-high", "index1": "0", "is_public": "True", "name": "bx", "parameter": "c2_b_5vps", "start_date": "2001-01-07T06:14:55Z", "stop_date": "2023-05-01T23:59:59Z", "xmlid": "c2_b_5vps(0)"}, "c2_b_5vps1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c2_b_5vps(1)", "dataset": "clust2-fgm-high", "index1": "1", "is_public": "True", "name": "by", "parameter": "c2_b_5vps", "start_date": "2001-01-07T06:14:55Z", "stop_date": "2023-05-01T23:59:59Z", "xmlid": "c2_b_5vps(1)"}, "c2_b_5vps2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c2_b_5vps(2)", "dataset": "clust2-fgm-high", "index1": "2", "is_public": "True", "name": "bz", "parameter": "c2_b_5vps", "start_date": "2001-01-07T06:14:55Z", "stop_date": "2023-05-01T23:59:59Z", "xmlid": "c2_b_5vps(2)"}, "dataset": "clust2-fgm-high", "description": "FGM: magnetic field vector (3 GSE components), 0.2 s resolution", "display_type": "timeseries", "is_public": "True", "name": "b_gse", "size": "3", "start_date": "2001-01-07T06:14:55Z", "stop_date": "2023-05-01T23:59:59Z", "ucd": "phys.magField", "units": "nT", "xmlid": "c2_b_5vps"}, "c2_bgsm_5vps": {"__spz_name__": "b_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c2_bgsm_5vps", "c2_bgsm_5vps0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c2_bgsm_5vps(0)", "dataset": "clust2-fgm-high", "index1": "0", "is_public": "True", "name": "bx", "parameter": "c2_bgsm_5vps", "start_date": "2001-01-07T06:14:55Z", "stop_date": "2023-05-01T23:59:59Z", "xmlid": "c2_bgsm_5vps(0)"}, "c2_bgsm_5vps1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c2_bgsm_5vps(1)", "dataset": "clust2-fgm-high", "index1": "1", "is_public": "True", "name": "by", "parameter": "c2_bgsm_5vps", "start_date": "2001-01-07T06:14:55Z", "stop_date": "2023-05-01T23:59:59Z", "xmlid": "c2_bgsm_5vps(1)"}, "c2_bgsm_5vps2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c2_bgsm_5vps(2)", "dataset": "clust2-fgm-high", "index1": "2", "is_public": "True", "name": "bz", "parameter": "c2_bgsm_5vps", "start_date": "2001-01-07T06:14:55Z", "stop_date": "2023-05-01T23:59:59Z", "xmlid": "c2_bgsm_5vps(2)"}, "dataset": "clust2-fgm-high", "description": "FGM: magnetic field vector (3 GSM components), 0.2 s resolution", "display_type": "timeseries", "is_public": "True", "name": "b_gsm", "size": "3", "start_date": "2001-01-07T06:14:55Z", "stop_date": "2023-05-01T23:59:59Z", "ucd": "phys.magField", "units": "nT", "xmlid": "c2_bgsm_5vps"}, "c2_btot_5vps": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c2_btot_5vps", "dataset": "clust2-fgm-high", "description": "FGM: magnetic field vector magnitude", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "2001-01-07T06:14:55Z", "stop_date": "2023-05-01T23:59:59Z", "ucd": "phys.magField", "units": "nT", "xmlid": "c2_btot_5vps"}, "dataSource": "CSA", "desc": "Cluster 2 5-vector-per-spin FGM Data
Sampling: 0.2S
Provider: CSA", "is_public": "True", "lastModificationDate": "2024-10-06T22:09:34Z", "lastUpdate": "2024-08-22T17:02:55Z", "measurement_type": "MagneticField", "name": "0.2 sec (5vps)", "processing_level": "Calibrated", "sampling": "0.2S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cluster/Cluster2/FGM/clust2-fgm-high", "start_date": "2001-01-07T06:14:55Z", "stop_date": "2023-05-01T23:59:59Z", "target": "Earth.Magnetosheath", "xmlid": "clust2-fgm-high"}, "clust2_fgm_prp": {"__spz_name__": "4 sec (spin)", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "clust2-fgm-prp", "att": "auto/clust2-fgm-prp", "c2_b_gse": {"__spz_name__": "b_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c2_b_gse", "c2_b_gse0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c2_b_gse(0)", "dataset": "clust2-fgm-prp", "index1": "0", "is_public": "True", "name": "bx", "parameter": "c2_b_gse", "start_date": "2001-01-07T06:15:01Z", "stop_date": "2023-05-01T23:59:58Z", "xmlid": "c2_b_gse(0)"}, "c2_b_gse1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c2_b_gse(1)", "dataset": "clust2-fgm-prp", "index1": "1", "is_public": "True", "name": "by", "parameter": "c2_b_gse", "start_date": "2001-01-07T06:15:01Z", "stop_date": "2023-05-01T23:59:58Z", "xmlid": "c2_b_gse(1)"}, "c2_b_gse2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c2_b_gse(2)", "dataset": "clust2-fgm-prp", "index1": "2", "is_public": "True", "name": "bz", "parameter": "c2_b_gse", "start_date": "2001-01-07T06:15:01Z", "stop_date": "2023-05-01T23:59:58Z", "xmlid": "c2_b_gse(2)"}, "dataset": "clust2-fgm-prp", "description": "FGM: magnetic field vector (3 GSE components), 4s resolution", "display_type": "timeseries", "is_public": "True", "name": "b_gse", "size": "3", "start_date": "2001-01-07T06:15:01Z", "stop_date": "2023-05-01T23:59:58Z", "ucd": "phys.magField", "units": "nT", "xmlid": "c2_b_gse"}, "c2_b_gsm": {"__spz_name__": "b_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c2_b_gsm", "c2_b_gsm0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c2_b_gsm(0)", "dataset": "clust2-fgm-prp", "index1": "0", "is_public": "True", "name": "bx", "parameter": "c2_b_gsm", "start_date": "2001-01-07T06:15:01Z", "stop_date": "2023-05-01T23:59:58Z", "xmlid": "c2_b_gsm(0)"}, "c2_b_gsm1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c2_b_gsm(1)", "dataset": "clust2-fgm-prp", "index1": "1", "is_public": "True", "name": "by", "parameter": "c2_b_gsm", "start_date": "2001-01-07T06:15:01Z", "stop_date": "2023-05-01T23:59:58Z", "xmlid": "c2_b_gsm(1)"}, "c2_b_gsm2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c2_b_gsm(2)", "dataset": "clust2-fgm-prp", "index1": "2", "is_public": "True", "name": "bz", "parameter": "c2_b_gsm", "start_date": "2001-01-07T06:15:01Z", "stop_date": "2023-05-01T23:59:58Z", "xmlid": "c2_b_gsm(2)"}, "dataset": "clust2-fgm-prp", "description": "FGM: magnetic field vector (3 GSM components), 4s resolution", "display_type": "timeseries", "is_public": "True", "name": "b_gsm", "size": "3", "start_date": "2001-01-07T06:15:01Z", "stop_date": "2023-05-01T23:59:58Z", "ucd": "phys.magField", "units": "nT", "xmlid": "c2_b_gsm"}, "c2_btot": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c2_btot", "dataset": "clust2-fgm-prp", "description": "FGM: magnetic field vector magnitude", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "2001-01-07T06:15:01Z", "stop_date": "2023-05-01T23:59:58Z", "ucd": "phys.magField", "units": "nT", "xmlid": "c2_btot"}, "dataSource": "CSA", "desc": "Cluster 2 Spin Resolution FGM Data
Sampling: 4S
Provider: CSA", "is_public": "True", "lastModificationDate": "2024-10-06T22:09:37Z", "lastUpdate": "2024-08-22T16:23:29Z", "measurement_type": "MagneticField", "name": "4 sec (spin)", "processing_level": "Calibrated", "sampling": "4S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cluster/Cluster2/FGM/clust2-fgm-prp", "start_date": "2001-01-07T06:15:01Z", "stop_date": "2023-05-01T23:59:58Z", "target": "Earth.Magnetosheath", "xmlid": "clust2-fgm-prp"}, "desc": "Fluxgate Magnetometer
Magnetometer", "is_public": "True", "name": "FGM", "xmlid": "Cluster2_fgm"}, "PEACE": {"__spz_name__": "PEACE", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Cluster2_peace", "att": "auto/Cluster2_peace", "clust2_pea_mom": {"__spz_name__": "electron moments", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "clust2-pea-mom", "att": "auto/clust2-pea-mom", "c2_pea_dens": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c2_pea_dens", "dataset": "clust2-pea-mom", "description": "Electron number density at spin time resolution", "display_type": "timeseries", "is_public": "True", "name": "density", "start_date": "2001-08-01T00:00:11Z", "stop_date": "2022-12-30T23:59:50Z", "ucd": "phys.density;phys.electron", "units": "cm\u207b\u00b3", "xmlid": "c2_pea_dens"}, "c2_pea_flux": {"__spz_name__": "heat_flux_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c2_pea_flux", "c2_pea_flux0": {"__spz_name__": "flux_x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c2_pea_flux(0)", "dataset": "clust2-pea-mom", "index1": "0", "is_public": "True", "name": "flux_x", "parameter": "c2_pea_flux", "start_date": "2001-08-01T00:00:11Z", "stop_date": "2022-12-30T23:59:50Z", "xmlid": "c2_pea_flux(0)"}, "c2_pea_flux1": {"__spz_name__": "flux_y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c2_pea_flux(1)", "dataset": "clust2-pea-mom", "index1": "0", "is_public": "True", "name": "flux_y", "parameter": "c2_pea_flux", "start_date": "2001-08-01T00:00:11Z", "stop_date": "2022-12-30T23:59:50Z", "xmlid": "c2_pea_flux(1)"}, "c2_pea_flux2": {"__spz_name__": "flux_z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c2_pea_flux(2)", "dataset": "clust2-pea-mom", "index1": "0", "is_public": "True", "name": "flux_z", "parameter": "c2_pea_flux", "start_date": "2001-08-01T00:00:11Z", "stop_date": "2022-12-30T23:59:50Z", "xmlid": "c2_pea_flux(2)"}, "dataset": "clust2-pea-mom", "description": "Parallel electron heat flux at spin time resolution, in GSE", "display_type": "timeseries", "is_public": "True", "name": "heat_flux_gse", "size": "3", "start_date": "2001-08-01T00:00:11Z", "stop_date": "2022-12-30T23:59:50Z", "ucd": "phys.flux.energy;phys.atmol.ionStage", "units": "microW/m\u00b2", "xmlid": "c2_pea_flux"}, "c2_pea_press": {"__spz_name__": "pressure_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c2_pea_press", "c2_pea_press0": {"__spz_name__": "xx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c2_pea_press(0)", "dataset": "clust2-pea-mom", "index1": "0", "is_public": "True", "name": "xx", "parameter": "c2_pea_press", "start_date": "2001-08-01T00:00:11Z", "stop_date": "2022-12-30T23:59:50Z", "xmlid": "c2_pea_press(0)"}, "c2_pea_press1": {"__spz_name__": "xy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c2_pea_press(1)", "dataset": "clust2-pea-mom", "index1": "1", "is_public": "True", "name": "xy", "parameter": "c2_pea_press", "start_date": "2001-08-01T00:00:11Z", "stop_date": "2022-12-30T23:59:50Z", "xmlid": "c2_pea_press(1)"}, "c2_pea_press2": {"__spz_name__": "xz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c2_pea_press(2)", "dataset": "clust2-pea-mom", "index1": "2", "is_public": "True", "name": "xz", "parameter": "c2_pea_press", "start_date": "2001-08-01T00:00:11Z", "stop_date": "2022-12-30T23:59:50Z", "xmlid": "c2_pea_press(2)"}, "c2_pea_press3": {"__spz_name__": "yx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c2_pea_press(3)", "dataset": "clust2-pea-mom", "index1": "3", "is_public": "True", "name": "yx", "parameter": "c2_pea_press", "start_date": "2001-08-01T00:00:11Z", "stop_date": "2022-12-30T23:59:50Z", "xmlid": "c2_pea_press(3)"}, "c2_pea_press4": {"__spz_name__": "yy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c2_pea_press(4)", "dataset": "clust2-pea-mom", "index1": "4", "is_public": "True", "name": "yy", "parameter": "c2_pea_press", "start_date": "2001-08-01T00:00:11Z", "stop_date": "2022-12-30T23:59:50Z", "xmlid": "c2_pea_press(4)"}, "c2_pea_press5": {"__spz_name__": "yz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c2_pea_press(5)", "dataset": "clust2-pea-mom", "index1": "5", "is_public": "True", "name": "yz", "parameter": "c2_pea_press", "start_date": "2001-08-01T00:00:11Z", "stop_date": "2022-12-30T23:59:50Z", "xmlid": "c2_pea_press(5)"}, "c2_pea_press6": {"__spz_name__": "zx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c2_pea_press(6)", "dataset": "clust2-pea-mom", "index1": "6", "is_public": "True", "name": "zx", "parameter": "c2_pea_press", "start_date": "2001-08-01T00:00:11Z", "stop_date": "2022-12-30T23:59:50Z", "xmlid": "c2_pea_press(6)"}, "c2_pea_press7": {"__spz_name__": "zy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c2_pea_press(7)", "dataset": "clust2-pea-mom", "index1": "7", "is_public": "True", "name": "zy", "parameter": "c2_pea_press", "start_date": "2001-08-01T00:00:11Z", "stop_date": "2022-12-30T23:59:50Z", "xmlid": "c2_pea_press(7)"}, "c2_pea_press8": {"__spz_name__": "zz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c2_pea_press(8)", "dataset": "clust2-pea-mom", "index1": "8", "is_public": "True", "name": "zz", "parameter": "c2_pea_press", "start_date": "2001-08-01T00:00:11Z", "stop_date": "2022-12-30T23:59:50Z", "xmlid": "c2_pea_press(8)"}, "dataset": "clust2-pea-mom", "description": "Electron pressure tensor at spin time resolution, in GSE", "display_type": "timeseries", "is_public": "True", "name": "pressure_gse", "size": "9", "start_date": "2001-08-01T00:00:11Z", "stop_date": "2022-12-30T23:59:50Z", "ucd": "phys.pressure", "units": "nPa", "xmlid": "c2_pea_press"}, "c2_pea_tpar": {"__spz_name__": "t_para", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c2_pea_tpar", "dataset": "clust2-pea-mom", "description": "Parallel electron temperature at spin time resolution", "display_type": "timeseries", "is_public": "True", "name": "t_para", "start_date": "2001-08-01T00:00:11Z", "stop_date": "2022-12-30T23:59:50Z", "ucd": "phys.temperature;phys.electron", "units": "eV", "xmlid": "c2_pea_tpar"}, "c2_pea_tperp": {"__spz_name__": "t_perp", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c2_pea_tperp", "dataset": "clust2-pea-mom", "description": "Perpendicular electron temperature at spin time resolution", "display_type": "timeseries", "is_public": "True", "name": "t_perp", "start_date": "2001-08-01T00:00:11Z", "stop_date": "2022-12-30T23:59:50Z", "ucd": "phys.temperature;phys.electron", "units": "eV", "xmlid": "c2_pea_tperp"}, "c2_pea_vgse": {"__spz_name__": "v_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c2_pea_vgse", "c2_pea_vgse0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c2_pea_vgse(0)", "dataset": "clust2-pea-mom", "index1": "0", "is_public": "True", "name": "vx", "parameter": "c2_pea_vgse", "start_date": "2001-08-01T00:00:11Z", "stop_date": "2022-12-30T23:59:50Z", "xmlid": "c2_pea_vgse(0)"}, "c2_pea_vgse1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c2_pea_vgse(1)", "dataset": "clust2-pea-mom", "index1": "1", "is_public": "True", "name": "vy", "parameter": "c2_pea_vgse", "start_date": "2001-08-01T00:00:11Z", "stop_date": "2022-12-30T23:59:50Z", "xmlid": "c2_pea_vgse(1)"}, "c2_pea_vgse2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c2_pea_vgse(2)", "dataset": "clust2-pea-mom", "index1": "2", "is_public": "True", "name": "vz", "parameter": "c2_pea_vgse", "start_date": "2001-08-01T00:00:11Z", "stop_date": "2022-12-30T23:59:50Z", "xmlid": "c2_pea_vgse(2)"}, "dataset": "clust2-pea-mom", "description": "Electron velocity at spin time resolution", "display_type": "timeseries", "is_public": "True", "name": "v_gse", "size": "3", "start_date": "2001-08-01T00:00:11Z", "stop_date": "2022-12-30T23:59:50Z", "ucd": "phys.veloc;phys.electron", "units": "km/s", "xmlid": "c2_pea_vgse"}, "c2_pea_vgsm": {"__spz_name__": "v_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c2_pea_vgsm", "c2_pea_vgsm0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c2_pea_vgsm(0)", "dataset": "clust2-pea-mom", "index1": "0", "is_public": "True", "name": "vx", "parameter": "c2_pea_vgsm", "start_date": "2001-08-01T00:00:11Z", "stop_date": "2022-12-30T23:59:50Z", "xmlid": "c2_pea_vgsm(0)"}, "c2_pea_vgsm1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c2_pea_vgsm(1)", "dataset": "clust2-pea-mom", "index1": "1", "is_public": "True", "name": "vy", "parameter": "c2_pea_vgsm", "start_date": "2001-08-01T00:00:11Z", "stop_date": "2022-12-30T23:59:50Z", "xmlid": "c2_pea_vgsm(1)"}, "c2_pea_vgsm2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c2_pea_vgsm(2)", "dataset": "clust2-pea-mom", "index1": "2", "is_public": "True", "name": "vz", "parameter": "c2_pea_vgsm", "start_date": "2001-08-01T00:00:11Z", "stop_date": "2022-12-30T23:59:50Z", "xmlid": "c2_pea_vgsm(2)"}, "dataset": "clust2-pea-mom", "description": "Electron velocity at spin time resolution, in GSM", "display_type": "timeseries", "is_public": "True", "name": "v_gsm", "size": "3", "start_date": "2001-08-01T00:00:11Z", "stop_date": "2022-12-30T23:59:50Z", "ucd": "phys.veloc;phys.electron", "units": "km/s", "xmlid": "c2_pea_vgsm"}, "c2_pea_vpar": {"__spz_name__": "v_para_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c2_pea_vpar", "c2_pea_vpar0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c2_pea_vpar(0)", "dataset": "clust2-pea-mom", "index1": "0", "is_public": "True", "name": "vx", "parameter": "c2_pea_vpar", "start_date": "2001-08-01T00:00:11Z", "stop_date": "2022-12-30T23:59:50Z", "xmlid": "c2_pea_vpar(0)"}, "c2_pea_vpar1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c2_pea_vpar(1)", "dataset": "clust2-pea-mom", "index1": "1", "is_public": "True", "name": "vy", "parameter": "c2_pea_vpar", "start_date": "2001-08-01T00:00:11Z", "stop_date": "2022-12-30T23:59:50Z", "xmlid": "c2_pea_vpar(1)"}, "c2_pea_vpar2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c2_pea_vpar(2)", "dataset": "clust2-pea-mom", "index1": "2", "is_public": "True", "name": "vz", "parameter": "c2_pea_vpar", "start_date": "2001-08-01T00:00:11Z", "stop_date": "2022-12-30T23:59:50Z", "xmlid": "c2_pea_vpar(2)"}, "dataset": "clust2-pea-mom", "description": "Electron parallel velocity at spin time resolution, in GSE", "display_type": "timeseries", "is_public": "True", "name": "v_para_gse", "size": "3", "start_date": "2001-08-01T00:00:11Z", "stop_date": "2022-12-30T23:59:50Z", "ucd": "phys.veloc;phys.electron", "units": "km/s", "xmlid": "c2_pea_vpar"}, "c2_pea_vpar_gsm": {"__spz_name__": "v_para_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c2_pea_vpar_gsm", "c2_pea_vpar_gsm0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c2_pea_vpar_gsm(0)", "dataset": "clust2-pea-mom", "index1": "0", "is_public": "True", "name": "vx", "parameter": "c2_pea_vpar_gsm", "start_date": "2001-08-01T00:00:11Z", "stop_date": "2022-12-30T23:59:50Z", "xmlid": "c2_pea_vpar_gsm(0)"}, "c2_pea_vpar_gsm1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c2_pea_vpar_gsm(1)", "dataset": "clust2-pea-mom", "index1": "1", "is_public": "True", "name": "vy", "parameter": "c2_pea_vpar_gsm", "start_date": "2001-08-01T00:00:11Z", "stop_date": "2022-12-30T23:59:50Z", "xmlid": "c2_pea_vpar_gsm(1)"}, "c2_pea_vpar_gsm2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c2_pea_vpar_gsm(2)", "dataset": "clust2-pea-mom", "index1": "2", "is_public": "True", "name": "vz", "parameter": "c2_pea_vpar_gsm", "start_date": "2001-08-01T00:00:11Z", "stop_date": "2022-12-30T23:59:50Z", "xmlid": "c2_pea_vpar_gsm(2)"}, "dataset": "clust2-pea-mom", "description": "Electron parallel velocity at spin time resolution, in GSM", "display_type": "timeseries", "is_public": "True", "name": "v_para_gsm", "size": "3", "start_date": "2001-08-01T00:00:11Z", "stop_date": "2022-12-30T23:59:50Z", "ucd": "phys.veloc;phys.electron", "units": "km/s", "xmlid": "c2_pea_vpar_gsm"}, "c2_pea_vperp": {"__spz_name__": "v_perp_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c2_pea_vperp", "c2_pea_vperp0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c2_pea_vperp(0)", "dataset": "clust2-pea-mom", "index1": "0", "is_public": "True", "name": "vx", "parameter": "c2_pea_vperp", "start_date": "2001-08-01T00:00:11Z", "stop_date": "2022-12-30T23:59:50Z", "xmlid": "c2_pea_vperp(0)"}, "c2_pea_vperp1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c2_pea_vperp(1)", "dataset": "clust2-pea-mom", "index1": "1", "is_public": "True", "name": "vy", "parameter": "c2_pea_vperp", "start_date": "2001-08-01T00:00:11Z", "stop_date": "2022-12-30T23:59:50Z", "xmlid": "c2_pea_vperp(1)"}, "c2_pea_vperp2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c2_pea_vperp(2)", "dataset": "clust2-pea-mom", "index1": "2", "is_public": "True", "name": "vz", "parameter": "c2_pea_vperp", "start_date": "2001-08-01T00:00:11Z", "stop_date": "2022-12-30T23:59:50Z", "xmlid": "c2_pea_vperp(2)"}, "dataset": "clust2-pea-mom", "description": "Electron perpendicular velocity at spin time resolution, in GSE", "display_type": "timeseries", "is_public": "True", "name": "v_perp_gse", "size": "3", "start_date": "2001-08-01T00:00:11Z", "stop_date": "2022-12-30T23:59:50Z", "ucd": "phys.veloc;phys.electron", "units": "km/s", "xmlid": "c2_pea_vperp"}, "c2_pea_vperp_gsm": {"__spz_name__": "v_perp_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c2_pea_vperp_gsm", "c2_pea_vperp_gsm0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c2_pea_vperp_gsm(0)", "dataset": "clust2-pea-mom", "index1": "0", "is_public": "True", "name": "vx", "parameter": "c2_pea_vperp_gsm", "start_date": "2001-08-01T00:00:11Z", "stop_date": "2022-12-30T23:59:50Z", "xmlid": "c2_pea_vperp_gsm(0)"}, "c2_pea_vperp_gsm1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c2_pea_vperp_gsm(1)", "dataset": "clust2-pea-mom", "index1": "1", "is_public": "True", "name": "vy", "parameter": "c2_pea_vperp_gsm", "start_date": "2001-08-01T00:00:11Z", "stop_date": "2022-12-30T23:59:50Z", "xmlid": "c2_pea_vperp_gsm(1)"}, "c2_pea_vperp_gsm2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c2_pea_vperp_gsm(2)", "dataset": "clust2-pea-mom", "index1": "2", "is_public": "True", "name": "vz", "parameter": "c2_pea_vperp_gsm", "start_date": "2001-08-01T00:00:11Z", "stop_date": "2022-12-30T23:59:50Z", "xmlid": "c2_pea_vperp_gsm(2)"}, "dataset": "clust2-pea-mom", "description": "Electron perpendicular velocity at spin time resolution, in GSM", "display_type": "timeseries", "is_public": "True", "name": "v_perp_gsm", "size": "3", "start_date": "2001-08-01T00:00:11Z", "stop_date": "2022-12-30T23:59:50Z", "ucd": "phys.veloc;phys.electron", "units": "km/s", "xmlid": "c2_pea_vperp_gsm"}, "dataSource": "CSA", "desc": "Cluster 2 electron moments
Sampling: 4S
Provider: CSA", "is_public": "True", "lastModificationDate": "2024-10-06T22:11:56Z", "lastUpdate": "2024-08-22T11:09:21Z", "measurement_type": "ThermalPlasma", "name": "electron moments", "processing_level": "Calibrated", "sampling": "4S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cluster/Cluster2/PEACE/clust2-pea-mom", "start_date": "2001-08-01T00:00:11Z", "stop_date": "2022-12-30T23:59:50Z", "target": "Earth.Magnetosheath", "xmlid": "clust2-pea-mom"}, "clust2_pea_pa": {"__spz_name__": "pitch-angle/energy distribution", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "clust2-pea-pa", "att": "auto/clust2-pea-pa", "c2_pea_bckgrd": {"__spz_name__": "background : 2D pa/energy", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c2_pea_bckgrd", "dataset": "clust2-pea-pa", "description": "Background energy flux at spin time resolution", "display_type": "spectrogram", "is_public": "True", "name": "background : 2D pa/energy", "start_date": "2000-11-11T08:47:11Z", "stop_date": "2022-12-30T23:59:46Z", "ucd": "phys.density;phys.electron", "units": "keV/cm\u00b2-s-str-keV", "xmlid": "c2_pea_bckgrd"}, "c2_pea_pad": {"__spz_name__": "diff energy flux : 2D pa/energy", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c2_pea_pad", "dataset": "clust2-pea-pa", "description": "Electron differential energy flux at spin time resolution", "display_type": "spectrogram", "is_public": "True", "name": "diff energy flux : 2D pa/energy", "start_date": "2000-11-11T08:47:11Z", "stop_date": "2022-12-30T23:59:46Z", "ucd": "phys.density;phys.electron", "units": "keV/cm\u00b2-s-str-keV", "xmlid": "c2_pea_pad"}, "dataSource": "CSA", "desc": "Cluster2 2D Pitch-Angle/Energy electron distribution
Sampling: 4S
Provider: CSA", "is_public": "True", "lastModificationDate": "2024-10-06T22:12:00Z", "lastUpdate": "2024-09-04T19:51:41Z", "measurement_type": "ThermalPlasma", "name": "pitch-angle/energy distribution", "processing_level": "Calibrated", "sampling": "4S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cluster/Cluster2/PEACE/clust2-pea-pa", "start_date": "2000-11-11T08:47:11Z", "stop_date": "2022-12-30T23:59:46Z", "target": "Earth.Magnetosheath", "xmlid": "clust2-pea-pa"}, "desc": "Plasma Electron and Current Experiment
ElectrostaticAnalyser", "is_public": "True", "name": "PEACE", "xmlid": "Cluster2_peace"}, "STAFF": {"__spz_name__": "STAFF", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Cluster2_staff", "att": "auto/Cluster2_staff", "clust2_sta_pp": {"__spz_name__": "prime parameters", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "clust2-sta-pp", "att": "auto/clust2-sta-pp", "c2_sta_f1": {"__spz_name__": "b spectral density (1-10 Hz)", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c2_sta_f1", "c2_sta_f10": {"__spz_name__": "parallel to b0", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c2_sta_f1(0)", "dataset": "clust2-sta-pp", "index1": "0", "is_public": "True", "name": "parallel to b0", "parameter": "c2_sta_f1", "start_date": "2001-01-09T15:10:02Z", "stop_date": "2012-12-31T23:59:46Z", "xmlid": "c2_sta_f1(0)"}, "c2_sta_f11": {"__spz_name__": "perpendicular to b0", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c2_sta_f1(1)", "dataset": "clust2-sta-pp", "index1": "1", "is_public": "True", "name": "perpendicular to b0", "parameter": "c2_sta_f1", "start_date": "2001-01-09T15:10:02Z", "stop_date": "2012-12-31T23:59:46Z", "xmlid": "c2_sta_f1(1)"}, "dataset": "clust2-sta-pp", "description": "Magnetic field spectral power in the 1-10 Hz (f1) at spin time resolution (parallel and perp components)", "display_type": "timeseries", "is_public": "True", "name": "b spectral density (1-10 Hz)", "size": "2", "start_date": "2001-01-09T15:10:02Z", "stop_date": "2012-12-31T23:59:46Z", "ucd": "phys.magField", "units": "nT\u00b2 Hz\u207b\u00b9", "xmlid": "c2_sta_f1"}, "c2_sta_f2": {"__spz_name__": "b spectral density (10-180 Hz)", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c2_sta_f2", "c2_sta_f20": {"__spz_name__": "parallel to b0", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c2_sta_f2(0)", "dataset": "clust2-sta-pp", "index1": "0", "is_public": "True", "name": "parallel to b0", "parameter": "c2_sta_f2", "start_date": "2001-01-09T15:10:02Z", "stop_date": "2012-12-31T23:59:46Z", "xmlid": "c2_sta_f2(0)"}, "c2_sta_f21": {"__spz_name__": "perpendicular to b0", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c2_sta_f2(1)", "dataset": "clust2-sta-pp", "index1": "1", "is_public": "True", "name": "perpendicular to b0", "parameter": "c2_sta_f2", "start_date": "2001-01-09T15:10:02Z", "stop_date": "2012-12-31T23:59:46Z", "xmlid": "c2_sta_f2(1)"}, "dataset": "clust2-sta-pp", "description": "Magnetic field spectral power in the 10-180 Hz (f2) at spin time resolution (parallel and perp components)", "display_type": "timeseries", "is_public": "True", "name": "b spectral density (10-180 Hz)", "size": "2", "start_date": "2001-01-09T15:10:02Z", "stop_date": "2012-12-31T23:59:46Z", "ucd": "phys.magField", "units": "nT\u00b2 Hz\u207b\u00b9", "xmlid": "c2_sta_f2"}, "c2_sta_f3": {"__spz_name__": "b spectral density (180-4000 Hz)", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c2_sta_f3", "c2_sta_f30": {"__spz_name__": "parallel to b0", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c2_sta_f3(0)", "dataset": "clust2-sta-pp", "index1": "0", "is_public": "True", "name": "parallel to b0", "parameter": "c2_sta_f3", "start_date": "2001-01-09T15:10:02Z", "stop_date": "2012-12-31T23:59:46Z", "xmlid": "c2_sta_f3(0)"}, "c2_sta_f31": {"__spz_name__": "perpendicular to b0", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c2_sta_f3(1)", "dataset": "clust2-sta-pp", "index1": "1", "is_public": "True", "name": "perpendicular to b0", "parameter": "c2_sta_f3", "start_date": "2001-01-09T15:10:02Z", "stop_date": "2012-12-31T23:59:46Z", "xmlid": "c2_sta_f3(1)"}, "dataset": "clust2-sta-pp", "description": "Magnetic field spectral power in the 80-4000 Hz (f3) at spin time resolution (parallel and perp components)", "display_type": "timeseries", "is_public": "True", "name": "b spectral density (180-4000 Hz)", "size": "2", "start_date": "2001-01-09T15:10:02Z", "stop_date": "2012-12-31T23:59:46Z", "ucd": "phys.magField", "units": "nT\u00b2 Hz\u207b\u00b9", "xmlid": "c2_sta_f3"}, "c2_stae_f2": {"__spz_name__": "e spectral density (10-180 Hz)", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c2_stae_f2", "dataset": "clust2-sta-pp", "description": "Electric field spectral power in the 10-180 Hz (f2) frequency range at spin time resolution.", "display_type": "timeseries", "is_public": "True", "name": "e spectral density (10-180 Hz)", "start_date": "2001-01-09T15:10:02Z", "stop_date": "2012-12-31T23:59:46Z", "ucd": "phys.electField", "units": "V\u00b2 m\u207b\u00b2 Hz\u207b\u00b9", "xmlid": "c2_stae_f2"}, "c2_stae_f3": {"__spz_name__": "e spectral density (180-4000 Hz)", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c2_stae_f3", "dataset": "clust2-sta-pp", "description": "Electric field spectral power in the 180-4000 Hz (f3) frequency range at spin time resolution.", "display_type": "timeseries", "is_public": "True", "name": "e spectral density (180-4000 Hz)", "start_date": "2001-01-09T15:10:02Z", "stop_date": "2012-12-31T23:59:46Z", "ucd": "phys.electField", "units": "V\u00b2 m\u207b\u00b2 Hz\u207b\u00b9", "xmlid": "c2_stae_f3"}, "dataSource": "CSDS-CNES", "desc": "Cluster 2 Prime Parameter STAFF Data
Sampling: 4S
Provider: CSDS-CNES", "is_public": "True", "lastModificationDate": "2013-05-03T14:17:15Z", "lastUpdate": "2013-04-22T17:34:15Z", "measurement_type": "ElectricField", "name": "prime parameters", "processing_level": "Calibrated", "sampling": "4S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cluster/Cluster2/STAFF/clust2-sta-pp", "start_date": "2001-01-09T15:10:02Z", "stop_date": "2012-12-31T23:59:46Z", "target": "Earth.Magnetosphere", "xmlid": "clust2-sta-pp"}, "desc": "Spatio-Temporal Analysis of Magnetic Field Fluctuations
SearchCoil", "is_public": "True", "name": "STAFF", "xmlid": "Cluster2_staff"}, "WHISPER": {"__spz_name__": "WHISPER", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Cluster2_whisper", "att": "auto/Cluster2_whisper", "clust2_whi_pp": {"__spz_name__": "electric field : spectral density", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "clust2-whi-pp", "att": "auto/clust2-whi-pp", "c2_whipp_f4": {"__spz_name__": "f4 : 4-10 kHz", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c2_whipp_f4", "dataset": "clust2-whi-pp", "description": "Electric field spectral density in the 4-10 kHz (f4) frequency range at spin time resolution", "display_type": "timeseries", "is_public": "True", "name": "f4 : 4-10 kHz", "start_date": "2001-01-09T15:10:02Z", "stop_date": "2012-12-31T23:59:50Z", "ucd": "phys.density;phys.electron", "units": "V\u00b2 m\u207b\u00b2 Hz\u207b\u00b9", "xmlid": "c2_whipp_f4"}, "c2_whipp_f5": {"__spz_name__": "f5 : 10-20 kHz", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c2_whipp_f5", "dataset": "clust2-whi-pp", "description": "Electric field spectral density in the 10-20 kHz (f5) frequency range at spin time resolution", "display_type": "timeseries", "is_public": "True", "name": "f5 : 10-20 kHz", "start_date": "2001-01-09T15:10:02Z", "stop_date": "2012-12-31T23:59:50Z", "ucd": "phys.density;phys.electron", "units": "V\u00b2 m\u207b\u00b2 Hz\u207b\u00b9", "xmlid": "c2_whipp_f5"}, "c2_whipp_f6": {"__spz_name__": "f6 : 20-80 kHz", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c2_whipp_f6", "dataset": "clust2-whi-pp", "description": "Electric field spectral density in the 20-80 kHz (f6) frequency range at spin time resolution", "display_type": "timeseries", "is_public": "True", "name": "f6 : 20-80 kHz", "start_date": "2001-01-09T15:10:02Z", "stop_date": "2012-12-31T23:59:50Z", "ucd": "phys.density;phys.electron", "units": "V\u00b2 m\u207b\u00b2 Hz\u207b\u00b9", "xmlid": "c2_whipp_f6"}, "dataSource": "CSDS-CNES", "desc": "Cluster 2 Prime Parameter WHISPER Data
Sampling: 4S
Provider: CSDS-CNES", "is_public": "True", "lastModificationDate": "2013-05-03T14:02:21Z", "lastUpdate": "2013-04-23T13:06:36Z", "measurement_type": "ElectricField", "name": "electric field : spectral density", "processing_level": "Calibrated", "sampling": "4S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cluster/Cluster2/WHISPER/clust2-whi-pp", "start_date": "2001-01-09T15:10:02Z", "stop_date": "2012-12-31T23:59:50Z", "target": "Earth.Magnetosheath", "xmlid": "clust2-whi-pp"}, "clust2_whi_whi": {"__spz_name__": "electron density", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "clust2-whi-whi", "att": "auto/clust2-whi-whi", "c2_whi_ne": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c2_whi_ne", "dataset": "clust2-whi-whi", "description": "Electron number density derived from plasma frequency recognition at spin time resolution", "display_type": "timeseries", "is_public": "True", "name": "density", "start_date": "2001-02-07T00:00:10Z", "stop_date": "2023-12-30T10:57:22Z", "ucd": "phys.density;phys.electron", "units": "cm\u207b\u00b3", "xmlid": "c2_whi_ne"}, "c2_whi_ne_qual": {"__spz_name__": "density quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c2_whi_ne_qual", "dataset": "clust2-whi-whi", "description": "Electron number density quality of the resonance recognition flag at spin time resolution", "display_type": "timeseries", "is_public": "True", "name": "density quality", "start_date": "2001-02-07T00:00:10Z", "stop_date": "2023-12-30T10:57:22Z", "ucd": "meta.code.qual", "units": "cm\u207b\u00b3", "xmlid": "c2_whi_ne_qual"}, "c2_whi_ne_unc": {"__spz_name__": "density uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c2_whi_ne_unc", "dataset": "clust2-whi-whi", "description": "Electron number density uncertainty of the resonance recognition flag at spin time resolution", "display_type": "timeseries", "is_public": "True", "name": "density uncertainty", "start_date": "2001-02-07T00:00:10Z", "stop_date": "2023-12-30T10:57:22Z", "ucd": "meta.code.qual", "xmlid": "c2_whi_ne_unc"}, "dataSource": "CSA", "desc": "Cluster 2 WHISPER Data
Sampling: 1.5S
Provider: CSA", "is_public": "True", "lastModificationDate": "2024-10-06T22:12:09Z", "lastUpdate": "2024-09-30T10:16:31Z", "measurement_type": "ElectricField", "name": "electron density", "processing_level": "Calibrated", "sampling": "1.5S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cluster/Cluster2/WHISPER/clust2-whi-whi", "start_date": "2001-02-07T00:00:10Z", "stop_date": "2023-12-30T10:57:22Z", "target": "Earth.Magnetosheath", "xmlid": "clust2-whi-whi"}, "desc": "Waves of High Frequency and Sounder for Probing Electron Density by Relaxation
DoubleSphere", "is_public": "True", "name": "WHISPER", "xmlid": "Cluster2_whisper"}, "__spz_name__": "Cluster 2", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Cluster2", "att": "auto/Cluster2", "desc": "Salsa
2000-12-01T00:00:00
Start of full orbit coverage: 2002-06-01T00:00:00", "is_public": "True", "name": "Cluster 2", "target": "Earth.Magnetosphere", "xmlid": "Cluster2"}, "Cluster_3": {"Analytical_Models": {"__spz_name__": "Analytical Models", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Cluster3_models", "att": "auto/Cluster3_models", "c3_msph_models": {"PriorID": "clust3-orb-all", "__spz_name__": "distance to neutral sheet", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "c3-msph-models", "att": "auto/c3-msph-models", "dataSource": "IRAP", "desc": "Distance to model neutral sheet
Sampling: 1M
Provider: IRAP", "dz_fairfield70_c3_xyz_gse": {"__spz_name__": "dZ Fairfield70", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "dz_fairfield70_c3_xyz_gse", "dataset": "c3-msph-models", "description": "Distance (Re) from s/c location to Fairfield1970 neutral sheet position. Depends on spacecraft location in SM coordinates and dipole tilt angle. Valid for Ysm less than 15 Re.", "is_public": "True", "name": "dZ Fairfield70", "predefined": "1", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-09-23T00:00:00Z", "template": "dz_fairfield70_##ORBIT##", "units": "Re", "xmlid": "dz_fairfield70_c3_xyz_gse"}, "dz_fairfield80_c3_xyz_gse": {"__spz_name__": "dZ Fairfield80", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "dz_fairfield80_c3_xyz_gse", "dataset": "c3-msph-models", "description": "Distance (Re) from s/c location to Fairfield1980 neutral sheet position. Depends on spacecraft location in SM coordinates and dipole tilt angle.", "is_public": "True", "name": "dZ Fairfield80", "predefined": "1", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-09-23T00:00:00Z", "template": "dz_fairfield80_##ORBIT##", "units": "Re", "xmlid": "dz_fairfield80_c3_xyz_gse"}, "is_public": "True", "lastModificationDate": "2024-10-06T22:08:37Z", "lastUpdate": "2024-10-06T22:08:38Z", "measurement_type": "Ephemeris", "name": "distance to neutral sheet", "processing_level": "Calibrated", "sampling": "1M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cluster/Cluster3/Models/c3-msph-models", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-09-23T00:00:00Z", "target": "Earth", "xmlid": "c3-msph-models"}, "c3_t96_model": {"PriorID": "clust3-orb-all", "__spz_name__": "T96 field model", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "c3-t96-model", "att": "auto/c3-t96-model", "b_t96gse_c3_xyz_gse": {"__spz_name__": "b_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_t96gse_c3_xyz_gse", "b_t96gse_c3_xyz_gse0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gse_c3_xyz_gse(0)", "dataset": "c3-t96-model", "index1": "0", "is_public": "True", "name": "bx", "parameter": "b_t96gse_c3_xyz_gse", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-09-23T00:00:00Z", "xmlid": "b_t96gse_c3_xyz_gse(0)"}, "b_t96gse_c3_xyz_gse1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gse_c3_xyz_gse(1)", "dataset": "c3-t96-model", "index1": "1", "is_public": "True", "name": "by", "parameter": "b_t96gse_c3_xyz_gse", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-09-23T00:00:00Z", "xmlid": "b_t96gse_c3_xyz_gse(1)"}, "b_t96gse_c3_xyz_gse2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gse_c3_xyz_gse(2)", "dataset": "c3-t96-model", "index1": "2", "is_public": "True", "name": "bz", "parameter": "b_t96gse_c3_xyz_gse", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-09-23T00:00:00Z", "xmlid": "b_t96gse_c3_xyz_gse(2)"}, "dataset": "c3-t96-model", "is_public": "True", "name": "b_gse", "predefined": "1", "size": "3", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-09-23T00:00:00Z", "template": "b_t96gse_##ORBIT##", "units": "nT", "xmlid": "b_t96gse_c3_xyz_gse"}, "b_t96gsm_c3_xyz_gse": {"__spz_name__": "b_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_t96gsm_c3_xyz_gse", "b_t96gsm_c3_xyz_gse0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gsm_c3_xyz_gse(0)", "dataset": "c3-t96-model", "index1": "0", "is_public": "True", "name": "bx", "parameter": "b_t96gsm_c3_xyz_gse", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-09-23T00:00:00Z", "xmlid": "b_t96gsm_c3_xyz_gse(0)"}, "b_t96gsm_c3_xyz_gse1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gsm_c3_xyz_gse(1)", "dataset": "c3-t96-model", "index1": "1", "is_public": "True", "name": "by", "parameter": "b_t96gsm_c3_xyz_gse", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-09-23T00:00:00Z", "xmlid": "b_t96gsm_c3_xyz_gse(1)"}, "b_t96gsm_c3_xyz_gse2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gsm_c3_xyz_gse(2)", "dataset": "c3-t96-model", "index1": "2", "is_public": "True", "name": "bz", "parameter": "b_t96gsm_c3_xyz_gse", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-09-23T00:00:00Z", "xmlid": "b_t96gsm_c3_xyz_gse(2)"}, "dataset": "c3-t96-model", "is_public": "True", "name": "b_gsm", "predefined": "1", "size": "3", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-09-23T00:00:00Z", "template": "b_t96gsm_##ORBIT##", "units": "nT", "xmlid": "b_t96gsm_c3_xyz_gse"}, "b_t96tot_c3_xyz_gse": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_t96tot_c3_xyz_gse", "dataset": "c3-t96-model", "description": "Average Magnetic Field magnitude", "display_type": "timeseries", "is_public": "True", "name": "|b|", "predefined": "1", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-09-23T00:00:00Z", "template": "b_t96tot_##ORBIT##", "ucd": "phys.magField", "units": "nT", "xmlid": "b_t96tot_c3_xyz_gse"}, "dataSource": "IRAP", "desc": "Tsyganenko96 geomagnetospheric magnetic field model
Sampling: 1M
Provider: IRAP", "is_public": "True", "lastModificationDate": "2024-10-06T22:08:37Z", "lastUpdate": "2024-10-06T22:08:38Z", "measurement_type": "MagneticField", "name": "T96 field model", "processing_level": "Calibrated", "sampling": "1M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cluster/Cluster3/Models/c3-t96-model", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-09-23T00:00:00Z", "target": "Earth", "xmlid": "c3-t96-model"}, "desc": "", "is_public": "True", "name": "Analytical Models", "xmlid": "Cluster3_models"}, "CIS_CODIF": {"__spz_name__": "CIS-CODIF", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Cluster3_cis-codif", "att": "auto/Cluster3_cis-codif", "clust3_cis_prp": {"__spz_name__": "prime parameters", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "clust3-cis-prp", "att": "auto/clust3-cis-prp", "c3_h_dens": {"__spz_name__": "h+ density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c3_h_dens", "dataset": "clust3-cis-prp", "description": "Cluster II Samba Prime Parameter Cluster Ion Spectrometry CODIF H number density at spin time resolution", "display_type": "timeseries", "is_public": "True", "name": "h+ density", "start_date": "2001-01-09T17:50:48Z", "stop_date": "2009-12-15T14:42:52Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm\u207b\u00b3", "xmlid": "c3_h_dens"}, "c3_h_t": {"__spz_name__": "h+ temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c3_h_t", "c3_h_t0": {"__spz_name__": "t_para", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_h_t(0)", "dataset": "clust3-cis-prp", "index1": "0", "is_public": "True", "name": "t_para", "parameter": "c3_h_t", "start_date": "2001-01-09T17:50:48Z", "stop_date": "2009-12-15T14:42:52Z", "xmlid": "c3_h_t(0)"}, "c3_h_t1": {"__spz_name__": "t_perp", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_h_t(1)", "dataset": "clust3-cis-prp", "index1": "1", "is_public": "True", "name": "t_perp", "parameter": "c3_h_t", "start_date": "2001-01-09T17:50:48Z", "stop_date": "2009-12-15T14:42:52Z", "xmlid": "c3_h_t(1)"}, "dataset": "clust3-cis-prp", "display_type": "timeseries", "is_public": "True", "name": "h+ temperature", "size": "2", "start_date": "2001-01-09T17:50:48Z", "stop_date": "2009-12-15T14:42:52Z", "ucd": "phys.temperature;phys.atmol.ionStage", "units": "eV", "xmlid": "c3_h_t"}, "c3_h_v": {"__spz_name__": "h+ v_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c3_h_v", "c3_h_v0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_h_v(0)", "dataset": "clust3-cis-prp", "index1": "0", "is_public": "True", "name": "vx", "parameter": "c3_h_v", "start_date": "2001-01-09T17:50:48Z", "stop_date": "2009-12-15T14:42:52Z", "xmlid": "c3_h_v(0)"}, "c3_h_v1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_h_v(1)", "dataset": "clust3-cis-prp", "index1": "1", "is_public": "True", "name": "vy", "parameter": "c3_h_v", "start_date": "2001-01-09T17:50:48Z", "stop_date": "2009-12-15T14:42:52Z", "xmlid": "c3_h_v(1)"}, "c3_h_v2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_h_v(2)", "dataset": "clust3-cis-prp", "index1": "2", "is_public": "True", "name": "vz", "parameter": "c3_h_v", "start_date": "2001-01-09T17:50:48Z", "stop_date": "2009-12-15T14:42:52Z", "xmlid": "c3_h_v(2)"}, "dataset": "clust3-cis-prp", "description": "Cluster II Samba Prime Parameter Cluster Ion Spectrometry H velocity at spin time resolution", "display_type": "timeseries", "is_public": "True", "name": "h+ v_gse", "size": "3", "start_date": "2001-01-09T17:50:48Z", "stop_date": "2009-12-15T14:42:52Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "c3_h_v"}, "c3_h_v_gsm": {"__spz_name__": "h+ v_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c3_h_v_gsm", "c3_h_v_gsm0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_h_v_gsm(0)", "dataset": "clust3-cis-prp", "index1": "0", "is_public": "True", "name": "vx", "parameter": "c3_h_v_gsm", "start_date": "2001-01-09T17:50:48Z", "stop_date": "2009-12-15T14:42:52Z", "xmlid": "c3_h_v_gsm(0)"}, "c3_h_v_gsm1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_h_v_gsm(1)", "dataset": "clust3-cis-prp", "index1": "1", "is_public": "True", "name": "vy", "parameter": "c3_h_v_gsm", "start_date": "2001-01-09T17:50:48Z", "stop_date": "2009-12-15T14:42:52Z", "xmlid": "c3_h_v_gsm(1)"}, "c3_h_v_gsm2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_h_v_gsm(2)", "dataset": "clust3-cis-prp", "index1": "2", "is_public": "True", "name": "vz", "parameter": "c3_h_v_gsm", "start_date": "2001-01-09T17:50:48Z", "stop_date": "2009-12-15T14:42:52Z", "xmlid": "c3_h_v_gsm(2)"}, "dataset": "clust3-cis-prp", "description": "Cluster II Samba Prime Parameter Cluster Ion Spectrometry H velocity at spin time resolution", "display_type": "timeseries", "is_public": "True", "name": "h+ v_gsm", "size": "3", "start_date": "2001-01-09T17:50:48Z", "stop_date": "2009-12-15T14:42:52Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "c3_h_v_gsm"}, "c3_h_vtot": {"__spz_name__": "h+ |v|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c3_h_vtot", "dataset": "clust3-cis-prp", "description": "Cluster Samba Fluxgate Magnetometer Velocity magnitude at spin time resolution", "display_type": "timeseries", "is_public": "True", "name": "h+ |v|", "start_date": "2001-01-09T17:50:48Z", "stop_date": "2009-12-15T14:42:52Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "nT", "xmlid": "c3_h_vtot"}, "c3_o_dens": {"__spz_name__": "o+ density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c3_o_dens", "dataset": "clust3-cis-prp", "description": "Cluster II Samba Prime Parameter Cluster Ion Spectrometry CODIF O number density at spin time resolution", "display_type": "timeseries", "is_public": "True", "name": "o+ density", "start_date": "2001-01-09T17:50:48Z", "stop_date": "2009-12-15T14:42:52Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm\u207b\u00b3", "xmlid": "c3_o_dens"}, "dataSource": "CSA", "desc": "CIS-CODIF Prime (Preliminary) Parameters
Sampling: 4S
Provider: CSA", "is_public": "True", "lastModificationDate": "2024-09-16T08:25:01Z", "lastUpdate": "2024-08-26T23:42:03Z", "measurement_type": "IonComposition", "name": "prime parameters", "processing_level": "Calibrated", "sampling": "4S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cluster/Cluster3/CIS-CODIF/clust3-cis-prp", "start_date": "2001-01-09T17:50:48Z", "stop_date": "2009-12-15T14:42:52Z", "target": "Earth.Magnetosheath", "xmlid": "clust3-cis-prp"}, "desc": "Cluster Ion Spectrometry : Composition Distribution Function
MassSpectrometer", "is_public": "True", "name": "CIS-CODIF", "xmlid": "Cluster3_cis-codif"}, "CIS_HIA": {"__spz_name__": "CIS-HIA", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Cluster3_cis-hia", "att": "auto/Cluster3_cis-hia", "clust3_hia_mom": {"__spz_name__": "ion moments", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "clust3-hia-mom", "att": "auto/clust3-hia-mom", "c3_hia_dens": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c3_hia_dens", "dataset": "clust3-hia-mom", "description": "Hot ion number density at spin time resolution", "display_type": "timeseries", "is_public": "True", "name": "density", "start_date": "2001-01-09T17:50:48Z", "stop_date": "2009-11-10T23:59:12Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm\u207b\u00b3", "xmlid": "c3_hia_dens"}, "c3_hia_press": {"__spz_name__": "pressure total", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c3_hia_press", "dataset": "clust3-hia-mom", "description": "Hot ion pressure (scalar) at spin time resolution", "display_type": "timeseries", "is_public": "True", "name": "pressure total", "start_date": "2001-01-09T17:50:48Z", "stop_date": "2009-11-10T23:59:12Z", "ucd": "phys.pressure;phys.atmol.ionStage", "units": "nPa", "xmlid": "c3_hia_press"}, "c3_hia_prest": {"__spz_name__": "pressure tensor gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c3_hia_prest", "c3_hia_prest0": {"__spz_name__": "xx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_hia_prest(0)", "dataset": "clust3-hia-mom", "index1": "0", "is_public": "True", "name": "xx", "parameter": "c3_hia_prest", "start_date": "2001-01-09T17:50:48Z", "stop_date": "2009-11-10T23:59:12Z", "xmlid": "c3_hia_prest(0)"}, "c3_hia_prest1": {"__spz_name__": "xy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_hia_prest(1)", "dataset": "clust3-hia-mom", "index1": "1", "is_public": "True", "name": "xy", "parameter": "c3_hia_prest", "start_date": "2001-01-09T17:50:48Z", "stop_date": "2009-11-10T23:59:12Z", "xmlid": "c3_hia_prest(1)"}, "c3_hia_prest2": {"__spz_name__": "xz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_hia_prest(2)", "dataset": "clust3-hia-mom", "index1": "2", "is_public": "True", "name": "xz", "parameter": "c3_hia_prest", "start_date": "2001-01-09T17:50:48Z", "stop_date": "2009-11-10T23:59:12Z", "xmlid": "c3_hia_prest(2)"}, "c3_hia_prest3": {"__spz_name__": "yx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_hia_prest(3)", "dataset": "clust3-hia-mom", "index1": "3", "is_public": "True", "name": "yx", "parameter": "c3_hia_prest", "start_date": "2001-01-09T17:50:48Z", "stop_date": "2009-11-10T23:59:12Z", "xmlid": "c3_hia_prest(3)"}, "c3_hia_prest4": {"__spz_name__": "yy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_hia_prest(4)", "dataset": "clust3-hia-mom", "index1": "4", "is_public": "True", "name": "yy", "parameter": "c3_hia_prest", "start_date": "2001-01-09T17:50:48Z", "stop_date": "2009-11-10T23:59:12Z", "xmlid": "c3_hia_prest(4)"}, "c3_hia_prest5": {"__spz_name__": "yz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_hia_prest(5)", "dataset": "clust3-hia-mom", "index1": "5", "is_public": "True", "name": "yz", "parameter": "c3_hia_prest", "start_date": "2001-01-09T17:50:48Z", "stop_date": "2009-11-10T23:59:12Z", "xmlid": "c3_hia_prest(5)"}, "c3_hia_prest6": {"__spz_name__": "zx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_hia_prest(6)", "dataset": "clust3-hia-mom", "index1": "6", "is_public": "True", "name": "zx", "parameter": "c3_hia_prest", "start_date": "2001-01-09T17:50:48Z", "stop_date": "2009-11-10T23:59:12Z", "xmlid": "c3_hia_prest(6)"}, "c3_hia_prest7": {"__spz_name__": "zy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_hia_prest(7)", "dataset": "clust3-hia-mom", "index1": "7", "is_public": "True", "name": "zy", "parameter": "c3_hia_prest", "start_date": "2001-01-09T17:50:48Z", "stop_date": "2009-11-10T23:59:12Z", "xmlid": "c3_hia_prest(7)"}, "c3_hia_prest8": {"__spz_name__": "zz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_hia_prest(8)", "dataset": "clust3-hia-mom", "index1": "8", "is_public": "True", "name": "zz", "parameter": "c3_hia_prest", "start_date": "2001-01-09T17:50:48Z", "stop_date": "2009-11-10T23:59:12Z", "xmlid": "c3_hia_prest(8)"}, "dataset": "clust3-hia-mom", "description": "Hot ion pressure (tensor) at spin time resolution in GSE", "display_type": "timeseries", "is_public": "True", "name": "pressure tensor gse", "size": "9", "start_date": "2001-01-09T17:50:48Z", "stop_date": "2009-11-10T23:59:12Z", "ucd": "phys.pressure;phys.atmol.ionStage", "units": "nPa", "xmlid": "c3_hia_prest"}, "c3_hia_t": {"__spz_name__": "temperature total", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c3_hia_t", "dataset": "clust3-hia-mom", "description": "Hot ion temperature at spin time resolution", "display_type": "timeseries", "is_public": "True", "name": "temperature total", "start_date": "2001-01-09T17:50:48Z", "stop_date": "2009-11-10T23:59:12Z", "ucd": "phys.temperature;phys.atmol.ionStage", "units": "eV", "xmlid": "c3_hia_t"}, "c3_hia_tpar": {"__spz_name__": "t_para", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c3_hia_tpar", "dataset": "clust3-hia-mom", "description": "Hot ion parallel temperature at spin time resolution", "display_type": "timeseries", "is_public": "True", "name": "t_para", "start_date": "2001-01-09T17:50:48Z", "stop_date": "2009-11-10T23:59:12Z", "ucd": "phys.temperature;phys.atmol.ionStage", "units": "eV", "xmlid": "c3_hia_tpar"}, "c3_hia_tperp": {"__spz_name__": "t_perp", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c3_hia_tperp", "dataset": "clust3-hia-mom", "description": "Hot ion perpendicular temperature at spin time resolution", "display_type": "timeseries", "is_public": "True", "name": "t_perp", "start_date": "2001-01-09T17:50:48Z", "stop_date": "2009-11-10T23:59:12Z", "ucd": "phys.temperature;phys.atmol.ionStage", "units": "eV", "xmlid": "c3_hia_tperp"}, "c3_hia_v": {"__spz_name__": "v_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c3_hia_v", "c3_hia_v0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_hia_v(0)", "dataset": "clust3-hia-mom", "index1": "0", "is_public": "True", "name": "vx", "parameter": "c3_hia_v", "start_date": "2001-01-09T17:50:48Z", "stop_date": "2009-11-10T23:59:12Z", "xmlid": "c3_hia_v(0)"}, "c3_hia_v1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_hia_v(1)", "dataset": "clust3-hia-mom", "index1": "1", "is_public": "True", "name": "vy", "parameter": "c3_hia_v", "start_date": "2001-01-09T17:50:48Z", "stop_date": "2009-11-10T23:59:12Z", "xmlid": "c3_hia_v(1)"}, "c3_hia_v2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_hia_v(2)", "dataset": "clust3-hia-mom", "index1": "2", "is_public": "True", "name": "vz", "parameter": "c3_hia_v", "start_date": "2001-01-09T17:50:48Z", "stop_date": "2009-11-10T23:59:12Z", "xmlid": "c3_hia_v(2)"}, "dataset": "clust3-hia-mom", "description": "Hot ion bulk velocity at spin time resolution in GSE", "display_type": "timeseries", "is_public": "True", "name": "v_gse", "size": "3", "start_date": "2001-01-09T17:50:48Z", "stop_date": "2009-11-10T23:59:12Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "c3_hia_v"}, "c3_hia_v_gsm": {"__spz_name__": "v_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c3_hia_v_gsm", "c3_hia_v_gsm0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_hia_v_gsm(0)", "dataset": "clust3-hia-mom", "index1": "0", "is_public": "True", "name": "vx", "parameter": "c3_hia_v_gsm", "start_date": "2001-01-09T17:50:48Z", "stop_date": "2009-11-10T23:59:12Z", "xmlid": "c3_hia_v_gsm(0)"}, "c3_hia_v_gsm1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_hia_v_gsm(1)", "dataset": "clust3-hia-mom", "index1": "1", "is_public": "True", "name": "vy", "parameter": "c3_hia_v_gsm", "start_date": "2001-01-09T17:50:48Z", "stop_date": "2009-11-10T23:59:12Z", "xmlid": "c3_hia_v_gsm(1)"}, "c3_hia_v_gsm2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_hia_v_gsm(2)", "dataset": "clust3-hia-mom", "index1": "2", "is_public": "True", "name": "vz", "parameter": "c3_hia_v_gsm", "start_date": "2001-01-09T17:50:48Z", "stop_date": "2009-11-10T23:59:12Z", "xmlid": "c3_hia_v_gsm(2)"}, "dataset": "clust3-hia-mom", "description": "Hot ion bulk velocity at spin time resolution in GSM", "display_type": "timeseries", "is_public": "True", "name": "v_gsm", "size": "3", "start_date": "2001-01-09T17:50:48Z", "stop_date": "2009-11-10T23:59:12Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "c3_hia_v_gsm"}, "c3_hia_vtot": {"__spz_name__": "|v|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c3_hia_vtot", "dataset": "clust3-hia-mom", "description": "Hot ion bulk velocity magnitude at spin time resolution", "display_type": "timeseries", "is_public": "True", "name": "|v|", "start_date": "2001-01-09T17:50:48Z", "stop_date": "2009-11-10T23:59:12Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "c3_hia_vtot"}, "dataSource": "CSA", "desc": "HIA onboard hot ion moments
Sampling: 4S
Provider: CSA", "is_public": "True", "lastModificationDate": "2024-10-06T22:10:48Z", "lastUpdate": "2024-08-27T13:17:22Z", "measurement_type": "ThermalPlasma", "name": "ion moments", "processing_level": "Calibrated", "sampling": "4S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cluster/Cluster3/CIS-HIA/clust3-hia-mom", "start_date": "2001-01-09T17:50:48Z", "stop_date": "2009-11-10T23:59:12Z", "target": "Earth.Magnetosheath", "xmlid": "clust3-hia-mom"}, "clust3_hia_pad": {"__spz_name__": "pitch-angle/energy distribution", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "clust3-hia-pad", "att": "auto/clust3-hia-pad", "c3_hia_pad": {"__spz_name__": "ion flux : 2D pa/energy", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c3_hia_pad", "dataset": "clust3-hia-pad", "description": "Hot ion pitch angle distribution", "display_type": "spectrogram", "is_public": "True", "name": "ion flux : 2D pa/energy", "start_date": "2001-01-31T01:02:10Z", "stop_date": "2009-11-10T23:59:43Z", "units": "1/(cm\u00b2-s-sr-keV)", "xmlid": "c3_hia_pad"}, "c3_hia_pad_angle": {"__spz_name__": "ion flux : sum over energy", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c3_hia_pad_angle", "dataset": "clust3-hia-pad", "description": "Hot ion pitch angle distribution (sum over all energy bins)", "display_type": "spectrogram", "is_public": "True", "name": "ion flux : sum over energy", "start_date": "2001-01-31T01:02:10Z", "stop_date": "2009-11-10T23:59:43Z", "units": "1/(cm\u00b2-s-sr-keV)", "xmlid": "c3_hia_pad_angle"}, "c3_hia_pad_omni": {"__spz_name__": "ion flux : omni", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c3_hia_pad_omni", "dataset": "clust3-hia-pad", "description": "Hot ion pitch angle distribution (sum over all angle bins)", "display_type": "spectrogram", "is_public": "True", "name": "ion flux : omni", "start_date": "2001-01-31T01:02:10Z", "stop_date": "2009-11-10T23:59:43Z", "units": "1/(cm\u00b2-s-sr-keV)", "xmlid": "c3_hia_pad_omni"}, "dataSource": "CSA", "desc": "2D Pitch-Angle/Energy distribution
Sampling: 4S
Provider: CSA", "is_public": "True", "lastModificationDate": "2024-10-06T22:11:55Z", "lastUpdate": "2024-08-27T20:43:28Z", "measurement_type": "ThermalPlasma", "name": "pitch-angle/energy distribution", "processing_level": "Calibrated", "sampling": "4S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cluster/Cluster3/CIS-HIA/clust3-hia-pad", "start_date": "2001-01-31T01:02:10Z", "stop_date": "2009-11-10T23:59:43Z", "target": "Earth.Magnetosheath", "xmlid": "clust3-hia-pad"}, "desc": "Cluster Ion Spectrometry : Hot Ion Analyser
ElectrostaticAnalyser", "is_public": "True", "name": "CIS-HIA", "xmlid": "Cluster3_cis-hia"}, "EFW": {"__spz_name__": "EFW", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Cluster3_efw", "att": "auto/Cluster3_efw", "clust3_efw_ppp": {"__spz_name__": "prime parameters", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "clust3-efw-ppp", "att": "auto/clust3-efw-ppp", "c3_edusk": {"__spz_name__": "e_dusk", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c3_edusk", "dataset": "clust3-efw-ppp", "description": "Duskward Electric Field, In spin plane perp to x-gse at spin time resolution (4s)", "display_type": "timeseries", "is_public": "True", "name": "e_dusk", "start_date": "2001-01-01T00:00:02Z", "stop_date": "2019-09-30T23:59:54Z", "ucd": "phys.electField", "units": "mV/m", "xmlid": "c3_edusk"}, "c3_efw_f1": {"__spz_name__": "e_spectral_density_F1", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c3_efw_f1", "dataset": "clust3-efw-ppp", "description": "E-field spectral density [0.3-10] Hz, from EFW waveform at spin time resolution (4s)", "display_type": "timeseries", "is_public": "True", "name": "e_spectral_density_F1", "start_date": "2001-01-01T00:00:02Z", "stop_date": "2019-09-30T23:59:54Z", "ucd": "phys.density", "units": "(V/m)\u00b2/Hz", "xmlid": "c3_efw_f1"}, "c3_efw_f2": {"__spz_name__": "e_spectral_density_F2", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c3_efw_f2", "dataset": "clust3-efw-ppp", "description": "E-field spectral density [10-180] Hz, from EFW waveform at spin time resolution (4s)", "display_type": "timeseries", "is_public": "True", "name": "e_spectral_density_F2", "start_date": "2001-01-01T00:00:02Z", "stop_date": "2019-09-30T23:59:54Z", "ucd": "phys.density", "units": "(V/m)\u00b2/Hz", "xmlid": "c3_efw_f2"}, "c3_pot": {"__spz_name__": "s/c pot", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c3_pot", "dataset": "clust3-efw-ppp", "description": "Probe potential, Relative to Spacecraft at spin time resolution (4s)", "display_type": "timeseries", "is_public": "True", "name": "s/c pot", "start_date": "2001-01-01T00:00:02Z", "stop_date": "2019-09-30T23:59:54Z", "ucd": "phys.potential;phys.electField;instr.obsty", "units": "V", "xmlid": "c3_pot"}, "dataSource": "CSA", "desc": "Cluster 3 Prime Parameters EFW Data
Sampling: 4S
Provider: CSA", "is_public": "True", "lastModificationDate": "2024-10-06T22:09:11Z", "lastUpdate": "2024-08-30T07:57:01Z", "measurement_type": "ElectricField", "name": "prime parameters", "processing_level": "Calibrated", "sampling": "4S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cluster/Cluster3/EFW/clust3-efw-ppp", "start_date": "2001-01-01T00:00:02Z", "stop_date": "2019-09-30T23:59:54Z", "target": "Earth.Magnetosheath", "xmlid": "clust3-efw-ppp"}, "desc": "Electric Field and Waves
LongWire", "electric_field": {"__spz_name__": "electric field", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "c3-efw-efield", "clust3_efw_gse": {"__spz_name__": "3D gse", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "clust3-efw-gse", "att": "auto/clust3-efw-gse", "c3_e_gse": {"__spz_name__": "e_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c3_e_gse", "c3_e_gse0": {"__spz_name__": "ex", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_e_gse(0)", "dataset": "clust3-efw-gse", "index1": "0", "is_public": "True", "name": "ex", "parameter": "c3_e_gse", "start_date": "2000-12-02T15:13:02Z", "stop_date": "2014-11-03T20:58:14Z", "xmlid": "c3_e_gse(0)"}, "c3_e_gse1": {"__spz_name__": "ey", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_e_gse(1)", "dataset": "clust3-efw-gse", "index1": "1", "is_public": "True", "name": "ey", "parameter": "c3_e_gse", "start_date": "2000-12-02T15:13:02Z", "stop_date": "2014-11-03T20:58:14Z", "xmlid": "c3_e_gse(1)"}, "c3_e_gse2": {"__spz_name__": "ez", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_e_gse(2)", "dataset": "clust3-efw-gse", "index1": "2", "is_public": "True", "name": "ez", "parameter": "c3_e_gse", "start_date": "2000-12-02T15:13:02Z", "stop_date": "2014-11-03T20:58:14Z", "xmlid": "c3_e_gse(2)"}, "dataset": "clust3-efw-gse", "description": "Electric Field in GSE at spin time (4s) resolution (3 components)", "display_type": "timeseries", "is_public": "True", "name": "e_gse", "size": "3", "start_date": "2000-12-02T15:13:02Z", "stop_date": "2014-11-03T20:58:14Z", "ucd": "phys.electField", "units": "mV/m", "xmlid": "c3_e_gse"}, "c3_e_gse_qual": {"__spz_name__": "e_quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c3_e_gse_qual", "dataset": "clust3-efw-gse", "description": "Data quality: 0 (Bad data) to 4 (Excellent data)", "display_type": "timeseries", "is_public": "True", "name": "e_quality", "start_date": "2000-12-02T15:13:02Z", "stop_date": "2014-11-03T20:58:14Z", "ucd": "meta.code.qual", "xmlid": "c3_e_gse_qual"}, "c3_e_gsm": {"__spz_name__": "e_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c3_e_gsm", "c3_e_gsm0": {"__spz_name__": "ex", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_e_gsm(0)", "dataset": "clust3-efw-gse", "index1": "0", "is_public": "True", "name": "ex", "parameter": "c3_e_gsm", "start_date": "2000-12-02T15:13:02Z", "stop_date": "2014-11-03T20:58:14Z", "xmlid": "c3_e_gsm(0)"}, "c3_e_gsm1": {"__spz_name__": "ey", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_e_gsm(1)", "dataset": "clust3-efw-gse", "index1": "1", "is_public": "True", "name": "ey", "parameter": "c3_e_gsm", "start_date": "2000-12-02T15:13:02Z", "stop_date": "2014-11-03T20:58:14Z", "xmlid": "c3_e_gsm(1)"}, "c3_e_gsm2": {"__spz_name__": "ez", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_e_gsm(2)", "dataset": "clust3-efw-gse", "index1": "2", "is_public": "True", "name": "ez", "parameter": "c3_e_gsm", "start_date": "2000-12-02T15:13:02Z", "stop_date": "2014-11-03T20:58:14Z", "xmlid": "c3_e_gsm(2)"}, "dataset": "clust3-efw-gse", "description": "Electric Field in GSM at spin time (4s) resolution (3 components)", "display_type": "timeseries", "is_public": "True", "name": "e_gsm", "size": "3", "start_date": "2000-12-02T15:13:02Z", "stop_date": "2014-11-03T20:58:14Z", "ucd": "phys.electField", "units": "mV/m", "xmlid": "c3_e_gsm"}, "c3_etot": {"__spz_name__": "|e|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c3_etot", "dataset": "clust3-efw-gse", "description": "Electric Field Magnitude at spin time (4s) resolution", "display_type": "timeseries", "is_public": "True", "name": "|e|", "start_date": "2000-12-02T15:13:02Z", "stop_date": "2014-11-03T20:58:14Z", "ucd": "phys.electField", "units": "mV/m", "xmlid": "c3_etot"}, "c3_ez_error": {"__spz_name__": "ez_error", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c3_ez_error", "dataset": "clust3-efw-gse", "description": "Error on the (reconstructed) Z component of the electric field", "display_type": "timeseries", "is_public": "True", "name": "ez_error", "start_date": "2000-12-02T15:13:02Z", "stop_date": "2014-11-03T20:58:14Z", "ucd": "stat.error", "xmlid": "c3_ez_error"}, "dataSource": "CSA", "desc": "Cluster 3 3D electric field (L3)
Sampling: 4S
Provider: CSA", "is_public": "True", "lastModificationDate": "2024-08-29T14:03:37Z", "lastUpdate": "2024-08-29T14:03:00Z", "measurement_type": "ElectricField", "name": "3D gse", "processing_level": "Calibrated", "sampling": "4S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cluster/Cluster3/EFW/clust3-efw-gse", "start_date": "2000-12-02T15:13:02Z", "stop_date": "2014-11-03T20:58:14Z", "target": "Earth.Magnetosheath", "xmlid": "clust3-efw-gse"}, "clust3_efw_sr2": {"__spz_name__": "2D isr2", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "clust3-efw-sr2", "att": "auto/clust3-efw-sr2", "c3_e_sr2": {"__spz_name__": "e_sr2", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c3_e_sr2", "c3_e_sr20": {"__spz_name__": "ex", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_e_sr2(0)", "dataset": "clust3-efw-sr2", "index1": "0", "is_public": "True", "name": "ex", "parameter": "c3_e_sr2", "start_date": "2000-12-01T00:00:02Z", "stop_date": "2014-11-03T20:58:14Z", "xmlid": "c3_e_sr2(0)"}, "c3_e_sr21": {"__spz_name__": "ey", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_e_sr2(1)", "dataset": "clust3-efw-sr2", "index1": "1", "is_public": "True", "name": "ey", "parameter": "c3_e_sr2", "start_date": "2000-12-01T00:00:02Z", "stop_date": "2014-11-03T20:58:14Z", "xmlid": "c3_e_sr2(1)"}, "dataset": "clust3-efw-sr2", "description": "Electric Field in ISR2 at spin time (4s) resolution (2 components)", "display_type": "timeseries", "is_public": "True", "name": "e_sr2", "size": "2", "start_date": "2000-12-01T00:00:02Z", "stop_date": "2014-11-03T20:58:14Z", "ucd": "phys.electField", "units": "mV/m", "xmlid": "c3_e_sr2"}, "c3_e_sr2_qual": {"__spz_name__": "e_quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c3_e_sr2_qual", "dataset": "clust3-efw-sr2", "description": "Data quality: 0 (Bad data) to 4 (Excellent data)", "display_type": "timeseries", "is_public": "True", "name": "e_quality", "start_date": "2000-12-01T00:00:02Z", "stop_date": "2014-11-03T20:58:14Z", "ucd": "meta.code.qual", "xmlid": "c3_e_sr2_qual"}, "dataSource": "CSA", "desc": "Cluster 3 2D electric field (L3)
Sampling: 4S
Provider: CSA", "is_public": "True", "lastModificationDate": "2024-08-28T14:12:23Z", "lastUpdate": "2024-08-28T14:11:13Z", "measurement_type": "ElectricField", "name": "2D isr2", "processing_level": "Calibrated", "sampling": "4S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cluster/Cluster3/EFW/clust3-efw-sr2", "start_date": "2000-12-01T00:00:02Z", "stop_date": "2014-11-03T20:58:14Z", "target": "Earth.Magnetosheath", "xmlid": "clust3-efw-sr2"}, "is_public": "True", "name": "electric field", "xmlid": "c3-efw-efield"}, "is_public": "True", "name": "EFW", "sc_potential": {"__spz_name__": "s/c potential", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "c3-efw-pot", "clust3_pot_full": {"__spz_name__": "0.2 sec (full)", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "clust3-pot-full", "att": "auto/clust3-pot-full", "c3_potfull": {"__spz_name__": "s/c pot", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c3_potfull", "dataset": "clust3-pot-full", "description": "Probe potential, Relative to Spacecraft at full resolution (0.2s)", "display_type": "timeseries", "is_public": "True", "name": "s/c pot", "start_date": "2000-12-01T00:00:00Z", "stop_date": "2024-05-31T23:59:59Z", "ucd": "phys.potential;phys.electField;instr.obsty", "units": "V", "xmlid": "c3_potfull"}, "dataSource": "CSA", "desc": "Cluster 3 Spacecraft Potential (L2)
Sampling: 0.2S
Provider: CSA", "is_public": "True", "lastModificationDate": "2024-10-06T22:12:04Z", "lastUpdate": "2024-09-30T10:16:07Z", "measurement_type": "ElectricField", "name": "0.2 sec (full)", "processing_level": "Calibrated", "sampling": "0.2S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cluster/Cluster3/EFW/clust3-pot-full", "start_date": "2000-12-01T00:00:00Z", "stop_date": "2024-05-31T23:59:59Z", "target": "Earth.Magnetosheath", "xmlid": "clust3-pot-full"}, "clust3_pot_spin": {"__spz_name__": "4 sec (spin)", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "clust3-pot-spin", "att": "auto/clust3-pot-spin", "c3_potspin": {"__spz_name__": "s/c pot", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c3_potspin", "dataset": "clust3-pot-spin", "description": "Probe potential, Relative to Spacecraft at spin time resolution (4s)", "display_type": "timeseries", "is_public": "True", "name": "s/c pot", "start_date": "2000-12-01T00:00:02Z", "stop_date": "2024-05-31T23:59:58Z", "ucd": "phys.potential;phys.electField;instr.obsty", "units": "V", "xmlid": "c3_potspin"}, "dataSource": "CSA", "desc": "Cluster 3 Spacecraft Potential (L3)
Sampling: 4S
Provider: CSA", "is_public": "True", "lastModificationDate": "2024-10-06T22:12:07Z", "lastUpdate": "2024-09-30T10:16:26Z", "measurement_type": "ElectricField", "name": "4 sec (spin)", "processing_level": "Calibrated", "sampling": "4S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cluster/Cluster3/EFW/clust3-pot-spin", "start_date": "2000-12-01T00:00:02Z", "stop_date": "2024-05-31T23:59:58Z", "target": "Earth.Magnetosheath", "xmlid": "clust3-pot-spin"}, "is_public": "True", "name": "s/c potential", "xmlid": "c3-efw-pot"}, "xmlid": "Cluster3_efw"}, "Ephemeris": {"__spz_name__": "Ephemeris", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Cluster3_ephemeris", "att": "auto/Cluster3_ephemeris", "clust3_orb_all": {"__spz_name__": "orbit", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "clust3-orb-all", "att": "auto/clust3-orb-all", "c3_r": {"__spz_name__": "distance c3-earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c3_r", "dataset": "clust3-orb-all", "display_type": "timeseries", "is_public": "True", "name": "distance c3-earth", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-09-23T00:00:00Z", "ucd": "pos.distance;instr.obsty", "units": "Re", "xmlid": "c3_r"}, "c3_xyz_gse": {"__spz_name__": "xyz_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c3_xyz_gse", "c3_xyz_gse0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_xyz_gse(0)", "dataset": "clust3-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "c3_xyz_gse", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-09-23T00:00:00Z", "xmlid": "c3_xyz_gse(0)"}, "c3_xyz_gse1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_xyz_gse(1)", "dataset": "clust3-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "c3_xyz_gse", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-09-23T00:00:00Z", "xmlid": "c3_xyz_gse(1)"}, "c3_xyz_gse2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_xyz_gse(2)", "dataset": "clust3-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "c3_xyz_gse", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-09-23T00:00:00Z", "xmlid": "c3_xyz_gse(2)"}, "dataset": "clust3-orb-all", "description": "Spacecraft position in GSE", "display_type": "timeseries", "is_public": "True", "name": "xyz_gse", "size": "3", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-09-23T00:00:00Z", "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "Re", "xmlid": "c3_xyz_gse"}, "c3_xyz_gsm": {"__spz_name__": "xyz_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c3_xyz_gsm", "c3_xyz_gsm0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_xyz_gsm(0)", "dataset": "clust3-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "c3_xyz_gsm", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-09-23T00:00:00Z", "xmlid": "c3_xyz_gsm(0)"}, "c3_xyz_gsm1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_xyz_gsm(1)", "dataset": "clust3-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "c3_xyz_gsm", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-09-23T00:00:00Z", "xmlid": "c3_xyz_gsm(1)"}, "c3_xyz_gsm2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_xyz_gsm(2)", "dataset": "clust3-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "c3_xyz_gsm", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-09-23T00:00:00Z", "xmlid": "c3_xyz_gsm(2)"}, "dataset": "clust3-orb-all", "description": "Spacecraft position in GSM", "display_type": "timeseries", "is_public": "True", "name": "xyz_gsm", "size": "3", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-09-23T00:00:00Z", "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "Re", "xmlid": "c3_xyz_gsm"}, "dataSource": "IRAP", "desc": "
Sampling: 1M
Provider: IRAP", "is_public": "True", "lastModificationDate": "2024-10-06T22:08:37Z", "lastUpdate": "2024-10-06T22:08:38Z", "measurement_type": "Ephemeris", "name": "orbit", "processing_level": "Calibrated", "sampling": "1M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cluster/Cluster3/Ephemeris/clust3-orb-all", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-09-23T00:00:00Z", "xmlid": "clust3-orb-all"}, "desc": "", "is_public": "True", "name": "Ephemeris", "xmlid": "Cluster3_ephemeris"}, "FGM": {"__spz_name__": "FGM", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Cluster3_fgm", "att": "auto/Cluster3_fgm", "clust3_fgm_high": {"__spz_name__": "0.2 sec (5vps)", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "clust3-fgm-high", "att": "auto/clust3-fgm-high", "c3_b_5vps": {"__spz_name__": "b_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c3_b_5vps", "c3_b_5vps0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_b_5vps(0)", "dataset": "clust3-fgm-high", "index1": "0", "is_public": "True", "name": "bx", "parameter": "c3_b_5vps", "start_date": "2001-01-07T00:10:02Z", "stop_date": "2023-05-01T23:59:59Z", "xmlid": "c3_b_5vps(0)"}, "c3_b_5vps1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_b_5vps(1)", "dataset": "clust3-fgm-high", "index1": "1", "is_public": "True", "name": "by", "parameter": "c3_b_5vps", "start_date": "2001-01-07T00:10:02Z", "stop_date": "2023-05-01T23:59:59Z", "xmlid": "c3_b_5vps(1)"}, "c3_b_5vps2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_b_5vps(2)", "dataset": "clust3-fgm-high", "index1": "2", "is_public": "True", "name": "bz", "parameter": "c3_b_5vps", "start_date": "2001-01-07T00:10:02Z", "stop_date": "2023-05-01T23:59:59Z", "xmlid": "c3_b_5vps(2)"}, "dataset": "clust3-fgm-high", "description": "FGM: magnetic field vector (3 GSE components), 0.2 s resolution", "display_type": "timeseries", "is_public": "True", "name": "b_gse", "size": "3", "start_date": "2001-01-07T00:10:02Z", "stop_date": "2023-05-01T23:59:59Z", "ucd": "phys.magField", "units": "nT", "xmlid": "c3_b_5vps"}, "c3_bgsm_5vps": {"__spz_name__": "b_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c3_bgsm_5vps", "c3_bgsm_5vps0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_bgsm_5vps(0)", "dataset": "clust3-fgm-high", "index1": "0", "is_public": "True", "name": "bx", "parameter": "c3_bgsm_5vps", "start_date": "2001-01-07T00:10:02Z", "stop_date": "2023-05-01T23:59:59Z", "xmlid": "c3_bgsm_5vps(0)"}, "c3_bgsm_5vps1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_bgsm_5vps(1)", "dataset": "clust3-fgm-high", "index1": "1", "is_public": "True", "name": "by", "parameter": "c3_bgsm_5vps", "start_date": "2001-01-07T00:10:02Z", "stop_date": "2023-05-01T23:59:59Z", "xmlid": "c3_bgsm_5vps(1)"}, "c3_bgsm_5vps2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_bgsm_5vps(2)", "dataset": "clust3-fgm-high", "index1": "2", "is_public": "True", "name": "bz", "parameter": "c3_bgsm_5vps", "start_date": "2001-01-07T00:10:02Z", "stop_date": "2023-05-01T23:59:59Z", "xmlid": "c3_bgsm_5vps(2)"}, "dataset": "clust3-fgm-high", "description": "FGM: magnetic field vector (3 GSM components), 0.2 s resolution", "display_type": "timeseries", "is_public": "True", "name": "b_gsm", "size": "3", "start_date": "2001-01-07T00:10:02Z", "stop_date": "2023-05-01T23:59:59Z", "ucd": "phys.magField", "units": "nT", "xmlid": "c3_bgsm_5vps"}, "c3_btot_5vps": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c3_btot_5vps", "dataset": "clust3-fgm-high", "description": "FGM: magnetic field vector magnitude", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "2001-01-07T00:10:02Z", "stop_date": "2023-05-01T23:59:59Z", "ucd": "phys.magField", "units": "nT", "xmlid": "c3_btot_5vps"}, "dataSource": "CSA", "desc": "Cluster 3 5-vector-per-spin FGM Data
Sampling: 0.2S
Provider: CSA", "is_public": "True", "lastModificationDate": "2024-10-06T22:09:35Z", "lastUpdate": "2024-08-22T17:20:05Z", "measurement_type": "MagneticField", "name": "0.2 sec (5vps)", "processing_level": "Calibrated", "sampling": "0.2S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cluster/Cluster3/FGM/clust3-fgm-high", "start_date": "2001-01-07T00:10:02Z", "stop_date": "2023-05-01T23:59:59Z", "target": "Earth.Magnetosheath", "xmlid": "clust3-fgm-high"}, "clust3_fgm_prp": {"__spz_name__": "4 sec (spin)", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "clust3-fgm-prp", "att": "auto/clust3-fgm-prp", "c3_b_gse": {"__spz_name__": "b_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c3_b_gse", "c3_b_gse0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_b_gse(0)", "dataset": "clust3-fgm-prp", "index1": "0", "is_public": "True", "name": "bx", "parameter": "c3_b_gse", "start_date": "2001-01-07T00:10:07Z", "stop_date": "2023-05-01T23:59:57Z", "xmlid": "c3_b_gse(0)"}, "c3_b_gse1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_b_gse(1)", "dataset": "clust3-fgm-prp", "index1": "1", "is_public": "True", "name": "by", "parameter": "c3_b_gse", "start_date": "2001-01-07T00:10:07Z", "stop_date": "2023-05-01T23:59:57Z", "xmlid": "c3_b_gse(1)"}, "c3_b_gse2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_b_gse(2)", "dataset": "clust3-fgm-prp", "index1": "2", "is_public": "True", "name": "bz", "parameter": "c3_b_gse", "start_date": "2001-01-07T00:10:07Z", "stop_date": "2023-05-01T23:59:57Z", "xmlid": "c3_b_gse(2)"}, "dataset": "clust3-fgm-prp", "description": "FGM: magnetic field vector (3 GSE components), 4s resolution", "display_type": "timeseries", "is_public": "True", "name": "b_gse", "size": "3", "start_date": "2001-01-07T00:10:07Z", "stop_date": "2023-05-01T23:59:57Z", "ucd": "phys.magField", "units": "nT", "xmlid": "c3_b_gse"}, "c3_b_gsm": {"__spz_name__": "b_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c3_b_gsm", "c3_b_gsm0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_b_gsm(0)", "dataset": "clust3-fgm-prp", "index1": "0", "is_public": "True", "name": "bx", "parameter": "c3_b_gsm", "start_date": "2001-01-07T00:10:07Z", "stop_date": "2023-05-01T23:59:57Z", "xmlid": "c3_b_gsm(0)"}, "c3_b_gsm1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_b_gsm(1)", "dataset": "clust3-fgm-prp", "index1": "1", "is_public": "True", "name": "by", "parameter": "c3_b_gsm", "start_date": "2001-01-07T00:10:07Z", "stop_date": "2023-05-01T23:59:57Z", "xmlid": "c3_b_gsm(1)"}, "c3_b_gsm2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_b_gsm(2)", "dataset": "clust3-fgm-prp", "index1": "2", "is_public": "True", "name": "bz", "parameter": "c3_b_gsm", "start_date": "2001-01-07T00:10:07Z", "stop_date": "2023-05-01T23:59:57Z", "xmlid": "c3_b_gsm(2)"}, "dataset": "clust3-fgm-prp", "description": "FGM: magnetic field vector (3 GSM components), 4s resolution", "display_type": "timeseries", "is_public": "True", "name": "b_gsm", "size": "3", "start_date": "2001-01-07T00:10:07Z", "stop_date": "2023-05-01T23:59:57Z", "ucd": "phys.magField", "units": "nT", "xmlid": "c3_b_gsm"}, "c3_btot": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c3_btot", "dataset": "clust3-fgm-prp", "description": "FGM: magnetic field vector magnitude", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "2001-01-07T00:10:07Z", "stop_date": "2023-05-01T23:59:57Z", "ucd": "phys.magField", "units": "nT", "xmlid": "c3_btot"}, "dataSource": "CSA", "desc": "Cluster 3 Spin Resolution FGM Data
Sampling: 4S
Provider: CSA", "is_public": "True", "lastModificationDate": "2024-10-06T22:09:38Z", "lastUpdate": "2024-08-22T16:27:54Z", "measurement_type": "MagneticField", "name": "4 sec (spin)", "processing_level": "Calibrated", "sampling": "4S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cluster/Cluster3/FGM/clust3-fgm-prp", "start_date": "2001-01-07T00:10:07Z", "stop_date": "2023-05-01T23:59:57Z", "target": "Earth.Magnetosheath", "xmlid": "clust3-fgm-prp"}, "desc": "Fluxgate Magnetometer
Magnetometer", "is_public": "True", "name": "FGM", "xmlid": "Cluster3_fgm"}, "PEACE": {"__spz_name__": "PEACE", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Cluster3_peace", "att": "auto/Cluster3_peace", "clust3_pea_mom": {"__spz_name__": "electron moments", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "clust3-pea-mom", "att": "auto/clust3-pea-mom", "c3_pea_dens": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c3_pea_dens", "dataset": "clust3-pea-mom", "description": "Electron number density at spin time resolution", "display_type": "timeseries", "is_public": "True", "name": "density", "start_date": "2001-01-09T15:15:12Z", "stop_date": "2022-12-30T18:25:09Z", "ucd": "phys.density;phys.electron", "units": "cm\u207b\u00b3", "xmlid": "c3_pea_dens"}, "c3_pea_flux": {"__spz_name__": "heat_flux_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c3_pea_flux", "c3_pea_flux0": {"__spz_name__": "flux_x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_pea_flux(0)", "dataset": "clust3-pea-mom", "index1": "0", "is_public": "True", "name": "flux_x", "parameter": "c3_pea_flux", "start_date": "2001-01-09T15:15:12Z", "stop_date": "2022-12-30T18:25:09Z", "xmlid": "c3_pea_flux(0)"}, "c3_pea_flux1": {"__spz_name__": "flux_y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_pea_flux(1)", "dataset": "clust3-pea-mom", "index1": "0", "is_public": "True", "name": "flux_y", "parameter": "c3_pea_flux", "start_date": "2001-01-09T15:15:12Z", "stop_date": "2022-12-30T18:25:09Z", "xmlid": "c3_pea_flux(1)"}, "c3_pea_flux2": {"__spz_name__": "flux_z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_pea_flux(2)", "dataset": "clust3-pea-mom", "index1": "0", "is_public": "True", "name": "flux_z", "parameter": "c3_pea_flux", "start_date": "2001-01-09T15:15:12Z", "stop_date": "2022-12-30T18:25:09Z", "xmlid": "c3_pea_flux(2)"}, "dataset": "clust3-pea-mom", "description": "Parallel electron heat flux at spin time resolution, in GSE", "display_type": "timeseries", "is_public": "True", "name": "heat_flux_gse", "size": "3", "start_date": "2001-01-09T15:15:12Z", "stop_date": "2022-12-30T18:25:09Z", "ucd": "phys.flux.energy;phys.atmol.ionStage", "units": "microW/m\u00b2", "xmlid": "c3_pea_flux"}, "c3_pea_press": {"__spz_name__": "pressure_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c3_pea_press", "c3_pea_press0": {"__spz_name__": "xx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_pea_press(0)", "dataset": "clust3-pea-mom", "index1": "0", "is_public": "True", "name": "xx", "parameter": "c3_pea_press", "start_date": "2001-01-09T15:15:12Z", "stop_date": "2022-12-30T18:25:09Z", "xmlid": "c3_pea_press(0)"}, "c3_pea_press1": {"__spz_name__": "xy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_pea_press(1)", "dataset": "clust3-pea-mom", "index1": "1", "is_public": "True", "name": "xy", "parameter": "c3_pea_press", "start_date": "2001-01-09T15:15:12Z", "stop_date": "2022-12-30T18:25:09Z", "xmlid": "c3_pea_press(1)"}, "c3_pea_press2": {"__spz_name__": "xz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_pea_press(2)", "dataset": "clust3-pea-mom", "index1": "2", "is_public": "True", "name": "xz", "parameter": "c3_pea_press", "start_date": "2001-01-09T15:15:12Z", "stop_date": "2022-12-30T18:25:09Z", "xmlid": "c3_pea_press(2)"}, "c3_pea_press3": {"__spz_name__": "yx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_pea_press(3)", "dataset": "clust3-pea-mom", "index1": "3", "is_public": "True", "name": "yx", "parameter": "c3_pea_press", "start_date": "2001-01-09T15:15:12Z", "stop_date": "2022-12-30T18:25:09Z", "xmlid": "c3_pea_press(3)"}, "c3_pea_press4": {"__spz_name__": "yy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_pea_press(4)", "dataset": "clust3-pea-mom", "index1": "4", "is_public": "True", "name": "yy", "parameter": "c3_pea_press", "start_date": "2001-01-09T15:15:12Z", "stop_date": "2022-12-30T18:25:09Z", "xmlid": "c3_pea_press(4)"}, "c3_pea_press5": {"__spz_name__": "yz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_pea_press(5)", "dataset": "clust3-pea-mom", "index1": "5", "is_public": "True", "name": "yz", "parameter": "c3_pea_press", "start_date": "2001-01-09T15:15:12Z", "stop_date": "2022-12-30T18:25:09Z", "xmlid": "c3_pea_press(5)"}, "c3_pea_press6": {"__spz_name__": "zx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_pea_press(6)", "dataset": "clust3-pea-mom", "index1": "6", "is_public": "True", "name": "zx", "parameter": "c3_pea_press", "start_date": "2001-01-09T15:15:12Z", "stop_date": "2022-12-30T18:25:09Z", "xmlid": "c3_pea_press(6)"}, "c3_pea_press7": {"__spz_name__": "zy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_pea_press(7)", "dataset": "clust3-pea-mom", "index1": "7", "is_public": "True", "name": "zy", "parameter": "c3_pea_press", "start_date": "2001-01-09T15:15:12Z", "stop_date": "2022-12-30T18:25:09Z", "xmlid": "c3_pea_press(7)"}, "c3_pea_press8": {"__spz_name__": "zz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_pea_press(8)", "dataset": "clust3-pea-mom", "index1": "8", "is_public": "True", "name": "zz", "parameter": "c3_pea_press", "start_date": "2001-01-09T15:15:12Z", "stop_date": "2022-12-30T18:25:09Z", "xmlid": "c3_pea_press(8)"}, "dataset": "clust3-pea-mom", "description": "Electron pressure tensor at spin time resolution, in GSE", "display_type": "timeseries", "is_public": "True", "name": "pressure_gse", "size": "9", "start_date": "2001-01-09T15:15:12Z", "stop_date": "2022-12-30T18:25:09Z", "ucd": "phys.pressure", "units": "nPa", "xmlid": "c3_pea_press"}, "c3_pea_tpar": {"__spz_name__": "t_para", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c3_pea_tpar", "dataset": "clust3-pea-mom", "description": "Parallel electron temperature at spin time resolution", "display_type": "timeseries", "is_public": "True", "name": "t_para", "start_date": "2001-01-09T15:15:12Z", "stop_date": "2022-12-30T18:25:09Z", "ucd": "phys.temperature;phys.electron", "units": "eV", "xmlid": "c3_pea_tpar"}, "c3_pea_tperp": {"__spz_name__": "t_perp", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c3_pea_tperp", "dataset": "clust3-pea-mom", "description": "Perpendicular electron temperature at spin time resolution", "display_type": "timeseries", "is_public": "True", "name": "t_perp", "start_date": "2001-01-09T15:15:12Z", "stop_date": "2022-12-30T18:25:09Z", "ucd": "phys.temperature;phys.electron", "units": "eV", "xmlid": "c3_pea_tperp"}, "c3_pea_vgse": {"__spz_name__": "v_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c3_pea_vgse", "c3_pea_vgse0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_pea_vgse(0)", "dataset": "clust3-pea-mom", "index1": "0", "is_public": "True", "name": "vx", "parameter": "c3_pea_vgse", "start_date": "2001-01-09T15:15:12Z", "stop_date": "2022-12-30T18:25:09Z", "xmlid": "c3_pea_vgse(0)"}, "c3_pea_vgse1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_pea_vgse(1)", "dataset": "clust3-pea-mom", "index1": "1", "is_public": "True", "name": "vy", "parameter": "c3_pea_vgse", "start_date": "2001-01-09T15:15:12Z", "stop_date": "2022-12-30T18:25:09Z", "xmlid": "c3_pea_vgse(1)"}, "c3_pea_vgse2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_pea_vgse(2)", "dataset": "clust3-pea-mom", "index1": "2", "is_public": "True", "name": "vz", "parameter": "c3_pea_vgse", "start_date": "2001-01-09T15:15:12Z", "stop_date": "2022-12-30T18:25:09Z", "xmlid": "c3_pea_vgse(2)"}, "dataset": "clust3-pea-mom", "description": "Electron velocity at spin time resolution", "display_type": "timeseries", "is_public": "True", "name": "v_gse", "size": "3", "start_date": "2001-01-09T15:15:12Z", "stop_date": "2022-12-30T18:25:09Z", "ucd": "phys.veloc;phys.electron", "units": "km/s", "xmlid": "c3_pea_vgse"}, "c3_pea_vgsm": {"__spz_name__": "v_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c3_pea_vgsm", "c3_pea_vgsm0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_pea_vgsm(0)", "dataset": "clust3-pea-mom", "index1": "0", "is_public": "True", "name": "vx", "parameter": "c3_pea_vgsm", "start_date": "2001-01-09T15:15:12Z", "stop_date": "2022-12-30T18:25:09Z", "xmlid": "c3_pea_vgsm(0)"}, "c3_pea_vgsm1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_pea_vgsm(1)", "dataset": "clust3-pea-mom", "index1": "1", "is_public": "True", "name": "vy", "parameter": "c3_pea_vgsm", "start_date": "2001-01-09T15:15:12Z", "stop_date": "2022-12-30T18:25:09Z", "xmlid": "c3_pea_vgsm(1)"}, "c3_pea_vgsm2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_pea_vgsm(2)", "dataset": "clust3-pea-mom", "index1": "2", "is_public": "True", "name": "vz", "parameter": "c3_pea_vgsm", "start_date": "2001-01-09T15:15:12Z", "stop_date": "2022-12-30T18:25:09Z", "xmlid": "c3_pea_vgsm(2)"}, "dataset": "clust3-pea-mom", "description": "Electron velocity at spin time resolution, in GSM", "display_type": "timeseries", "is_public": "True", "name": "v_gsm", "size": "3", "start_date": "2001-01-09T15:15:12Z", "stop_date": "2022-12-30T18:25:09Z", "ucd": "phys.veloc;phys.electron", "units": "km/s", "xmlid": "c3_pea_vgsm"}, "c3_pea_vpar": {"__spz_name__": "v_para_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c3_pea_vpar", "c3_pea_vpar0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_pea_vpar(0)", "dataset": "clust3-pea-mom", "index1": "0", "is_public": "True", "name": "vx", "parameter": "c3_pea_vpar", "start_date": "2001-01-09T15:15:12Z", "stop_date": "2022-12-30T18:25:09Z", "xmlid": "c3_pea_vpar(0)"}, "c3_pea_vpar1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_pea_vpar(1)", "dataset": "clust3-pea-mom", "index1": "1", "is_public": "True", "name": "vy", "parameter": "c3_pea_vpar", "start_date": "2001-01-09T15:15:12Z", "stop_date": "2022-12-30T18:25:09Z", "xmlid": "c3_pea_vpar(1)"}, "c3_pea_vpar2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_pea_vpar(2)", "dataset": "clust3-pea-mom", "index1": "2", "is_public": "True", "name": "vz", "parameter": "c3_pea_vpar", "start_date": "2001-01-09T15:15:12Z", "stop_date": "2022-12-30T18:25:09Z", "xmlid": "c3_pea_vpar(2)"}, "dataset": "clust3-pea-mom", "description": "Electron parallel velocity at spin time resolution, in GSE", "display_type": "timeseries", "is_public": "True", "name": "v_para_gse", "size": "3", "start_date": "2001-01-09T15:15:12Z", "stop_date": "2022-12-30T18:25:09Z", "ucd": "phys.veloc;phys.electron", "units": "km/s", "xmlid": "c3_pea_vpar"}, "c3_pea_vpar_gsm": {"__spz_name__": "v_para_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c3_pea_vpar_gsm", "c3_pea_vpar_gsm0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_pea_vpar_gsm(0)", "dataset": "clust3-pea-mom", "index1": "0", "is_public": "True", "name": "vx", "parameter": "c3_pea_vpar_gsm", "start_date": "2001-01-09T15:15:12Z", "stop_date": "2022-12-30T18:25:09Z", "xmlid": "c3_pea_vpar_gsm(0)"}, "c3_pea_vpar_gsm1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_pea_vpar_gsm(1)", "dataset": "clust3-pea-mom", "index1": "1", "is_public": "True", "name": "vy", "parameter": "c3_pea_vpar_gsm", "start_date": "2001-01-09T15:15:12Z", "stop_date": "2022-12-30T18:25:09Z", "xmlid": "c3_pea_vpar_gsm(1)"}, "c3_pea_vpar_gsm2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_pea_vpar_gsm(2)", "dataset": "clust3-pea-mom", "index1": "2", "is_public": "True", "name": "vz", "parameter": "c3_pea_vpar_gsm", "start_date": "2001-01-09T15:15:12Z", "stop_date": "2022-12-30T18:25:09Z", "xmlid": "c3_pea_vpar_gsm(2)"}, "dataset": "clust3-pea-mom", "description": "Electron parallel velocity at spin time resolution, in GSM", "display_type": "timeseries", "is_public": "True", "name": "v_para_gsm", "size": "3", "start_date": "2001-01-09T15:15:12Z", "stop_date": "2022-12-30T18:25:09Z", "ucd": "phys.veloc;phys.electron", "units": "km/s", "xmlid": "c3_pea_vpar_gsm"}, "c3_pea_vperp": {"__spz_name__": "v_perp_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c3_pea_vperp", "c3_pea_vperp0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_pea_vperp(0)", "dataset": "clust3-pea-mom", "index1": "0", "is_public": "True", "name": "vx", "parameter": "c3_pea_vperp", "start_date": "2001-01-09T15:15:12Z", "stop_date": "2022-12-30T18:25:09Z", "xmlid": "c3_pea_vperp(0)"}, "c3_pea_vperp1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_pea_vperp(1)", "dataset": "clust3-pea-mom", "index1": "1", "is_public": "True", "name": "vy", "parameter": "c3_pea_vperp", "start_date": "2001-01-09T15:15:12Z", "stop_date": "2022-12-30T18:25:09Z", "xmlid": "c3_pea_vperp(1)"}, "c3_pea_vperp2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_pea_vperp(2)", "dataset": "clust3-pea-mom", "index1": "2", "is_public": "True", "name": "vz", "parameter": "c3_pea_vperp", "start_date": "2001-01-09T15:15:12Z", "stop_date": "2022-12-30T18:25:09Z", "xmlid": "c3_pea_vperp(2)"}, "dataset": "clust3-pea-mom", "description": "Electron perpendicular velocity at spin time resolution, in GSE", "display_type": "timeseries", "is_public": "True", "name": "v_perp_gse", "size": "3", "start_date": "2001-01-09T15:15:12Z", "stop_date": "2022-12-30T18:25:09Z", "ucd": "phys.veloc;phys.electron", "units": "km/s", "xmlid": "c3_pea_vperp"}, "c3_pea_vperp_gsm": {"__spz_name__": "v_perp_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c3_pea_vperp_gsm", "c3_pea_vperp_gsm0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_pea_vperp_gsm(0)", "dataset": "clust3-pea-mom", "index1": "0", "is_public": "True", "name": "vx", "parameter": "c3_pea_vperp_gsm", "start_date": "2001-01-09T15:15:12Z", "stop_date": "2022-12-30T18:25:09Z", "xmlid": "c3_pea_vperp_gsm(0)"}, "c3_pea_vperp_gsm1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_pea_vperp_gsm(1)", "dataset": "clust3-pea-mom", "index1": "1", "is_public": "True", "name": "vy", "parameter": "c3_pea_vperp_gsm", "start_date": "2001-01-09T15:15:12Z", "stop_date": "2022-12-30T18:25:09Z", "xmlid": "c3_pea_vperp_gsm(1)"}, "c3_pea_vperp_gsm2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_pea_vperp_gsm(2)", "dataset": "clust3-pea-mom", "index1": "2", "is_public": "True", "name": "vz", "parameter": "c3_pea_vperp_gsm", "start_date": "2001-01-09T15:15:12Z", "stop_date": "2022-12-30T18:25:09Z", "xmlid": "c3_pea_vperp_gsm(2)"}, "dataset": "clust3-pea-mom", "description": "Electron perpendicular velocity at spin time resolution, in GSM", "display_type": "timeseries", "is_public": "True", "name": "v_perp_gsm", "size": "3", "start_date": "2001-01-09T15:15:12Z", "stop_date": "2022-12-30T18:25:09Z", "ucd": "phys.veloc;phys.electron", "units": "km/s", "xmlid": "c3_pea_vperp_gsm"}, "dataSource": "CSA", "desc": "Cluster 3 electron moments
Sampling: 4S
Provider: CSA", "is_public": "True", "lastModificationDate": "2024-10-06T22:11:57Z", "lastUpdate": "2024-08-22T14:02:19Z", "measurement_type": "ThermalPlasma", "name": "electron moments", "processing_level": "Calibrated", "sampling": "4S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cluster/Cluster3/PEACE/clust3-pea-mom", "start_date": "2001-01-09T15:15:12Z", "stop_date": "2022-12-30T18:25:09Z", "target": "Earth.Magnetosheath", "xmlid": "clust3-pea-mom"}, "clust3_pea_pa": {"__spz_name__": "pitch-angle/energy distribution", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "clust3-pea-pa", "att": "auto/clust3-pea-pa", "c3_pea_bckgrd": {"__spz_name__": "background : 2D pa/energy", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c3_pea_bckgrd", "dataset": "clust3-pea-pa", "description": "Background energy flux at spin time resolution", "display_type": "spectrogram", "is_public": "True", "name": "background : 2D pa/energy", "start_date": "2000-11-22T12:59:44Z", "stop_date": "2022-12-30T18:25:56Z", "ucd": "phys.density;phys.electron", "units": "keV/cm\u00b2-s-str-keV", "xmlid": "c3_pea_bckgrd"}, "c3_pea_pad": {"__spz_name__": "diff energy flux : 2D pa/energy", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c3_pea_pad", "dataset": "clust3-pea-pa", "description": "Electron differential energy flux at spin time resolution", "display_type": "spectrogram", "is_public": "True", "name": "diff energy flux : 2D pa/energy", "start_date": "2000-11-22T12:59:44Z", "stop_date": "2022-12-30T18:25:56Z", "ucd": "phys.density;phys.electron", "units": "keV/cm\u00b2-s-str-keV", "xmlid": "c3_pea_pad"}, "dataSource": "CSA", "desc": "Cluster3 2D Pitch-Angle/Energy electron distribution
Sampling: 4S
Provider: CSA", "is_public": "True", "lastModificationDate": "2024-10-06T22:12:01Z", "lastUpdate": "2024-09-06T11:18:38Z", "measurement_type": "ThermalPlasma", "name": "pitch-angle/energy distribution", "processing_level": "Calibrated", "sampling": "4S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cluster/Cluster3/PEACE/clust3-pea-pa", "start_date": "2000-11-22T12:59:44Z", "stop_date": "2022-12-30T18:25:56Z", "target": "Earth.Magnetosheath", "xmlid": "clust3-pea-pa"}, "desc": "Plasma Electron and Current Experiment
ElectrostaticAnalyser", "is_public": "True", "name": "PEACE", "xmlid": "Cluster3_peace"}, "STAFF": {"__spz_name__": "STAFF", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Cluster3_staff", "att": "auto/Cluster3_staff", "clust3_sta_pp": {"__spz_name__": "prime parameters", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "clust3-sta-pp", "att": "auto/clust3-sta-pp", "c3_sta_f1": {"__spz_name__": "b spectral density (1-10 Hz)", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c3_sta_f1", "c3_sta_f10": {"__spz_name__": "parallel to b0", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_sta_f1(0)", "dataset": "clust3-sta-pp", "index1": "0", "is_public": "True", "name": "parallel to b0", "parameter": "c3_sta_f1", "start_date": "2001-01-09T04:39:20Z", "stop_date": "2012-12-31T23:59:47Z", "xmlid": "c3_sta_f1(0)"}, "c3_sta_f11": {"__spz_name__": "perpendicular to b0", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_sta_f1(1)", "dataset": "clust3-sta-pp", "index1": "1", "is_public": "True", "name": "perpendicular to b0", "parameter": "c3_sta_f1", "start_date": "2001-01-09T04:39:20Z", "stop_date": "2012-12-31T23:59:47Z", "xmlid": "c3_sta_f1(1)"}, "dataset": "clust3-sta-pp", "description": "Magnetic field spectral power in the 1-10 Hz (f1) at spin time resolution (parallel and perp components)", "display_type": "timeseries", "is_public": "True", "name": "b spectral density (1-10 Hz)", "size": "2", "start_date": "2001-01-09T04:39:20Z", "stop_date": "2012-12-31T23:59:47Z", "ucd": "phys.magField", "units": "nT\u00b2 Hz\u207b\u00b9", "xmlid": "c3_sta_f1"}, "c3_sta_f2": {"__spz_name__": "b spectral density (10-180 Hz)", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c3_sta_f2", "c3_sta_f20": {"__spz_name__": "parallel to b0", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_sta_f2(0)", "dataset": "clust3-sta-pp", "index1": "0", "is_public": "True", "name": "parallel to b0", "parameter": "c3_sta_f2", "start_date": "2001-01-09T04:39:20Z", "stop_date": "2012-12-31T23:59:47Z", "xmlid": "c3_sta_f2(0)"}, "c3_sta_f21": {"__spz_name__": "perpendicular to b0", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_sta_f2(1)", "dataset": "clust3-sta-pp", "index1": "1", "is_public": "True", "name": "perpendicular to b0", "parameter": "c3_sta_f2", "start_date": "2001-01-09T04:39:20Z", "stop_date": "2012-12-31T23:59:47Z", "xmlid": "c3_sta_f2(1)"}, "dataset": "clust3-sta-pp", "description": "Magnetic field spectral power in the 10-180 Hz (f2) at spin time resolution (parallel and perp components)", "display_type": "timeseries", "is_public": "True", "name": "b spectral density (10-180 Hz)", "size": "2", "start_date": "2001-01-09T04:39:20Z", "stop_date": "2012-12-31T23:59:47Z", "ucd": "phys.magField", "units": "nT\u00b2 Hz\u207b\u00b9", "xmlid": "c3_sta_f2"}, "c3_sta_f3": {"__spz_name__": "b spectral density (180-4000 Hz)", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c3_sta_f3", "c3_sta_f30": {"__spz_name__": "parallel to b0", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_sta_f3(0)", "dataset": "clust3-sta-pp", "index1": "0", "is_public": "True", "name": "parallel to b0", "parameter": "c3_sta_f3", "start_date": "2001-01-09T04:39:20Z", "stop_date": "2012-12-31T23:59:47Z", "xmlid": "c3_sta_f3(0)"}, "c3_sta_f31": {"__spz_name__": "perpendicular to b0", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c3_sta_f3(1)", "dataset": "clust3-sta-pp", "index1": "1", "is_public": "True", "name": "perpendicular to b0", "parameter": "c3_sta_f3", "start_date": "2001-01-09T04:39:20Z", "stop_date": "2012-12-31T23:59:47Z", "xmlid": "c3_sta_f3(1)"}, "dataset": "clust3-sta-pp", "description": "Magnetic field spectral power in the 80-4000 Hz (f3) at spin time resolution (parallel and perp components)", "display_type": "timeseries", "is_public": "True", "name": "b spectral density (180-4000 Hz)", "size": "2", "start_date": "2001-01-09T04:39:20Z", "stop_date": "2012-12-31T23:59:47Z", "ucd": "phys.magField", "units": "nT\u00b2 Hz\u207b\u00b9", "xmlid": "c3_sta_f3"}, "c3_stae_f2": {"__spz_name__": "e spectral density (10-180 Hz)", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c3_stae_f2", "dataset": "clust3-sta-pp", "description": "Electric field spectral power in the 10-180 Hz (f2) frequency range at spin time resolution.", "display_type": "timeseries", "is_public": "True", "name": "e spectral density (10-180 Hz)", "start_date": "2001-01-09T04:39:20Z", "stop_date": "2012-12-31T23:59:47Z", "ucd": "phys.electField", "units": "V\u00b2 m\u207b\u00b2 Hz\u207b\u00b9", "xmlid": "c3_stae_f2"}, "c3_stae_f3": {"__spz_name__": "e spectral density (180-4000 Hz)", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c3_stae_f3", "dataset": "clust3-sta-pp", "description": "Electric field spectral power in the 180-4000 Hz (f3) frequency range at spin time resolution.", "display_type": "timeseries", "is_public": "True", "name": "e spectral density (180-4000 Hz)", "start_date": "2001-01-09T04:39:20Z", "stop_date": "2012-12-31T23:59:47Z", "ucd": "phys.electField", "units": "V\u00b2 m\u207b\u00b2 Hz\u207b\u00b9", "xmlid": "c3_stae_f3"}, "dataSource": "CSDS-CNES", "desc": "Cluster 3 Prime Parameter STAFF Data
Sampling: 4S
Provider: CSDS-CNES", "is_public": "True", "lastModificationDate": "2013-05-03T14:21:26Z", "lastUpdate": "2013-04-22T17:34:33Z", "measurement_type": "ElectricField", "name": "prime parameters", "processing_level": "Calibrated", "sampling": "4S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cluster/Cluster3/STAFF/clust3-sta-pp", "start_date": "2001-01-09T04:39:20Z", "stop_date": "2012-12-31T23:59:47Z", "target": "Earth.Magnetosphere", "xmlid": "clust3-sta-pp"}, "desc": "Spatio-Temporal Analysis of Magnetic Field Fluctuations
SearchCoil", "is_public": "True", "name": "STAFF", "xmlid": "Cluster3_staff"}, "WHISPER": {"__spz_name__": "WHISPER", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Cluster3_whisper", "att": "auto/Cluster3_whisper", "clust3_whi_pp": {"__spz_name__": "electric field : spectral density", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "clust3-whi-pp", "att": "auto/clust3-whi-pp", "c3_whipp_f4": {"__spz_name__": "f4 : 4-10 kHz", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c3_whipp_f4", "dataset": "clust3-whi-pp", "description": "Electric field spectral density in the 4-10 kHz (f4) frequency range at spin time resolution", "display_type": "timeseries", "is_public": "True", "name": "f4 : 4-10 kHz", "start_date": "2001-01-09T04:39:18Z", "stop_date": "2012-12-31T23:59:54Z", "ucd": "phys.density;phys.electron", "units": "V\u00b2 m\u207b\u00b2 Hz\u207b\u00b9", "xmlid": "c3_whipp_f4"}, "c3_whipp_f5": {"__spz_name__": "f5 : 10-20 kHz", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c3_whipp_f5", "dataset": "clust3-whi-pp", "description": "Electric field spectral density in the 10-20 kHz (f5) frequency range at spin time resolution", "display_type": "timeseries", "is_public": "True", "name": "f5 : 10-20 kHz", "start_date": "2001-01-09T04:39:18Z", "stop_date": "2012-12-31T23:59:54Z", "ucd": "phys.density;phys.electron", "units": "V\u00b2 m\u207b\u00b2 Hz\u207b\u00b9", "xmlid": "c3_whipp_f5"}, "c3_whipp_f6": {"__spz_name__": "f6 : 20-80 kHz", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c3_whipp_f6", "dataset": "clust3-whi-pp", "description": "Electric field spectral density in the 20-80 kHz (f6) frequency range at spin time resolution", "display_type": "timeseries", "is_public": "True", "name": "f6 : 20-80 kHz", "start_date": "2001-01-09T04:39:18Z", "stop_date": "2012-12-31T23:59:54Z", "ucd": "phys.density;phys.electron", "units": "V\u00b2 m\u207b\u00b2 Hz\u207b\u00b9", "xmlid": "c3_whipp_f6"}, "dataSource": "CSDS-CNES", "desc": "Cluster 3 Prime Parameter WHISPER Data
Sampling: 4S
Provider: CSDS-CNES", "is_public": "True", "lastModificationDate": "2018-10-04T10:46:53Z", "lastUpdate": "2013-04-23T13:06:51Z", "measurement_type": "ElectricField", "name": "electric field : spectral density", "processing_level": "Calibrated", "sampling": "4S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cluster/Cluster3/WHISPER/clust3-whi-pp", "start_date": "2001-01-09T04:39:18Z", "stop_date": "2012-12-31T23:59:54Z", "target": "Earth.Magnetosheath", "xmlid": "clust3-whi-pp"}, "clust3_whi_whi": {"__spz_name__": "electron density", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "clust3-whi-whi", "att": "auto/clust3-whi-whi", "c3_whi_ne": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c3_whi_ne", "dataset": "clust3-whi-whi", "description": "Electron number density derived from plasma frequency recognition at spin time resolution", "display_type": "timeseries", "is_public": "True", "name": "density", "start_date": "2001-02-07T00:00:10Z", "stop_date": "2023-12-30T09:41:58Z", "ucd": "phys.density;phys.electron", "units": "cm\u207b\u00b3", "xmlid": "c3_whi_ne"}, "c3_whi_ne_qual": {"__spz_name__": "density quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c3_whi_ne_qual", "dataset": "clust3-whi-whi", "description": "Electron number density quality of the resonance recognition flag at spin time resolution", "display_type": "timeseries", "is_public": "True", "name": "density quality", "start_date": "2001-02-07T00:00:10Z", "stop_date": "2023-12-30T09:41:58Z", "ucd": "meta.code.qual", "units": "cm\u207b\u00b3", "xmlid": "c3_whi_ne_qual"}, "c3_whi_ne_unc": {"__spz_name__": "density uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c3_whi_ne_unc", "dataset": "clust3-whi-whi", "description": "Electron number density uncertainty of the resonance recognition flag at spin time resolution", "display_type": "timeseries", "is_public": "True", "name": "density uncertainty", "start_date": "2001-02-07T00:00:10Z", "stop_date": "2023-12-30T09:41:58Z", "ucd": "meta.code.qual", "xmlid": "c3_whi_ne_unc"}, "dataSource": "CSA", "desc": "Cluster 3 WHISPER Data
Sampling: 1.5S
Provider: CSA", "is_public": "True", "lastModificationDate": "2024-10-06T22:12:10Z", "lastUpdate": "2024-09-30T10:16:33Z", "measurement_type": "ElectricField", "name": "electron density", "processing_level": "Calibrated", "sampling": "1.5S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cluster/Cluster3/WHISPER/clust3-whi-whi", "start_date": "2001-02-07T00:00:10Z", "stop_date": "2023-12-30T09:41:58Z", "target": "Earth.Magnetosheath", "xmlid": "clust3-whi-whi"}, "desc": "Waves of High Frequency and Sounder for Probing Electron Density by Relaxation
DoubleSphere", "is_public": "True", "name": "WHISPER", "xmlid": "Cluster3_whisper"}, "__spz_name__": "Cluster 3", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Cluster3", "att": "auto/Cluster3", "desc": "Samba
2000-12-01T00:00:00
Start of full orbit coverage: 2002-06-01T00:00:00
C3 spacecraft tilt by 40\u00b0 during one month: 2008-05-01T00:00:00", "is_public": "True", "name": "Cluster 3", "target": "Earth.Magnetosphere", "xmlid": "Cluster3"}, "Cluster_4": {"Analytical_Models": {"__spz_name__": "Analytical Models", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Cluster4_models", "att": "auto/Cluster4_models", "c4_msph_models": {"PriorID": "clust4-orb-all", "__spz_name__": "distance to neutral sheet", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "c4-msph-models", "att": "auto/c4-msph-models", "dataSource": "IRAP", "desc": "Distance to model neutral sheet
Sampling: 1M
Provider: IRAP", "dz_fairfield70_c4_xyz_gse": {"__spz_name__": "dZ Fairfield70", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "dz_fairfield70_c4_xyz_gse", "dataset": "c4-msph-models", "description": "Distance (Re) from s/c location to Fairfield1970 neutral sheet position. Depends on spacecraft location in SM coordinates and dipole tilt angle. Valid for Ysm less than 15 Re.", "is_public": "True", "name": "dZ Fairfield70", "predefined": "1", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-10-02T00:00:00Z", "template": "dz_fairfield70_##ORBIT##", "units": "Re", "xmlid": "dz_fairfield70_c4_xyz_gse"}, "dz_fairfield80_c4_xyz_gse": {"__spz_name__": "dZ Fairfield80", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "dz_fairfield80_c4_xyz_gse", "dataset": "c4-msph-models", "description": "Distance (Re) from s/c location to Fairfield1980 neutral sheet position. Depends on spacecraft location in SM coordinates and dipole tilt angle.", "is_public": "True", "name": "dZ Fairfield80", "predefined": "1", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-10-02T00:00:00Z", "template": "dz_fairfield80_##ORBIT##", "units": "Re", "xmlid": "dz_fairfield80_c4_xyz_gse"}, "is_public": "True", "lastModificationDate": "2024-10-06T22:08:43Z", "lastUpdate": "2024-10-06T22:08:44Z", "measurement_type": "Ephemeris", "name": "distance to neutral sheet", "processing_level": "Calibrated", "sampling": "1M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cluster/Cluster4/Models/c4-msph-models", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-10-02T00:00:00Z", "target": "Earth", "xmlid": "c4-msph-models"}, "c4_t96_model": {"PriorID": "clust4-orb-all", "__spz_name__": "T96 field model", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "c4-t96-model", "att": "auto/c4-t96-model", "b_t96gse_c4_xyz_gse": {"__spz_name__": "b_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_t96gse_c4_xyz_gse", "b_t96gse_c4_xyz_gse0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gse_c4_xyz_gse(0)", "dataset": "c4-t96-model", "index1": "0", "is_public": "True", "name": "bx", "parameter": "b_t96gse_c4_xyz_gse", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-10-02T00:00:00Z", "xmlid": "b_t96gse_c4_xyz_gse(0)"}, "b_t96gse_c4_xyz_gse1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gse_c4_xyz_gse(1)", "dataset": "c4-t96-model", "index1": "1", "is_public": "True", "name": "by", "parameter": "b_t96gse_c4_xyz_gse", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-10-02T00:00:00Z", "xmlid": "b_t96gse_c4_xyz_gse(1)"}, "b_t96gse_c4_xyz_gse2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gse_c4_xyz_gse(2)", "dataset": "c4-t96-model", "index1": "2", "is_public": "True", "name": "bz", "parameter": "b_t96gse_c4_xyz_gse", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-10-02T00:00:00Z", "xmlid": "b_t96gse_c4_xyz_gse(2)"}, "dataset": "c4-t96-model", "is_public": "True", "name": "b_gse", "predefined": "1", "size": "3", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-10-02T00:00:00Z", "template": "b_t96gse_##ORBIT##", "units": "nT", "xmlid": "b_t96gse_c4_xyz_gse"}, "b_t96gsm_c4_xyz_gse": {"__spz_name__": "b_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_t96gsm_c4_xyz_gse", "b_t96gsm_c4_xyz_gse0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gsm_c4_xyz_gse(0)", "dataset": "c4-t96-model", "index1": "0", "is_public": "True", "name": "bx", "parameter": "b_t96gsm_c4_xyz_gse", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-10-02T00:00:00Z", "xmlid": "b_t96gsm_c4_xyz_gse(0)"}, "b_t96gsm_c4_xyz_gse1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gsm_c4_xyz_gse(1)", "dataset": "c4-t96-model", "index1": "1", "is_public": "True", "name": "by", "parameter": "b_t96gsm_c4_xyz_gse", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-10-02T00:00:00Z", "xmlid": "b_t96gsm_c4_xyz_gse(1)"}, "b_t96gsm_c4_xyz_gse2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gsm_c4_xyz_gse(2)", "dataset": "c4-t96-model", "index1": "2", "is_public": "True", "name": "bz", "parameter": "b_t96gsm_c4_xyz_gse", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-10-02T00:00:00Z", "xmlid": "b_t96gsm_c4_xyz_gse(2)"}, "dataset": "c4-t96-model", "is_public": "True", "name": "b_gsm", "predefined": "1", "size": "3", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-10-02T00:00:00Z", "template": "b_t96gsm_##ORBIT##", "units": "nT", "xmlid": "b_t96gsm_c4_xyz_gse"}, "b_t96tot_c4_xyz_gse": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_t96tot_c4_xyz_gse", "dataset": "c4-t96-model", "description": "Average Magnetic Field magnitude", "display_type": "timeseries", "is_public": "True", "name": "|b|", "predefined": "1", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-10-02T00:00:00Z", "template": "b_t96tot_##ORBIT##", "ucd": "phys.magField", "units": "nT", "xmlid": "b_t96tot_c4_xyz_gse"}, "dataSource": "IRAP", "desc": "Tsyganenko96 geomagnetospheric magnetic field model
Sampling: 1M
Provider: IRAP", "is_public": "True", "lastModificationDate": "2024-10-06T22:08:43Z", "lastUpdate": "2024-10-06T22:08:44Z", "measurement_type": "MagneticField", "name": "T96 field model", "processing_level": "Calibrated", "sampling": "1M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cluster/Cluster4/Models/c4-t96-model", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-10-02T00:00:00Z", "target": "Earth", "xmlid": "c4-t96-model"}, "desc": "", "is_public": "True", "name": "Analytical Models", "xmlid": "Cluster4_models"}, "CIS_CODIF": {"__spz_name__": "CIS-CODIF", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Cluster4_cis-codif", "att": "auto/Cluster4_cis-codif", "clust4_cis_prp": {"__spz_name__": "prime parameters", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "clust4-cis-prp", "att": "auto/clust4-cis-prp", "c4_h_dens": {"__spz_name__": "h+ density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c4_h_dens", "dataset": "clust4-cis-prp", "description": "Cluster II Tango Prime Parameter Cluster Ion Spectrometry CODIF H number density at spin time resolution", "display_type": "timeseries", "is_public": "True", "name": "h+ density", "start_date": "2001-01-09T16:27:04Z", "stop_date": "2017-01-24T23:59:59Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm\u207b\u00b3", "xmlid": "c4_h_dens"}, "c4_h_t": {"__spz_name__": "h+ temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c4_h_t", "c4_h_t0": {"__spz_name__": "t_para", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c4_h_t(0)", "dataset": "clust4-cis-prp", "index1": "0", "is_public": "True", "name": "t_para", "parameter": "c4_h_t", "start_date": "2001-01-09T16:27:04Z", "stop_date": "2017-01-24T23:59:59Z", "xmlid": "c4_h_t(0)"}, "c4_h_t1": {"__spz_name__": "t_perp", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c4_h_t(1)", "dataset": "clust4-cis-prp", "index1": "1", "is_public": "True", "name": "t_perp", "parameter": "c4_h_t", "start_date": "2001-01-09T16:27:04Z", "stop_date": "2017-01-24T23:59:59Z", "xmlid": "c4_h_t(1)"}, "dataset": "clust4-cis-prp", "is_public": "True", "name": "h+ temperature", "size": "2", "start_date": "2001-01-09T16:27:04Z", "stop_date": "2017-01-24T23:59:59Z", "ucd": "phys.temperature;phys.atmol.ionStage", "units": "eV", "xmlid": "c4_h_t"}, "c4_h_v": {"__spz_name__": "h+ v_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c4_h_v", "c4_h_v0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c4_h_v(0)", "dataset": "clust4-cis-prp", "index1": "0", "is_public": "True", "name": "vx", "parameter": "c4_h_v", "start_date": "2001-01-09T16:27:04Z", "stop_date": "2017-01-24T23:59:59Z", "xmlid": "c4_h_v(0)"}, "c4_h_v1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c4_h_v(1)", "dataset": "clust4-cis-prp", "index1": "1", "is_public": "True", "name": "vy", "parameter": "c4_h_v", "start_date": "2001-01-09T16:27:04Z", "stop_date": "2017-01-24T23:59:59Z", "xmlid": "c4_h_v(1)"}, "c4_h_v2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c4_h_v(2)", "dataset": "clust4-cis-prp", "index1": "2", "is_public": "True", "name": "vz", "parameter": "c4_h_v", "start_date": "2001-01-09T16:27:04Z", "stop_date": "2017-01-24T23:59:59Z", "xmlid": "c4_h_v(2)"}, "dataset": "clust4-cis-prp", "description": "Cluster II Tango Prime Parameter Cluster Ion Spectrometry H velocity at spin time resolution", "display_type": "timeseries", "is_public": "True", "name": "h+ v_gse", "size": "3", "start_date": "2001-01-09T16:27:04Z", "stop_date": "2017-01-24T23:59:59Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "c4_h_v"}, "c4_h_v_gsm": {"__spz_name__": "h+ v_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c4_h_v_gsm", "c4_h_v_gsm0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c4_h_v_gsm(0)", "dataset": "clust4-cis-prp", "index1": "0", "is_public": "True", "name": "vx", "parameter": "c4_h_v_gsm", "start_date": "2001-01-09T16:27:04Z", "stop_date": "2017-01-24T23:59:59Z", "xmlid": "c4_h_v_gsm(0)"}, "c4_h_v_gsm1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c4_h_v_gsm(1)", "dataset": "clust4-cis-prp", "index1": "1", "is_public": "True", "name": "vy", "parameter": "c4_h_v_gsm", "start_date": "2001-01-09T16:27:04Z", "stop_date": "2017-01-24T23:59:59Z", "xmlid": "c4_h_v_gsm(1)"}, "c4_h_v_gsm2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c4_h_v_gsm(2)", "dataset": "clust4-cis-prp", "index1": "2", "is_public": "True", "name": "vz", "parameter": "c4_h_v_gsm", "start_date": "2001-01-09T16:27:04Z", "stop_date": "2017-01-24T23:59:59Z", "xmlid": "c4_h_v_gsm(2)"}, "dataset": "clust4-cis-prp", "description": "Cluster II Tango Prime Parameter Cluster Ion Spectrometry H velocity at spin time resolution", "display_type": "timeseries", "is_public": "True", "name": "h+ v_gsm", "size": "3", "start_date": "2001-01-09T16:27:04Z", "stop_date": "2017-01-24T23:59:59Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "c4_h_v_gsm"}, "c4_h_vtot": {"__spz_name__": "h+ |v|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c4_h_vtot", "dataset": "clust4-cis-prp", "description": "Cluster Tango Fluxgate Magnetometer Velocity magnitude at spin time resolution", "is_public": "True", "name": "h+ |v|", "start_date": "2001-01-09T16:27:04Z", "stop_date": "2017-01-24T23:59:59Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "nT", "xmlid": "c4_h_vtot"}, "c4_o_dens": {"__spz_name__": "o+ density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c4_o_dens", "dataset": "clust4-cis-prp", "description": "Cluster II Tango Prime Parameter Cluster Ion Spectrometry CODIF O number density at spin time resolution", "display_type": "timeseries", "is_public": "True", "name": "o+ density", "start_date": "2001-01-09T16:27:04Z", "stop_date": "2017-01-24T23:59:59Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm\u207b\u00b3", "xmlid": "c4_o_dens"}, "dataSource": "CSA", "desc": "CIS-CODIF Prime (Preliminary) Parameters
Sampling: 4S
Provider: CSA", "is_public": "True", "lastModificationDate": "2024-10-06T22:08:48Z", "lastUpdate": "2024-08-26T13:57:55Z", "measurement_type": "IonComposition", "name": "prime parameters", "processing_level": "Calibrated", "sampling": "4S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cluster/Cluster4/CIS-CODIF/clust4-cis-prp", "start_date": "2001-01-09T16:27:04Z", "stop_date": "2017-01-24T23:59:59Z", "target": "Earth.Magnetosheath", "xmlid": "clust4-cis-prp"}, "desc": "Cluster Ion Spectrometry : Composition Distribution Function
MassSpectrometer", "is_public": "True", "name": "CIS-CODIF", "xmlid": "Cluster4_cis-codif"}, "EFW": {"__spz_name__": "EFW", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Cluster4_efw", "att": "auto/Cluster4_efw", "clust4_efw_ppp": {"__spz_name__": "prime parameters", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "clust4-efw-ppp", "att": "auto/clust4-efw-ppp", "c4_edusk": {"__spz_name__": "e_dusk", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c4_edusk", "dataset": "clust4-efw-ppp", "description": "Duskward Electric Field, In spin plane perp to x-gse at spin time resolution (4s)", "display_type": "timeseries", "is_public": "True", "name": "e_dusk", "start_date": "2001-01-01T00:00:02Z", "stop_date": "2019-09-30T23:59:58Z", "ucd": "phys.electField", "units": "mV/m", "xmlid": "c4_edusk"}, "c4_efw_f1": {"__spz_name__": "e_spectral_density_F1", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c4_efw_f1", "dataset": "clust4-efw-ppp", "description": "E-field spectral density [0.3-10] Hz, from EFW waveform at spin time resolution (4s)", "display_type": "timeseries", "is_public": "True", "name": "e_spectral_density_F1", "start_date": "2001-01-01T00:00:02Z", "stop_date": "2019-09-30T23:59:58Z", "ucd": "phys.density", "units": "(V/m)\u00b2/Hz", "xmlid": "c4_efw_f1"}, "c4_efw_f2": {"__spz_name__": "e_spectral_density_F2", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c4_efw_f2", "dataset": "clust4-efw-ppp", "description": "E-field spectral density [10-180] Hz, from EFW waveform at spin time resolution (4s)", "display_type": "timeseries", "is_public": "True", "name": "e_spectral_density_F2", "start_date": "2001-01-01T00:00:02Z", "stop_date": "2019-09-30T23:59:58Z", "ucd": "phys.density", "units": "(V/m)\u00b2/Hz", "xmlid": "c4_efw_f2"}, "c4_pot": {"__spz_name__": "s/c pot", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c4_pot", "dataset": "clust4-efw-ppp", "description": "Probe potential, Relative to Spacecraft at spin time resolution (4s)", "display_type": "timeseries", "is_public": "True", "name": "s/c pot", "start_date": "2001-01-01T00:00:02Z", "stop_date": "2019-09-30T23:59:58Z", "ucd": "phys.potential;phys.electField;instr.obsty", "units": "V", "xmlid": "c4_pot"}, "dataSource": "CSA", "desc": "Cluster 4 Prime Parameters EFW Data
Sampling: 4S
Provider: CSA", "is_public": "True", "lastModificationDate": "2024-10-06T22:09:12Z", "lastUpdate": "2024-08-30T12:58:43Z", "measurement_type": "ElectricField", "name": "prime parameters", "processing_level": "Calibrated", "sampling": "4S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cluster/Cluster4/EFW/clust4-efw-ppp", "start_date": "2001-01-01T00:00:02Z", "stop_date": "2019-09-30T23:59:58Z", "target": "Earth.Magnetosheath", "xmlid": "clust4-efw-ppp"}, "desc": "Electric Field and Waves
LongWire", "electric_field": {"__spz_name__": "electric field", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "c4-efw-efield", "clust4_efw_gse": {"__spz_name__": "3D gse", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "clust4-efw-gse", "att": "auto/clust4-efw-gse", "c4_e_gse": {"__spz_name__": "e_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c4_e_gse", "c4_e_gse0": {"__spz_name__": "ex", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c4_e_gse(0)", "dataset": "clust4-efw-gse", "index1": "0", "is_public": "True", "name": "ex", "parameter": "c4_e_gse", "start_date": "2001-01-07T00:17:02Z", "stop_date": "2022-12-31T23:59:58Z", "xmlid": "c4_e_gse(0)"}, "c4_e_gse1": {"__spz_name__": "ey", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c4_e_gse(1)", "dataset": "clust4-efw-gse", "index1": "1", "is_public": "True", "name": "ey", "parameter": "c4_e_gse", "start_date": "2001-01-07T00:17:02Z", "stop_date": "2022-12-31T23:59:58Z", "xmlid": "c4_e_gse(1)"}, "c4_e_gse2": {"__spz_name__": "ez", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c4_e_gse(2)", "dataset": "clust4-efw-gse", "index1": "2", "is_public": "True", "name": "ez", "parameter": "c4_e_gse", "start_date": "2001-01-07T00:17:02Z", "stop_date": "2022-12-31T23:59:58Z", "xmlid": "c4_e_gse(2)"}, "dataset": "clust4-efw-gse", "description": "Electric Field in GSE at spin time (4s) resolution (3 components)", "display_type": "timeseries", "is_public": "True", "name": "e_gse", "size": "3", "start_date": "2001-01-07T00:17:02Z", "stop_date": "2022-12-31T23:59:58Z", "ucd": "phys.electField", "units": "mV/m", "xmlid": "c4_e_gse"}, "c4_e_gse_qual": {"__spz_name__": "e_quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c4_e_gse_qual", "dataset": "clust4-efw-gse", "description": "Data quality: 0 (Bad data) to 4 (Excellent data)", "display_type": "timeseries", "is_public": "True", "name": "e_quality", "start_date": "2001-01-07T00:17:02Z", "stop_date": "2022-12-31T23:59:58Z", "ucd": "meta.code.qual", "xmlid": "c4_e_gse_qual"}, "c4_e_gsm": {"__spz_name__": "e_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c4_e_gsm", "c4_e_gsm0": {"__spz_name__": "ex", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c4_e_gsm(0)", "dataset": "clust4-efw-gse", "index1": "0", "is_public": "True", "name": "ex", "parameter": "c4_e_gsm", "start_date": "2001-01-07T00:17:02Z", "stop_date": "2022-12-31T23:59:58Z", "xmlid": "c4_e_gsm(0)"}, "c4_e_gsm1": {"__spz_name__": "ey", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c4_e_gsm(1)", "dataset": "clust4-efw-gse", "index1": "1", "is_public": "True", "name": "ey", "parameter": "c4_e_gsm", "start_date": "2001-01-07T00:17:02Z", "stop_date": "2022-12-31T23:59:58Z", "xmlid": "c4_e_gsm(1)"}, "c4_e_gsm2": {"__spz_name__": "ez", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c4_e_gsm(2)", "dataset": "clust4-efw-gse", "index1": "2", "is_public": "True", "name": "ez", "parameter": "c4_e_gsm", "start_date": "2001-01-07T00:17:02Z", "stop_date": "2022-12-31T23:59:58Z", "xmlid": "c4_e_gsm(2)"}, "dataset": "clust4-efw-gse", "description": "Electric Field in GSM at spin time (4s) resolution (3 components)", "display_type": "timeseries", "is_public": "True", "name": "e_gsm", "size": "3", "start_date": "2001-01-07T00:17:02Z", "stop_date": "2022-12-31T23:59:58Z", "ucd": "phys.electField", "units": "mV/m", "xmlid": "c4_e_gsm"}, "c4_etot": {"__spz_name__": "|e|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c4_etot", "dataset": "clust4-efw-gse", "description": "Electric Field Magnitude at spin time (4s) resolution", "display_type": "timeseries", "is_public": "True", "name": "|e|", "start_date": "2001-01-07T00:17:02Z", "stop_date": "2022-12-31T23:59:58Z", "ucd": "phys.electField", "units": "mV/m", "xmlid": "c4_etot"}, "c4_ez_error": {"__spz_name__": "ez_error", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c4_ez_error", "dataset": "clust4-efw-gse", "description": "Error on the (reconstructed) Z component of the electric field", "display_type": "timeseries", "is_public": "True", "name": "ez_error", "start_date": "2001-01-07T00:17:02Z", "stop_date": "2022-12-31T23:59:58Z", "ucd": "stat.error", "xmlid": "c4_ez_error"}, "dataSource": "CSA", "desc": "Cluster 4 3D electric field (L3)
Sampling: 4S
Provider: CSA", "is_public": "True", "lastModificationDate": "2024-10-06T22:09:09Z", "lastUpdate": "2024-08-29T16:11:31Z", "measurement_type": "ElectricField", "name": "3D gse", "processing_level": "Calibrated", "sampling": "4S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cluster/Cluster4/EFW/clust4-efw-gse", "start_date": "2001-01-07T00:17:02Z", "stop_date": "2022-12-31T23:59:58Z", "target": "Earth.Magnetosheath", "xmlid": "clust4-efw-gse"}, "clust4_efw_sr2": {"__spz_name__": "2D isr2", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "clust4-efw-sr2", "att": "auto/clust4-efw-sr2", "c4_e_sr2": {"__spz_name__": "e_sr2", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c4_e_sr2", "c4_e_sr20": {"__spz_name__": "ex", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c4_e_sr2(0)", "dataset": "clust4-efw-sr2", "index1": "0", "is_public": "True", "name": "ex", "parameter": "c4_e_sr2", "start_date": "2000-12-01T00:00:02Z", "stop_date": "2022-12-31T23:59:58Z", "xmlid": "c4_e_sr2(0)"}, "c4_e_sr21": {"__spz_name__": "ey", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c4_e_sr2(1)", "dataset": "clust4-efw-sr2", "index1": "1", "is_public": "True", "name": "ey", "parameter": "c4_e_sr2", "start_date": "2000-12-01T00:00:02Z", "stop_date": "2022-12-31T23:59:58Z", "xmlid": "c4_e_sr2(1)"}, "dataset": "clust4-efw-sr2", "description": "Electric Field in ISR2 at spin time (4s) resolution (2 components)", "display_type": "timeseries", "is_public": "True", "name": "e_sr2", "size": "2", "start_date": "2000-12-01T00:00:02Z", "stop_date": "2022-12-31T23:59:58Z", "ucd": "phys.electField", "units": "mV/m", "xmlid": "c4_e_sr2"}, "c4_e_sr2_qual": {"__spz_name__": "e_quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c4_e_sr2_qual", "dataset": "clust4-efw-sr2", "description": "Data quality: 0 (Bad data) to 4 (Excellent data)", "display_type": "timeseries", "is_public": "True", "name": "e_quality", "start_date": "2000-12-01T00:00:02Z", "stop_date": "2022-12-31T23:59:58Z", "ucd": "meta.code.qual", "xmlid": "c4_e_sr2_qual"}, "dataSource": "CSA", "desc": "Cluster 4 2D electric field (L3)
Sampling: 4S
Provider: CSA", "is_public": "True", "lastModificationDate": "2024-10-06T22:09:33Z", "lastUpdate": "2024-08-28T16:15:38Z", "measurement_type": "ElectricField", "name": "2D isr2", "processing_level": "Calibrated", "sampling": "4S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cluster/Cluster4/EFW/clust4-efw-sr2", "start_date": "2000-12-01T00:00:02Z", "stop_date": "2022-12-31T23:59:58Z", "target": "Earth.Magnetosheath", "xmlid": "clust4-efw-sr2"}, "is_public": "True", "name": "electric field", "xmlid": "c4-efw-efield"}, "is_public": "True", "name": "EFW", "sc_potential": {"__spz_name__": "s/c potential", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "c4-efw-pot", "clust4_pot_full": {"__spz_name__": "0.2 sec (full)", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "clust4-pot-full", "att": "auto/clust4-pot-full", "c4_potfull": {"__spz_name__": "s/c pot", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c4_potfull", "dataset": "clust4-pot-full", "description": "Probe potential, Relative to Spacecraft at full resolution (0.2s)", "display_type": "timeseries", "is_public": "True", "name": "s/c pot", "start_date": "2000-12-01T00:00:00Z", "stop_date": "2024-05-31T23:59:59Z", "ucd": "phys.potential;phys.electField;instr.obsty", "units": "V", "xmlid": "c4_potfull"}, "dataSource": "CSA", "desc": "Cluster 4 Spacecraft Potential (L2)
Sampling: 0.2S
Provider: CSA", "is_public": "True", "lastModificationDate": "2024-10-06T22:12:04Z", "lastUpdate": "2024-09-30T10:16:16Z", "measurement_type": "ElectricField", "name": "0.2 sec (full)", "processing_level": "Calibrated", "sampling": "0.2S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cluster/Cluster4/EFW/clust4-pot-full", "start_date": "2000-12-01T00:00:00Z", "stop_date": "2024-05-31T23:59:59Z", "target": "Earth.Magnetosheath", "xmlid": "clust4-pot-full"}, "clust4_pot_spin": {"__spz_name__": "4 sec (spin)", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "clust4-pot-spin", "att": "auto/clust4-pot-spin", "c4_potspin": {"__spz_name__": "s/c pot", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c4_potspin", "dataset": "clust4-pot-spin", "description": "Probe potential, Relative to Spacecraft at spin time resolution (4s)", "display_type": "timeseries", "is_public": "True", "name": "s/c pot", "start_date": "2000-12-01T00:00:02Z", "stop_date": "2024-05-31T23:59:58Z", "ucd": "phys.potential;phys.electField;instr.obsty", "units": "V", "xmlid": "c4_potspin"}, "dataSource": "CSA", "desc": "Cluster 4 Spacecraft Potential (L3)
Sampling: 4S
Provider: CSA", "is_public": "True", "lastModificationDate": "2024-10-06T22:12:08Z", "lastUpdate": "2024-09-30T10:16:29Z", "measurement_type": "ElectricField", "name": "4 sec (spin)", "processing_level": "Calibrated", "sampling": "4S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cluster/Cluster4/EFW/clust4-pot-spin", "start_date": "2000-12-01T00:00:02Z", "stop_date": "2024-05-31T23:59:58Z", "target": "Earth.Magnetosheath", "xmlid": "clust4-pot-spin"}, "is_public": "True", "name": "s/c potential", "xmlid": "c4-efw-pot"}, "xmlid": "Cluster4_efw"}, "Ephemeris": {"__spz_name__": "Ephemeris", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Cluster4_ephemeris", "att": "auto/Cluster4_ephemeris", "clust4_orb_all": {"__spz_name__": "orbit", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "clust4-orb-all", "att": "auto/clust4-orb-all", "c4_r": {"__spz_name__": "distance c4-earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c4_r", "dataset": "clust4-orb-all", "display_type": "timeseries", "is_public": "True", "name": "distance c4-earth", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-10-02T00:00:00Z", "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "Re", "xmlid": "c4_r"}, "c4_xyz_gse": {"__spz_name__": "xyz_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c4_xyz_gse", "c4_xyz_gse0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c4_xyz_gse(0)", "dataset": "clust4-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "c4_xyz_gse", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-10-02T00:00:00Z", "xmlid": "c4_xyz_gse(0)"}, "c4_xyz_gse1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c4_xyz_gse(1)", "dataset": "clust4-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "c4_xyz_gse", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-10-02T00:00:00Z", "xmlid": "c4_xyz_gse(1)"}, "c4_xyz_gse2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c4_xyz_gse(2)", "dataset": "clust4-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "c4_xyz_gse", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-10-02T00:00:00Z", "xmlid": "c4_xyz_gse(2)"}, "dataset": "clust4-orb-all", "description": "Spacecraft position in GSE", "is_public": "True", "name": "xyz_gse", "size": "3", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-10-02T00:00:00Z", "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "Re", "xmlid": "c4_xyz_gse"}, "c4_xyz_gsm": {"__spz_name__": "xyz_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c4_xyz_gsm", "c4_xyz_gsm0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c4_xyz_gsm(0)", "dataset": "clust4-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "c4_xyz_gsm", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-10-02T00:00:00Z", "xmlid": "c4_xyz_gsm(0)"}, "c4_xyz_gsm1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c4_xyz_gsm(1)", "dataset": "clust4-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "c4_xyz_gsm", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-10-02T00:00:00Z", "xmlid": "c4_xyz_gsm(1)"}, "c4_xyz_gsm2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c4_xyz_gsm(2)", "dataset": "clust4-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "c4_xyz_gsm", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-10-02T00:00:00Z", "xmlid": "c4_xyz_gsm(2)"}, "dataset": "clust4-orb-all", "description": "Spacecraft position in GSM", "is_public": "True", "name": "xyz_gsm", "size": "3", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-10-02T00:00:00Z", "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "Re", "xmlid": "c4_xyz_gsm"}, "dataSource": "IRAP", "desc": "
Sampling: 1M
Provider: IRAP", "is_public": "True", "lastModificationDate": "2024-10-06T22:08:43Z", "lastUpdate": "2024-10-06T22:08:44Z", "measurement_type": "Ephemeris", "name": "orbit", "processing_level": "Calibrated", "sampling": "1M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cluster/Cluster4/Ephemeris/clust4-orb-all", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-10-02T00:00:00Z", "xmlid": "clust4-orb-all"}, "desc": "", "is_public": "True", "name": "Ephemeris", "xmlid": "Cluster4_ephemeris"}, "FGM": {"__spz_name__": "FGM", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Cluster4_fgm", "att": "auto/Cluster4_fgm", "clust4_fgm_high": {"__spz_name__": "0.2 sec (5vps)", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "clust4-fgm-high", "att": "auto/clust4-fgm-high", "c4_b_5vps": {"__spz_name__": "b_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c4_b_5vps", "c4_b_5vps0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c4_b_5vps(0)", "dataset": "clust4-fgm-high", "index1": "0", "is_public": "True", "name": "bx", "parameter": "c4_b_5vps", "start_date": "2001-01-07T00:15:19Z", "stop_date": "2023-05-01T23:59:59Z", "xmlid": "c4_b_5vps(0)"}, "c4_b_5vps1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c4_b_5vps(1)", "dataset": "clust4-fgm-high", "index1": "1", "is_public": "True", "name": "by", "parameter": "c4_b_5vps", "start_date": "2001-01-07T00:15:19Z", "stop_date": "2023-05-01T23:59:59Z", "xmlid": "c4_b_5vps(1)"}, "c4_b_5vps2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c4_b_5vps(2)", "dataset": "clust4-fgm-high", "index1": "2", "is_public": "True", "name": "bz", "parameter": "c4_b_5vps", "start_date": "2001-01-07T00:15:19Z", "stop_date": "2023-05-01T23:59:59Z", "xmlid": "c4_b_5vps(2)"}, "dataset": "clust4-fgm-high", "description": "FGM: magnetic field vector (3 GSE components), 0.2 s resolution", "display_type": "timeseries", "is_public": "True", "name": "b_gse", "size": "3", "start_date": "2001-01-07T00:15:19Z", "stop_date": "2023-05-01T23:59:59Z", "ucd": "phys.magField", "units": "nT", "xmlid": "c4_b_5vps"}, "c4_bgsm_5vps": {"__spz_name__": "b_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c4_bgsm_5vps", "c4_bgsm_5vps0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c4_bgsm_5vps(0)", "dataset": "clust4-fgm-high", "index1": "0", "is_public": "True", "name": "bx", "parameter": "c4_bgsm_5vps", "start_date": "2001-01-07T00:15:19Z", "stop_date": "2023-05-01T23:59:59Z", "xmlid": "c4_bgsm_5vps(0)"}, "c4_bgsm_5vps1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c4_bgsm_5vps(1)", "dataset": "clust4-fgm-high", "index1": "1", "is_public": "True", "name": "by", "parameter": "c4_bgsm_5vps", "start_date": "2001-01-07T00:15:19Z", "stop_date": "2023-05-01T23:59:59Z", "xmlid": "c4_bgsm_5vps(1)"}, "c4_bgsm_5vps2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c4_bgsm_5vps(2)", "dataset": "clust4-fgm-high", "index1": "2", "is_public": "True", "name": "bz", "parameter": "c4_bgsm_5vps", "start_date": "2001-01-07T00:15:19Z", "stop_date": "2023-05-01T23:59:59Z", "xmlid": "c4_bgsm_5vps(2)"}, "dataset": "clust4-fgm-high", "description": "FGM: magnetic field vector (3 GSM components), 0.2 s resolution", "display_type": "timeseries", "is_public": "True", "name": "b_gsm", "size": "3", "start_date": "2001-01-07T00:15:19Z", "stop_date": "2023-05-01T23:59:59Z", "ucd": "phys.magField", "units": "nT", "xmlid": "c4_bgsm_5vps"}, "c4_btot_5vps": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c4_btot_5vps", "dataset": "clust4-fgm-high", "description": "FGM: magnetic field vector magnitude", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "2001-01-07T00:15:19Z", "stop_date": "2023-05-01T23:59:59Z", "ucd": "phys.magField", "units": "nT", "xmlid": "c4_btot_5vps"}, "dataSource": "CSA", "desc": "Cluster 4 5-vector-per-spin FGM Data
Sampling: 0.2S
Provider: CSA", "is_public": "True", "lastModificationDate": "2024-10-06T22:09:36Z", "lastUpdate": "2024-08-22T17:37:49Z", "measurement_type": "MagneticField", "name": "0.2 sec (5vps)", "processing_level": "Calibrated", "sampling": "0.2S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cluster/Cluster4/FGM/clust4-fgm-high", "start_date": "2001-01-07T00:15:19Z", "stop_date": "2023-05-01T23:59:59Z", "target": "Earth.Magnetosheath", "xmlid": "clust4-fgm-high"}, "clust4_fgm_prp": {"__spz_name__": "4 sec (spin)", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "clust4-fgm-prp", "att": "auto/clust4-fgm-prp", "c4_b_gse": {"__spz_name__": "b_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c4_b_gse", "c4_b_gse0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c4_b_gse(0)", "dataset": "clust4-fgm-prp", "index1": "0", "is_public": "True", "name": "bx", "parameter": "c4_b_gse", "start_date": "2001-01-07T00:15:21Z", "stop_date": "2023-05-01T23:59:56Z", "xmlid": "c4_b_gse(0)"}, "c4_b_gse1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c4_b_gse(1)", "dataset": "clust4-fgm-prp", "index1": "1", "is_public": "True", "name": "by", "parameter": "c4_b_gse", "start_date": "2001-01-07T00:15:21Z", "stop_date": "2023-05-01T23:59:56Z", "xmlid": "c4_b_gse(1)"}, "c4_b_gse2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c4_b_gse(2)", "dataset": "clust4-fgm-prp", "index1": "2", "is_public": "True", "name": "bz", "parameter": "c4_b_gse", "start_date": "2001-01-07T00:15:21Z", "stop_date": "2023-05-01T23:59:56Z", "xmlid": "c4_b_gse(2)"}, "dataset": "clust4-fgm-prp", "description": "FGM: magnetic field vector (3 GSE components), 4s resolution", "display_type": "timeseries", "is_public": "True", "name": "b_gse", "size": "3", "start_date": "2001-01-07T00:15:21Z", "stop_date": "2023-05-01T23:59:56Z", "ucd": "phys.magField", "units": "nT", "xmlid": "c4_b_gse"}, "c4_b_gsm": {"__spz_name__": "b_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c4_b_gsm", "c4_b_gsm0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c4_b_gsm(0)", "dataset": "clust4-fgm-prp", "index1": "0", "is_public": "True", "name": "bx", "parameter": "c4_b_gsm", "start_date": "2001-01-07T00:15:21Z", "stop_date": "2023-05-01T23:59:56Z", "xmlid": "c4_b_gsm(0)"}, "c4_b_gsm1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c4_b_gsm(1)", "dataset": "clust4-fgm-prp", "index1": "1", "is_public": "True", "name": "by", "parameter": "c4_b_gsm", "start_date": "2001-01-07T00:15:21Z", "stop_date": "2023-05-01T23:59:56Z", "xmlid": "c4_b_gsm(1)"}, "c4_b_gsm2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c4_b_gsm(2)", "dataset": "clust4-fgm-prp", "index1": "2", "is_public": "True", "name": "bz", "parameter": "c4_b_gsm", "start_date": "2001-01-07T00:15:21Z", "stop_date": "2023-05-01T23:59:56Z", "xmlid": "c4_b_gsm(2)"}, "dataset": "clust4-fgm-prp", "description": "FGM: magnetic field vector (3 GSM components), 4s resolution", "display_type": "timeseries", "is_public": "True", "name": "b_gsm", "size": "3", "start_date": "2001-01-07T00:15:21Z", "stop_date": "2023-05-01T23:59:56Z", "ucd": "phys.magField", "units": "nT", "xmlid": "c4_b_gsm"}, "c4_btot": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c4_btot", "dataset": "clust4-fgm-prp", "description": "FGM: magnetic field vector magnitude", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "2001-01-07T00:15:21Z", "stop_date": "2023-05-01T23:59:56Z", "ucd": "phys.magField", "units": "nT", "xmlid": "c4_btot"}, "dataSource": "CSA", "desc": "Cluster 4 Spin Resolution FGM Data
Sampling: 4S
Provider: CSA", "is_public": "True", "lastModificationDate": "2024-10-06T22:09:39Z", "lastUpdate": "2024-08-22T16:32:18Z", "measurement_type": "MagneticField", "name": "4 sec (spin)", "processing_level": "Calibrated", "sampling": "4S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cluster/Cluster4/FGM/clust4-fgm-prp", "start_date": "2001-01-07T00:15:21Z", "stop_date": "2023-05-01T23:59:56Z", "target": "Earth.Magnetosheath", "xmlid": "clust4-fgm-prp"}, "desc": "Fluxgate Magnetometer
Magnetometer", "is_public": "True", "name": "FGM", "xmlid": "Cluster4_fgm"}, "PEACE": {"__spz_name__": "PEACE", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Cluster4_peace", "att": "auto/Cluster4_peace", "clust4_pea_mom": {"__spz_name__": "electron moments", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "clust4-pea-mom", "att": "auto/clust4-pea-mom", "c4_pea_dens": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c4_pea_dens", "dataset": "clust4-pea-mom", "description": "Electron number density at spin time resolution", "display_type": "timeseries", "is_public": "True", "name": "density", "start_date": "2001-01-09T15:15:32Z", "stop_date": "2022-12-30T18:20:03Z", "ucd": "phys.density;phys.electron", "units": "cm\u207b\u00b3", "xmlid": "c4_pea_dens"}, "c4_pea_flux": {"__spz_name__": "heat_flux_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c4_pea_flux", "c4_pea_flux0": {"__spz_name__": "flux_x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c4_pea_flux(0)", "dataset": "clust4-pea-mom", "index1": "0", "is_public": "True", "name": "flux_x", "parameter": "c4_pea_flux", "start_date": "2001-01-09T15:15:32Z", "stop_date": "2022-12-30T18:20:03Z", "xmlid": "c4_pea_flux(0)"}, "c4_pea_flux1": {"__spz_name__": "flux_y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c4_pea_flux(1)", "dataset": "clust4-pea-mom", "index1": "0", "is_public": "True", "name": "flux_y", "parameter": "c4_pea_flux", "start_date": "2001-01-09T15:15:32Z", "stop_date": "2022-12-30T18:20:03Z", "xmlid": "c4_pea_flux(1)"}, "c4_pea_flux2": {"__spz_name__": "flux_z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c4_pea_flux(2)", "dataset": "clust4-pea-mom", "index1": "0", "is_public": "True", "name": "flux_z", "parameter": "c4_pea_flux", "start_date": "2001-01-09T15:15:32Z", "stop_date": "2022-12-30T18:20:03Z", "xmlid": "c4_pea_flux(2)"}, "dataset": "clust4-pea-mom", "description": "Parallel electron heat flux at spin time resolution, in GSE", "display_type": "timeseries", "is_public": "True", "name": "heat_flux_gse", "size": "3", "start_date": "2001-01-09T15:15:32Z", "stop_date": "2022-12-30T18:20:03Z", "ucd": "phys.flux.energy;phys.atmol.ionStage", "units": "microW/m\u00b2", "xmlid": "c4_pea_flux"}, "c4_pea_press": {"__spz_name__": "pressure_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c4_pea_press", "c4_pea_press0": {"__spz_name__": "xx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c4_pea_press(0)", "dataset": "clust4-pea-mom", "index1": "0", "is_public": "True", "name": "xx", "parameter": "c4_pea_press", "start_date": "2001-01-09T15:15:32Z", "stop_date": "2022-12-30T18:20:03Z", "xmlid": "c4_pea_press(0)"}, "c4_pea_press1": {"__spz_name__": "xy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c4_pea_press(1)", "dataset": "clust4-pea-mom", "index1": "1", "is_public": "True", "name": "xy", "parameter": "c4_pea_press", "start_date": "2001-01-09T15:15:32Z", "stop_date": "2022-12-30T18:20:03Z", "xmlid": "c4_pea_press(1)"}, "c4_pea_press2": {"__spz_name__": "xz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c4_pea_press(2)", "dataset": "clust4-pea-mom", "index1": "2", "is_public": "True", "name": "xz", "parameter": "c4_pea_press", "start_date": "2001-01-09T15:15:32Z", "stop_date": "2022-12-30T18:20:03Z", "xmlid": "c4_pea_press(2)"}, "c4_pea_press3": {"__spz_name__": "yx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c4_pea_press(3)", "dataset": "clust4-pea-mom", "index1": "3", "is_public": "True", "name": "yx", "parameter": "c4_pea_press", "start_date": "2001-01-09T15:15:32Z", "stop_date": "2022-12-30T18:20:03Z", "xmlid": "c4_pea_press(3)"}, "c4_pea_press4": {"__spz_name__": "yy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c4_pea_press(4)", "dataset": "clust4-pea-mom", "index1": "4", "is_public": "True", "name": "yy", "parameter": "c4_pea_press", "start_date": "2001-01-09T15:15:32Z", "stop_date": "2022-12-30T18:20:03Z", "xmlid": "c4_pea_press(4)"}, "c4_pea_press5": {"__spz_name__": "yz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c4_pea_press(5)", "dataset": "clust4-pea-mom", "index1": "5", "is_public": "True", "name": "yz", "parameter": "c4_pea_press", "start_date": "2001-01-09T15:15:32Z", "stop_date": "2022-12-30T18:20:03Z", "xmlid": "c4_pea_press(5)"}, "c4_pea_press6": {"__spz_name__": "zx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c4_pea_press(6)", "dataset": "clust4-pea-mom", "index1": "6", "is_public": "True", "name": "zx", "parameter": "c4_pea_press", "start_date": "2001-01-09T15:15:32Z", "stop_date": "2022-12-30T18:20:03Z", "xmlid": "c4_pea_press(6)"}, "c4_pea_press7": {"__spz_name__": "zy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c4_pea_press(7)", "dataset": "clust4-pea-mom", "index1": "7", "is_public": "True", "name": "zy", "parameter": "c4_pea_press", "start_date": "2001-01-09T15:15:32Z", "stop_date": "2022-12-30T18:20:03Z", "xmlid": "c4_pea_press(7)"}, "c4_pea_press8": {"__spz_name__": "zz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c4_pea_press(8)", "dataset": "clust4-pea-mom", "index1": "8", "is_public": "True", "name": "zz", "parameter": "c4_pea_press", "start_date": "2001-01-09T15:15:32Z", "stop_date": "2022-12-30T18:20:03Z", "xmlid": "c4_pea_press(8)"}, "dataset": "clust4-pea-mom", "description": "Electron pressure tensor at spin time resolution, in GSE", "display_type": "timeseries", "is_public": "True", "name": "pressure_gse", "size": "9", "start_date": "2001-01-09T15:15:32Z", "stop_date": "2022-12-30T18:20:03Z", "ucd": "phys.pressure", "units": "nPa", "xmlid": "c4_pea_press"}, "c4_pea_tpar": {"__spz_name__": "t_para", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c4_pea_tpar", "dataset": "clust4-pea-mom", "description": "Parallel electron temperature at spin time resolution", "display_type": "timeseries", "is_public": "True", "name": "t_para", "start_date": "2001-01-09T15:15:32Z", "stop_date": "2022-12-30T18:20:03Z", "ucd": "phys.temperature;phys.electron", "units": "eV", "xmlid": "c4_pea_tpar"}, "c4_pea_tperp": {"__spz_name__": "t_perp", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c4_pea_tperp", "dataset": "clust4-pea-mom", "description": "Perpendicular electron temperature at spin time resolution", "display_type": "timeseries", "is_public": "True", "name": "t_perp", "start_date": "2001-01-09T15:15:32Z", "stop_date": "2022-12-30T18:20:03Z", "ucd": "phys.temperature;phys.electron", "units": "eV", "xmlid": "c4_pea_tperp"}, "c4_pea_vgse": {"__spz_name__": "v_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c4_pea_vgse", "c4_pea_vgse0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c4_pea_vgse(0)", "dataset": "clust4-pea-mom", "index1": "0", "is_public": "True", "name": "vx", "parameter": "c4_pea_vgse", "start_date": "2001-01-09T15:15:32Z", "stop_date": "2022-12-30T18:20:03Z", "xmlid": "c4_pea_vgse(0)"}, "c4_pea_vgse1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c4_pea_vgse(1)", "dataset": "clust4-pea-mom", "index1": "1", "is_public": "True", "name": "vy", "parameter": "c4_pea_vgse", "start_date": "2001-01-09T15:15:32Z", "stop_date": "2022-12-30T18:20:03Z", "xmlid": "c4_pea_vgse(1)"}, "c4_pea_vgse2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c4_pea_vgse(2)", "dataset": "clust4-pea-mom", "index1": "2", "is_public": "True", "name": "vz", "parameter": "c4_pea_vgse", "start_date": "2001-01-09T15:15:32Z", "stop_date": "2022-12-30T18:20:03Z", "xmlid": "c4_pea_vgse(2)"}, "dataset": "clust4-pea-mom", "description": "Electron velocity at spin time resolution", "display_type": "timeseries", "is_public": "True", "name": "v_gse", "size": "3", "start_date": "2001-01-09T15:15:32Z", "stop_date": "2022-12-30T18:20:03Z", "ucd": "phys.veloc;phys.electron", "units": "km/s", "xmlid": "c4_pea_vgse"}, "c4_pea_vgsm": {"__spz_name__": "v_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c4_pea_vgsm", "c4_pea_vgsm0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c4_pea_vgsm(0)", "dataset": "clust4-pea-mom", "index1": "0", "is_public": "True", "name": "vx", "parameter": "c4_pea_vgsm", "start_date": "2001-01-09T15:15:32Z", "stop_date": "2022-12-30T18:20:03Z", "xmlid": "c4_pea_vgsm(0)"}, "c4_pea_vgsm1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c4_pea_vgsm(1)", "dataset": "clust4-pea-mom", "index1": "1", "is_public": "True", "name": "vy", "parameter": "c4_pea_vgsm", "start_date": "2001-01-09T15:15:32Z", "stop_date": "2022-12-30T18:20:03Z", "xmlid": "c4_pea_vgsm(1)"}, "c4_pea_vgsm2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c4_pea_vgsm(2)", "dataset": "clust4-pea-mom", "index1": "2", "is_public": "True", "name": "vz", "parameter": "c4_pea_vgsm", "start_date": "2001-01-09T15:15:32Z", "stop_date": "2022-12-30T18:20:03Z", "xmlid": "c4_pea_vgsm(2)"}, "dataset": "clust4-pea-mom", "description": "Electron velocity at spin time resolution, in GSM", "display_type": "timeseries", "is_public": "True", "name": "v_gsm", "size": "3", "start_date": "2001-01-09T15:15:32Z", "stop_date": "2022-12-30T18:20:03Z", "ucd": "phys.veloc;phys.electron", "units": "km/s", "xmlid": "c4_pea_vgsm"}, "c4_pea_vpar": {"__spz_name__": "v_para_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c4_pea_vpar", "c4_pea_vpar0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c4_pea_vpar(0)", "dataset": "clust4-pea-mom", "index1": "0", "is_public": "True", "name": "vx", "parameter": "c4_pea_vpar", "start_date": "2001-01-09T15:15:32Z", "stop_date": "2022-12-30T18:20:03Z", "xmlid": "c4_pea_vpar(0)"}, "c4_pea_vpar1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c4_pea_vpar(1)", "dataset": "clust4-pea-mom", "index1": "1", "is_public": "True", "name": "vy", "parameter": "c4_pea_vpar", "start_date": "2001-01-09T15:15:32Z", "stop_date": "2022-12-30T18:20:03Z", "xmlid": "c4_pea_vpar(1)"}, "c4_pea_vpar2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c4_pea_vpar(2)", "dataset": "clust4-pea-mom", "index1": "2", "is_public": "True", "name": "vz", "parameter": "c4_pea_vpar", "start_date": "2001-01-09T15:15:32Z", "stop_date": "2022-12-30T18:20:03Z", "xmlid": "c4_pea_vpar(2)"}, "dataset": "clust4-pea-mom", "description": "Electron parallel velocity at spin time resolution, in GSE", "display_type": "timeseries", "is_public": "True", "name": "v_para_gse", "size": "3", "start_date": "2001-01-09T15:15:32Z", "stop_date": "2022-12-30T18:20:03Z", "ucd": "phys.veloc;phys.electron", "units": "km/s", "xmlid": "c4_pea_vpar"}, "c4_pea_vpar_gsm": {"__spz_name__": "v_para_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c4_pea_vpar_gsm", "c4_pea_vpar_gsm0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c4_pea_vpar_gsm(0)", "dataset": "clust4-pea-mom", "index1": "0", "is_public": "True", "name": "vx", "parameter": "c4_pea_vpar_gsm", "start_date": "2001-01-09T15:15:32Z", "stop_date": "2022-12-30T18:20:03Z", "xmlid": "c4_pea_vpar_gsm(0)"}, "c4_pea_vpar_gsm1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c4_pea_vpar_gsm(1)", "dataset": "clust4-pea-mom", "index1": "1", "is_public": "True", "name": "vy", "parameter": "c4_pea_vpar_gsm", "start_date": "2001-01-09T15:15:32Z", "stop_date": "2022-12-30T18:20:03Z", "xmlid": "c4_pea_vpar_gsm(1)"}, "c4_pea_vpar_gsm2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c4_pea_vpar_gsm(2)", "dataset": "clust4-pea-mom", "index1": "2", "is_public": "True", "name": "vz", "parameter": "c4_pea_vpar_gsm", "start_date": "2001-01-09T15:15:32Z", "stop_date": "2022-12-30T18:20:03Z", "xmlid": "c4_pea_vpar_gsm(2)"}, "dataset": "clust4-pea-mom", "description": "Electron parallel velocity at spin time resolution, in GSM", "display_type": "timeseries", "is_public": "True", "name": "v_para_gsm", "size": "3", "start_date": "2001-01-09T15:15:32Z", "stop_date": "2022-12-30T18:20:03Z", "ucd": "phys.veloc;phys.electron", "units": "km/s", "xmlid": "c4_pea_vpar_gsm"}, "c4_pea_vperp": {"__spz_name__": "v_perp_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c4_pea_vperp", "c4_pea_vperp0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c4_pea_vperp(0)", "dataset": "clust4-pea-mom", "index1": "0", "is_public": "True", "name": "vx", "parameter": "c4_pea_vperp", "start_date": "2001-01-09T15:15:32Z", "stop_date": "2022-12-30T18:20:03Z", "xmlid": "c4_pea_vperp(0)"}, "c4_pea_vperp1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c4_pea_vperp(1)", "dataset": "clust4-pea-mom", "index1": "1", "is_public": "True", "name": "vy", "parameter": "c4_pea_vperp", "start_date": "2001-01-09T15:15:32Z", "stop_date": "2022-12-30T18:20:03Z", "xmlid": "c4_pea_vperp(1)"}, "c4_pea_vperp2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c4_pea_vperp(2)", "dataset": "clust4-pea-mom", "index1": "2", "is_public": "True", "name": "vz", "parameter": "c4_pea_vperp", "start_date": "2001-01-09T15:15:32Z", "stop_date": "2022-12-30T18:20:03Z", "xmlid": "c4_pea_vperp(2)"}, "dataset": "clust4-pea-mom", "description": "Electron perpendicular velocity at spin time resolution, in GSE", "display_type": "timeseries", "is_public": "True", "name": "v_perp_gse", "size": "3", "start_date": "2001-01-09T15:15:32Z", "stop_date": "2022-12-30T18:20:03Z", "ucd": "phys.veloc;phys.electron", "units": "km/s", "xmlid": "c4_pea_vperp"}, "c4_pea_vperp_gsm": {"__spz_name__": "v_perp_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c4_pea_vperp_gsm", "c4_pea_vperp_gsm0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c4_pea_vperp_gsm(0)", "dataset": "clust4-pea-mom", "index1": "0", "is_public": "True", "name": "vx", "parameter": "c4_pea_vperp_gsm", "start_date": "2001-01-09T15:15:32Z", "stop_date": "2022-12-30T18:20:03Z", "xmlid": "c4_pea_vperp_gsm(0)"}, "c4_pea_vperp_gsm1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c4_pea_vperp_gsm(1)", "dataset": "clust4-pea-mom", "index1": "1", "is_public": "True", "name": "vy", "parameter": "c4_pea_vperp_gsm", "start_date": "2001-01-09T15:15:32Z", "stop_date": "2022-12-30T18:20:03Z", "xmlid": "c4_pea_vperp_gsm(1)"}, "c4_pea_vperp_gsm2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c4_pea_vperp_gsm(2)", "dataset": "clust4-pea-mom", "index1": "2", "is_public": "True", "name": "vz", "parameter": "c4_pea_vperp_gsm", "start_date": "2001-01-09T15:15:32Z", "stop_date": "2022-12-30T18:20:03Z", "xmlid": "c4_pea_vperp_gsm(2)"}, "dataset": "clust4-pea-mom", "description": "Electron perpendicular velocity at spin time resolution, in GSM", "display_type": "timeseries", "is_public": "True", "name": "v_perp_gsm", "size": "3", "start_date": "2001-01-09T15:15:32Z", "stop_date": "2022-12-30T18:20:03Z", "ucd": "phys.veloc;phys.electron", "units": "km/s", "xmlid": "c4_pea_vperp_gsm"}, "dataSource": "CSA", "desc": "Cluster 4 electron moments
Sampling: 4S
Provider: CSA", "is_public": "True", "lastModificationDate": "2024-10-06T22:11:58Z", "lastUpdate": "2024-08-22T15:14:49Z", "measurement_type": "ThermalPlasma", "name": "electron moments", "processing_level": "Calibrated", "sampling": "4S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cluster/Cluster4/PEACE/clust4-pea-mom", "start_date": "2001-01-09T15:15:32Z", "stop_date": "2022-12-30T18:20:03Z", "target": "Earth.Magnetosheath", "xmlid": "clust4-pea-mom"}, "clust4_pea_pa": {"__spz_name__": "pitch-angle/energy distribution", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "clust4-pea-pa", "att": "auto/clust4-pea-pa", "c4_pea_bckgrd": {"__spz_name__": "background : 2D pa/energy", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c4_pea_bckgrd", "dataset": "clust4-pea-pa", "description": "Background energy flux at spin time resolution", "display_type": "spectrogram", "is_public": "True", "name": "background : 2D pa/energy", "start_date": "2000-11-28T08:54:40Z", "stop_date": "2022-12-30T18:20:58Z", "ucd": "phys.density;phys.electron", "units": "keV/cm\u00b2-s-str-keV", "xmlid": "c4_pea_bckgrd"}, "c4_pea_pad": {"__spz_name__": "diff energy flux : 2D pa/energy", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c4_pea_pad", "dataset": "clust4-pea-pa", "description": "Electron differential energy flux at spin time resolution", "display_type": "spectrogram", "is_public": "True", "name": "diff energy flux : 2D pa/energy", "start_date": "2000-11-28T08:54:40Z", "stop_date": "2022-12-30T18:20:58Z", "ucd": "phys.density;phys.electron", "units": "keV/cm\u00b2-s-str-keV", "xmlid": "c4_pea_pad"}, "dataSource": "CSA", "desc": "Cluster4 2D Pitch-Angle/Energy electron distribution
Sampling: 4S
Provider: CSA", "is_public": "True", "lastModificationDate": "2024-10-06T22:12:01Z", "lastUpdate": "2024-09-09T14:21:07Z", "measurement_type": "ThermalPlasma", "name": "pitch-angle/energy distribution", "processing_level": "Calibrated", "sampling": "4S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cluster/Cluster4/PEACE/clust4-pea-pa", "start_date": "2000-11-28T08:54:40Z", "stop_date": "2022-12-30T18:20:58Z", "target": "Earth.Magnetosheath", "xmlid": "clust4-pea-pa"}, "desc": "Plasma Electron and Current Experiment
ElectrostaticAnalyser", "is_public": "True", "name": "PEACE", "xmlid": "Cluster4_peace"}, "STAFF": {"__spz_name__": "STAFF", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Cluster4_staff", "att": "auto/Cluster4_staff", "clust4_sta_pp": {"__spz_name__": "prime parameters", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "clust4-sta-pp", "att": "auto/clust4-sta-pp", "c4_sta_f1": {"__spz_name__": "b spectral density (1-10 Hz)", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c4_sta_f1", "c4_sta_f10": {"__spz_name__": "parallel to b0", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c4_sta_f1(0)", "dataset": "clust4-sta-pp", "index1": "0", "is_public": "True", "name": "parallel to b0", "parameter": "c4_sta_f1", "start_date": "2001-01-09T09:05:03Z", "stop_date": "2012-12-31T23:59:45Z", "xmlid": "c4_sta_f1(0)"}, "c4_sta_f11": {"__spz_name__": "perpendicular to b0", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c4_sta_f1(1)", "dataset": "clust4-sta-pp", "index1": "1", "is_public": "True", "name": "perpendicular to b0", "parameter": "c4_sta_f1", "start_date": "2001-01-09T09:05:03Z", "stop_date": "2012-12-31T23:59:45Z", "xmlid": "c4_sta_f1(1)"}, "dataset": "clust4-sta-pp", "description": "Magnetic field spectral power in the 1-10 Hz (f1) at spin time resolution (parallel and perp components)", "display_type": "timeseries", "is_public": "True", "name": "b spectral density (1-10 Hz)", "size": "2", "start_date": "2001-01-09T09:05:03Z", "stop_date": "2012-12-31T23:59:45Z", "ucd": "phys.magField", "units": "nT\u00b2 Hz\u207b\u00b9", "xmlid": "c4_sta_f1"}, "c4_sta_f2": {"__spz_name__": "b spectral density (10-180 Hz)", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c4_sta_f2", "c4_sta_f20": {"__spz_name__": "parallel to b0", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c4_sta_f2(0)", "dataset": "clust4-sta-pp", "index1": "0", "is_public": "True", "name": "parallel to b0", "parameter": "c4_sta_f2", "start_date": "2001-01-09T09:05:03Z", "stop_date": "2012-12-31T23:59:45Z", "xmlid": "c4_sta_f2(0)"}, "c4_sta_f21": {"__spz_name__": "perpendicular to b0", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c4_sta_f2(1)", "dataset": "clust4-sta-pp", "index1": "1", "is_public": "True", "name": "perpendicular to b0", "parameter": "c4_sta_f2", "start_date": "2001-01-09T09:05:03Z", "stop_date": "2012-12-31T23:59:45Z", "xmlid": "c4_sta_f2(1)"}, "dataset": "clust4-sta-pp", "description": "Magnetic field spectral power in the 10-180 Hz (f2) at spin time resolution (parallel and perp components)", "display_type": "timeseries", "is_public": "True", "name": "b spectral density (10-180 Hz)", "size": "2", "start_date": "2001-01-09T09:05:03Z", "stop_date": "2012-12-31T23:59:45Z", "ucd": "phys.magField", "units": "nT\u00b2 Hz\u207b\u00b9", "xmlid": "c4_sta_f2"}, "c4_sta_f3": {"__spz_name__": "b spectral density (180-4000 Hz)", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c4_sta_f3", "c4_sta_f30": {"__spz_name__": "parallel to b0", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c4_sta_f3(0)", "dataset": "clust4-sta-pp", "index1": "0", "is_public": "True", "name": "parallel to b0", "parameter": "c4_sta_f3", "start_date": "2001-01-09T09:05:03Z", "stop_date": "2012-12-31T23:59:45Z", "xmlid": "c4_sta_f3(0)"}, "c4_sta_f31": {"__spz_name__": "perpendicular to b0", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "c4_sta_f3(1)", "dataset": "clust4-sta-pp", "index1": "1", "is_public": "True", "name": "perpendicular to b0", "parameter": "c4_sta_f3", "start_date": "2001-01-09T09:05:03Z", "stop_date": "2012-12-31T23:59:45Z", "xmlid": "c4_sta_f3(1)"}, "dataset": "clust4-sta-pp", "description": "Magnetic field spectral power in the 80-4000 Hz (f3) at spin time resolution (parallel and perp components)", "display_type": "timeseries", "is_public": "True", "name": "b spectral density (180-4000 Hz)", "size": "2", "start_date": "2001-01-09T09:05:03Z", "stop_date": "2012-12-31T23:59:45Z", "ucd": "phys.magField", "units": "nT\u00b2 Hz\u207b\u00b9", "xmlid": "c4_sta_f3"}, "c4_stae_f2": {"__spz_name__": "e spectral density (10-180 Hz)", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c4_stae_f2", "dataset": "clust4-sta-pp", "description": "Electric field spectral power in the 10-180 Hz (f2) frequency range at spin time resolution.", "display_type": "timeseries", "is_public": "True", "name": "e spectral density (10-180 Hz)", "start_date": "2001-01-09T09:05:03Z", "stop_date": "2012-12-31T23:59:45Z", "ucd": "phys.electField", "units": "V\u00b2 m\u207b\u00b2 Hz\u207b\u00b9", "xmlid": "c4_stae_f2"}, "c4_stae_f3": {"__spz_name__": "e spectral density (180-4000 Hz)", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c4_stae_f3", "dataset": "clust4-sta-pp", "description": "Electric field spectral power in the 180-4000 Hz (f3) frequency range at spin time resolution.", "display_type": "timeseries", "is_public": "True", "name": "e spectral density (180-4000 Hz)", "start_date": "2001-01-09T09:05:03Z", "stop_date": "2012-12-31T23:59:45Z", "ucd": "phys.electField", "units": "V\u00b2 m\u207b\u00b2 Hz\u207b\u00b9", "xmlid": "c4_stae_f3"}, "dataSource": "CSDS-CNES", "desc": "Cluster 4 Prime Parameter STAFF Data
Sampling: 4S
Provider: CSDS-CNES", "is_public": "True", "lastModificationDate": "2013-05-03T14:26:40Z", "lastUpdate": "2013-04-22T17:34:50Z", "measurement_type": "ElectricField", "name": "prime parameters", "processing_level": "Calibrated", "sampling": "4S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cluster/Cluster4/STAFF/clust4-sta-pp", "start_date": "2001-01-09T09:05:03Z", "stop_date": "2012-12-31T23:59:45Z", "target": "Earth.Magnetosphere", "xmlid": "clust4-sta-pp"}, "desc": "Spatio-Temporal Analysis of Magnetic Field Fluctuations
SearchCoil", "is_public": "True", "name": "STAFF", "xmlid": "Cluster4_staff"}, "WHISPER": {"__spz_name__": "WHISPER", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Cluster4_whisper", "att": "auto/Cluster4_whisper", "clust4_whi_pp": {"__spz_name__": "electric field : spectral density", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "clust4-whi-pp", "att": "auto/clust4-whi-pp", "c4_whipp_f4": {"__spz_name__": "f4 : 4-10 kHz", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c4_whipp_f4", "dataset": "clust4-whi-pp", "description": "Electric field spectral density in the 4-10 kHz (f4) frequency range at spin time resolution", "display_type": "timeseries", "is_public": "True", "name": "f4 : 4-10 kHz", "start_date": "2001-01-09T09:05:10Z", "stop_date": "2012-12-31T23:59:54Z", "ucd": "phys.density;phys.electron", "units": "V\u00b2 m\u207b\u00b2 Hz\u207b\u00b9", "xmlid": "c4_whipp_f4"}, "c4_whipp_f5": {"__spz_name__": "f5 : 10-20 kHz", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c4_whipp_f5", "dataset": "clust4-whi-pp", "description": "Electric field spectral density in the 10-20 kHz (f5) frequency range at spin time resolution", "display_type": "timeseries", "is_public": "True", "name": "f5 : 10-20 kHz", "start_date": "2001-01-09T09:05:10Z", "stop_date": "2012-12-31T23:59:54Z", "ucd": "phys.density;phys.electron", "units": "V\u00b2 m\u207b\u00b2 Hz\u207b\u00b9", "xmlid": "c4_whipp_f5"}, "c4_whipp_f6": {"__spz_name__": "f6 : 20-80 kHz", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c4_whipp_f6", "dataset": "clust4-whi-pp", "description": "Electric field spectral density in the 20-80 kHz (f6) frequency range at spin time resolution", "display_type": "timeseries", "is_public": "True", "name": "f6 : 20-80 kHz", "start_date": "2001-01-09T09:05:10Z", "stop_date": "2012-12-31T23:59:54Z", "ucd": "phys.density;phys.electron", "units": "V\u00b2 m\u207b\u00b2 Hz\u207b\u00b9", "xmlid": "c4_whipp_f6"}, "dataSource": "CSDS-CNES", "desc": "Cluster 4 Prime Parameter WHISPER Data
Sampling: 4S
Provider: CSDS-CNES", "is_public": "True", "lastModificationDate": "2018-10-04T10:47:00Z", "lastUpdate": "2013-04-23T13:07:04Z", "measurement_type": "ElectricField", "name": "electric field : spectral density", "processing_level": "Calibrated", "sampling": "4S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cluster/Cluster4/WHISPER/clust4-whi-pp", "start_date": "2001-01-09T09:05:10Z", "stop_date": "2012-12-31T23:59:54Z", "target": "Earth.Magnetosheath", "xmlid": "clust4-whi-pp"}, "clust4_whi_whi": {"__spz_name__": "electron density", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "clust4-whi-whi", "att": "auto/clust4-whi-whi", "c4_whi_ne": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c4_whi_ne", "dataset": "clust4-whi-whi", "description": "Electron number density derived from plasma frequency recognition at spin time resolution", "display_type": "timeseries", "is_public": "True", "name": "density", "start_date": "2001-02-07T00:00:08Z", "stop_date": "2023-12-30T09:32:27Z", "ucd": "phys.density;phys.electron", "units": "cm\u207b\u00b3", "xmlid": "c4_whi_ne"}, "c4_whi_ne_qual": {"__spz_name__": "density quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c4_whi_ne_qual", "dataset": "clust4-whi-whi", "description": "Electron number density quality of the resonance recognition flag at spin time resolution", "display_type": "timeseries", "is_public": "True", "name": "density quality", "start_date": "2001-02-07T00:00:08Z", "stop_date": "2023-12-30T09:32:27Z", "ucd": "meta.code.qual", "units": "cm\u207b\u00b3", "xmlid": "c4_whi_ne_qual"}, "c4_whi_ne_unc": {"__spz_name__": "density uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "c4_whi_ne_unc", "dataset": "clust4-whi-whi", "description": "Electron number density uncertainty of the resonance recognition flag at spin time resolution", "display_type": "timeseries", "is_public": "True", "name": "density uncertainty", "start_date": "2001-02-07T00:00:08Z", "stop_date": "2023-12-30T09:32:27Z", "ucd": "meta.code.qual", "xmlid": "c4_whi_ne_unc"}, "dataSource": "CSA", "desc": "Cluster 4 WHISPER Data
Sampling: 1.5S
Provider: CSA", "is_public": "True", "lastModificationDate": "2024-10-06T22:12:11Z", "lastUpdate": "2024-09-30T10:16:35Z", "measurement_type": "ElectricField", "name": "electron density", "processing_level": "Calibrated", "sampling": "1.5S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Cluster/Cluster4/WHISPER/clust4-whi-whi", "start_date": "2001-02-07T00:00:08Z", "stop_date": "2023-12-30T09:32:27Z", "target": "Earth.Magnetosheath", "xmlid": "clust4-whi-whi"}, "desc": "Waves of High Frequency and Sounder for Probing Electron Density by Relaxation
DoubleSphere", "is_public": "True", "name": "WHISPER", "xmlid": "Cluster4_whisper"}, "__spz_name__": "Cluster 4", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Cluster4", "att": "auto/Cluster4", "desc": "Tango
2000-12-01T00:00:00
Start of full orbit coverage: 2002-06-01T00:00:00", "is_public": "True", "name": "Cluster 4", "target": "Earth.Magnetosphere", "xmlid": "Cluster4"}, "__spz_name__": "Cluster", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Cluster", "att": "auto/Cluster", "desc": "Cluster, ESA Magnetospheric Mission
2000-12-01T00:00:00
Start of full orbit coverage: 2002-06-01T00:00:00", "is_public": "True", "name": "Cluster", "rank": "6", "target": "Earth.Magnetosphere", "xmlid": "Cluster"}, "DSCOVR": {"Ephemeris": {"__spz_name__": "Ephemeris", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "DSCOVR_ephemeris", "att": "auto/DSCOVR_ephemeris", "desc": "", "dsc_orb_all": {"__spz_name__": "orbit L1", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "dsc-orb-all", "att": "auto/dsc-orb-all", "dataSource": "NOAA", "desc": "orbit L1 libration point
Sampling: 1H
Provider: NOAA", "dsc_lat_hee": {"__spz_name__": "lat_hee", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "dsc_lat_hee", "dataset": "dsc-orb-all", "is_public": "True", "name": "lat_hee", "start_date": "2015-03-09T00:25:33Z", "stop_date": "2023-05-28T23:00:27Z", "units": "deg", "xmlid": "dsc_lat_hee"}, "dsc_lon_hee": {"__spz_name__": "lon_hee", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "dsc_lon_hee", "dataset": "dsc-orb-all", "is_public": "True", "name": "lon_hee", "start_date": "2015-03-09T00:25:33Z", "stop_date": "2023-05-28T23:00:27Z", "units": "deg", "xmlid": "dsc_lon_hee"}, "dsc_r": {"__spz_name__": "distance dscovr-earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "dsc_r", "dataset": "dsc-orb-all", "is_public": "True", "name": "distance dscovr-earth", "start_date": "2015-03-09T00:25:33Z", "stop_date": "2023-05-28T23:00:27Z", "units": "Re", "xmlid": "dsc_r"}, "dsc_r_sun": {"__spz_name__": "distance dscovr-sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "dsc_r_sun", "dataset": "dsc-orb-all", "is_public": "True", "name": "distance dscovr-sun", "start_date": "2015-03-09T00:25:33Z", "stop_date": "2023-05-28T23:00:27Z", "units": "AU", "xmlid": "dsc_r_sun"}, "dsc_xyz_gse": {"__spz_name__": "xyz_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "dsc_xyz_gse", "dataset": "dsc-orb-all", "description": "Spacecraft position in GSE", "display_type": "timeseries", "dsc_xyz_gse0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "dsc_xyz_gse(0)", "dataset": "dsc-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "dsc_xyz_gse", "start_date": "2015-03-09T00:25:33Z", "stop_date": "2023-05-28T23:00:27Z", "xmlid": "dsc_xyz_gse(0)"}, "dsc_xyz_gse1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "dsc_xyz_gse(1)", "dataset": "dsc-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "dsc_xyz_gse", "start_date": "2015-03-09T00:25:33Z", "stop_date": "2023-05-28T23:00:27Z", "xmlid": "dsc_xyz_gse(1)"}, "dsc_xyz_gse2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "dsc_xyz_gse(2)", "dataset": "dsc-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "dsc_xyz_gse", "start_date": "2015-03-09T00:25:33Z", "stop_date": "2023-05-28T23:00:27Z", "xmlid": "dsc_xyz_gse(2)"}, "is_public": "True", "name": "xyz_gse", "size": "3", "start_date": "2015-03-09T00:25:33Z", "stop_date": "2023-05-28T23:00:27Z", "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "Re", "xmlid": "dsc_xyz_gse"}, "dsc_xyz_gsm": {"__spz_name__": "xyz_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "dsc_xyz_gsm", "dataset": "dsc-orb-all", "description": "Spacecraft position in GSM", "display_type": "timeseries", "dsc_xyz_gsm0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "dsc_xyz_gsm(0)", "dataset": "dsc-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "dsc_xyz_gsm", "start_date": "2015-03-09T00:25:33Z", "stop_date": "2023-05-28T23:00:27Z", "xmlid": "dsc_xyz_gsm(0)"}, "dsc_xyz_gsm1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "dsc_xyz_gsm(1)", "dataset": "dsc-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "dsc_xyz_gsm", "start_date": "2015-03-09T00:25:33Z", "stop_date": "2023-05-28T23:00:27Z", "xmlid": "dsc_xyz_gsm(1)"}, "dsc_xyz_gsm2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "dsc_xyz_gsm(2)", "dataset": "dsc-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "dsc_xyz_gsm", "start_date": "2015-03-09T00:25:33Z", "stop_date": "2023-05-28T23:00:27Z", "xmlid": "dsc_xyz_gsm(2)"}, "is_public": "True", "name": "xyz_gsm", "size": "3", "start_date": "2015-03-09T00:25:33Z", "stop_date": "2023-05-28T23:00:27Z", "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "Re", "xmlid": "dsc_xyz_gsm"}, "dsc_xyz_hee": {"__spz_name__": "xyz_hee", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "dsc_xyz_hee", "dataset": "dsc-orb-all", "description": "Spacecraft position in HEE", "display_type": "timeseries", "dsc_xyz_hee0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "dsc_xyz_hee(0)", "dataset": "dsc-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "dsc_xyz_hee", "start_date": "2015-03-09T00:25:33Z", "stop_date": "2023-05-28T23:00:27Z", "xmlid": "dsc_xyz_hee(0)"}, "dsc_xyz_hee1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "dsc_xyz_hee(1)", "dataset": "dsc-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "dsc_xyz_hee", "start_date": "2015-03-09T00:25:33Z", "stop_date": "2023-05-28T23:00:27Z", "xmlid": "dsc_xyz_hee(1)"}, "dsc_xyz_hee2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "dsc_xyz_hee(2)", "dataset": "dsc-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "dsc_xyz_hee", "start_date": "2015-03-09T00:25:33Z", "stop_date": "2023-05-28T23:00:27Z", "xmlid": "dsc_xyz_hee(2)"}, "is_public": "True", "name": "xyz_hee", "size": "3", "start_date": "2015-03-09T00:25:33Z", "stop_date": "2023-05-28T23:00:27Z", "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "AU", "xmlid": "dsc_xyz_hee"}, "is_public": "True", "lastModificationDate": "2024-08-14T14:04:20Z", "lastUpdate": "2024-08-14T09:58:29Z", "measurement_type": "Ephemeris", "name": "orbit L1", "processing_level": "Calibrated", "sampling": "1H", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/DSCOVR/Ephemeris/dsc-orb-all", "start_date": "2015-03-09T00:25:33Z", "stop_date": "2023-05-28T23:00:27Z", "xmlid": "dsc-orb-all"}, "is_public": "True", "name": "Ephemeris", "xmlid": "DSCOVR_ephemeris"}, "Faraday_Cup": {"__spz_name__": "Faraday Cup", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "DSCOVR_fc", "att": "auto/DSCOVR_fc", "desc": "FaradayCup", "dsc_fc_1m": {"__spz_name__": "sw : 1 m", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "dsc-fc-1m", "att": "auto/dsc-fc-1m", "dataSource": "NOAA", "desc": "solar wind parameters
Sampling: 60S
Provider: NOAA", "dsc_npr": {"__spz_name__": "proton density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "dsc_npr", "dataset": "dsc-fc-1m", "display_type": "timeseries", "is_public": "True", "name": "proton density", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2024-10-05T23:59:00Z", "units": "cm\u207b\u00b3", "xmlid": "dsc_npr"}, "dsc_pdyn": {"__spz_name__": "ram pressure", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "dsc_pdyn", "dataset": "dsc-fc-1m", "description": "P = 2*10e-6 * Np * Vp^2", "display_type": "timeseries", "is_public": "True", "name": "ram pressure", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2024-10-05T23:59:00Z", "units": "nPa", "xmlid": "dsc_pdyn"}, "dsc_tpr": {"__spz_name__": "proton temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "dsc_tpr", "dataset": "dsc-fc-1m", "display_type": "timeseries", "is_public": "True", "name": "proton temperature", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2024-10-05T23:59:00Z", "units": "eV", "xmlid": "dsc_tpr"}, "dsc_vpr": {"__spz_name__": "proton |v|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "dsc_vpr", "dataset": "dsc-fc-1m", "display_type": "timeseries", "is_public": "True", "name": "proton |v|", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2024-10-05T23:59:00Z", "units": "km/s", "xmlid": "dsc_vpr"}, "dsc_vpr_gse": {"__spz_name__": "proton v_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "dsc_vpr_gse", "dataset": "dsc-fc-1m", "display_type": "timeseries", "dsc_vpr_gse0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "dsc_vpr_gse(0)", "dataset": "dsc-fc-1m", "index1": "0", "is_public": "True", "name": "vx", "parameter": "dsc_vpr_gse", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2024-10-05T23:59:00Z", "xmlid": "dsc_vpr_gse(0)"}, "dsc_vpr_gse1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "dsc_vpr_gse(1)", "dataset": "dsc-fc-1m", "index1": "1", "is_public": "True", "name": "vy", "parameter": "dsc_vpr_gse", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2024-10-05T23:59:00Z", "xmlid": "dsc_vpr_gse(1)"}, "dsc_vpr_gse2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "dsc_vpr_gse(2)", "dataset": "dsc-fc-1m", "index1": "2", "is_public": "True", "name": "vz", "parameter": "dsc_vpr_gse", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2024-10-05T23:59:00Z", "xmlid": "dsc_vpr_gse(2)"}, "is_public": "True", "name": "proton v_gse", "size": "3", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2024-10-05T23:59:00Z", "units": "km/s", "xmlid": "dsc_vpr_gse"}, "dsc_vpr_gsm": {"__spz_name__": "proton v_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "dsc_vpr_gsm", "dataset": "dsc-fc-1m", "display_type": "timeseries", "dsc_vpr_gsm0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "dsc_vpr_gsm(0)", "dataset": "dsc-fc-1m", "index1": "0", "is_public": "True", "name": "vx", "parameter": "dsc_vpr_gsm", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2024-10-05T23:59:00Z", "xmlid": "dsc_vpr_gsm(0)"}, "dsc_vpr_gsm1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "dsc_vpr_gsm(1)", "dataset": "dsc-fc-1m", "index1": "1", "is_public": "True", "name": "vy", "parameter": "dsc_vpr_gsm", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2024-10-05T23:59:00Z", "xmlid": "dsc_vpr_gsm(1)"}, "dsc_vpr_gsm2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "dsc_vpr_gsm(2)", "dataset": "dsc-fc-1m", "index1": "2", "is_public": "True", "name": "vz", "parameter": "dsc_vpr_gsm", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2024-10-05T23:59:00Z", "xmlid": "dsc_vpr_gsm(2)"}, "is_public": "True", "name": "proton v_gsm", "size": "3", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2024-10-05T23:59:00Z", "units": "km/s", "xmlid": "dsc_vpr_gsm"}, "is_public": "True", "lastModificationDate": "2024-10-07T04:12:49Z", "lastUpdate": "2024-10-07T04:12:49Z", "measurement_type": "MagneticField", "name": "sw : 1 m", "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/DSCOVR/FC/dsc-fc-1m", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2024-10-05T23:59:00Z", "target": "Heliosphere.NearEarth", "xmlid": "dsc-fc-1m"}, "dsc_fc_3s": {"__spz_name__": "sw : 3 s", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "dsc-fc-3s", "att": "auto/dsc-fc-3s", "dataSource": "NOAA", "desc": "solar wind parameters
Sampling: 3S
Provider: NOAA", "dsc_npr_3s": {"__spz_name__": "proton density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "dsc_npr_3s", "dataset": "dsc-fc-3s", "display_type": "timeseries", "is_public": "True", "name": "proton density", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2024-10-05T23:59:40Z", "units": "cm\u207b\u00b3", "xmlid": "dsc_npr_3s"}, "dsc_pdyn_3s": {"__spz_name__": "ram pressure", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "dsc_pdyn_3s", "dataset": "dsc-fc-3s", "description": "P = 2*10e-6 * Np * Vp^2", "display_type": "timeseries", "is_public": "True", "name": "ram pressure", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2024-10-05T23:59:40Z", "units": "nPa", "xmlid": "dsc_pdyn_3s"}, "dsc_tpr_3s": {"__spz_name__": "proton temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "dsc_tpr_3s", "dataset": "dsc-fc-3s", "display_type": "timeseries", "is_public": "True", "name": "proton temperature", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2024-10-05T23:59:40Z", "units": "eV", "xmlid": "dsc_tpr_3s"}, "dsc_vpr_3s": {"__spz_name__": "proton |v|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "dsc_vpr_3s", "dataset": "dsc-fc-3s", "display_type": "timeseries", "is_public": "True", "name": "proton |v|", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2024-10-05T23:59:40Z", "units": "km/s", "xmlid": "dsc_vpr_3s"}, "dsc_vpr_3s_gse": {"__spz_name__": "proton v_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "dsc_vpr_3s_gse", "dataset": "dsc-fc-3s", "display_type": "timeseries", "dsc_vpr_3s_gse0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "dsc_vpr_3s_gse(0)", "dataset": "dsc-fc-3s", "index1": "0", "is_public": "True", "name": "vx", "parameter": "dsc_vpr_3s_gse", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2024-10-05T23:59:40Z", "xmlid": "dsc_vpr_3s_gse(0)"}, "dsc_vpr_3s_gse1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "dsc_vpr_3s_gse(1)", "dataset": "dsc-fc-3s", "index1": "1", "is_public": "True", "name": "vy", "parameter": "dsc_vpr_3s_gse", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2024-10-05T23:59:40Z", "xmlid": "dsc_vpr_3s_gse(1)"}, "dsc_vpr_3s_gse2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "dsc_vpr_3s_gse(2)", "dataset": "dsc-fc-3s", "index1": "2", "is_public": "True", "name": "vz", "parameter": "dsc_vpr_3s_gse", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2024-10-05T23:59:40Z", "xmlid": "dsc_vpr_3s_gse(2)"}, "is_public": "True", "name": "proton v_gse", "size": "3", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2024-10-05T23:59:40Z", "units": "km/s", "xmlid": "dsc_vpr_3s_gse"}, "dsc_vpr_3s_gsm": {"__spz_name__": "proton v_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "dsc_vpr_3s_gsm", "dataset": "dsc-fc-3s", "display_type": "timeseries", "dsc_vpr_3s_gsm0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "dsc_vpr_3s_gsm(0)", "dataset": "dsc-fc-3s", "index1": "0", "is_public": "True", "name": "vx", "parameter": "dsc_vpr_3s_gsm", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2024-10-05T23:59:40Z", "xmlid": "dsc_vpr_3s_gsm(0)"}, "dsc_vpr_3s_gsm1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "dsc_vpr_3s_gsm(1)", "dataset": "dsc-fc-3s", "index1": "1", "is_public": "True", "name": "vy", "parameter": "dsc_vpr_3s_gsm", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2024-10-05T23:59:40Z", "xmlid": "dsc_vpr_3s_gsm(1)"}, "dsc_vpr_3s_gsm2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "dsc_vpr_3s_gsm(2)", "dataset": "dsc-fc-3s", "index1": "2", "is_public": "True", "name": "vz", "parameter": "dsc_vpr_3s_gsm", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2024-10-05T23:59:40Z", "xmlid": "dsc_vpr_3s_gsm(2)"}, "is_public": "True", "name": "proton v_gsm", "size": "3", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2024-10-05T23:59:40Z", "units": "km/s", "xmlid": "dsc_vpr_3s_gsm"}, "is_public": "True", "lastModificationDate": "2024-10-07T04:13:52Z", "lastUpdate": "2024-10-07T04:13:52Z", "measurement_type": "MagneticField", "name": "sw : 3 s", "processing_level": "Calibrated", "sampling": "3S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/DSCOVR/FC/dsc-fc-3s", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2024-10-05T23:59:40Z", "target": "Heliosphere.NearEarth", "xmlid": "dsc-fc-3s"}, "is_public": "True", "name": "Faraday Cup", "xmlid": "DSCOVR_fc"}, "MAG": {"__spz_name__": "MAG", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "DSCOVR_mag", "att": "auto/DSCOVR_mag", "desc": "Fluxgate Magnetometer
Magnetometer", "dsc_mag_1m": {"__spz_name__": "1 m", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "dsc-mag-1m", "att": "auto/dsc-mag-1m", "dataSource": "NOAA", "desc": "interplanetary magnetic field
Sampling: 60S
Provider: NOAA", "dsc_b_gse": {"__spz_name__": "b_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "dsc_b_gse", "dataset": "dsc-mag-1m", "description": "Magnetic field vector in GSE Cartesian coordinates (16 sec)", "display_type": "timeseries", "dsc_b_gse0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "dsc_b_gse(0)", "dataset": "dsc-mag-1m", "index1": "0", "is_public": "True", "name": "bx", "parameter": "dsc_b_gse", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2024-10-05T23:59:00Z", "xmlid": "dsc_b_gse(0)"}, "dsc_b_gse1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "dsc_b_gse(1)", "dataset": "dsc-mag-1m", "index1": "1", "is_public": "True", "name": "by", "parameter": "dsc_b_gse", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2024-10-05T23:59:00Z", "xmlid": "dsc_b_gse(1)"}, "dsc_b_gse2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "dsc_b_gse(2)", "dataset": "dsc-mag-1m", "index1": "2", "is_public": "True", "name": "bz", "parameter": "dsc_b_gse", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2024-10-05T23:59:00Z", "xmlid": "dsc_b_gse(2)"}, "is_public": "True", "name": "b_gse", "size": "3", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2024-10-05T23:59:00Z", "ucd": "phys.magField", "units": "nT", "xmlid": "dsc_b_gse"}, "dsc_b_gsm": {"__spz_name__": "b_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "dsc_b_gsm", "dataset": "dsc-mag-1m", "description": "Magnetic field vector in GSM Cartesian coordinates", "display_type": "timeseries", "dsc_b_gsm0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "dsc_b_gsm(0)", "dataset": "dsc-mag-1m", "index1": "0", "is_public": "True", "name": "bx", "parameter": "dsc_b_gsm", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2024-10-05T23:59:00Z", "xmlid": "dsc_b_gsm(0)"}, "dsc_b_gsm1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "dsc_b_gsm(1)", "dataset": "dsc-mag-1m", "index1": "1", "is_public": "True", "name": "by", "parameter": "dsc_b_gsm", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2024-10-05T23:59:00Z", "xmlid": "dsc_b_gsm(1)"}, "dsc_b_gsm2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "dsc_b_gsm(2)", "dataset": "dsc-mag-1m", "index1": "2", "is_public": "True", "name": "bz", "parameter": "dsc_b_gsm", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2024-10-05T23:59:00Z", "xmlid": "dsc_b_gsm(2)"}, "is_public": "True", "name": "b_gsm", "size": "3", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2024-10-05T23:59:00Z", "ucd": "phys.magField", "units": "nT", "xmlid": "dsc_b_gsm"}, "dsc_b_mag": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "dsc_b_mag", "dataset": "dsc-mag-1m", "description": "Magnetic field magnitude", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2024-10-05T23:59:00Z", "ucd": "phys.magField", "units": "nT", "xmlid": "dsc_b_mag"}, "is_public": "True", "lastModificationDate": "2024-10-07T04:08:42Z", "lastUpdate": "2024-10-07T04:08:42Z", "measurement_type": "MagneticField", "name": "1 m", "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/DSCOVR/MAG/dsc-mag-1m", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2024-10-05T23:59:00Z", "target": "Heliosphere.NearEarth", "xmlid": "dsc-mag-1m"}, "dsc_mag_1s": {"__spz_name__": "1 s", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "dsc-mag-1s", "att": "auto/dsc-mag-1s", "dataSource": "NOAA", "desc": "interplanetary magnetic field
Sampling: 60S
Provider: NOAA", "dsc_b_1s_gse": {"__spz_name__": "b_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "dsc_b_1s_gse", "dataset": "dsc-mag-1s", "description": "Magnetic field vector in GSE Cartesian coordinates", "display_type": "timeseries", "dsc_b_1s_gse0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "dsc_b_1s_gse(0)", "dataset": "dsc-mag-1s", "index1": "0", "is_public": "True", "name": "bx", "parameter": "dsc_b_1s_gse", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2024-10-05T23:59:59Z", "xmlid": "dsc_b_1s_gse(0)"}, "dsc_b_1s_gse1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "dsc_b_1s_gse(1)", "dataset": "dsc-mag-1s", "index1": "1", "is_public": "True", "name": "by", "parameter": "dsc_b_1s_gse", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2024-10-05T23:59:59Z", "xmlid": "dsc_b_1s_gse(1)"}, "dsc_b_1s_gse2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "dsc_b_1s_gse(2)", "dataset": "dsc-mag-1s", "index1": "2", "is_public": "True", "name": "bz", "parameter": "dsc_b_1s_gse", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2024-10-05T23:59:59Z", "xmlid": "dsc_b_1s_gse(2)"}, "is_public": "True", "name": "b_gse", "size": "3", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2024-10-05T23:59:59Z", "ucd": "phys.magField", "units": "nT", "xmlid": "dsc_b_1s_gse"}, "dsc_b_1s_gsm": {"__spz_name__": "b_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "dsc_b_1s_gsm", "dataset": "dsc-mag-1s", "description": "Magnetic field vector in GSM Cartesian coordinates", "display_type": "timeseries", "dsc_b_1s_gsm0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "dsc_b_1s_gsm(0)", "dataset": "dsc-mag-1s", "index1": "0", "is_public": "True", "name": "bx", "parameter": "dsc_b_1s_gsm", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2024-10-05T23:59:59Z", "xmlid": "dsc_b_1s_gsm(0)"}, "dsc_b_1s_gsm1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "dsc_b_1s_gsm(1)", "dataset": "dsc-mag-1s", "index1": "1", "is_public": "True", "name": "by", "parameter": "dsc_b_1s_gsm", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2024-10-05T23:59:59Z", "xmlid": "dsc_b_1s_gsm(1)"}, "dsc_b_1s_gsm2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "dsc_b_1s_gsm(2)", "dataset": "dsc-mag-1s", "index1": "2", "is_public": "True", "name": "bz", "parameter": "dsc_b_1s_gsm", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2024-10-05T23:59:59Z", "xmlid": "dsc_b_1s_gsm(2)"}, "is_public": "True", "name": "b_gsm", "size": "3", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2024-10-05T23:59:59Z", "ucd": "phys.magField", "units": "nT", "xmlid": "dsc_b_1s_gsm"}, "dsc_b_1s_mag": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "dsc_b_1s_mag", "dataset": "dsc-mag-1s", "description": "Magnetic field magnitude", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2024-10-05T23:59:59Z", "ucd": "phys.magField", "units": "nT", "xmlid": "dsc_b_1s_mag"}, "is_public": "True", "lastModificationDate": "2024-10-07T04:11:59Z", "lastUpdate": "2024-10-07T04:11:58Z", "measurement_type": "MagneticField", "name": "1 s", "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/DSCOVR/MAG/dsc-mag-1s", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2024-10-05T23:59:59Z", "target": "Heliosphere.NearEarth", "xmlid": "dsc-mag-1s"}, "is_public": "True", "name": "MAG", "xmlid": "DSCOVR_mag"}, "__spz_name__": "DSCOVR", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "DSCOVR", "att": "auto/DSCOVR", "desc": "Deep Space Climate Observatory
2016-07-27T00:00:00", "is_public": "True", "name": "DSCOVR", "rank": "4", "target": "Heliosphere.NearEarth", "xmlid": "DSCOVR"}, "Double_Star": {"DoubleStar_1": {"Ephemeris": {"__spz_name__": "Ephemeris", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "DoubleStar1_ephemeris", "att": "auto/DoubleStar1_ephemeris", "desc": "", "dstar1_orb_all": {"__spz_name__": "orbit", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "dstar1-orb-all", "att": "auto/dstar1-orb-all", "dataSource": "CSDS-CNES", "desc": "Double Star 1 position
Sampling: 60S
Provider: CSDS-CNES", "ds1_xyz": {"__spz_name__": "xyz_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ds1_xyz", "dataset": "dstar1-orb-all", "description": "Double Star 1 spacecraft position at 60 s resolution in GSE Coordinates in units of km.", "display_type": "timeseries", "ds1_xyz0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ds1_xyz(0)", "dataset": "dstar1-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "ds1_xyz", "start_date": "2004-02-01T00:00:00Z", "stop_date": "2007-10-10T12:38:00Z", "xmlid": "ds1_xyz(0)"}, "ds1_xyz1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ds1_xyz(1)", "dataset": "dstar1-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "ds1_xyz", "start_date": "2004-02-01T00:00:00Z", "stop_date": "2007-10-10T12:38:00Z", "xmlid": "ds1_xyz(1)"}, "ds1_xyz2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ds1_xyz(2)", "dataset": "dstar1-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "ds1_xyz", "start_date": "2004-02-01T00:00:00Z", "stop_date": "2007-10-10T12:38:00Z", "xmlid": "ds1_xyz(2)"}, "is_public": "True", "name": "xyz_gse", "size": "3", "start_date": "2004-02-01T00:00:00Z", "stop_date": "2007-10-10T12:38:00Z", "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "Re", "xmlid": "ds1_xyz"}, "ds1_xyz_gsm": {"__spz_name__": "xyz_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ds1_xyz_gsm", "dataset": "dstar1-orb-all", "description": "Double Star 1 spacecraft position at 60 s resolution in GSM Coordinates in units of km.", "display_type": "timeseries", "ds1_xyz_gsm0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ds1_xyz_gsm(0)", "dataset": "dstar1-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "ds1_xyz_gsm", "start_date": "2004-02-01T00:00:00Z", "stop_date": "2007-10-10T12:38:00Z", "xmlid": "ds1_xyz_gsm(0)"}, "ds1_xyz_gsm1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ds1_xyz_gsm(1)", "dataset": "dstar1-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "ds1_xyz_gsm", "start_date": "2004-02-01T00:00:00Z", "stop_date": "2007-10-10T12:38:00Z", "xmlid": "ds1_xyz_gsm(1)"}, "ds1_xyz_gsm2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ds1_xyz_gsm(2)", "dataset": "dstar1-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "ds1_xyz_gsm", "start_date": "2004-02-01T00:00:00Z", "stop_date": "2007-10-10T12:38:00Z", "xmlid": "ds1_xyz_gsm(2)"}, "is_public": "True", "name": "xyz_gsm", "size": "3", "start_date": "2004-02-01T00:00:00Z", "stop_date": "2007-10-10T12:38:00Z", "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "Re", "xmlid": "ds1_xyz_gsm"}, "is_public": "True", "lastModificationDate": "2012-03-06T22:12:56Z", "lastUpdate": "2012-03-06T22:13:05Z", "measurement_type": "Ephemeris", "name": "orbit", "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/DoubleStar1/Ephemeris/dstar1-orb-all", "start_date": "2004-02-01T00:00:00Z", "stop_date": "2007-10-10T12:38:00Z", "target": "Earth.Magnetosheath", "xmlid": "dstar1-orb-all"}, "is_public": "True", "name": "Ephemeris", "xmlid": "DoubleStar1_ephemeris"}, "FGM": {"__spz_name__": "FGM", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "DoubleStar1_fgm", "att": "auto/DoubleStar1_fgm", "desc": "Fluxgate Magnetometer
Magnetometer", "dstar1_fgm_prp": {"__spz_name__": "prime parameters", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "dstar1-fgm-prp", "att": "auto/dstar1-fgm-prp", "dataSource": "CSDS-CNES", "desc": "Double Star 1 FGM Prime Parameters Data
Sampling: 4S
Provider: CSDS-CNES", "ds1_b": {"__spz_name__": "b_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ds1_b", "dataset": "dstar1-fgm-prp", "description": "Double Star 1 FGM magnetic field vectors at spin resolution in GSE Coordinates in units of nT.", "display_type": "timeseries", "ds1_b0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ds1_b(0)", "dataset": "dstar1-fgm-prp", "index1": "0", "is_public": "True", "name": "bx", "parameter": "ds1_b", "start_date": "2004-01-08T03:43:36Z", "stop_date": "2007-08-31T11:48:11Z", "xmlid": "ds1_b(0)"}, "ds1_b1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ds1_b(1)", "dataset": "dstar1-fgm-prp", "index1": "1", "is_public": "True", "name": "by", "parameter": "ds1_b", "start_date": "2004-01-08T03:43:36Z", "stop_date": "2007-08-31T11:48:11Z", "xmlid": "ds1_b(1)"}, "ds1_b2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ds1_b(2)", "dataset": "dstar1-fgm-prp", "index1": "2", "is_public": "True", "name": "bz", "parameter": "ds1_b", "start_date": "2004-01-08T03:43:36Z", "stop_date": "2007-08-31T11:48:11Z", "xmlid": "ds1_b(2)"}, "is_public": "True", "name": "b_gse", "size": "3", "start_date": "2004-01-08T03:43:36Z", "stop_date": "2007-08-31T11:48:11Z", "ucd": "phys.magField", "units": "nT", "xmlid": "ds1_b"}, "ds1_b_gsm": {"__spz_name__": "b_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ds1_b_gsm", "dataset": "dstar1-fgm-prp", "description": "Double Star 1 FGM magnetic field vectors at spin resolution in GSM Coordinates in units of nT.", "display_type": "timeseries", "ds1_b_gsm0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ds1_b_gsm(0)", "dataset": "dstar1-fgm-prp", "index1": "0", "is_public": "True", "name": "bx", "parameter": "ds1_b_gsm", "start_date": "2004-01-08T03:43:36Z", "stop_date": "2007-08-31T11:48:11Z", "xmlid": "ds1_b_gsm(0)"}, "ds1_b_gsm1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ds1_b_gsm(1)", "dataset": "dstar1-fgm-prp", "index1": "1", "is_public": "True", "name": "by", "parameter": "ds1_b_gsm", "start_date": "2004-01-08T03:43:36Z", "stop_date": "2007-08-31T11:48:11Z", "xmlid": "ds1_b_gsm(1)"}, "ds1_b_gsm2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ds1_b_gsm(2)", "dataset": "dstar1-fgm-prp", "index1": "2", "is_public": "True", "name": "bz", "parameter": "ds1_b_gsm", "start_date": "2004-01-08T03:43:36Z", "stop_date": "2007-08-31T11:48:11Z", "xmlid": "ds1_b_gsm(2)"}, "is_public": "True", "name": "b_gsm", "size": "3", "start_date": "2004-01-08T03:43:36Z", "stop_date": "2007-08-31T11:48:11Z", "ucd": "phys.magField", "units": "nT", "xmlid": "ds1_b_gsm"}, "dstar1_fgm_prp_bt": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "dstar1_fgm_prp_bt", "dataset": "dstar1-fgm-prp", "description": "Magnetic Field magnitude", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "2004-01-08T03:43:36Z", "stop_date": "2007-08-31T11:48:11Z", "ucd": "phys.magField", "units": "nT", "xmlid": "dstar1_fgm_prp_bt"}, "is_public": "True", "lastModificationDate": "2012-03-06T22:14:35Z", "lastUpdate": "2012-03-06T22:15:49Z", "measurement_type": "MagneticField", "name": "prime parameters", "processing_level": "Calibrated", "sampling": "4S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/DoubleStar1/FGM/dstar1-fgm-prp", "start_date": "2004-01-08T03:43:36Z", "stop_date": "2007-08-31T11:48:11Z", "target": "Earth.Magnetosheath", "xmlid": "dstar1-fgm-prp"}, "is_public": "True", "name": "FGM", "xmlid": "DoubleStar1_fgm"}, "HIA": {"__spz_name__": "HIA", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "DoubleStar1_hia", "att": "auto/DoubleStar1_hia", "desc": "Hot Ion Analyzer
EnergeticParticleInstrument", "dstar1_hia_prp": {"__spz_name__": "prime parameters", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "dstar1-hia-prp", "att": "auto/dstar1-hia-prp", "dataSource": "CSDS-CNES", "desc": "
Sampling: 4S
Provider: CSDS-CNES", "ds1_n": {"__spz_name__": "ion density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ds1_n", "dataset": "dstar1-hia-prp", "description": "Double Star 1 HIA ion number density at spin resolution in units of #/cm^3.", "display_type": "timeseries", "is_public": "True", "name": "ion density", "start_date": "2004-02-04T02:40:38Z", "stop_date": "2007-09-29T06:38:33Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm\u207b\u00b3", "xmlid": "ds1_n"}, "ds1_t": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ds1_t", "dataset": "dstar1-hia-prp", "description": "Double Star 1 HIA ion temperature at spin resolution in units of eV.", "ds1_t0": {"__spz_name__": "t_para", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ds1_t(0)", "dataset": "dstar1-hia-prp", "index1": "0", "is_public": "True", "name": "t_para", "parameter": "ds1_t", "start_date": "2004-02-04T02:40:38Z", "stop_date": "2007-09-29T06:38:33Z", "xmlid": "ds1_t(0)"}, "ds1_t1": {"__spz_name__": "t_perp", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ds1_t(1)", "dataset": "dstar1-hia-prp", "index1": "1", "is_public": "True", "name": "t_perp", "parameter": "ds1_t", "start_date": "2004-02-04T02:40:38Z", "stop_date": "2007-09-29T06:38:33Z", "xmlid": "ds1_t(1)"}, "is_public": "True", "name": "temperature", "size": "2", "start_date": "2004-02-04T02:40:38Z", "stop_date": "2007-09-29T06:38:33Z", "ucd": "phys.temperature;phys.atmol.ionStage", "units": "eV", "xmlid": "ds1_t"}, "ds1_v": {"__spz_name__": "v_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ds1_v", "dataset": "dstar1-hia-prp", "description": "Double Star 1 HIA ion bulk velocity at spin resolution in GSE Coordinates in units of km/s.", "display_type": "timeseries", "ds1_v0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ds1_v(0)", "dataset": "dstar1-hia-prp", "index1": "0", "is_public": "True", "name": "vx", "parameter": "ds1_v", "start_date": "2004-02-04T02:40:38Z", "stop_date": "2007-09-29T06:38:33Z", "xmlid": "ds1_v(0)"}, "ds1_v1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ds1_v(1)", "dataset": "dstar1-hia-prp", "index1": "1", "is_public": "True", "name": "vy", "parameter": "ds1_v", "start_date": "2004-02-04T02:40:38Z", "stop_date": "2007-09-29T06:38:33Z", "xmlid": "ds1_v(1)"}, "ds1_v2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ds1_v(2)", "dataset": "dstar1-hia-prp", "index1": "2", "is_public": "True", "name": "vz", "parameter": "ds1_v", "start_date": "2004-02-04T02:40:38Z", "stop_date": "2007-09-29T06:38:33Z", "xmlid": "ds1_v(2)"}, "is_public": "True", "name": "v_gse", "size": "3", "start_date": "2004-02-04T02:40:38Z", "stop_date": "2007-09-29T06:38:33Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "ds1_v"}, "ds1_v_gsm": {"__spz_name__": "v_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ds1_v_gsm", "dataset": "dstar1-hia-prp", "description": "Double Star 1 HIA ion bulk velocity at spin resolution in GSM Coordinates in units of km/s.", "display_type": "timeseries", "ds1_v_gsm0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ds1_v_gsm(0)", "dataset": "dstar1-hia-prp", "index1": "0", "is_public": "True", "name": "vx", "parameter": "ds1_v_gsm", "start_date": "2004-02-04T02:40:38Z", "stop_date": "2007-09-29T06:38:33Z", "xmlid": "ds1_v_gsm(0)"}, "ds1_v_gsm1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ds1_v_gsm(1)", "dataset": "dstar1-hia-prp", "index1": "1", "is_public": "True", "name": "vy", "parameter": "ds1_v_gsm", "start_date": "2004-02-04T02:40:38Z", "stop_date": "2007-09-29T06:38:33Z", "xmlid": "ds1_v_gsm(1)"}, "ds1_v_gsm2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ds1_v_gsm(2)", "dataset": "dstar1-hia-prp", "index1": "2", "is_public": "True", "name": "vz", "parameter": "ds1_v_gsm", "start_date": "2004-02-04T02:40:38Z", "stop_date": "2007-09-29T06:38:33Z", "xmlid": "ds1_v_gsm(2)"}, "is_public": "True", "name": "v_gsm", "size": "3", "start_date": "2004-02-04T02:40:38Z", "stop_date": "2007-09-29T06:38:33Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "ds1_v_gsm"}, "is_public": "True", "lastModificationDate": "2012-03-06T22:13:17Z", "lastUpdate": "2012-03-06T22:14:03Z", "measurement_type": "ThermalPlasma", "name": "prime parameters", "processing_level": "Calibrated", "sampling": "4S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/DoubleStar1/HIA/dstar1-hia-prp", "start_date": "2004-02-04T02:40:38Z", "stop_date": "2007-09-29T06:38:33Z", "target": "Earth.Magnetosheath", "xmlid": "dstar1-hia-prp"}, "is_public": "True", "name": "HIA", "xmlid": "DoubleStar1_hia"}, "__spz_name__": "DoubleStar 1", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "DoubleStar1", "att": "auto/DoubleStar1", "desc": "TanCe 1
2003-12-29T19:06:00 - 2007-10-10T00:00:00", "is_public": "True", "name": "DoubleStar 1", "target": "Earth.Magnetosphere.Main", "xmlid": "DoubleStar1"}, "__spz_name__": "Double Star", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "DoubleStar", "att": "auto/DoubleStar", "desc": "Chinese/ESA Magnetospheric mission
2003-12-29T19:06:00 - 2007-10-10T00:00:00", "is_public": "True", "name": "Double Star", "rank": "6", "target": "Earth.Magnetosphere", "xmlid": "DoubleStar"}, "EISCAT": {"ESR_32M": {"__spz_name__": "ESR 32M", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "EISCAT_32m", "att": "auto/EISCAT_32m", "desc": "Longyearbyen 32m
Radar", "eiscat_32m_all": {"__spz_name__": "all modes", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "eiscat-32m-all", "att": "auto/eiscat-32m-all", "dataSource": "Madrigal", "desc": "eiscat 32m : all operation modes
Sampling: 22S
Provider: Madrigal", "eiscat_esr32m_az": {"__spz_name__": "azimuth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "eiscat_esr32m_az", "dataset": "eiscat-32m-all", "display_type": "timeseries", "is_public": "True", "name": "azimuth", "start_date": "2007-12-04T11:35:08Z", "stop_date": "2012-02-16T00:23:41Z", "units": "deg", "xmlid": "eiscat_esr32m_az"}, "eiscat_esr32m_el": {"__spz_name__": "elevation", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "eiscat_esr32m_el", "dataset": "eiscat-32m-all", "display_type": "timeseries", "is_public": "True", "name": "elevation", "start_date": "2007-12-04T11:35:08Z", "stop_date": "2012-02-16T00:23:41Z", "units": "deg", "xmlid": "eiscat_esr32m_el"}, "eiscat_esr32m_mode": {"__spz_name__": "mode", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "eiscat_esr32m_mode", "dataset": "eiscat-32m-all", "display_type": "timeseries", "is_public": "True", "name": "mode", "start_date": "2007-12-04T11:35:08Z", "stop_date": "2012-02-16T00:23:41Z", "xmlid": "eiscat_esr32m_mode"}, "eiscat_esr32m_ne": {"__spz_name__": "electron density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "eiscat_esr32m_ne", "dataset": "eiscat-32m-all", "display_type": "spectrogram", "is_public": "True", "name": "electron density", "start_date": "2007-12-04T11:35:08Z", "stop_date": "2012-02-16T00:23:41Z", "template": "eiscat_esr32m_ne_##mode##_##corrected##_##yaxis##", "units": "m-3", "xmlid": "eiscat_esr32m_ne"}, "eiscat_esr32m_te": {"__spz_name__": "electron temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "eiscat_esr32m_te", "dataset": "eiscat-32m-all", "display_type": "spectrogram", "is_public": "True", "name": "electron temperature", "start_date": "2007-12-04T11:35:08Z", "stop_date": "2012-02-16T00:23:41Z", "template": "eiscat_esr32m_te_##mode##_##corrected##_##yaxis##", "units": "K", "xmlid": "eiscat_esr32m_te"}, "eiscat_esr32m_ti": {"__spz_name__": "ion temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "eiscat_esr32m_ti", "dataset": "eiscat-32m-all", "display_type": "spectrogram", "is_public": "True", "name": "ion temperature", "start_date": "2007-12-04T11:35:08Z", "stop_date": "2012-02-16T00:23:41Z", "template": "eiscat_esr32m_ti_##mode##_##corrected##_##yaxis##", "units": "K", "xmlid": "eiscat_esr32m_ti"}, "eiscat_esr32m_vi": {"__spz_name__": "ion velocity", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "eiscat_esr32m_vi", "dataset": "eiscat-32m-all", "display_type": "spectrogram", "is_public": "True", "name": "ion velocity", "start_date": "2007-12-04T11:35:08Z", "stop_date": "2012-02-16T00:23:41Z", "template": "eiscat_esr32m_vi_##mode##_##corrected##_##yaxis##", "units": "m/s", "xmlid": "eiscat_esr32m_vi"}, "is_public": "True", "lastModificationDate": "2018-04-13T18:11:56Z", "lastUpdate": "2018-04-13T18:11:33Z", "measurement_type": "ThermalPlasma", "name": "all modes", "processing_level": "Calibrated", "sampling": "22S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/EISCAT/32M/eiscat-32m-all", "start_date": "2007-12-04T11:35:08Z", "stop_date": "2012-02-16T00:23:41Z", "target": "Earth", "xmlid": "eiscat-32m-all"}, "is_public": "True", "name": "ESR 32M", "xmlid": "EISCAT_32m"}, "ESR_42M": {"__spz_name__": "ESR 42M", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "EISCAT_42m", "att": "auto/EISCAT_42m", "desc": "Longyearbyen 42m
Radar", "eiscat_42m_all": {"__spz_name__": "field-aligned", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "eiscat-42m-all", "att": "auto/eiscat-42m-all", "dataSource": "Madrigal", "desc": "eiscat 42m : field-aligned mode
Sampling: 60S
Provider: Madrigal", "eiscat_esr42m_az": {"__spz_name__": "azimuth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "eiscat_esr42m_az", "dataset": "eiscat-42m-all", "display_type": "timeseries", "is_public": "True", "name": "azimuth", "start_date": "2003-11-01T00:00:48Z", "stop_date": "2012-02-16T01:59:34Z", "units": "deg", "xmlid": "eiscat_esr42m_az"}, "eiscat_esr42m_el": {"__spz_name__": "elevation", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "eiscat_esr42m_el", "dataset": "eiscat-42m-all", "display_type": "timeseries", "is_public": "True", "name": "elevation", "start_date": "2003-11-01T00:00:48Z", "stop_date": "2012-02-16T01:59:34Z", "units": "deg", "xmlid": "eiscat_esr42m_el"}, "eiscat_esr42m_mode": {"__spz_name__": "mode", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "eiscat_esr42m_mode", "dataset": "eiscat-42m-all", "display_type": "timeseries", "is_public": "True", "name": "mode", "start_date": "2003-11-01T00:00:48Z", "stop_date": "2012-02-16T01:59:34Z", "xmlid": "eiscat_esr42m_mode"}, "eiscat_esr42m_ne": {"__spz_name__": "electron density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "eiscat_esr42m_ne", "dataset": "eiscat-42m-all", "display_type": "spectrogram", "is_public": "True", "name": "electron density", "start_date": "2003-11-01T00:00:48Z", "stop_date": "2012-02-16T01:59:34Z", "template": "eiscat_esr42m_ne_##mode##_##corrected##_##yaxis##", "units": "m-3", "xmlid": "eiscat_esr42m_ne"}, "eiscat_esr42m_te": {"__spz_name__": "electron temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "eiscat_esr42m_te", "dataset": "eiscat-42m-all", "display_type": "spectrogram", "is_public": "True", "name": "electron temperature", "start_date": "2003-11-01T00:00:48Z", "stop_date": "2012-02-16T01:59:34Z", "template": "eiscat_esr42m_te_##mode##_##corrected##_##yaxis##", "units": "K", "xmlid": "eiscat_esr42m_te"}, "eiscat_esr42m_ti": {"__spz_name__": "ion temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "eiscat_esr42m_ti", "dataset": "eiscat-42m-all", "display_type": "spectrogram", "is_public": "True", "name": "ion temperature", "start_date": "2003-11-01T00:00:48Z", "stop_date": "2012-02-16T01:59:34Z", "template": "eiscat_esr42m_ti_##mode##_##corrected##_##yaxis##", "units": "K", "xmlid": "eiscat_esr42m_ti"}, "eiscat_esr42m_vi": {"__spz_name__": "ion velocity", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "eiscat_esr42m_vi", "dataset": "eiscat-42m-all", "display_type": "spectrogram", "is_public": "True", "name": "ion velocity", "start_date": "2003-11-01T00:00:48Z", "stop_date": "2012-02-16T01:59:34Z", "template": "eiscat_esr42m_vi_##mode##_##corrected##_##yaxis##", "units": "m/s", "xmlid": "eiscat_esr42m_vi"}, "is_public": "True", "lastModificationDate": "2018-04-13T18:22:44Z", "lastUpdate": "2018-04-13T18:21:37Z", "measurement_type": "ThermalPlasma", "name": "field-aligned", "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/EISCAT/42M/eiscat-42m-all", "start_date": "2003-11-01T00:00:48Z", "stop_date": "2012-02-16T01:59:34Z", "target": "Earth", "xmlid": "eiscat-42m-all"}, "is_public": "True", "name": "ESR 42M", "xmlid": "EISCAT_42m"}, "UHF": {"__spz_name__": "UHF", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "EISCAT_uhf", "att": "auto/EISCAT_uhf", "desc": "Tromso UHF
Radar", "eiscat_uhf_all": {"__spz_name__": "all modes", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "eiscat-uhf-all", "att": "auto/eiscat-uhf-all", "dataSource": "Madrigal", "desc": "eiscat uhf : all operation modes
Sampling: 60S
Provider: Madrigal", "eiscat_uhf_az": {"__spz_name__": "azimuth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "eiscat_uhf_az", "dataset": "eiscat-uhf-all", "display_type": "timeseries", "is_public": "True", "name": "azimuth", "start_date": "2003-10-29T09:09:52Z", "stop_date": "2011-02-18T23:59:30Z", "units": "deg", "xmlid": "eiscat_uhf_az"}, "eiscat_uhf_el": {"__spz_name__": "elevation", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "eiscat_uhf_el", "dataset": "eiscat-uhf-all", "display_type": "timeseries", "is_public": "True", "name": "elevation", "start_date": "2003-10-29T09:09:52Z", "stop_date": "2011-02-18T23:59:30Z", "units": "deg", "xmlid": "eiscat_uhf_el"}, "eiscat_uhf_mode": {"__spz_name__": "mode", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "eiscat_uhf_mode", "dataset": "eiscat-uhf-all", "display_type": "timeseries", "is_public": "True", "name": "mode", "start_date": "2003-10-29T09:09:52Z", "stop_date": "2011-02-18T23:59:30Z", "xmlid": "eiscat_uhf_mode"}, "eiscat_uhf_ne": {"__spz_name__": "electron density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "eiscat_uhf_ne", "dataset": "eiscat-uhf-all", "display_type": "spectrogram", "is_public": "True", "name": "electron density", "start_date": "2003-10-29T09:09:52Z", "stop_date": "2011-02-18T23:59:30Z", "template": "eiscat_uhf_ne_##mode##_##corrected##_##yaxis##", "units": "m-3", "xmlid": "eiscat_uhf_ne"}, "eiscat_uhf_te": {"__spz_name__": "electron temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "eiscat_uhf_te", "dataset": "eiscat-uhf-all", "display_type": "spectrogram", "is_public": "True", "name": "electron temperature", "start_date": "2003-10-29T09:09:52Z", "stop_date": "2011-02-18T23:59:30Z", "template": "eiscat_uhf_te_##mode##_##corrected##_##yaxis##", "units": "K", "xmlid": "eiscat_uhf_te"}, "eiscat_uhf_ti": {"__spz_name__": "ion temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "eiscat_uhf_ti", "dataset": "eiscat-uhf-all", "display_type": "spectrogram", "is_public": "True", "name": "ion temperature", "start_date": "2003-10-29T09:09:52Z", "stop_date": "2011-02-18T23:59:30Z", "template": "eiscat_uhf_ti_##mode##_##corrected##_##yaxis##", "units": "K", "xmlid": "eiscat_uhf_ti"}, "eiscat_uhf_vi": {"__spz_name__": "ion velocity", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "eiscat_uhf_vi", "dataset": "eiscat-uhf-all", "display_type": "spectrogram", "is_public": "True", "name": "ion velocity", "start_date": "2003-10-29T09:09:52Z", "stop_date": "2011-02-18T23:59:30Z", "template": "eiscat_uhf_vi_##mode##_##corrected##_##yaxis##", "units": "m/s", "xmlid": "eiscat_uhf_vi"}, "is_public": "True", "lastModificationDate": "2018-02-07T16:31:57Z", "lastUpdate": "2018-02-07T16:31:57Z", "measurement_type": "ThermalPlasma", "name": "all modes", "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/EISCAT/UHF/eiscat-uhf-all", "start_date": "2003-10-29T09:09:52Z", "stop_date": "2011-02-18T23:59:30Z", "target": "Earth", "xmlid": "eiscat-uhf-all"}, "is_public": "True", "name": "UHF", "xmlid": "EISCAT_uhf"}, "VHF": {"__spz_name__": "VHF", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "EISCAT_vhf", "att": "auto/EISCAT_vhf", "desc": "Tromso VHF
Radar", "eiscat_vhf_all": {"__spz_name__": "all modes", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "eiscat-vhf-all", "att": "auto/eiscat-vhf-all", "dataSource": "Madrigal", "desc": "eiscat vhf : all operation modes
Sampling: 60S
Provider: Madrigal", "eiscat_vhf_az": {"__spz_name__": "azimuth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "eiscat_vhf_az", "dataset": "eiscat-vhf-all", "display_type": "timeseries", "is_public": "True", "name": "azimuth", "start_date": "2007-12-05T06:08:32Z", "stop_date": "2011-02-19T00:59:10Z", "units": "deg", "xmlid": "eiscat_vhf_az"}, "eiscat_vhf_el": {"__spz_name__": "elevation", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "eiscat_vhf_el", "dataset": "eiscat-vhf-all", "display_type": "timeseries", "is_public": "True", "name": "elevation", "start_date": "2007-12-05T06:08:32Z", "stop_date": "2011-02-19T00:59:10Z", "units": "deg", "xmlid": "eiscat_vhf_el"}, "eiscat_vhf_mode": {"__spz_name__": "mode", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "eiscat_vhf_mode", "dataset": "eiscat-vhf-all", "display_type": "timeseries", "is_public": "True", "name": "mode", "start_date": "2007-12-05T06:08:32Z", "stop_date": "2011-02-19T00:59:10Z", "xmlid": "eiscat_vhf_mode"}, "eiscat_vhf_ne": {"__spz_name__": "electron density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "eiscat_vhf_ne", "dataset": "eiscat-vhf-all", "display_type": "spectrogram", "is_public": "True", "name": "electron density", "start_date": "2007-12-05T06:08:32Z", "stop_date": "2011-02-19T00:59:10Z", "template": "eiscat_vhf_ne_##mode##_##corrected##_##yaxis##", "units": "m-3", "xmlid": "eiscat_vhf_ne"}, "eiscat_vhf_te": {"__spz_name__": "electron temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "eiscat_vhf_te", "dataset": "eiscat-vhf-all", "display_type": "spectrogram", "is_public": "True", "name": "electron temperature", "start_date": "2007-12-05T06:08:32Z", "stop_date": "2011-02-19T00:59:10Z", "template": "eiscat_vhf_te_##mode##_##corrected##_##yaxis##", "units": "K", "xmlid": "eiscat_vhf_te"}, "eiscat_vhf_ti": {"__spz_name__": "ion temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "eiscat_vhf_ti", "dataset": "eiscat-vhf-all", "display_type": "spectrogram", "is_public": "True", "name": "ion temperature", "start_date": "2007-12-05T06:08:32Z", "stop_date": "2011-02-19T00:59:10Z", "template": "eiscat_vhf_ti_##mode##_##corrected##_##yaxis##", "units": "K", "xmlid": "eiscat_vhf_ti"}, "eiscat_vhf_vi": {"__spz_name__": "ion velocity", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "eiscat_vhf_vi", "dataset": "eiscat-vhf-all", "display_type": "spectrogram", "is_public": "True", "name": "ion velocity", "start_date": "2007-12-05T06:08:32Z", "stop_date": "2011-02-19T00:59:10Z", "template": "eiscat_vhf_vi_##mode##_##corrected##_##yaxis##", "units": "m/s", "xmlid": "eiscat_vhf_vi"}, "is_public": "True", "lastModificationDate": "2018-04-13T18:25:45Z", "lastUpdate": "2018-04-13T18:24:21Z", "measurement_type": "ThermalPlasma", "name": "all modes", "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/EISCAT/VHF/eiscat-vhf-all", "start_date": "2007-12-05T06:08:32Z", "stop_date": "2011-02-19T00:59:10Z", "target": "Earth", "xmlid": "eiscat-vhf-all"}, "is_public": "True", "name": "VHF", "xmlid": "EISCAT_vhf"}, "__spz_name__": "EISCAT", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "EISCAT", "att": "auto/EISCAT", "desc": "European Incoherent Scatter Scientific Association
1984-01-17T00:00:00
1984-01-17 : UHF (Tromso, Kiruna, Sodankyl\u00e4)
1990-06-12 : VHF (Tromso)
1997-03-11 : ESR (Svalbard)", "is_public": "True", "name": "EISCAT", "rank": "6", "target": "Earth", "xmlid": "EISCAT"}, "Freja": {"ESP": {"__spz_name__": "ESP", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Freja_esp", "att": "auto/Freja_esp", "desc": "Electron Spectrometers
Spectrometer", "fja_sc_charg": {"__spz_name__": "charging events", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "fja-sc-charg", "att": "auto/fja-sc-charg", "dataSource": "ESA", "desc": "
Sampling: 60S
Provider: ESA", "fja_sc_ang": {"__spz_name__": "angle", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "fja_sc_ang", "dataset": "fja-sc-charg", "description": "Freja spin axis angle vs. magnetic field direction", "display_type": "timeseries", "is_public": "True", "name": "angle", "start_date": "1992-11-03T09:33:39Z", "stop_date": "1994-04-10T01:39:40Z", "units": "deg", "xmlid": "fja_sc_ang"}, "fja_sc_df": {"__spz_name__": "e- distr. fun.", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "fja_sc_df", "dataset": "fja-sc-charg", "description": "Electron spectra", "display_type": "spectrogram", "is_public": "True", "name": "e- distr. fun.", "start_date": "1992-11-03T09:33:39Z", "stop_date": "1994-04-10T01:39:40Z", "units": "1/(cm\u00b2 s\u00b2 str eV)", "xmlid": "fja_sc_df"}, "fja_sc_dur": {"__spz_name__": "duration", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "fja_sc_dur", "dataset": "fja-sc-charg", "description": "Event duration", "display_type": "timeseries", "is_public": "True", "name": "duration", "start_date": "1992-11-03T09:33:39Z", "stop_date": "1994-04-10T01:39:40Z", "units": "s", "xmlid": "fja_sc_dur"}, "fja_sc_n": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "fja_sc_n", "dataset": "fja-sc-charg", "description": "Electron density", "display_type": "timeseries", "is_public": "True", "name": "density", "start_date": "1992-11-03T09:33:39Z", "stop_date": "1994-04-10T01:39:40Z", "units": "cm-3", "xmlid": "fja_sc_n"}, "fja_sc_orb": {"__spz_name__": "orbit nb", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "fja_sc_orb", "dataset": "fja-sc-charg", "description": "Orbit number", "display_type": "timeseries", "is_public": "True", "name": "orbit nb", "start_date": "1992-11-03T09:33:39Z", "stop_date": "1994-04-10T01:39:40Z", "xmlid": "fja_sc_orb"}, "fja_sc_q": {"__spz_name__": "q_peak", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "fja_sc_q", "dataset": "fja-sc-charg", "description": "peak charging level", "display_type": "timeseries", "is_public": "True", "name": "q_peak", "start_date": "1992-11-03T09:33:39Z", "stop_date": "1994-04-10T01:39:40Z", "units": "V", "xmlid": "fja_sc_q"}, "fja_sc_sun": {"__spz_name__": "sun conditions", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "fja_sc_sun", "dataset": "fja-sc-charg", "description": "Sunlight conditions (eclpise=1, Sunlight = 0, Both = 2)", "display_type": "timeseries", "is_public": "True", "name": "sun conditions", "start_date": "1992-11-03T09:33:39Z", "stop_date": "1994-04-10T01:39:40Z", "xmlid": "fja_sc_sun"}, "is_public": "True", "lastModificationDate": "2023-04-26T14:47:27Z", "lastUpdate": "2023-04-26T14:47:21Z", "measurement_type": "EnergeticParticles", "name": "charging events", "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/FREJA/ESP/fja-sc-charg", "start_date": "1992-11-03T09:33:39Z", "stop_date": "1994-04-10T01:39:40Z", "target": "Earth.Magnetosphere", "xmlid": "fja-sc-charg"}, "is_public": "True", "name": "ESP", "xmlid": "Freja_esp"}, "MFE": {"__spz_name__": "MFE", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Freja_mfe", "att": "auto/Freja_mfe", "desc": "Magnetic Field Experiment
Magnetometer", "fja_mfe_1hz": {"__spz_name__": "1 Hz data", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "fja-mfe-1hz", "att": "auto/fja-mfe-1hz", "dataSource": "JHUPL", "desc": "
Sampling: 1S
Provider: JHUPL", "fja_mfe_alt": {"__spz_name__": "altitude", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "fja_mfe_alt", "dataset": "fja-mfe-1hz", "description": "spacecraft altitude in geographic coordinates", "display_type": "timeseries", "is_public": "True", "name": "altitude", "start_date": "1992-10-24T22:22:10Z", "stop_date": "1995-02-15T18:33:00Z", "units": "km", "xmlid": "fja_mfe_alt"}, "fja_mfe_b": {"__spz_name__": "b_geo", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "fja_mfe_b", "dataset": "fja-mfe-1hz", "description": "magnetic field in geographic coordinates", "display_type": "timeseries", "fja_mfe_b0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "fja_mfe_b(0)", "dataset": "fja-mfe-1hz", "index1": "0", "is_public": "True", "name": "bx", "parameter": "fja_mfe_b", "start_date": "1992-10-24T22:22:10Z", "stop_date": "1995-02-15T18:33:00Z", "xmlid": "fja_mfe_b(0)"}, "fja_mfe_b1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "fja_mfe_b(1)", "dataset": "fja-mfe-1hz", "index1": "1", "is_public": "True", "name": "by", "parameter": "fja_mfe_b", "start_date": "1992-10-24T22:22:10Z", "stop_date": "1995-02-15T18:33:00Z", "xmlid": "fja_mfe_b(1)"}, "fja_mfe_b2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "fja_mfe_b(2)", "dataset": "fja-mfe-1hz", "index1": "2", "is_public": "True", "name": "bz", "parameter": "fja_mfe_b", "start_date": "1992-10-24T22:22:10Z", "stop_date": "1995-02-15T18:33:00Z", "xmlid": "fja_mfe_b(2)"}, "is_public": "True", "name": "b_geo", "size": "3", "start_date": "1992-10-24T22:22:10Z", "stop_date": "1995-02-15T18:33:00Z", "units": "nT", "xmlid": "fja_mfe_b"}, "fja_mfe_lat": {"__spz_name__": "latitude_geo", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "fja_mfe_lat", "dataset": "fja-mfe-1hz", "description": "spacecraft latitude in geographic coordinates", "display_type": "timeseries", "is_public": "True", "name": "latitude_geo", "start_date": "1992-10-24T22:22:10Z", "stop_date": "1995-02-15T18:33:00Z", "units": "deg", "xmlid": "fja_mfe_lat"}, "fja_mfe_lon": {"__spz_name__": "longitude_geo", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "fja_mfe_lon", "dataset": "fja-mfe-1hz", "description": "spacecraft longitude in geographic coordinates", "display_type": "timeseries", "is_public": "True", "name": "longitude_geo", "start_date": "1992-10-24T22:22:10Z", "stop_date": "1995-02-15T18:33:00Z", "units": "deg", "xmlid": "fja_mfe_lon"}, "fja_mfe_pert": {"__spz_name__": "perturbation", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "fja_mfe_pert", "dataset": "fja-mfe-1hz", "description": "DC perturbaton magnetic field, North, East and Parallel components", "display_type": "timeseries", "fja_mfe_pert0": {"__spz_name__": "north", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "fja_mfe_pert(0)", "dataset": "fja-mfe-1hz", "index1": "0", "is_public": "True", "name": "north", "parameter": "fja_mfe_pert", "start_date": "1992-10-24T22:22:10Z", "stop_date": "1995-02-15T18:33:00Z", "xmlid": "fja_mfe_pert(0)"}, "fja_mfe_pert1": {"__spz_name__": "east", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "fja_mfe_pert(1)", "dataset": "fja-mfe-1hz", "index1": "1", "is_public": "True", "name": "east", "parameter": "fja_mfe_pert", "start_date": "1992-10-24T22:22:10Z", "stop_date": "1995-02-15T18:33:00Z", "xmlid": "fja_mfe_pert(1)"}, "fja_mfe_pert2": {"__spz_name__": "parallel", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "fja_mfe_pert(2)", "dataset": "fja-mfe-1hz", "index1": "2", "is_public": "True", "name": "parallel", "parameter": "fja_mfe_pert", "start_date": "1992-10-24T22:22:10Z", "stop_date": "1995-02-15T18:33:00Z", "xmlid": "fja_mfe_pert(2)"}, "is_public": "True", "name": "perturbation", "size": "3", "start_date": "1992-10-24T22:22:10Z", "stop_date": "1995-02-15T18:33:00Z", "units": "nT", "xmlid": "fja_mfe_pert"}, "is_public": "True", "lastModificationDate": "2023-04-26T13:44:03Z", "lastUpdate": "2023-04-26T13:38:45Z", "measurement_type": "MagneticField", "name": "1 Hz data", "processing_level": "Calibrated", "sampling": "1S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/FREJA/MFE/fja-mfe-1hz", "start_date": "1992-10-24T22:22:10Z", "stop_date": "1995-02-15T18:33:00Z", "target": "Earth.Magnetosphere", "xmlid": "fja-mfe-1hz"}, "is_public": "True", "name": "MFE", "xmlid": "Freja_mfe"}, "__spz_name__": "Freja", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Freja", "att": "auto/Freja", "desc": "The Freja magnetospheric satellite
1992-10-06T00:00:00 - 1995-02-15T23:59:59", "is_public": "True", "name": "Freja", "rank": "6", "target": "Earth.Magnetosphere", "xmlid": "Freja"}, "Galileo": {"EPD": {"__spz_name__": "EPD", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Galileo_epd", "att": "auto/Galileo_epd", "desc": "Energetic Particles Detector
EnergeticParticleInstrument", "is_public": "True", "name": "EPD", "realtime_mode": {"__spz_name__": "realtime mode", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "gll-epd-realtime", "gll_epd_ert": {"__spz_name__": "electron channels", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "gll-epd-ert", "att": "auto/gll-epd-ert", "dataSource": "JHU/APL", "desc": "Energetic electrons : omnidirectional
MinSampling: 600S; MaxSampling: 720S
Provider: JHU/APL", "gll_epd_bcnts_e": {"__spz_name__": "e- : B1 : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_bcnts_e", "dataset": "gll-epd-ert", "display_type": "timeseries", "is_public": "True", "name": "e- : B1 : cnts", "start_date": "1996-05-27T00:14:24Z", "stop_date": "2003-09-21T18:15:57Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_bcnts_e"}, "gll_epd_dccounts": {"__spz_name__": "e- : DC[0-3] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_dccounts", "dataset": "gll-epd-ert", "display_type": "timeseries", "gll_epd_dccounts0": {"__spz_name__": "DC0 : > 14 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_epd_dccounts(0)", "dataset": "gll-epd-ert", "index1": "0", "is_public": "True", "name": "DC0 : > 14 MeV", "parameter": "gll_epd_dccounts", "start_date": "1996-05-27T00:14:24Z", "stop_date": "2003-09-21T18:15:57Z", "xmlid": "gll_epd_dccounts(0)"}, "gll_epd_dccounts1": {"__spz_name__": "DC1 : > 30 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_epd_dccounts(1)", "dataset": "gll-epd-ert", "index1": "1", "is_public": "True", "name": "DC1 : > 30 MeV", "parameter": "gll_epd_dccounts", "start_date": "1996-05-27T00:14:24Z", "stop_date": "2003-09-21T18:15:57Z", "xmlid": "gll_epd_dccounts(1)"}, "gll_epd_dccounts2": {"__spz_name__": "DC2 : > 1.8 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_epd_dccounts(2)", "dataset": "gll-epd-ert", "index1": "2", "is_public": "True", "name": "DC2 : > 1.8 MeV", "parameter": "gll_epd_dccounts", "start_date": "1996-05-27T00:14:24Z", "stop_date": "2003-09-21T18:15:57Z", "xmlid": "gll_epd_dccounts(2)"}, "gll_epd_dccounts3": {"__spz_name__": "DC3 : > 10.8 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_epd_dccounts(3)", "dataset": "gll-epd-ert", "index1": "2", "is_public": "True", "name": "DC3 : > 10.8 MeV", "parameter": "gll_epd_dccounts", "start_date": "1996-05-27T00:14:24Z", "stop_date": "2003-09-21T18:15:57Z", "xmlid": "gll_epd_dccounts(3)"}, "is_public": "True", "name": "e- : DC[0-3] : cnts", "size": "4", "start_date": "1996-05-27T00:14:24Z", "stop_date": "2003-09-21T18:15:57Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_dccounts"}, "gll_epd_ecounts": {"__spz_name__": "e- : E[0-3] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_ecounts", "dataset": "gll-epd-ert", "display_type": "spectrogram", "is_public": "True", "name": "e- : E[0-3] : cnts", "start_date": "1996-05-27T00:14:24Z", "stop_date": "2003-09-21T18:15:57Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_ecounts"}, "gll_epd_eflux": {"__spz_name__": "e- : E[0-3] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_eflux", "dataset": "gll-epd-ert", "display_type": "spectrogram", "is_public": "True", "name": "e- : E[0-3] : flux", "start_date": "1996-05-27T00:14:24Z", "stop_date": "2003-09-21T18:15:57Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_eflux"}, "gll_epd_fcounts": {"__spz_name__": "e- : F[0-3] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_fcounts", "dataset": "gll-epd-ert", "display_type": "spectrogram", "is_public": "True", "name": "e- : F[0-3] : cnts", "start_date": "1996-05-27T00:14:24Z", "stop_date": "2003-09-21T18:15:57Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_fcounts"}, "gll_epd_fflux": {"__spz_name__": "e- : F[0-3] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_fflux", "dataset": "gll-epd-ert", "display_type": "spectrogram", "is_public": "True", "name": "e- : F[0-3] : flux", "start_date": "1996-05-27T00:14:24Z", "stop_date": "2003-09-21T18:15:57Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_fflux"}, "gll_epd_l_e": {"__spz_name__": "L-shell", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_l_e", "dataset": "gll-epd-ert", "display_type": "timeseries", "is_public": "True", "name": "L-shell", "start_date": "1996-05-27T00:14:24Z", "stop_date": "2003-09-21T18:15:57Z", "xmlid": "gll_epd_l_e"}, "is_public": "True", "lastModificationDate": "2019-03-13T11:56:47Z", "lastUpdate": "2019-03-13T09:45:40Z", "maxSampling": "720S", "measurement_type": "EnergeticParticles", "name": "electron channels", "processing_level": "Calibrated", "sampling": "600S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Galileo/EPD/gll-epd-ert", "start_date": "1996-05-27T00:14:24Z", "stop_date": "2003-09-21T18:15:57Z", "target": "Jupiter", "xmlid": "gll-epd-ert"}, "gll_epd_rt": {"__spz_name__": "ion channels", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "gll-epd-rt", "att": "auto/gll-epd-rt", "dataSource": "JHU/APL", "desc": "Energetic ions : omnidirectional
MinSampling: 600S; MaxSampling: 720S
Provider: JHU/APL", "gll_epd_acounts": {"__spz_name__": "all : A[0-8] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_acounts", "dataset": "gll-epd-rt", "display_type": "spectrogram", "is_public": "True", "name": "all : A[0-8] : cnts", "start_date": "1996-05-27T00:14:24Z", "stop_date": "2003-09-21T18:15:57Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_acounts"}, "gll_epd_aflux": {"__spz_name__": "all : A[0-8] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_aflux", "dataset": "gll-epd-rt", "display_type": "spectrogram", "is_public": "True", "name": "all : A[0-8] : flux", "start_date": "1996-05-27T00:14:24Z", "stop_date": "2003-09-21T18:15:57Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_aflux"}, "gll_epd_bprotcnts": {"__spz_name__": "h : B[0,2] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_bprotcnts", "dataset": "gll-epd-rt", "display_type": "spectrogram", "is_public": "True", "name": "h : B[0,2] : cnts", "start_date": "1996-05-27T00:14:24Z", "stop_date": "2003-09-21T18:15:57Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_bprotcnts"}, "gll_epd_bprotflux": {"__spz_name__": "h : B[0,2] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_bprotflux", "dataset": "gll-epd-rt", "display_type": "spectrogram", "is_public": "True", "name": "h : B[0,2] : flux", "start_date": "1996-05-27T00:14:24Z", "stop_date": "2003-09-21T18:15:57Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_bprotflux"}, "gll_epd_l": {"__spz_name__": "L-shell", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_l", "dataset": "gll-epd-rt", "display_type": "timeseries", "is_public": "True", "name": "L-shell", "start_date": "1996-05-27T00:14:24Z", "stop_date": "2003-09-21T18:15:57Z", "xmlid": "gll_epd_l"}, "gll_epd_tacounts": {"__spz_name__": "he : TA[1-2] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_tacounts", "dataset": "gll-epd-rt", "display_type": "spectrogram", "is_public": "True", "name": "he : TA[1-2] : cnts", "start_date": "1996-05-27T00:14:24Z", "stop_date": "2003-09-21T18:15:57Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_tacounts"}, "gll_epd_taflux": {"__spz_name__": "he : TA[1-2] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_taflux", "dataset": "gll-epd-rt", "display_type": "spectrogram", "is_public": "True", "name": "he : TA[1-2] : flux", "start_date": "1996-05-27T00:14:24Z", "stop_date": "2003-09-21T18:15:57Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_taflux"}, "gll_epd_tocounts": {"__spz_name__": "o : TO[1-4] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_tocounts", "dataset": "gll-epd-rt", "display_type": "spectrogram", "is_public": "True", "name": "o : TO[1-4] : cnts", "start_date": "1996-05-27T00:14:24Z", "stop_date": "2003-09-21T18:15:57Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_tocounts"}, "gll_epd_toflux": {"__spz_name__": "o : TO[1-4] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_toflux", "dataset": "gll-epd-rt", "display_type": "spectrogram", "is_public": "True", "name": "o : TO[1-4] : flux", "start_date": "1996-05-27T00:14:24Z", "stop_date": "2003-09-21T18:15:57Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_toflux"}, "gll_epd_tpcounts": {"__spz_name__": "h : TP[1-3] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_tpcounts", "dataset": "gll-epd-rt", "display_type": "spectrogram", "is_public": "True", "name": "h : TP[1-3] : cnts", "start_date": "1996-05-27T00:14:24Z", "stop_date": "2003-09-21T18:15:57Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_tpcounts"}, "gll_epd_tpflux": {"__spz_name__": "h : TP[1-3] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_tpflux", "dataset": "gll-epd-rt", "display_type": "spectrogram", "is_public": "True", "name": "h : TP[1-3] : flux", "start_date": "1996-05-27T00:14:24Z", "stop_date": "2003-09-21T18:15:57Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_tpflux"}, "gll_epd_tscounts": {"__spz_name__": "s : TS[1-3] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_tscounts", "dataset": "gll-epd-rt", "display_type": "spectrogram", "is_public": "True", "name": "s : TS[1-3] : cnts", "start_date": "1996-05-27T00:14:24Z", "stop_date": "2003-09-21T18:15:57Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_tscounts"}, "gll_epd_tsflux": {"__spz_name__": "s : TS[1-3] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_tsflux", "dataset": "gll-epd-rt", "display_type": "spectrogram", "is_public": "True", "name": "s : TS[1-3] : flux", "start_date": "1996-05-27T00:14:24Z", "stop_date": "2003-09-21T18:15:57Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_tsflux"}, "is_public": "True", "lastModificationDate": "2019-03-18T15:58:23Z", "lastUpdate": "2019-03-07T15:12:24Z", "maxSampling": "720S", "measurement_type": "EnergeticParticles", "name": "ion channels", "processing_level": "Calibrated", "sampling": "600S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Galileo/EPD/gll-epd-rt", "start_date": "1996-05-27T00:14:24Z", "stop_date": "2003-09-21T18:15:57Z", "target": "Jupiter", "xmlid": "gll-epd-rt"}, "is_public": "True", "name": "realtime mode", "xmlid": "gll-epd-realtime"}, "record_mode___electron_channels": {"__spz_name__": "record mode : electron channels", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "gll-epd-record-el", "gll_epd_amalele": {"__spz_name__": "flyby amalthea", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "gll-epd-amalele", "att": "auto/gll-epd-amalele", "dataSource": "JHU/APL", "desc": "flyby amalthea : electrons
MinSampling: 1S; MaxSampling: 2S
Provider: JHU/APL", "gll_epd_am_dccnts": {"__spz_name__": "e- : DC[0-3] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_am_dccnts", "dataset": "gll-epd-amalele", "display_type": "timeseries", "gll_epd_am_dccnts0": {"__spz_name__": "DC0 : > 14 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_epd_am_dccnts(0)", "dataset": "gll-epd-amalele", "index1": "0", "is_public": "True", "name": "DC0 : > 14 MeV", "parameter": "gll_epd_am_dccnts", "start_date": "2002-11-05T02:44:40Z", "stop_date": "2002-11-05T06:35:08Z", "xmlid": "gll_epd_am_dccnts(0)"}, "gll_epd_am_dccnts1": {"__spz_name__": "DC1 : > 30 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_epd_am_dccnts(1)", "dataset": "gll-epd-amalele", "index1": "1", "is_public": "True", "name": "DC1 : > 30 MeV", "parameter": "gll_epd_am_dccnts", "start_date": "2002-11-05T02:44:40Z", "stop_date": "2002-11-05T06:35:08Z", "xmlid": "gll_epd_am_dccnts(1)"}, "gll_epd_am_dccnts2": {"__spz_name__": "DC2 : > 1.8 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_epd_am_dccnts(2)", "dataset": "gll-epd-amalele", "index1": "2", "is_public": "True", "name": "DC2 : > 1.8 MeV", "parameter": "gll_epd_am_dccnts", "start_date": "2002-11-05T02:44:40Z", "stop_date": "2002-11-05T06:35:08Z", "xmlid": "gll_epd_am_dccnts(2)"}, "gll_epd_am_dccnts3": {"__spz_name__": "DC3 : > 10.8 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_epd_am_dccnts(3)", "dataset": "gll-epd-amalele", "index1": "2", "is_public": "True", "name": "DC3 : > 10.8 MeV", "parameter": "gll_epd_am_dccnts", "start_date": "2002-11-05T02:44:40Z", "stop_date": "2002-11-05T06:35:08Z", "xmlid": "gll_epd_am_dccnts(3)"}, "is_public": "True", "name": "e- : DC[0-3] : cnts", "size": "4", "start_date": "2002-11-05T02:44:40Z", "stop_date": "2002-11-05T06:35:08Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_am_dccnts"}, "gll_epd_am_ecnts": {"__spz_name__": "e- : E[0-3] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_am_ecnts", "dataset": "gll-epd-amalele", "display_type": "spectrogram", "is_public": "True", "name": "e- : E[0-3] : cnts", "start_date": "2002-11-05T02:44:40Z", "stop_date": "2002-11-05T06:35:08Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_am_ecnts"}, "gll_epd_am_eflux": {"__spz_name__": "e- : E[0-3] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_am_eflux", "dataset": "gll-epd-amalele", "display_type": "spectrogram", "is_public": "True", "name": "e- : E[0-3] : flux", "start_date": "2002-11-05T02:44:40Z", "stop_date": "2002-11-05T06:35:08Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_am_eflux"}, "gll_epd_am_fcnts": {"__spz_name__": "e- : F[0-3] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_am_fcnts", "dataset": "gll-epd-amalele", "display_type": "spectrogram", "is_public": "True", "name": "e- : F[0-3] : cnts", "start_date": "2002-11-05T02:44:40Z", "stop_date": "2002-11-05T06:35:08Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_am_fcnts"}, "gll_epd_amel_bcnts": {"__spz_name__": "e- : B1 : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_amel_bcnts", "dataset": "gll-epd-amalele", "display_type": "timeseries", "is_public": "True", "name": "e- : B1 : cnts", "start_date": "2002-11-05T02:44:40Z", "stop_date": "2002-11-05T06:35:08Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_amel_bcnts"}, "gll_epd_l_amel": {"__spz_name__": "L-shell", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_l_amel", "dataset": "gll-epd-amalele", "display_type": "timeseries", "is_public": "True", "name": "L-shell", "start_date": "2002-11-05T02:44:40Z", "stop_date": "2002-11-05T06:35:08Z", "xmlid": "gll_epd_l_amel"}, "gll_epd_motor_amel": {"__spz_name__": "motor position", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_motor_amel", "dataset": "gll-epd-amalele", "display_type": "timeseries", "is_public": "True", "name": "motor position", "start_date": "2002-11-05T02:44:40Z", "stop_date": "2002-11-05T06:35:08Z", "xmlid": "gll_epd_motor_amel"}, "gll_epd_paloc_amel": {"__spz_name__": "local pitch angle", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_paloc_amel", "dataset": "gll-epd-amalele", "display_type": "timeseries", "is_public": "True", "name": "local pitch angle", "start_date": "2002-11-05T02:44:40Z", "stop_date": "2002-11-05T06:35:08Z", "units": "degree", "xmlid": "gll_epd_paloc_amel"}, "is_public": "True", "lastModificationDate": "2019-03-26T14:37:20Z", "lastUpdate": "2019-03-25T10:18:35Z", "maxSampling": "2S", "measurement_type": "EnergeticParticles", "name": "flyby amalthea", "processing_level": "Calibrated", "sampling": "1S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Galileo/EPD/gll-epd-amalele", "start_date": "2002-11-05T02:44:40Z", "stop_date": "2002-11-05T06:35:08Z", "target": "Jupiter", "xmlid": "gll-epd-amalele"}, "gll_epd_callele": {"__spz_name__": "flybys callisto", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "gll-epd-callele", "att": "auto/gll-epd-callele", "dataSource": "JHU/APL", "desc": "flybys callisto : electrons
MinSampling: 1S; MaxSampling: 2S
Provider: JHU/APL", "gll_epd_ca_dccnts": {"__spz_name__": "e- : DC[0-3] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_ca_dccnts", "dataset": "gll-epd-callele", "display_type": "timeseries", "gll_epd_ca_dccnts0": {"__spz_name__": "DC0 : > 14 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_epd_ca_dccnts(0)", "dataset": "gll-epd-callele", "index1": "0", "is_public": "True", "name": "DC0 : > 14 MeV", "parameter": "gll_epd_ca_dccnts", "start_date": "1996-11-04T13:14:51Z", "stop_date": "2001-05-25T11:44:00Z", "xmlid": "gll_epd_ca_dccnts(0)"}, "gll_epd_ca_dccnts1": {"__spz_name__": "DC1 : > 30 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_epd_ca_dccnts(1)", "dataset": "gll-epd-callele", "index1": "1", "is_public": "True", "name": "DC1 : > 30 MeV", "parameter": "gll_epd_ca_dccnts", "start_date": "1996-11-04T13:14:51Z", "stop_date": "2001-05-25T11:44:00Z", "xmlid": "gll_epd_ca_dccnts(1)"}, "gll_epd_ca_dccnts2": {"__spz_name__": "DC2 : > 1.8 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_epd_ca_dccnts(2)", "dataset": "gll-epd-callele", "index1": "2", "is_public": "True", "name": "DC2 : > 1.8 MeV", "parameter": "gll_epd_ca_dccnts", "start_date": "1996-11-04T13:14:51Z", "stop_date": "2001-05-25T11:44:00Z", "xmlid": "gll_epd_ca_dccnts(2)"}, "gll_epd_ca_dccnts3": {"__spz_name__": "DC3 : > 10.8 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_epd_ca_dccnts(3)", "dataset": "gll-epd-callele", "index1": "2", "is_public": "True", "name": "DC3 : > 10.8 MeV", "parameter": "gll_epd_ca_dccnts", "start_date": "1996-11-04T13:14:51Z", "stop_date": "2001-05-25T11:44:00Z", "xmlid": "gll_epd_ca_dccnts(3)"}, "is_public": "True", "name": "e- : DC[0-3] : cnts", "size": "4", "start_date": "1996-11-04T13:14:51Z", "stop_date": "2001-05-25T11:44:00Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_ca_dccnts"}, "gll_epd_ca_ecnts": {"__spz_name__": "e- : E[0-3] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_ca_ecnts", "dataset": "gll-epd-callele", "display_type": "spectrogram", "is_public": "True", "name": "e- : E[0-3] : cnts", "start_date": "1996-11-04T13:14:51Z", "stop_date": "2001-05-25T11:44:00Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_ca_ecnts"}, "gll_epd_ca_eflux": {"__spz_name__": "e- : E[0-3] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_ca_eflux", "dataset": "gll-epd-callele", "display_type": "spectrogram", "is_public": "True", "name": "e- : E[0-3] : flux", "start_date": "1996-11-04T13:14:51Z", "stop_date": "2001-05-25T11:44:00Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_ca_eflux"}, "gll_epd_ca_fcnts": {"__spz_name__": "e- : F[0-3] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_ca_fcnts", "dataset": "gll-epd-callele", "display_type": "spectrogram", "is_public": "True", "name": "e- : F[0-3] : cnts", "start_date": "1996-11-04T13:14:51Z", "stop_date": "2001-05-25T11:44:00Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_ca_fcnts"}, "gll_epd_ca_fflux": {"__spz_name__": "e- : F[0-3] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_ca_fflux", "dataset": "gll-epd-callele", "display_type": "spectrogram", "is_public": "True", "name": "e- : F[0-3] : flux", "start_date": "1996-11-04T13:14:51Z", "stop_date": "2001-05-25T11:44:00Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_ca_fflux"}, "gll_epd_cael_bcnts": {"__spz_name__": "e- : B1 : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_cael_bcnts", "dataset": "gll-epd-callele", "display_type": "timeseries", "is_public": "True", "name": "e- : B1 : cnts", "start_date": "1996-11-04T13:14:51Z", "stop_date": "2001-05-25T11:44:00Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_cael_bcnts"}, "gll_epd_l_cael": {"__spz_name__": "L-shell", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_l_cael", "dataset": "gll-epd-callele", "display_type": "timeseries", "is_public": "True", "name": "L-shell", "start_date": "1996-11-04T13:14:51Z", "stop_date": "2001-05-25T11:44:00Z", "xmlid": "gll_epd_l_cael"}, "gll_epd_motor_cael": {"__spz_name__": "motor position", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_motor_cael", "dataset": "gll-epd-callele", "display_type": "timeseries", "is_public": "True", "name": "motor position", "start_date": "1996-11-04T13:14:51Z", "stop_date": "2001-05-25T11:44:00Z", "xmlid": "gll_epd_motor_cael"}, "gll_epd_paloc_cael": {"__spz_name__": "local pitch angle", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_paloc_cael", "dataset": "gll-epd-callele", "display_type": "timeseries", "is_public": "True", "name": "local pitch angle", "start_date": "1996-11-04T13:14:51Z", "stop_date": "2001-05-25T11:44:00Z", "units": "degree", "xmlid": "gll_epd_paloc_cael"}, "is_public": "True", "lastModificationDate": "2019-03-26T14:36:59Z", "lastUpdate": "2019-03-25T10:18:19Z", "maxSampling": "2S", "measurement_type": "EnergeticParticles", "name": "flybys callisto", "processing_level": "Calibrated", "sampling": "1S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Galileo/EPD/gll-epd-callele", "start_date": "1996-11-04T13:14:51Z", "stop_date": "2001-05-25T11:44:00Z", "target": "Jupiter", "xmlid": "gll-epd-callele"}, "gll_epd_euroele": {"__spz_name__": "flybys europa", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "gll-epd-euroele", "att": "auto/gll-epd-euroele", "dataSource": "JHU/APL", "desc": "flybys europa : electrons
MinSampling: 1S; MaxSampling: 2S
Provider: JHU/APL", "gll_epd_eu_dccnts": {"__spz_name__": "e- : DC[0-3] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_eu_dccnts", "dataset": "gll-epd-euroele", "display_type": "timeseries", "gll_epd_eu_dccnts0": {"__spz_name__": "DC0 : > 14 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_epd_eu_dccnts(0)", "dataset": "gll-epd-euroele", "index1": "0", "is_public": "True", "name": "DC0 : > 14 MeV", "parameter": "gll_epd_eu_dccnts", "start_date": "1996-12-19T06:33:25Z", "stop_date": "2000-01-03T18:29:12Z", "xmlid": "gll_epd_eu_dccnts(0)"}, "gll_epd_eu_dccnts1": {"__spz_name__": "DC1 : > 30 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_epd_eu_dccnts(1)", "dataset": "gll-epd-euroele", "index1": "1", "is_public": "True", "name": "DC1 : > 30 MeV", "parameter": "gll_epd_eu_dccnts", "start_date": "1996-12-19T06:33:25Z", "stop_date": "2000-01-03T18:29:12Z", "xmlid": "gll_epd_eu_dccnts(1)"}, "gll_epd_eu_dccnts2": {"__spz_name__": "DC2 : > 1.8 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_epd_eu_dccnts(2)", "dataset": "gll-epd-euroele", "index1": "2", "is_public": "True", "name": "DC2 : > 1.8 MeV", "parameter": "gll_epd_eu_dccnts", "start_date": "1996-12-19T06:33:25Z", "stop_date": "2000-01-03T18:29:12Z", "xmlid": "gll_epd_eu_dccnts(2)"}, "gll_epd_eu_dccnts3": {"__spz_name__": "DC3 : > 10.8 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_epd_eu_dccnts(3)", "dataset": "gll-epd-euroele", "index1": "2", "is_public": "True", "name": "DC3 : > 10.8 MeV", "parameter": "gll_epd_eu_dccnts", "start_date": "1996-12-19T06:33:25Z", "stop_date": "2000-01-03T18:29:12Z", "xmlid": "gll_epd_eu_dccnts(3)"}, "is_public": "True", "name": "e- : DC[0-3] : cnts", "size": "4", "start_date": "1996-12-19T06:33:25Z", "stop_date": "2000-01-03T18:29:12Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_eu_dccnts"}, "gll_epd_eu_ecnts": {"__spz_name__": "e- : E[0-3] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_eu_ecnts", "dataset": "gll-epd-euroele", "display_type": "spectrogram", "is_public": "True", "name": "e- : E[0-3] : cnts", "start_date": "1996-12-19T06:33:25Z", "stop_date": "2000-01-03T18:29:12Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_eu_ecnts"}, "gll_epd_eu_eflux": {"__spz_name__": "e- : E[0-3] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_eu_eflux", "dataset": "gll-epd-euroele", "display_type": "spectrogram", "is_public": "True", "name": "e- : E[0-3] : flux", "start_date": "1996-12-19T06:33:25Z", "stop_date": "2000-01-03T18:29:12Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_eu_eflux"}, "gll_epd_eu_fcnts": {"__spz_name__": "e- : F[0-3] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_eu_fcnts", "dataset": "gll-epd-euroele", "display_type": "spectrogram", "is_public": "True", "name": "e- : F[0-3] : cnts", "start_date": "1996-12-19T06:33:25Z", "stop_date": "2000-01-03T18:29:12Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_eu_fcnts"}, "gll_epd_eu_fflux": {"__spz_name__": "e- : F[0-3] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_eu_fflux", "dataset": "gll-epd-euroele", "display_type": "spectrogram", "is_public": "True", "name": "e- : F[0-3] : flux", "start_date": "1996-12-19T06:33:25Z", "stop_date": "2000-01-03T18:29:12Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_eu_fflux"}, "gll_epd_euel_bcnts": {"__spz_name__": "e- : B1 : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_euel_bcnts", "dataset": "gll-epd-euroele", "display_type": "timeseries", "is_public": "True", "name": "e- : B1 : cnts", "start_date": "1996-12-19T06:33:25Z", "stop_date": "2000-01-03T18:29:12Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_euel_bcnts"}, "gll_epd_l_euel": {"__spz_name__": "L-shell", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_l_euel", "dataset": "gll-epd-euroele", "display_type": "timeseries", "is_public": "True", "name": "L-shell", "start_date": "1996-12-19T06:33:25Z", "stop_date": "2000-01-03T18:29:12Z", "xmlid": "gll_epd_l_euel"}, "gll_epd_motor_euel": {"__spz_name__": "motor position", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_motor_euel", "dataset": "gll-epd-euroele", "display_type": "timeseries", "is_public": "True", "name": "motor position", "start_date": "1996-12-19T06:33:25Z", "stop_date": "2000-01-03T18:29:12Z", "xmlid": "gll_epd_motor_euel"}, "gll_epd_paloc_euel": {"__spz_name__": "local pitch angle", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_paloc_euel", "dataset": "gll-epd-euroele", "display_type": "timeseries", "is_public": "True", "name": "local pitch angle", "start_date": "1996-12-19T06:33:25Z", "stop_date": "2000-01-03T18:29:12Z", "units": "degree", "xmlid": "gll_epd_paloc_euel"}, "is_public": "True", "lastModificationDate": "2019-03-26T14:37:07Z", "lastUpdate": "2019-03-25T10:17:58Z", "maxSampling": "2S", "measurement_type": "EnergeticParticles", "name": "flybys europa", "processing_level": "Calibrated", "sampling": "1S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Galileo/EPD/gll-epd-euroele", "start_date": "1996-12-19T06:33:25Z", "stop_date": "2000-01-03T18:29:12Z", "target": "Jupiter", "xmlid": "gll-epd-euroele"}, "gll_epd_ganyele": {"__spz_name__": "flybys ganymede", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "gll-epd-ganyele", "att": "auto/gll-epd-ganyele", "dataSource": "JHU/APL", "desc": "flybys ganymede : electrons
MinSampling: 1S; MaxSampling: 2S
Provider: JHU/APL", "gll_epd_ga_dccnts": {"__spz_name__": "e- : DC[0-3] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_ga_dccnts", "dataset": "gll-epd-ganyele", "display_type": "timeseries", "gll_epd_ga_dccnts0": {"__spz_name__": "DC0 : > 14 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_epd_ga_dccnts(0)", "dataset": "gll-epd-ganyele", "index1": "0", "is_public": "True", "name": "DC0 : > 14 MeV", "parameter": "gll_epd_ga_dccnts", "start_date": "1996-09-06T18:32:47Z", "stop_date": "2000-12-28T08:54:17Z", "xmlid": "gll_epd_ga_dccnts(0)"}, "gll_epd_ga_dccnts1": {"__spz_name__": "DC1 : > 30 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_epd_ga_dccnts(1)", "dataset": "gll-epd-ganyele", "index1": "1", "is_public": "True", "name": "DC1 : > 30 MeV", "parameter": "gll_epd_ga_dccnts", "start_date": "1996-09-06T18:32:47Z", "stop_date": "2000-12-28T08:54:17Z", "xmlid": "gll_epd_ga_dccnts(1)"}, "gll_epd_ga_dccnts2": {"__spz_name__": "DC2 : > 1.8 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_epd_ga_dccnts(2)", "dataset": "gll-epd-ganyele", "index1": "2", "is_public": "True", "name": "DC2 : > 1.8 MeV", "parameter": "gll_epd_ga_dccnts", "start_date": "1996-09-06T18:32:47Z", "stop_date": "2000-12-28T08:54:17Z", "xmlid": "gll_epd_ga_dccnts(2)"}, "gll_epd_ga_dccnts3": {"__spz_name__": "DC3 : > 10.8 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_epd_ga_dccnts(3)", "dataset": "gll-epd-ganyele", "index1": "2", "is_public": "True", "name": "DC3 : > 10.8 MeV", "parameter": "gll_epd_ga_dccnts", "start_date": "1996-09-06T18:32:47Z", "stop_date": "2000-12-28T08:54:17Z", "xmlid": "gll_epd_ga_dccnts(3)"}, "is_public": "True", "name": "e- : DC[0-3] : cnts", "size": "4", "start_date": "1996-09-06T18:32:47Z", "stop_date": "2000-12-28T08:54:17Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_ga_dccnts"}, "gll_epd_ga_ecnts": {"__spz_name__": "e- : E[0-3] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_ga_ecnts", "dataset": "gll-epd-ganyele", "display_type": "spectrogram", "is_public": "True", "name": "e- : E[0-3] : cnts", "start_date": "1996-09-06T18:32:47Z", "stop_date": "2000-12-28T08:54:17Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_ga_ecnts"}, "gll_epd_ga_eflux": {"__spz_name__": "e- : E[0-3] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_ga_eflux", "dataset": "gll-epd-ganyele", "display_type": "spectrogram", "is_public": "True", "name": "e- : E[0-3] : flux", "start_date": "1996-09-06T18:32:47Z", "stop_date": "2000-12-28T08:54:17Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_ga_eflux"}, "gll_epd_ga_fcnts": {"__spz_name__": "e- : F[0-3] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_ga_fcnts", "dataset": "gll-epd-ganyele", "display_type": "spectrogram", "is_public": "True", "name": "e- : F[0-3] : cnts", "start_date": "1996-09-06T18:32:47Z", "stop_date": "2000-12-28T08:54:17Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_ga_fcnts"}, "gll_epd_ga_fflux": {"__spz_name__": "e- : F[0-3] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_ga_fflux", "dataset": "gll-epd-ganyele", "display_type": "spectrogram", "is_public": "True", "name": "e- : F[0-3] : flux", "start_date": "1996-09-06T18:32:47Z", "stop_date": "2000-12-28T08:54:17Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_ga_fflux"}, "gll_epd_gael_bcnts": {"__spz_name__": "e- : B1 : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_gael_bcnts", "dataset": "gll-epd-ganyele", "display_type": "timeseries", "is_public": "True", "name": "e- : B1 : cnts", "start_date": "1996-09-06T18:32:47Z", "stop_date": "2000-12-28T08:54:17Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_gael_bcnts"}, "gll_epd_l_gael": {"__spz_name__": "L-shell", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_l_gael", "dataset": "gll-epd-ganyele", "display_type": "timeseries", "is_public": "True", "name": "L-shell", "start_date": "1996-09-06T18:32:47Z", "stop_date": "2000-12-28T08:54:17Z", "xmlid": "gll_epd_l_gael"}, "gll_epd_motor_gael": {"__spz_name__": "motor position", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_motor_gael", "dataset": "gll-epd-ganyele", "display_type": "timeseries", "is_public": "True", "name": "motor position", "start_date": "1996-09-06T18:32:47Z", "stop_date": "2000-12-28T08:54:17Z", "xmlid": "gll_epd_motor_gael"}, "gll_epd_paloc_gael": {"__spz_name__": "local pitch angle", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_paloc_gael", "dataset": "gll-epd-ganyele", "display_type": "timeseries", "is_public": "True", "name": "local pitch angle", "start_date": "1996-09-06T18:32:47Z", "stop_date": "2000-12-28T08:54:17Z", "units": "degree", "xmlid": "gll_epd_paloc_gael"}, "is_public": "True", "lastModificationDate": "2019-03-26T14:36:47Z", "lastUpdate": "2019-03-25T10:18:09Z", "maxSampling": "2S", "measurement_type": "EnergeticParticles", "name": "flybys ganymede", "processing_level": "Calibrated", "sampling": "1S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Galileo/EPD/gll-epd-ganyele", "start_date": "1996-09-06T18:32:47Z", "stop_date": "2000-12-28T08:54:17Z", "target": "Jupiter", "xmlid": "gll-epd-ganyele"}, "gll_epd_ioele": {"__spz_name__": "flybys io", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "gll-epd-ioele", "att": "auto/gll-epd-ioele", "dataSource": "JHU/APL", "desc": "flybys io : electrons
MinSampling: 1S; MaxSampling: 2S
Provider: JHU/APL", "gll_epd_io_dccnts": {"__spz_name__": "e- : DC[0-3] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_io_dccnts", "dataset": "gll-epd-ioele", "display_type": "timeseries", "gll_epd_io_dccnts0": {"__spz_name__": "DC0 : > 14 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_epd_io_dccnts(0)", "dataset": "gll-epd-ioele", "index1": "0", "is_public": "True", "name": "DC0 : > 14 MeV", "parameter": "gll_epd_io_dccnts", "start_date": "1995-12-07T15:20:57Z", "stop_date": "2001-08-06T05:28:59Z", "xmlid": "gll_epd_io_dccnts(0)"}, "gll_epd_io_dccnts1": {"__spz_name__": "DC1 : > 30 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_epd_io_dccnts(1)", "dataset": "gll-epd-ioele", "index1": "1", "is_public": "True", "name": "DC1 : > 30 MeV", "parameter": "gll_epd_io_dccnts", "start_date": "1995-12-07T15:20:57Z", "stop_date": "2001-08-06T05:28:59Z", "xmlid": "gll_epd_io_dccnts(1)"}, "gll_epd_io_dccnts2": {"__spz_name__": "DC2 : > 1.8 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_epd_io_dccnts(2)", "dataset": "gll-epd-ioele", "index1": "2", "is_public": "True", "name": "DC2 : > 1.8 MeV", "parameter": "gll_epd_io_dccnts", "start_date": "1995-12-07T15:20:57Z", "stop_date": "2001-08-06T05:28:59Z", "xmlid": "gll_epd_io_dccnts(2)"}, "gll_epd_io_dccnts3": {"__spz_name__": "DC3 : > 10.8 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_epd_io_dccnts(3)", "dataset": "gll-epd-ioele", "index1": "2", "is_public": "True", "name": "DC3 : > 10.8 MeV", "parameter": "gll_epd_io_dccnts", "start_date": "1995-12-07T15:20:57Z", "stop_date": "2001-08-06T05:28:59Z", "xmlid": "gll_epd_io_dccnts(3)"}, "is_public": "True", "name": "e- : DC[0-3] : cnts", "size": "4", "start_date": "1995-12-07T15:20:57Z", "stop_date": "2001-08-06T05:28:59Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_io_dccnts"}, "gll_epd_io_ecnts": {"__spz_name__": "e- : E[0-3] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_io_ecnts", "dataset": "gll-epd-ioele", "display_type": "spectrogram", "is_public": "True", "name": "e- : E[0-3] : cnts", "start_date": "1995-12-07T15:20:57Z", "stop_date": "2001-08-06T05:28:59Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_io_ecnts"}, "gll_epd_io_fcnts": {"__spz_name__": "e- : F[0-3] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_io_fcnts", "dataset": "gll-epd-ioele", "display_type": "spectrogram", "is_public": "True", "name": "e- : F[0-3] : cnts", "start_date": "1995-12-07T15:20:57Z", "stop_date": "2001-08-06T05:28:59Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_io_fcnts"}, "gll_epd_ioel_bcnts": {"__spz_name__": "e- : B1 : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_ioel_bcnts", "dataset": "gll-epd-ioele", "display_type": "timeseries", "is_public": "True", "name": "e- : B1 : cnts", "start_date": "1995-12-07T15:20:57Z", "stop_date": "2001-08-06T05:28:59Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_ioel_bcnts"}, "gll_epd_l_ioel": {"__spz_name__": "L-shell", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_l_ioel", "dataset": "gll-epd-ioele", "display_type": "timeseries", "is_public": "True", "name": "L-shell", "start_date": "1995-12-07T15:20:57Z", "stop_date": "2001-08-06T05:28:59Z", "xmlid": "gll_epd_l_ioel"}, "gll_epd_motor_ioel": {"__spz_name__": "motor position", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_motor_ioel", "dataset": "gll-epd-ioele", "display_type": "timeseries", "is_public": "True", "name": "motor position", "start_date": "1995-12-07T15:20:57Z", "stop_date": "2001-08-06T05:28:59Z", "xmlid": "gll_epd_motor_ioel"}, "gll_epd_paloc_ioel": {"__spz_name__": "local pitch angle", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_paloc_ioel", "dataset": "gll-epd-ioele", "display_type": "timeseries", "is_public": "True", "name": "local pitch angle", "start_date": "1995-12-07T15:20:57Z", "stop_date": "2001-08-06T05:28:59Z", "units": "degree", "xmlid": "gll_epd_paloc_ioel"}, "is_public": "True", "lastModificationDate": "2019-03-26T14:36:24Z", "lastUpdate": "2019-03-25T10:17:27Z", "maxSampling": "2S", "measurement_type": "EnergeticParticles", "name": "flybys io", "processing_level": "Calibrated", "sampling": "1S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Galileo/EPD/gll-epd-ioele", "start_date": "1995-12-07T15:20:57Z", "stop_date": "2001-08-06T05:28:59Z", "target": "Jupiter", "xmlid": "gll-epd-ioele"}, "gll_epd_survele": {"__spz_name__": "survey", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "gll-epd-survele", "att": "auto/gll-epd-survele", "dataSource": "JHU/APL", "desc": "survey : electrons
MinSampling: 1S; MaxSampling: 2S
Provider: JHU/APL", "gll_epd_hr_dccnts": {"__spz_name__": "e- : DC[0-3] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_hr_dccnts", "dataset": "gll-epd-survele", "display_type": "timeseries", "gll_epd_hr_dccnts0": {"__spz_name__": "DC0 : > 14 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_epd_hr_dccnts(0)", "dataset": "gll-epd-survele", "index1": "0", "is_public": "True", "name": "DC0 : > 14 MeV", "parameter": "gll_epd_hr_dccnts", "start_date": "1996-09-11T02:38:23Z", "stop_date": "2001-10-16T01:53:04Z", "xmlid": "gll_epd_hr_dccnts(0)"}, "gll_epd_hr_dccnts1": {"__spz_name__": "DC1 : > 30 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_epd_hr_dccnts(1)", "dataset": "gll-epd-survele", "index1": "1", "is_public": "True", "name": "DC1 : > 30 MeV", "parameter": "gll_epd_hr_dccnts", "start_date": "1996-09-11T02:38:23Z", "stop_date": "2001-10-16T01:53:04Z", "xmlid": "gll_epd_hr_dccnts(1)"}, "gll_epd_hr_dccnts2": {"__spz_name__": "DC2 : > 1.8 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_epd_hr_dccnts(2)", "dataset": "gll-epd-survele", "index1": "2", "is_public": "True", "name": "DC2 : > 1.8 MeV", "parameter": "gll_epd_hr_dccnts", "start_date": "1996-09-11T02:38:23Z", "stop_date": "2001-10-16T01:53:04Z", "xmlid": "gll_epd_hr_dccnts(2)"}, "gll_epd_hr_dccnts3": {"__spz_name__": "DC3 : > 10.8 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_epd_hr_dccnts(3)", "dataset": "gll-epd-survele", "index1": "2", "is_public": "True", "name": "DC3 : > 10.8 MeV", "parameter": "gll_epd_hr_dccnts", "start_date": "1996-09-11T02:38:23Z", "stop_date": "2001-10-16T01:53:04Z", "xmlid": "gll_epd_hr_dccnts(3)"}, "is_public": "True", "name": "e- : DC[0-3] : cnts", "size": "4", "start_date": "1996-09-11T02:38:23Z", "stop_date": "2001-10-16T01:53:04Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_hr_dccnts"}, "gll_epd_hr_ecnts": {"__spz_name__": "e- : E[0-3] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_hr_ecnts", "dataset": "gll-epd-survele", "display_type": "spectrogram", "is_public": "True", "name": "e- : E[0-3] : cnts", "start_date": "1996-09-11T02:38:23Z", "stop_date": "2001-10-16T01:53:04Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_hr_ecnts"}, "gll_epd_hr_eflux": {"__spz_name__": "e- : E[0-3] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_hr_eflux", "dataset": "gll-epd-survele", "display_type": "spectrogram", "is_public": "True", "name": "e- : E[0-3] : flux", "start_date": "1996-09-11T02:38:23Z", "stop_date": "2001-10-16T01:53:04Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_hr_eflux"}, "gll_epd_hr_fcnts": {"__spz_name__": "e- : F[0-3] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_hr_fcnts", "dataset": "gll-epd-survele", "display_type": "spectrogram", "is_public": "True", "name": "e- : F[0-3] : cnts", "start_date": "1996-09-11T02:38:23Z", "stop_date": "2001-10-16T01:53:04Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_hr_fcnts"}, "gll_epd_hrel_bcnts": {"__spz_name__": "e- : B1 : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_hrel_bcnts", "dataset": "gll-epd-survele", "display_type": "timeseries", "is_public": "True", "name": "e- : B1 : cnts", "start_date": "1996-09-11T02:38:23Z", "stop_date": "2001-10-16T01:53:04Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_hrel_bcnts"}, "gll_epd_l_hrel": {"__spz_name__": "L-shell", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_l_hrel", "dataset": "gll-epd-survele", "display_type": "timeseries", "is_public": "True", "name": "L-shell", "start_date": "1996-09-11T02:38:23Z", "stop_date": "2001-10-16T01:53:04Z", "xmlid": "gll_epd_l_hrel"}, "gll_epd_motor_hrel": {"__spz_name__": "motor position", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_motor_hrel", "dataset": "gll-epd-survele", "display_type": "timeseries", "is_public": "True", "name": "motor position", "start_date": "1996-09-11T02:38:23Z", "stop_date": "2001-10-16T01:53:04Z", "xmlid": "gll_epd_motor_hrel"}, "gll_epd_paloc_hrel": {"__spz_name__": "local pitch angle", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_paloc_hrel", "dataset": "gll-epd-survele", "display_type": "timeseries", "is_public": "True", "name": "local pitch angle", "start_date": "1996-09-11T02:38:23Z", "stop_date": "2001-10-16T01:53:04Z", "units": "degree", "xmlid": "gll_epd_paloc_hrel"}, "is_public": "True", "lastModificationDate": "2019-03-26T14:31:10Z", "lastUpdate": "2019-03-25T11:25:27Z", "maxSampling": "2S", "measurement_type": "EnergeticParticles", "name": "survey", "processing_level": "Calibrated", "sampling": "1S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Galileo/EPD/gll-epd-survele", "start_date": "1996-09-11T02:38:23Z", "stop_date": "2001-10-16T01:53:04Z", "target": "Jupiter", "xmlid": "gll-epd-survele"}, "is_public": "True", "name": "record mode : electron channels", "xmlid": "gll-epd-record-el"}, "record_mode___ion_channels": {"__spz_name__": "record mode : ion channels", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "gll-epd-record-ion", "gll_epd_amalion": {"__spz_name__": "flyby amalthea", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "gll-epd-amalion", "att": "auto/gll-epd-amalion", "dataSource": "JHU/APL", "desc": "flyby amalthea : ions
MinSampling: 600S; MaxSampling: 720S
Provider: JHU/APL", "gll_epd_am_acnts": {"__spz_name__": "all : A[0-8] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_am_acnts", "dataset": "gll-epd-amalion", "display_type": "spectrogram", "is_public": "True", "name": "all : A[0-8] : cnts", "start_date": "2002-11-05T02:44:40Z", "stop_date": "2002-11-05T06:35:08Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_am_acnts"}, "gll_epd_am_aflux": {"__spz_name__": "all : A[0-8] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_am_aflux", "dataset": "gll-epd-amalion", "display_type": "spectrogram", "is_public": "True", "name": "all : A[0-8] : flux", "start_date": "2002-11-05T02:44:40Z", "stop_date": "2002-11-05T06:35:08Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_am_aflux"}, "gll_epd_am_cacnts": {"__spz_name__": "he: CA[1,3,4] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_am_cacnts", "dataset": "gll-epd-amalion", "display_type": "spectrogram", "is_public": "True", "name": "he: CA[1,3,4] : cnts", "start_date": "2002-11-05T02:44:40Z", "stop_date": "2002-11-05T06:35:08Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_am_cacnts"}, "gll_epd_am_caflux": {"__spz_name__": "he : CA[1,3,4] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_am_caflux", "dataset": "gll-epd-amalion", "display_type": "spectrogram", "is_public": "True", "name": "he : CA[1,3,4] : flux", "start_date": "2002-11-05T02:44:40Z", "stop_date": "2002-11-05T06:35:08Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_am_caflux"}, "gll_epd_am_chcnts": {"__spz_name__": "s: CH[3-5]: cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_am_chcnts", "dataset": "gll-epd-amalion", "display_type": "spectrogram", "is_public": "True", "name": "s: CH[3-5]: cnts", "start_date": "2002-11-05T02:44:40Z", "stop_date": "2002-11-05T06:35:08Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_am_chcnts"}, "gll_epd_am_chflux": {"__spz_name__": "s : CH[3-5] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_am_chflux", "dataset": "gll-epd-amalion", "display_type": "spectrogram", "is_public": "True", "name": "s : CH[3-5] : flux", "start_date": "2002-11-05T02:44:40Z", "stop_date": "2002-11-05T06:35:08Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_am_chflux"}, "gll_epd_am_cmcnts": {"__spz_name__": "o: CM[1,3,4] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_am_cmcnts", "dataset": "gll-epd-amalion", "display_type": "spectrogram", "is_public": "True", "name": "o: CM[1,3,4] : cnts", "start_date": "2002-11-05T02:44:40Z", "stop_date": "2002-11-05T06:35:08Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_am_cmcnts"}, "gll_epd_am_cmflux": {"__spz_name__": "o : CM[1,3,4] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_am_cmflux", "dataset": "gll-epd-amalion", "display_type": "spectrogram", "is_public": "True", "name": "o : CM[1,3,4] : flux", "start_date": "2002-11-05T02:44:40Z", "stop_date": "2002-11-05T06:35:08Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_am_cmflux"}, "gll_epd_am_cncnts": {"__spz_name__": "ions: CN[0-1] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_am_cncnts", "dataset": "gll-epd-amalion", "display_type": "spectrogram", "is_public": "True", "name": "ions: CN[0-1] : cnts", "start_date": "2002-11-05T02:44:40Z", "stop_date": "2002-11-05T06:35:08Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_am_cncnts"}, "gll_epd_am_cnflux": {"__spz_name__": "ions : CN[0-1] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_am_cnflux", "dataset": "gll-epd-amalion", "display_type": "spectrogram", "is_public": "True", "name": "ions : CN[0-1] : flux", "start_date": "2002-11-05T02:44:40Z", "stop_date": "2002-11-05T06:35:08Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_am_cnflux"}, "gll_epd_am_tacnts": {"__spz_name__": "he : TA[1-2] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_am_tacnts", "dataset": "gll-epd-amalion", "display_type": "spectrogram", "is_public": "True", "name": "he : TA[1-2] : cnts", "start_date": "2002-11-05T02:44:40Z", "stop_date": "2002-11-05T06:35:08Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_am_tacnts"}, "gll_epd_am_taflux": {"__spz_name__": "he : TA[1-2] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_am_taflux", "dataset": "gll-epd-amalion", "display_type": "spectrogram", "is_public": "True", "name": "he : TA[1-2] : flux", "start_date": "2002-11-05T02:44:40Z", "stop_date": "2002-11-05T06:35:08Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_am_taflux"}, "gll_epd_am_tocnts": {"__spz_name__": "o : TO[1-4] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_am_tocnts", "dataset": "gll-epd-amalion", "display_type": "spectrogram", "is_public": "True", "name": "o : TO[1-4] : cnts", "start_date": "2002-11-05T02:44:40Z", "stop_date": "2002-11-05T06:35:08Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_am_tocnts"}, "gll_epd_am_toflux": {"__spz_name__": "o : TO[1-4] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_am_toflux", "dataset": "gll-epd-amalion", "display_type": "spectrogram", "is_public": "True", "name": "o : TO[1-4] : flux", "start_date": "2002-11-05T02:44:40Z", "stop_date": "2002-11-05T06:35:08Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_am_toflux"}, "gll_epd_am_tpcnts": {"__spz_name__": "h : TP[1-3] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_am_tpcnts", "dataset": "gll-epd-amalion", "display_type": "spectrogram", "is_public": "True", "name": "h : TP[1-3] : cnts", "start_date": "2002-11-05T02:44:40Z", "stop_date": "2002-11-05T06:35:08Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_am_tpcnts"}, "gll_epd_am_tpflux": {"__spz_name__": "h : TP[1-3] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_am_tpflux", "dataset": "gll-epd-amalion", "display_type": "spectrogram", "is_public": "True", "name": "h : TP[1-3] : flux", "start_date": "2002-11-05T02:44:40Z", "stop_date": "2002-11-05T06:35:08Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_am_tpflux"}, "gll_epd_am_tscnts": {"__spz_name__": "s : TS[1-3] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_am_tscnts", "dataset": "gll-epd-amalion", "display_type": "spectrogram", "is_public": "True", "name": "s : TS[1-3] : cnts", "start_date": "2002-11-05T02:44:40Z", "stop_date": "2002-11-05T06:35:08Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_am_tscnts"}, "gll_epd_am_tsflux": {"__spz_name__": "s : TS[1-3] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_am_tsflux", "dataset": "gll-epd-amalion", "display_type": "spectrogram", "is_public": "True", "name": "s : TS[1-3] : flux", "start_date": "2002-11-05T02:44:40Z", "stop_date": "2002-11-05T06:35:08Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_am_tsflux"}, "gll_epd_amion_bcnts": {"__spz_name__": "h : B[0,2] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_amion_bcnts", "dataset": "gll-epd-amalion", "display_type": "spectrogram", "is_public": "True", "name": "h : B[0,2] : cnts", "start_date": "2002-11-05T02:44:40Z", "stop_date": "2002-11-05T06:35:08Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_amion_bcnts"}, "gll_epd_amion_bflux": {"__spz_name__": "h : B[0,2] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_amion_bflux", "dataset": "gll-epd-amalion", "display_type": "spectrogram", "is_public": "True", "name": "h : B[0,2] : flux", "start_date": "2002-11-05T02:44:40Z", "stop_date": "2002-11-05T06:35:08Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_amion_bflux"}, "gll_epd_l_amion": {"__spz_name__": "L-shell", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_l_amion", "dataset": "gll-epd-amalion", "display_type": "timeseries", "is_public": "True", "name": "L-shell", "start_date": "2002-11-05T02:44:40Z", "stop_date": "2002-11-05T06:35:08Z", "xmlid": "gll_epd_l_amion"}, "gll_epd_motor_amion": {"__spz_name__": "motor position", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_motor_amion", "dataset": "gll-epd-amalion", "display_type": "timeseries", "is_public": "True", "name": "motor position", "start_date": "2002-11-05T02:44:40Z", "stop_date": "2002-11-05T06:35:08Z", "xmlid": "gll_epd_motor_amion"}, "gll_epd_paloc_amion": {"__spz_name__": "local pitch angle", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_paloc_amion", "dataset": "gll-epd-amalion", "display_type": "timeseries", "is_public": "True", "name": "local pitch angle", "start_date": "2002-11-05T02:44:40Z", "stop_date": "2002-11-05T06:35:08Z", "units": "degree", "xmlid": "gll_epd_paloc_amion"}, "is_public": "True", "lastModificationDate": "2019-04-02T11:36:27Z", "lastUpdate": "2019-03-29T13:28:02Z", "maxSampling": "720S", "measurement_type": "EnergeticParticles", "name": "flyby amalthea", "processing_level": "Calibrated", "sampling": "600S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Galileo/EPD/gll-epd-amalion", "start_date": "2002-11-05T02:44:40Z", "stop_date": "2002-11-05T06:35:08Z", "target": "Jupiter", "xmlid": "gll-epd-amalion"}, "gll_epd_callion": {"__spz_name__": "flybys callisto", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "gll-epd-callion", "att": "auto/gll-epd-callion", "dataSource": "JHU/APL", "desc": "flybys callisto : ions
MinSampling: 600S; MaxSampling: 720S
Provider: JHU/APL", "gll_epd_ca_acnts": {"__spz_name__": "all : A[0-8] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_ca_acnts", "dataset": "gll-epd-callion", "display_type": "spectrogram", "is_public": "True", "name": "all : A[0-8] : cnts", "start_date": "1996-11-04T13:14:51Z", "stop_date": "2001-05-25T11:44:00Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_ca_acnts"}, "gll_epd_ca_aflux": {"__spz_name__": "all : A[0-8] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_ca_aflux", "dataset": "gll-epd-callion", "display_type": "spectrogram", "is_public": "True", "name": "all : A[0-8] : flux", "start_date": "1996-11-04T13:14:51Z", "stop_date": "2001-05-25T11:44:00Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_ca_aflux"}, "gll_epd_ca_cacnts": {"__spz_name__": "he: CA[1,3,4] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_ca_cacnts", "dataset": "gll-epd-callion", "display_type": "spectrogram", "is_public": "True", "name": "he: CA[1,3,4] : cnts", "start_date": "1996-11-04T13:14:51Z", "stop_date": "2001-05-25T11:44:00Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_ca_cacnts"}, "gll_epd_ca_caflux": {"__spz_name__": "he : CA[1,3,4] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_ca_caflux", "dataset": "gll-epd-callion", "display_type": "spectrogram", "is_public": "True", "name": "he : CA[1,3,4] : flux", "start_date": "1996-11-04T13:14:51Z", "stop_date": "2001-05-25T11:44:00Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_ca_caflux"}, "gll_epd_ca_chcnts": {"__spz_name__": "s: CH[3-5]: cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_ca_chcnts", "dataset": "gll-epd-callion", "display_type": "spectrogram", "is_public": "True", "name": "s: CH[3-5]: cnts", "start_date": "1996-11-04T13:14:51Z", "stop_date": "2001-05-25T11:44:00Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_ca_chcnts"}, "gll_epd_ca_chflux": {"__spz_name__": "s : CH[3-5] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_ca_chflux", "dataset": "gll-epd-callion", "display_type": "spectrogram", "is_public": "True", "name": "s : CH[3-5] : flux", "start_date": "1996-11-04T13:14:51Z", "stop_date": "2001-05-25T11:44:00Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_ca_chflux"}, "gll_epd_ca_cmcnts": {"__spz_name__": "o: CM[1,3,4] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_ca_cmcnts", "dataset": "gll-epd-callion", "display_type": "spectrogram", "is_public": "True", "name": "o: CM[1,3,4] : cnts", "start_date": "1996-11-04T13:14:51Z", "stop_date": "2001-05-25T11:44:00Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_ca_cmcnts"}, "gll_epd_ca_cmflux": {"__spz_name__": "o : CM[1,3,4] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_ca_cmflux", "dataset": "gll-epd-callion", "display_type": "spectrogram", "is_public": "True", "name": "o : CM[1,3,4] : flux", "start_date": "1996-11-04T13:14:51Z", "stop_date": "2001-05-25T11:44:00Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_ca_cmflux"}, "gll_epd_ca_cncnts": {"__spz_name__": "ions: CN[0-1] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_ca_cncnts", "dataset": "gll-epd-callion", "display_type": "spectrogram", "is_public": "True", "name": "ions: CN[0-1] : cnts", "start_date": "1996-11-04T13:14:51Z", "stop_date": "2001-05-25T11:44:00Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_ca_cncnts"}, "gll_epd_ca_cnflux": {"__spz_name__": "ions : CN[0-1] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_ca_cnflux", "dataset": "gll-epd-callion", "display_type": "spectrogram", "is_public": "True", "name": "ions : CN[0-1] : flux", "start_date": "1996-11-04T13:14:51Z", "stop_date": "2001-05-25T11:44:00Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_ca_cnflux"}, "gll_epd_ca_tacnts": {"__spz_name__": "he : TA[1-2] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_ca_tacnts", "dataset": "gll-epd-callion", "display_type": "spectrogram", "is_public": "True", "name": "he : TA[1-2] : cnts", "start_date": "1996-11-04T13:14:51Z", "stop_date": "2001-05-25T11:44:00Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_ca_tacnts"}, "gll_epd_ca_taflux": {"__spz_name__": "he : TA[1-2] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_ca_taflux", "dataset": "gll-epd-callion", "display_type": "spectrogram", "is_public": "True", "name": "he : TA[1-2] : flux", "start_date": "1996-11-04T13:14:51Z", "stop_date": "2001-05-25T11:44:00Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_ca_taflux"}, "gll_epd_ca_tocnts": {"__spz_name__": "o : TO[1-4] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_ca_tocnts", "dataset": "gll-epd-callion", "display_type": "spectrogram", "is_public": "True", "name": "o : TO[1-4] : cnts", "start_date": "1996-11-04T13:14:51Z", "stop_date": "2001-05-25T11:44:00Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_ca_tocnts"}, "gll_epd_ca_toflux": {"__spz_name__": "o : TO[1-4] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_ca_toflux", "dataset": "gll-epd-callion", "display_type": "spectrogram", "is_public": "True", "name": "o : TO[1-4] : flux", "start_date": "1996-11-04T13:14:51Z", "stop_date": "2001-05-25T11:44:00Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_ca_toflux"}, "gll_epd_ca_tpcnts": {"__spz_name__": "h : TP[1-3] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_ca_tpcnts", "dataset": "gll-epd-callion", "display_type": "spectrogram", "is_public": "True", "name": "h : TP[1-3] : cnts", "start_date": "1996-11-04T13:14:51Z", "stop_date": "2001-05-25T11:44:00Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_ca_tpcnts"}, "gll_epd_ca_tpflux": {"__spz_name__": "h : TP[1-3] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_ca_tpflux", "dataset": "gll-epd-callion", "display_type": "spectrogram", "is_public": "True", "name": "h : TP[1-3] : flux", "start_date": "1996-11-04T13:14:51Z", "stop_date": "2001-05-25T11:44:00Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_ca_tpflux"}, "gll_epd_ca_tscnts": {"__spz_name__": "s : TS[1-3] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_ca_tscnts", "dataset": "gll-epd-callion", "display_type": "spectrogram", "is_public": "True", "name": "s : TS[1-3] : cnts", "start_date": "1996-11-04T13:14:51Z", "stop_date": "2001-05-25T11:44:00Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_ca_tscnts"}, "gll_epd_ca_tsflux": {"__spz_name__": "s : TS[1-3] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_ca_tsflux", "dataset": "gll-epd-callion", "display_type": "spectrogram", "is_public": "True", "name": "s : TS[1-3] : flux", "start_date": "1996-11-04T13:14:51Z", "stop_date": "2001-05-25T11:44:00Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_ca_tsflux"}, "gll_epd_caion_bcnts": {"__spz_name__": "h : B[0,2] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_caion_bcnts", "dataset": "gll-epd-callion", "display_type": "spectrogram", "is_public": "True", "name": "h : B[0,2] : cnts", "start_date": "1996-11-04T13:14:51Z", "stop_date": "2001-05-25T11:44:00Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_caion_bcnts"}, "gll_epd_caion_bflux": {"__spz_name__": "h : B[0,2] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_caion_bflux", "dataset": "gll-epd-callion", "display_type": "spectrogram", "is_public": "True", "name": "h : B[0,2] : flux", "start_date": "1996-11-04T13:14:51Z", "stop_date": "2001-05-25T11:44:00Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_caion_bflux"}, "gll_epd_l_caion": {"__spz_name__": "L-shell", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_l_caion", "dataset": "gll-epd-callion", "display_type": "timeseries", "is_public": "True", "name": "L-shell", "start_date": "1996-11-04T13:14:51Z", "stop_date": "2001-05-25T11:44:00Z", "xmlid": "gll_epd_l_caion"}, "gll_epd_motor_caion": {"__spz_name__": "motor position", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_motor_caion", "dataset": "gll-epd-callion", "display_type": "timeseries", "is_public": "True", "name": "motor position", "start_date": "1996-11-04T13:14:51Z", "stop_date": "2001-05-25T11:44:00Z", "xmlid": "gll_epd_motor_caion"}, "gll_epd_paloc_caion": {"__spz_name__": "local pitch angle", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_paloc_caion", "dataset": "gll-epd-callion", "display_type": "timeseries", "is_public": "True", "name": "local pitch angle", "start_date": "1996-11-04T13:14:51Z", "stop_date": "2001-05-25T11:44:00Z", "units": "degree", "xmlid": "gll_epd_paloc_caion"}, "is_public": "True", "lastModificationDate": "2019-04-02T11:36:28Z", "lastUpdate": "2019-03-29T13:31:05Z", "maxSampling": "720S", "measurement_type": "EnergeticParticles", "name": "flybys callisto", "processing_level": "Calibrated", "sampling": "600S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Galileo/EPD/gll-epd-callion", "start_date": "1996-11-04T13:14:51Z", "stop_date": "2001-05-25T11:44:00Z", "target": "Jupiter", "xmlid": "gll-epd-callion"}, "gll_epd_euroion": {"__spz_name__": "flybys europa", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "gll-epd-euroion", "att": "auto/gll-epd-euroion", "dataSource": "JHU/APL", "desc": "flybys europa : ions
MinSampling: 600S; MaxSampling: 720S
Provider: JHU/APL", "gll_epd_eu_acnts": {"__spz_name__": "all : A[0-8] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_eu_acnts", "dataset": "gll-epd-euroion", "display_type": "spectrogram", "is_public": "True", "name": "all : A[0-8] : cnts", "start_date": "1996-12-19T06:33:25Z", "stop_date": "2000-01-03T18:29:12Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_eu_acnts"}, "gll_epd_eu_aflux": {"__spz_name__": "all : A[0-8] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_eu_aflux", "dataset": "gll-epd-euroion", "display_type": "spectrogram", "is_public": "True", "name": "all : A[0-8] : flux", "start_date": "1996-12-19T06:33:25Z", "stop_date": "2000-01-03T18:29:12Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_eu_aflux"}, "gll_epd_eu_cacnts": {"__spz_name__": "he: CA[1,3,4] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_eu_cacnts", "dataset": "gll-epd-euroion", "display_type": "spectrogram", "is_public": "True", "name": "he: CA[1,3,4] : cnts", "start_date": "1996-12-19T06:33:25Z", "stop_date": "2000-01-03T18:29:12Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_eu_cacnts"}, "gll_epd_eu_caflux": {"__spz_name__": "he : CA[1,3,4] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_eu_caflux", "dataset": "gll-epd-euroion", "display_type": "spectrogram", "is_public": "True", "name": "he : CA[1,3,4] : flux", "start_date": "1996-12-19T06:33:25Z", "stop_date": "2000-01-03T18:29:12Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_eu_caflux"}, "gll_epd_eu_chcnts": {"__spz_name__": "s: CH[3-5]: cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_eu_chcnts", "dataset": "gll-epd-euroion", "display_type": "spectrogram", "is_public": "True", "name": "s: CH[3-5]: cnts", "start_date": "1996-12-19T06:33:25Z", "stop_date": "2000-01-03T18:29:12Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_eu_chcnts"}, "gll_epd_eu_chflux": {"__spz_name__": "s : CH[3-5] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_eu_chflux", "dataset": "gll-epd-euroion", "display_type": "spectrogram", "is_public": "True", "name": "s : CH[3-5] : flux", "start_date": "1996-12-19T06:33:25Z", "stop_date": "2000-01-03T18:29:12Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_eu_chflux"}, "gll_epd_eu_cmcnts": {"__spz_name__": "o: CM[1,3,4] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_eu_cmcnts", "dataset": "gll-epd-euroion", "display_type": "spectrogram", "is_public": "True", "name": "o: CM[1,3,4] : cnts", "start_date": "1996-12-19T06:33:25Z", "stop_date": "2000-01-03T18:29:12Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_eu_cmcnts"}, "gll_epd_eu_cmflux": {"__spz_name__": "o : CM[1,3,4] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_eu_cmflux", "dataset": "gll-epd-euroion", "display_type": "spectrogram", "is_public": "True", "name": "o : CM[1,3,4] : flux", "start_date": "1996-12-19T06:33:25Z", "stop_date": "2000-01-03T18:29:12Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_eu_cmflux"}, "gll_epd_eu_cncnts": {"__spz_name__": "ions: CN[0-1] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_eu_cncnts", "dataset": "gll-epd-euroion", "display_type": "spectrogram", "is_public": "True", "name": "ions: CN[0-1] : cnts", "start_date": "1996-12-19T06:33:25Z", "stop_date": "2000-01-03T18:29:12Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_eu_cncnts"}, "gll_epd_eu_cnflux": {"__spz_name__": "ions : CN[0-1] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_eu_cnflux", "dataset": "gll-epd-euroion", "display_type": "spectrogram", "is_public": "True", "name": "ions : CN[0-1] : flux", "start_date": "1996-12-19T06:33:25Z", "stop_date": "2000-01-03T18:29:12Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_eu_cnflux"}, "gll_epd_eu_tacnts": {"__spz_name__": "he : TA[1-2] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_eu_tacnts", "dataset": "gll-epd-euroion", "display_type": "spectrogram", "is_public": "True", "name": "he : TA[1-2] : cnts", "start_date": "1996-12-19T06:33:25Z", "stop_date": "2000-01-03T18:29:12Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_eu_tacnts"}, "gll_epd_eu_taflux": {"__spz_name__": "he : TA[1-2] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_eu_taflux", "dataset": "gll-epd-euroion", "display_type": "spectrogram", "is_public": "True", "name": "he : TA[1-2] : flux", "start_date": "1996-12-19T06:33:25Z", "stop_date": "2000-01-03T18:29:12Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_eu_taflux"}, "gll_epd_eu_tocnts": {"__spz_name__": "o : TO[1-4] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_eu_tocnts", "dataset": "gll-epd-euroion", "display_type": "spectrogram", "is_public": "True", "name": "o : TO[1-4] : cnts", "start_date": "1996-12-19T06:33:25Z", "stop_date": "2000-01-03T18:29:12Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_eu_tocnts"}, "gll_epd_eu_toflux": {"__spz_name__": "o : TO[1-4] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_eu_toflux", "dataset": "gll-epd-euroion", "display_type": "spectrogram", "is_public": "True", "name": "o : TO[1-4] : flux", "start_date": "1996-12-19T06:33:25Z", "stop_date": "2000-01-03T18:29:12Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_eu_toflux"}, "gll_epd_eu_tpcnts": {"__spz_name__": "h : TP[1-3] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_eu_tpcnts", "dataset": "gll-epd-euroion", "display_type": "spectrogram", "is_public": "True", "name": "h : TP[1-3] : cnts", "start_date": "1996-12-19T06:33:25Z", "stop_date": "2000-01-03T18:29:12Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_eu_tpcnts"}, "gll_epd_eu_tpflux": {"__spz_name__": "h : TP[1-3] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_eu_tpflux", "dataset": "gll-epd-euroion", "display_type": "spectrogram", "is_public": "True", "name": "h : TP[1-3] : flux", "start_date": "1996-12-19T06:33:25Z", "stop_date": "2000-01-03T18:29:12Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_eu_tpflux"}, "gll_epd_eu_tscnts": {"__spz_name__": "s : TS[1-3] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_eu_tscnts", "dataset": "gll-epd-euroion", "display_type": "spectrogram", "is_public": "True", "name": "s : TS[1-3] : cnts", "start_date": "1996-12-19T06:33:25Z", "stop_date": "2000-01-03T18:29:12Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_eu_tscnts"}, "gll_epd_eu_tsflux": {"__spz_name__": "s : TS[1-3] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_eu_tsflux", "dataset": "gll-epd-euroion", "display_type": "spectrogram", "is_public": "True", "name": "s : TS[1-3] : flux", "start_date": "1996-12-19T06:33:25Z", "stop_date": "2000-01-03T18:29:12Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_eu_tsflux"}, "gll_epd_euion_bcnts": {"__spz_name__": "h : B[0,2] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_euion_bcnts", "dataset": "gll-epd-euroion", "display_type": "spectrogram", "is_public": "True", "name": "h : B[0,2] : cnts", "start_date": "1996-12-19T06:33:25Z", "stop_date": "2000-01-03T18:29:12Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_euion_bcnts"}, "gll_epd_euion_bflux": {"__spz_name__": "h : B[0,2] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_euion_bflux", "dataset": "gll-epd-euroion", "display_type": "spectrogram", "is_public": "True", "name": "h : B[0,2] : flux", "start_date": "1996-12-19T06:33:25Z", "stop_date": "2000-01-03T18:29:12Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_euion_bflux"}, "gll_epd_l_euion": {"__spz_name__": "L-shell", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_l_euion", "dataset": "gll-epd-euroion", "display_type": "timeseries", "is_public": "True", "name": "L-shell", "start_date": "1996-12-19T06:33:25Z", "stop_date": "2000-01-03T18:29:12Z", "xmlid": "gll_epd_l_euion"}, "gll_epd_motor_euion": {"__spz_name__": "motor position", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_motor_euion", "dataset": "gll-epd-euroion", "display_type": "timeseries", "is_public": "True", "name": "motor position", "start_date": "1996-12-19T06:33:25Z", "stop_date": "2000-01-03T18:29:12Z", "xmlid": "gll_epd_motor_euion"}, "gll_epd_paloc_euion": {"__spz_name__": "local pitch angle", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_paloc_euion", "dataset": "gll-epd-euroion", "display_type": "timeseries", "is_public": "True", "name": "local pitch angle", "start_date": "1996-12-19T06:33:25Z", "stop_date": "2000-01-03T18:29:12Z", "units": "degree", "xmlid": "gll_epd_paloc_euion"}, "is_public": "True", "lastModificationDate": "2019-04-02T11:58:04Z", "lastUpdate": "2019-03-29T13:36:11Z", "maxSampling": "720S", "measurement_type": "EnergeticParticles", "name": "flybys europa", "processing_level": "Calibrated", "sampling": "600S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Galileo/EPD/gll-epd-euroion", "start_date": "1996-12-19T06:33:25Z", "stop_date": "2000-01-03T18:29:12Z", "target": "Jupiter", "xmlid": "gll-epd-euroion"}, "gll_epd_ganyion": {"__spz_name__": "flybys ganymede", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "gll-epd-ganyion", "att": "auto/gll-epd-ganyion", "dataSource": "JHU/APL", "desc": "flybys ganymede : ions
MinSampling: 600S; MaxSampling: 720S
Provider: JHU/APL", "gll_epd_ga_acnts": {"__spz_name__": "all : A[0-8] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_ga_acnts", "dataset": "gll-epd-ganyion", "display_type": "spectrogram", "is_public": "True", "name": "all : A[0-8] : cnts", "start_date": "1996-09-06T18:32:47Z", "stop_date": "2000-12-28T08:54:17Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_ga_acnts"}, "gll_epd_ga_aflux": {"__spz_name__": "all : A[0-8] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_ga_aflux", "dataset": "gll-epd-ganyion", "display_type": "spectrogram", "is_public": "True", "name": "all : A[0-8] : flux", "start_date": "1996-09-06T18:32:47Z", "stop_date": "2000-12-28T08:54:17Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_ga_aflux"}, "gll_epd_ga_cacnts": {"__spz_name__": "he: CA[1,3,4] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_ga_cacnts", "dataset": "gll-epd-ganyion", "display_type": "spectrogram", "is_public": "True", "name": "he: CA[1,3,4] : cnts", "start_date": "1996-09-06T18:32:47Z", "stop_date": "2000-12-28T08:54:17Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_ga_cacnts"}, "gll_epd_ga_caflux": {"__spz_name__": "he : CA[1,3,4] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_ga_caflux", "dataset": "gll-epd-ganyion", "display_type": "spectrogram", "is_public": "True", "name": "he : CA[1,3,4] : flux", "start_date": "1996-09-06T18:32:47Z", "stop_date": "2000-12-28T08:54:17Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_ga_caflux"}, "gll_epd_ga_chcnts": {"__spz_name__": "s: CH[3-5]: cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_ga_chcnts", "dataset": "gll-epd-ganyion", "display_type": "spectrogram", "is_public": "True", "name": "s: CH[3-5]: cnts", "start_date": "1996-09-06T18:32:47Z", "stop_date": "2000-12-28T08:54:17Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_ga_chcnts"}, "gll_epd_ga_chflux": {"__spz_name__": "s : CH[3-5] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_ga_chflux", "dataset": "gll-epd-ganyion", "display_type": "spectrogram", "is_public": "True", "name": "s : CH[3-5] : flux", "start_date": "1996-09-06T18:32:47Z", "stop_date": "2000-12-28T08:54:17Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_ga_chflux"}, "gll_epd_ga_cmcnts": {"__spz_name__": "o: CM[1,3,4] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_ga_cmcnts", "dataset": "gll-epd-ganyion", "display_type": "spectrogram", "is_public": "True", "name": "o: CM[1,3,4] : cnts", "start_date": "1996-09-06T18:32:47Z", "stop_date": "2000-12-28T08:54:17Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_ga_cmcnts"}, "gll_epd_ga_cmflux": {"__spz_name__": "o : CM[1,3,4] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_ga_cmflux", "dataset": "gll-epd-ganyion", "display_type": "spectrogram", "is_public": "True", "name": "o : CM[1,3,4] : flux", "start_date": "1996-09-06T18:32:47Z", "stop_date": "2000-12-28T08:54:17Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_ga_cmflux"}, "gll_epd_ga_cncnts": {"__spz_name__": "ions: CN[0-1] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_ga_cncnts", "dataset": "gll-epd-ganyion", "display_type": "spectrogram", "is_public": "True", "name": "ions: CN[0-1] : cnts", "start_date": "1996-09-06T18:32:47Z", "stop_date": "2000-12-28T08:54:17Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_ga_cncnts"}, "gll_epd_ga_cnflux": {"__spz_name__": "ions : CN[0-1] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_ga_cnflux", "dataset": "gll-epd-ganyion", "display_type": "spectrogram", "is_public": "True", "name": "ions : CN[0-1] : flux", "start_date": "1996-09-06T18:32:47Z", "stop_date": "2000-12-28T08:54:17Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_ga_cnflux"}, "gll_epd_ga_tacnts": {"__spz_name__": "he : TA[1-2] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_ga_tacnts", "dataset": "gll-epd-ganyion", "display_type": "spectrogram", "is_public": "True", "name": "he : TA[1-2] : cnts", "start_date": "1996-09-06T18:32:47Z", "stop_date": "2000-12-28T08:54:17Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_ga_tacnts"}, "gll_epd_ga_taflux": {"__spz_name__": "he : TA[1-2] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_ga_taflux", "dataset": "gll-epd-ganyion", "display_type": "spectrogram", "is_public": "True", "name": "he : TA[1-2] : flux", "start_date": "1996-09-06T18:32:47Z", "stop_date": "2000-12-28T08:54:17Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_ga_taflux"}, "gll_epd_ga_tocnts": {"__spz_name__": "o : TO[1-4] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_ga_tocnts", "dataset": "gll-epd-ganyion", "display_type": "spectrogram", "is_public": "True", "name": "o : TO[1-4] : cnts", "start_date": "1996-09-06T18:32:47Z", "stop_date": "2000-12-28T08:54:17Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_ga_tocnts"}, "gll_epd_ga_toflux": {"__spz_name__": "o : TO[1-4] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_ga_toflux", "dataset": "gll-epd-ganyion", "display_type": "spectrogram", "is_public": "True", "name": "o : TO[1-4] : flux", "start_date": "1996-09-06T18:32:47Z", "stop_date": "2000-12-28T08:54:17Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_ga_toflux"}, "gll_epd_ga_tpcnts": {"__spz_name__": "h : TP[1-3] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_ga_tpcnts", "dataset": "gll-epd-ganyion", "display_type": "spectrogram", "is_public": "True", "name": "h : TP[1-3] : cnts", "start_date": "1996-09-06T18:32:47Z", "stop_date": "2000-12-28T08:54:17Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_ga_tpcnts"}, "gll_epd_ga_tpflux": {"__spz_name__": "h : TP[1-3] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_ga_tpflux", "dataset": "gll-epd-ganyion", "display_type": "spectrogram", "is_public": "True", "name": "h : TP[1-3] : flux", "start_date": "1996-09-06T18:32:47Z", "stop_date": "2000-12-28T08:54:17Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_ga_tpflux"}, "gll_epd_ga_tscnts": {"__spz_name__": "s : TS[1-3] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_ga_tscnts", "dataset": "gll-epd-ganyion", "display_type": "spectrogram", "is_public": "True", "name": "s : TS[1-3] : cnts", "start_date": "1996-09-06T18:32:47Z", "stop_date": "2000-12-28T08:54:17Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_ga_tscnts"}, "gll_epd_ga_tsflux": {"__spz_name__": "s : TS[1-3] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_ga_tsflux", "dataset": "gll-epd-ganyion", "display_type": "spectrogram", "is_public": "True", "name": "s : TS[1-3] : flux", "start_date": "1996-09-06T18:32:47Z", "stop_date": "2000-12-28T08:54:17Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_ga_tsflux"}, "gll_epd_gaion_bcnts": {"__spz_name__": "h : B[0,2] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_gaion_bcnts", "dataset": "gll-epd-ganyion", "display_type": "spectrogram", "is_public": "True", "name": "h : B[0,2] : cnts", "start_date": "1996-09-06T18:32:47Z", "stop_date": "2000-12-28T08:54:17Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_gaion_bcnts"}, "gll_epd_gaion_bflux": {"__spz_name__": "h : B[0,2] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_gaion_bflux", "dataset": "gll-epd-ganyion", "display_type": "spectrogram", "is_public": "True", "name": "h : B[0,2] : flux", "start_date": "1996-09-06T18:32:47Z", "stop_date": "2000-12-28T08:54:17Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_gaion_bflux"}, "gll_epd_l_gaion": {"__spz_name__": "L-shell", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_l_gaion", "dataset": "gll-epd-ganyion", "display_type": "timeseries", "is_public": "True", "name": "L-shell", "start_date": "1996-09-06T18:32:47Z", "stop_date": "2000-12-28T08:54:17Z", "xmlid": "gll_epd_l_gaion"}, "gll_epd_motor_gaion": {"__spz_name__": "motor position", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_motor_gaion", "dataset": "gll-epd-ganyion", "display_type": "timeseries", "is_public": "True", "name": "motor position", "start_date": "1996-09-06T18:32:47Z", "stop_date": "2000-12-28T08:54:17Z", "xmlid": "gll_epd_motor_gaion"}, "gll_epd_paloc_gaion": {"__spz_name__": "local pitch angle", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_paloc_gaion", "dataset": "gll-epd-ganyion", "display_type": "timeseries", "is_public": "True", "name": "local pitch angle", "start_date": "1996-09-06T18:32:47Z", "stop_date": "2000-12-28T08:54:17Z", "units": "degree", "xmlid": "gll_epd_paloc_gaion"}, "is_public": "True", "lastModificationDate": "2019-04-02T11:36:29Z", "lastUpdate": "2019-03-29T13:36:56Z", "maxSampling": "720S", "measurement_type": "EnergeticParticles", "name": "flybys ganymede", "processing_level": "Calibrated", "sampling": "600S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Galileo/EPD/gll-epd-ganyion", "start_date": "1996-09-06T18:32:47Z", "stop_date": "2000-12-28T08:54:17Z", "target": "Jupiter", "xmlid": "gll-epd-ganyion"}, "gll_epd_ioion": {"__spz_name__": "flybys io", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "gll-epd-ioion", "att": "auto/gll-epd-ioion", "dataSource": "JHU/APL", "desc": "flybys io : ions
MinSampling: 600S; MaxSampling: 720S
Provider: JHU/APL", "gll_epd_io_acnts": {"__spz_name__": "all : A[0-8] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_io_acnts", "dataset": "gll-epd-ioion", "display_type": "spectrogram", "is_public": "True", "name": "all : A[0-8] : cnts", "start_date": "1995-12-07T15:20:57Z", "stop_date": "2001-08-06T05:28:59Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_io_acnts"}, "gll_epd_io_aflux": {"__spz_name__": "all : A[0-8] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_io_aflux", "dataset": "gll-epd-ioion", "display_type": "spectrogram", "is_public": "True", "name": "all : A[0-8] : flux", "start_date": "1995-12-07T15:20:57Z", "stop_date": "2001-08-06T05:28:59Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_io_aflux"}, "gll_epd_io_cacnts": {"__spz_name__": "he: CA[1,3,4] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_io_cacnts", "dataset": "gll-epd-ioion", "display_type": "spectrogram", "is_public": "True", "name": "he: CA[1,3,4] : cnts", "start_date": "1995-12-07T15:20:57Z", "stop_date": "2001-08-06T05:28:59Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_io_cacnts"}, "gll_epd_io_caflux": {"__spz_name__": "he : CA[1,3,4] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_io_caflux", "dataset": "gll-epd-ioion", "display_type": "spectrogram", "is_public": "True", "name": "he : CA[1,3,4] : flux", "start_date": "1995-12-07T15:20:57Z", "stop_date": "2001-08-06T05:28:59Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_io_caflux"}, "gll_epd_io_chcnts": {"__spz_name__": "s: CH[3-5]: cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_io_chcnts", "dataset": "gll-epd-ioion", "display_type": "spectrogram", "is_public": "True", "name": "s: CH[3-5]: cnts", "start_date": "1995-12-07T15:20:57Z", "stop_date": "2001-08-06T05:28:59Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_io_chcnts"}, "gll_epd_io_chflux": {"__spz_name__": "s : CH[3-5] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_io_chflux", "dataset": "gll-epd-ioion", "display_type": "spectrogram", "is_public": "True", "name": "s : CH[3-5] : flux", "start_date": "1995-12-07T15:20:57Z", "stop_date": "2001-08-06T05:28:59Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_io_chflux"}, "gll_epd_io_cmcnts": {"__spz_name__": "o: CM[1,3,4] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_io_cmcnts", "dataset": "gll-epd-ioion", "display_type": "spectrogram", "is_public": "True", "name": "o: CM[1,3,4] : cnts", "start_date": "1995-12-07T15:20:57Z", "stop_date": "2001-08-06T05:28:59Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_io_cmcnts"}, "gll_epd_io_cmflux": {"__spz_name__": "o : CM[1,3,4] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_io_cmflux", "dataset": "gll-epd-ioion", "display_type": "spectrogram", "is_public": "True", "name": "o : CM[1,3,4] : flux", "start_date": "1995-12-07T15:20:57Z", "stop_date": "2001-08-06T05:28:59Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_io_cmflux"}, "gll_epd_io_cncnts": {"__spz_name__": "ions: CN[0-1] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_io_cncnts", "dataset": "gll-epd-ioion", "display_type": "spectrogram", "is_public": "True", "name": "ions: CN[0-1] : cnts", "start_date": "1995-12-07T15:20:57Z", "stop_date": "2001-08-06T05:28:59Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_io_cncnts"}, "gll_epd_io_cnflux": {"__spz_name__": "ions : CN[0-1] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_io_cnflux", "dataset": "gll-epd-ioion", "display_type": "spectrogram", "is_public": "True", "name": "ions : CN[0-1] : flux", "start_date": "1995-12-07T15:20:57Z", "stop_date": "2001-08-06T05:28:59Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_io_cnflux"}, "gll_epd_io_tacnts": {"__spz_name__": "he : TA[1-2] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_io_tacnts", "dataset": "gll-epd-ioion", "display_type": "spectrogram", "is_public": "True", "name": "he : TA[1-2] : cnts", "start_date": "1995-12-07T15:20:57Z", "stop_date": "2001-08-06T05:28:59Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_io_tacnts"}, "gll_epd_io_taflux": {"__spz_name__": "he : TA[1-2] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_io_taflux", "dataset": "gll-epd-ioion", "display_type": "spectrogram", "is_public": "True", "name": "he : TA[1-2] : flux", "start_date": "1995-12-07T15:20:57Z", "stop_date": "2001-08-06T05:28:59Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_io_taflux"}, "gll_epd_io_tocnts": {"__spz_name__": "o : TO[1-4] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_io_tocnts", "dataset": "gll-epd-ioion", "display_type": "spectrogram", "is_public": "True", "name": "o : TO[1-4] : cnts", "start_date": "1995-12-07T15:20:57Z", "stop_date": "2001-08-06T05:28:59Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_io_tocnts"}, "gll_epd_io_toflux": {"__spz_name__": "o : TO[1-4] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_io_toflux", "dataset": "gll-epd-ioion", "display_type": "spectrogram", "is_public": "True", "name": "o : TO[1-4] : flux", "start_date": "1995-12-07T15:20:57Z", "stop_date": "2001-08-06T05:28:59Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_io_toflux"}, "gll_epd_io_tpcnts": {"__spz_name__": "h : TP[1-3] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_io_tpcnts", "dataset": "gll-epd-ioion", "display_type": "spectrogram", "is_public": "True", "name": "h : TP[1-3] : cnts", "start_date": "1995-12-07T15:20:57Z", "stop_date": "2001-08-06T05:28:59Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_io_tpcnts"}, "gll_epd_io_tpflux": {"__spz_name__": "h : TP[1-3] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_io_tpflux", "dataset": "gll-epd-ioion", "display_type": "spectrogram", "is_public": "True", "name": "h : TP[1-3] : flux", "start_date": "1995-12-07T15:20:57Z", "stop_date": "2001-08-06T05:28:59Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_io_tpflux"}, "gll_epd_io_tscnts": {"__spz_name__": "s : TS[1-3] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_io_tscnts", "dataset": "gll-epd-ioion", "display_type": "spectrogram", "is_public": "True", "name": "s : TS[1-3] : cnts", "start_date": "1995-12-07T15:20:57Z", "stop_date": "2001-08-06T05:28:59Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_io_tscnts"}, "gll_epd_io_tsflux": {"__spz_name__": "s : TS[1-3] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_io_tsflux", "dataset": "gll-epd-ioion", "display_type": "spectrogram", "is_public": "True", "name": "s : TS[1-3] : flux", "start_date": "1995-12-07T15:20:57Z", "stop_date": "2001-08-06T05:28:59Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_io_tsflux"}, "gll_epd_ioion_bcnts": {"__spz_name__": "h : B[0,2] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_ioion_bcnts", "dataset": "gll-epd-ioion", "display_type": "spectrogram", "is_public": "True", "name": "h : B[0,2] : cnts", "start_date": "1995-12-07T15:20:57Z", "stop_date": "2001-08-06T05:28:59Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_ioion_bcnts"}, "gll_epd_ioion_bflux": {"__spz_name__": "h : B[0,2] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_ioion_bflux", "dataset": "gll-epd-ioion", "display_type": "spectrogram", "is_public": "True", "name": "h : B[0,2] : flux", "start_date": "1995-12-07T15:20:57Z", "stop_date": "2001-08-06T05:28:59Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_ioion_bflux"}, "gll_epd_l_ioion": {"__spz_name__": "L-shell", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_l_ioion", "dataset": "gll-epd-ioion", "display_type": "timeseries", "is_public": "True", "name": "L-shell", "start_date": "1995-12-07T15:20:57Z", "stop_date": "2001-08-06T05:28:59Z", "xmlid": "gll_epd_l_ioion"}, "gll_epd_motor_ioion": {"__spz_name__": "motor position", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_motor_ioion", "dataset": "gll-epd-ioion", "display_type": "timeseries", "is_public": "True", "name": "motor position", "start_date": "1995-12-07T15:20:57Z", "stop_date": "2001-08-06T05:28:59Z", "xmlid": "gll_epd_motor_ioion"}, "gll_epd_paloc_ioion": {"__spz_name__": "local pitch angle", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_paloc_ioion", "dataset": "gll-epd-ioion", "display_type": "timeseries", "is_public": "True", "name": "local pitch angle", "start_date": "1995-12-07T15:20:57Z", "stop_date": "2001-08-06T05:28:59Z", "units": "degree", "xmlid": "gll_epd_paloc_ioion"}, "is_public": "True", "lastModificationDate": "2019-04-02T11:36:30Z", "lastUpdate": "2019-03-29T13:38:44Z", "maxSampling": "720S", "measurement_type": "EnergeticParticles", "name": "flybys io", "processing_level": "Calibrated", "sampling": "600S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Galileo/EPD/gll-epd-ioion", "start_date": "1995-12-07T15:20:57Z", "stop_date": "2001-08-06T05:28:59Z", "target": "Jupiter", "xmlid": "gll-epd-ioion"}, "gll_epd_survion": {"__spz_name__": "survey", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "gll-epd-survion", "att": "auto/gll-epd-survion", "dataSource": "JHU/APL", "desc": "survey : ions
MinSampling: 600S; MaxSampling: 720S
Provider: JHU/APL", "gll_epd_hr_acnts": {"__spz_name__": "all : A[0-8] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_hr_acnts", "dataset": "gll-epd-survion", "display_type": "spectrogram", "is_public": "True", "name": "all : A[0-8] : cnts", "start_date": "1996-09-11T02:38:23Z", "stop_date": "2001-10-16T01:53:04Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_hr_acnts"}, "gll_epd_hr_aflux": {"__spz_name__": "all : A[0-8] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_hr_aflux", "dataset": "gll-epd-survion", "display_type": "spectrogram", "is_public": "True", "name": "all : A[0-8] : flux", "start_date": "1996-09-11T02:38:23Z", "stop_date": "2001-10-16T01:53:04Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_hr_aflux"}, "gll_epd_hr_cacnts": {"__spz_name__": "he: CA[1,3,4] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_hr_cacnts", "dataset": "gll-epd-survion", "display_type": "spectrogram", "is_public": "True", "name": "he: CA[1,3,4] : cnts", "start_date": "1996-09-11T02:38:23Z", "stop_date": "2001-10-16T01:53:04Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_hr_cacnts"}, "gll_epd_hr_caflux": {"__spz_name__": "he : CA[1,3,4] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_hr_caflux", "dataset": "gll-epd-survion", "display_type": "spectrogram", "is_public": "True", "name": "he : CA[1,3,4] : flux", "start_date": "1996-09-11T02:38:23Z", "stop_date": "2001-10-16T01:53:04Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_hr_caflux"}, "gll_epd_hr_chcnts": {"__spz_name__": "s: CH[3-5]: cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_hr_chcnts", "dataset": "gll-epd-survion", "display_type": "spectrogram", "is_public": "True", "name": "s: CH[3-5]: cnts", "start_date": "1996-09-11T02:38:23Z", "stop_date": "2001-10-16T01:53:04Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_hr_chcnts"}, "gll_epd_hr_chflux": {"__spz_name__": "s : CH[3-5] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_hr_chflux", "dataset": "gll-epd-survion", "display_type": "spectrogram", "is_public": "True", "name": "s : CH[3-5] : flux", "start_date": "1996-09-11T02:38:23Z", "stop_date": "2001-10-16T01:53:04Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_hr_chflux"}, "gll_epd_hr_cmcnts": {"__spz_name__": "o: CM[1,3,4] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_hr_cmcnts", "dataset": "gll-epd-survion", "display_type": "spectrogram", "is_public": "True", "name": "o: CM[1,3,4] : cnts", "start_date": "1996-09-11T02:38:23Z", "stop_date": "2001-10-16T01:53:04Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_hr_cmcnts"}, "gll_epd_hr_cmflux": {"__spz_name__": "o : CM[1,3,4] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_hr_cmflux", "dataset": "gll-epd-survion", "display_type": "spectrogram", "is_public": "True", "name": "o : CM[1,3,4] : flux", "start_date": "1996-09-11T02:38:23Z", "stop_date": "2001-10-16T01:53:04Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_hr_cmflux"}, "gll_epd_hr_cncnts": {"__spz_name__": "ions: CN[0-1] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_hr_cncnts", "dataset": "gll-epd-survion", "display_type": "spectrogram", "is_public": "True", "name": "ions: CN[0-1] : cnts", "start_date": "1996-09-11T02:38:23Z", "stop_date": "2001-10-16T01:53:04Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_hr_cncnts"}, "gll_epd_hr_cnflux": {"__spz_name__": "ions : CN[0-1] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_hr_cnflux", "dataset": "gll-epd-survion", "display_type": "spectrogram", "is_public": "True", "name": "ions : CN[0-1] : flux", "start_date": "1996-09-11T02:38:23Z", "stop_date": "2001-10-16T01:53:04Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_hr_cnflux"}, "gll_epd_hr_tacnts": {"__spz_name__": "he : TA[1-2] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_hr_tacnts", "dataset": "gll-epd-survion", "display_type": "spectrogram", "is_public": "True", "name": "he : TA[1-2] : cnts", "start_date": "1996-09-11T02:38:23Z", "stop_date": "2001-10-16T01:53:04Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_hr_tacnts"}, "gll_epd_hr_taflux": {"__spz_name__": "he : TA[1-2] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_hr_taflux", "dataset": "gll-epd-survion", "display_type": "spectrogram", "is_public": "True", "name": "he : TA[1-2] : flux", "start_date": "1996-09-11T02:38:23Z", "stop_date": "2001-10-16T01:53:04Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_hr_taflux"}, "gll_epd_hr_tocnts": {"__spz_name__": "o : TO[1-4] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_hr_tocnts", "dataset": "gll-epd-survion", "display_type": "spectrogram", "is_public": "True", "name": "o : TO[1-4] : cnts", "start_date": "1996-09-11T02:38:23Z", "stop_date": "2001-10-16T01:53:04Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_hr_tocnts"}, "gll_epd_hr_toflux": {"__spz_name__": "o : TO[1-4] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_hr_toflux", "dataset": "gll-epd-survion", "display_type": "spectrogram", "is_public": "True", "name": "o : TO[1-4] : flux", "start_date": "1996-09-11T02:38:23Z", "stop_date": "2001-10-16T01:53:04Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_hr_toflux"}, "gll_epd_hr_tpcnts": {"__spz_name__": "h : TP[1-3] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_hr_tpcnts", "dataset": "gll-epd-survion", "display_type": "spectrogram", "is_public": "True", "name": "h : TP[1-3] : cnts", "start_date": "1996-09-11T02:38:23Z", "stop_date": "2001-10-16T01:53:04Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_hr_tpcnts"}, "gll_epd_hr_tpflux": {"__spz_name__": "h : TP[1-3] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_hr_tpflux", "dataset": "gll-epd-survion", "display_type": "spectrogram", "is_public": "True", "name": "h : TP[1-3] : flux", "start_date": "1996-09-11T02:38:23Z", "stop_date": "2001-10-16T01:53:04Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_hr_tpflux"}, "gll_epd_hr_tscnts": {"__spz_name__": "s : TS[1-3] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_hr_tscnts", "dataset": "gll-epd-survion", "display_type": "spectrogram", "is_public": "True", "name": "s : TS[1-3] : cnts", "start_date": "1996-09-11T02:38:23Z", "stop_date": "2001-10-16T01:53:04Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_hr_tscnts"}, "gll_epd_hr_tsflux": {"__spz_name__": "s : TS[1-3] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_hr_tsflux", "dataset": "gll-epd-survion", "display_type": "spectrogram", "is_public": "True", "name": "s : TS[1-3] : flux", "start_date": "1996-09-11T02:38:23Z", "stop_date": "2001-10-16T01:53:04Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_hr_tsflux"}, "gll_epd_hrion_bcnts": {"__spz_name__": "h : B[0,2] : cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_hrion_bcnts", "dataset": "gll-epd-survion", "display_type": "spectrogram", "is_public": "True", "name": "h : B[0,2] : cnts", "start_date": "1996-09-11T02:38:23Z", "stop_date": "2001-10-16T01:53:04Z", "units": "s\u207b\u00b9", "xmlid": "gll_epd_hrion_bcnts"}, "gll_epd_hrion_bflux": {"__spz_name__": "h : B[0,2] : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_hrion_bflux", "dataset": "gll-epd-survion", "display_type": "spectrogram", "is_public": "True", "name": "h : B[0,2] : flux", "start_date": "1996-09-11T02:38:23Z", "stop_date": "2001-10-16T01:53:04Z", "units": "cm\u207b\u00b2.s\u207b\u00b9.sr\u207b\u00b9.keV\u207b\u00b9", "xmlid": "gll_epd_hrion_bflux"}, "gll_epd_l_hrion": {"__spz_name__": "L-shell", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_l_hrion", "dataset": "gll-epd-survion", "display_type": "timeseries", "is_public": "True", "name": "L-shell", "start_date": "1996-09-11T02:38:23Z", "stop_date": "2001-10-16T01:53:04Z", "xmlid": "gll_epd_l_hrion"}, "gll_epd_motor_hrion": {"__spz_name__": "motor position", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_motor_hrion", "dataset": "gll-epd-survion", "display_type": "timeseries", "is_public": "True", "name": "motor position", "start_date": "1996-09-11T02:38:23Z", "stop_date": "2001-10-16T01:53:04Z", "xmlid": "gll_epd_motor_hrion"}, "gll_epd_paloc_hrion": {"__spz_name__": "local pitch angle", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_epd_paloc_hrion", "dataset": "gll-epd-survion", "display_type": "timeseries", "is_public": "True", "name": "local pitch angle", "start_date": "1996-09-11T02:38:23Z", "stop_date": "2001-10-16T01:53:04Z", "units": "degree", "xmlid": "gll_epd_paloc_hrion"}, "is_public": "True", "lastModificationDate": "2019-04-02T11:36:32Z", "lastUpdate": "2019-03-29T13:53:24Z", "maxSampling": "720S", "measurement_type": "EnergeticParticles", "name": "survey", "processing_level": "Calibrated", "sampling": "600S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Galileo/EPD/gll-epd-survion", "start_date": "1996-09-11T02:38:23Z", "stop_date": "2001-10-16T01:53:04Z", "target": "Jupiter", "xmlid": "gll-epd-survion"}, "is_public": "True", "name": "record mode : ion channels", "xmlid": "gll-epd-record-ion"}, "xmlid": "Galileo_epd"}, "Ephemeris___Galileo": {"__spz_name__": "Ephemeris : Galileo", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Galileo_ephemeris", "att": "auto/Galileo_ephemeris", "desc": "", "gll_eph_pol": {"__spz_name__": "orbit jupiter : special", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "gll-eph-pol", "att": "auto/gll-eph-pol", "dataSource": "University of Iowa", "desc": "special Galileo ephemeris
Sampling: 300S
Provider: University of Iowa", "gll_pol_iophase": {"__spz_name__": "Io phase", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_pol_iophase", "dataset": "gll-eph-pol", "description": "Galileo Phase relative to Io", "is_public": "True", "name": "Io phase", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2003-09-30T11:55:00Z", "ucd": "pos.angDistance;pos.bodyrc.lon", "units": "deg", "xmlid": "gll_pol_iophase"}, "gll_pol_lat": {"__spz_name__": "lat eqt", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_pol_lat", "dataset": "gll-eph-pol", "description": "Galileo Latitude (relative to Jovian equator)", "display_type": "timeseries", "is_public": "True", "name": "lat eqt", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2003-09-30T11:55:00Z", "ucd": "pos.bodyrc.lat", "units": "deg", "xmlid": "gll_pol_lat"}, "gll_pol_lon": {"__spz_name__": "lon_sys3", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_pol_lon", "dataset": "gll-eph-pol", "description": "Galileo Longitude (in System III jovian longitude)", "display_type": "timeseries", "is_public": "True", "name": "lon_sys3", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2003-09-30T11:55:00Z", "ucd": "pos.bodyrc.lon", "units": "deg", "xmlid": "gll_pol_lon"}, "gll_pol_lt": {"__spz_name__": "local time", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_pol_lt", "dataset": "gll-eph-pol", "description": "Galileo Local Time", "display_type": "timeseries", "is_public": "True", "name": "local time", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2003-09-30T11:55:00Z", "ucd": "pos.bodyrc.lon", "units": "hours", "xmlid": "gll_pol_lt"}, "gll_pol_mlat": {"__spz_name__": "mag lat", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_pol_mlat", "dataset": "gll-eph-pol", "description": "Galileo invariant Magnetic Latitude", "display_type": "timeseries", "is_public": "True", "name": "mag lat", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2003-09-30T11:55:00Z", "ucd": "pos.bodyrc.lat;phys.magField", "units": "deg", "xmlid": "gll_pol_mlat"}, "is_public": "True", "lastModificationDate": "2012-03-06T19:42:15Z", "lastUpdate": "2012-03-06T19:42:16Z", "measurement_type": "Ephemeris", "name": "orbit jupiter : special", "processing_level": "Calibrated", "sampling": "300S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Galileo/ephemeris/gll-eph-pol", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2003-09-30T11:55:00Z", "target": "Jupiter", "xmlid": "gll-eph-pol"}, "gll_orb_burst": {"__spz_name__": "orbit jupiter : burst mode", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "gll-orb-burst", "att": "auto/gll-orb-burst", "dataSource": "PDS", "desc": "
MinSampling: 0.3S; MaxSampling: 0.666S
Provider: PDS", "gll_orb_burstlatsys3": {"__spz_name__": "lat_sys3", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_orb_burstlatsys3", "dataset": "gll-orb-burst", "description": "Galileo latitude in System 3 coordinates system", "display_type": "timeseries", "is_public": "True", "name": "lat_sys3", "start_date": "1996-06-30T02:00:53Z", "stop_date": "2002-11-05T05:45:42Z", "ucd": "pos.bodyrc.lat;instr.obsty", "units": "deg", "xmlid": "gll_orb_burstlatsys3"}, "gll_orb_burstlonesys3": {"__spz_name__": "lon_east_sys3", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_orb_burstlonesys3", "dataset": "gll-orb-burst", "description": "Galileo east-longitude to Jupiter in System 3 coordinates system", "display_type": "timeseries", "is_public": "True", "name": "lon_east_sys3", "start_date": "1996-06-30T02:00:53Z", "stop_date": "2002-11-05T05:45:42Z", "ucd": "pos.bodyrc.lon;instr.obsty", "units": "deg", "xmlid": "gll_orb_burstlonesys3"}, "gll_orb_burstlonwsys3": {"__spz_name__": "lon_west_sys3", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_orb_burstlonwsys3", "dataset": "gll-orb-burst", "description": "Galileo west-longitude to Jupiter in System 3 coordinates system", "display_type": "timeseries", "is_public": "True", "name": "lon_west_sys3", "start_date": "1996-06-30T02:00:53Z", "stop_date": "2002-11-05T05:45:42Z", "ucd": "pos.bodyrc.lon;instr.obsty", "units": "deg", "xmlid": "gll_orb_burstlonwsys3"}, "gll_orb_burstrsys3": {"__spz_name__": "r_sys3", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_orb_burstrsys3", "dataset": "gll-orb-burst", "description": "Galileo distance to Jupiter in System 3 coordinates system", "display_type": "timeseries", "is_public": "True", "name": "r_sys3", "start_date": "1996-06-30T02:00:53Z", "stop_date": "2002-11-05T05:45:42Z", "ucd": "pos.distance;instr.obsty", "units": "Rj", "xmlid": "gll_orb_burstrsys3"}, "is_public": "True", "lastModificationDate": "2012-03-06T19:42:36Z", "lastUpdate": "2012-03-06T19:42:38Z", "maxSampling": "0.666S", "measurement_type": "Ephemeris", "name": "orbit jupiter : burst mode", "processing_level": "Calibrated", "sampling": "0.3S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Galileo/ephemeris/gll-orb-burst", "start_date": "1996-06-30T02:00:53Z", "stop_date": "2002-11-05T05:45:42Z", "target": "Jupiter", "xmlid": "gll-orb-burst"}, "gll_orb_ca": {"__spz_name__": "flybys callisto", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "gll-orb-ca", "att": "auto/gll-orb-ca", "dataSource": "PDS", "desc": "
MinSampling: 0.334S; MaxSampling: 24S
Provider: PDS", "gll_orb_calatcsprh": {"__spz_name__": "lat_csprh", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_orb_calatcsprh", "dataset": "gll-orb-ca", "description": "Galileo latitude in CSPRH coordinates", "display_type": "timeseries", "is_public": "True", "name": "lat_csprh", "start_date": "1996-11-04T13:15:10Z", "stop_date": "2001-05-25T11:45:04Z", "ucd": "pos.bodyrc.lat;instr.obsty", "units": "deg", "xmlid": "gll_orb_calatcsprh"}, "gll_orb_calatsys3": {"__spz_name__": "lat_sys3", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_orb_calatsys3", "dataset": "gll-orb-ca", "description": "Galileo latitude in System III coordinates", "display_type": "timeseries", "is_public": "True", "name": "lat_sys3", "start_date": "1996-11-04T13:15:10Z", "stop_date": "2001-05-25T11:45:04Z", "ucd": "pos.bodyrc.lat;instr.obsty", "units": "deg", "xmlid": "gll_orb_calatsys3"}, "gll_orb_caloncsprh": {"__spz_name__": "lon_csprh", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_orb_caloncsprh", "dataset": "gll-orb-ca", "description": "Galileo longitude in CSPRH coordinates", "display_type": "timeseries", "is_public": "True", "name": "lon_csprh", "start_date": "1996-11-04T13:15:10Z", "stop_date": "2001-05-25T11:45:04Z", "ucd": "pos.bodyrc.lon;instr.obsty", "units": "deg", "xmlid": "gll_orb_caloncsprh"}, "gll_orb_calonesys3": {"__spz_name__": "lon_esys3", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_orb_calonesys3", "dataset": "gll-orb-ca", "description": "Galileo east-longitude in System III coordinates", "display_type": "timeseries", "is_public": "True", "name": "lon_esys3", "start_date": "1996-11-04T13:15:10Z", "stop_date": "2001-05-25T11:45:04Z", "ucd": "pos.bodyrc.lon;instr.obsty", "units": "deg", "xmlid": "gll_orb_calonesys3"}, "gll_orb_calonwsys3": {"__spz_name__": "lon_wsys3", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_orb_calonwsys3", "dataset": "gll-orb-ca", "description": "Galileo west-longitude in System III coordinates", "display_type": "timeseries", "is_public": "True", "name": "lon_wsys3", "start_date": "1996-11-04T13:15:10Z", "stop_date": "2001-05-25T11:45:04Z", "ucd": "pos.bodyrc.lon;instr.obsty", "units": "deg", "xmlid": "gll_orb_calonwsys3"}, "gll_orb_carcsprh": {"__spz_name__": "r_csprh", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_orb_carcsprh", "dataset": "gll-orb-ca", "description": "Galileo distance to Callisto (in Callisto Radii)", "display_type": "timeseries", "is_public": "True", "name": "r_csprh", "start_date": "1996-11-04T13:15:10Z", "stop_date": "2001-05-25T11:45:04Z", "ucd": "pos.distance;instr.obsty", "units": "Rca", "xmlid": "gll_orb_carcsprh"}, "gll_orb_carsys3": {"__spz_name__": "r_sys3", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_orb_carsys3", "dataset": "gll-orb-ca", "description": "Galileo distance to Jupiter in Jovian Radii", "display_type": "timeseries", "is_public": "True", "name": "r_sys3", "start_date": "1996-11-04T13:15:10Z", "stop_date": "2001-05-25T11:45:04Z", "ucd": "pos.distance;instr.obsty", "units": "Rca", "xmlid": "gll_orb_carsys3"}, "gll_orb_caxyzcphio": {"__spz_name__": "xyz_cphio", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_orb_caxyzcphio", "dataset": "gll-orb-ca", "description": "Galileo trajectory coordinates in CPIO coordinates", "display_type": "timeseries", "gll_orb_caxyzcphio0": {"__spz_name__": "x_cphio", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_orb_caxyzcphio(0)", "dataset": "gll-orb-ca", "index1": "0", "is_public": "True", "name": "x_cphio", "parameter": "gll_orb_caxyzcphio", "start_date": "1996-11-04T13:15:10Z", "stop_date": "2001-05-25T11:45:04Z", "xmlid": "gll_orb_caxyzcphio(0)"}, "gll_orb_caxyzcphio1": {"__spz_name__": "y_cphio", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_orb_caxyzcphio(1)", "dataset": "gll-orb-ca", "index1": "1", "is_public": "True", "name": "y_cphio", "parameter": "gll_orb_caxyzcphio", "start_date": "1996-11-04T13:15:10Z", "stop_date": "2001-05-25T11:45:04Z", "xmlid": "gll_orb_caxyzcphio(1)"}, "gll_orb_caxyzcphio2": {"__spz_name__": "z_cphio", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_orb_caxyzcphio(2)", "dataset": "gll-orb-ca", "index1": "2", "is_public": "True", "name": "z_cphio", "parameter": "gll_orb_caxyzcphio", "start_date": "1996-11-04T13:15:10Z", "stop_date": "2001-05-25T11:45:04Z", "xmlid": "gll_orb_caxyzcphio(2)"}, "is_public": "True", "name": "xyz_cphio", "size": "3", "start_date": "1996-11-04T13:15:10Z", "stop_date": "2001-05-25T11:45:04Z", "ucd": "pos.ephem;instr.obsty", "units": "Rca", "xmlid": "gll_orb_caxyzcphio"}, "is_public": "True", "lastModificationDate": "2012-03-06T19:42:35Z", "lastUpdate": "2012-03-06T19:42:35Z", "maxSampling": "24S", "measurement_type": "Ephemeris", "name": "flybys callisto", "processing_level": "Calibrated", "sampling": "0.334S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Galileo/ephemeris/gll-orb-ca", "start_date": "1996-11-04T13:15:10Z", "stop_date": "2001-05-25T11:45:04Z", "target": "Jupiter.Callisto", "xmlid": "gll-orb-ca"}, "gll_orb_eu": {"__spz_name__": "flybys europa", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "gll-orb-eu", "att": "auto/gll-orb-eu", "dataSource": "PDS", "desc": "
MinSampling: 0.333S; MaxSampling: 12S
Provider: PDS", "gll_orb_eulatesprh": {"__spz_name__": "lat_esprh", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_orb_eulatesprh", "dataset": "gll-orb-eu", "description": "Galileo latitude in ESPRH coordinates", "display_type": "timeseries", "is_public": "True", "name": "lat_esprh", "start_date": "1996-12-19T06:33:27Z", "stop_date": "2000-01-03T18:30:14Z", "ucd": "pos.bodyrc.lat;instr.obsty", "units": "deg", "xmlid": "gll_orb_eulatesprh"}, "gll_orb_eulatsys3": {"__spz_name__": "lat_sys3", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_orb_eulatsys3", "dataset": "gll-orb-eu", "description": "Galileo latitude in System III coordinates", "display_type": "timeseries", "is_public": "True", "name": "lat_sys3", "start_date": "1996-12-19T06:33:27Z", "stop_date": "2000-01-03T18:30:14Z", "ucd": "pos.bodyrc.lat;instr.obsty", "units": "deg", "xmlid": "gll_orb_eulatsys3"}, "gll_orb_eulonesprh": {"__spz_name__": "lon_esprh", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_orb_eulonesprh", "dataset": "gll-orb-eu", "description": "Galileo longitude in ESPRH coordinates", "display_type": "timeseries", "is_public": "True", "name": "lon_esprh", "start_date": "1996-12-19T06:33:27Z", "stop_date": "2000-01-03T18:30:14Z", "ucd": "pos.bodyrc.lon;instr.obsty", "units": "deg", "xmlid": "gll_orb_eulonesprh"}, "gll_orb_eulonesys3": {"__spz_name__": "lon_east_sys3", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_orb_eulonesys3", "dataset": "gll-orb-eu", "description": "Galileo east-longitude in System III coordinates", "display_type": "timeseries", "is_public": "True", "name": "lon_east_sys3", "start_date": "1996-12-19T06:33:27Z", "stop_date": "2000-01-03T18:30:14Z", "ucd": "pos.bodyrc.lon;instr.obsty", "units": "deg", "xmlid": "gll_orb_eulonesys3"}, "gll_orb_eulonwsys3": {"__spz_name__": "lon_west_sys3", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_orb_eulonwsys3", "dataset": "gll-orb-eu", "description": "Galileo west-longitude in System III coordinates", "display_type": "timeseries", "is_public": "True", "name": "lon_west_sys3", "start_date": "1996-12-19T06:33:27Z", "stop_date": "2000-01-03T18:30:14Z", "ucd": "pos.bodyrc.lon;instr.obsty", "units": "deg", "xmlid": "gll_orb_eulonwsys3"}, "gll_orb_euresprh": {"__spz_name__": "r_esprh", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_orb_euresprh", "dataset": "gll-orb-eu", "description": "Galileo distance to Europa (in Europa Radii)", "display_type": "timeseries", "is_public": "True", "name": "r_esprh", "start_date": "1996-12-19T06:33:27Z", "stop_date": "2000-01-03T18:30:14Z", "ucd": "pos.distance;instr.obsty", "units": "Reu", "xmlid": "gll_orb_euresprh"}, "gll_orb_eursys3": {"__spz_name__": "r_sys3", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_orb_eursys3", "dataset": "gll-orb-eu", "description": "Galileo distance to Jupiter in Jovian Radii", "is_public": "True", "name": "r_sys3", "start_date": "1996-12-19T06:33:27Z", "stop_date": "2000-01-03T18:30:14Z", "ucd": "pos.distance;instr.obsty", "units": "Reu", "xmlid": "gll_orb_eursys3"}, "gll_orb_euxyzephio": {"__spz_name__": "xyz_ephio", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_orb_euxyzephio", "dataset": "gll-orb-eu", "description": "Galileo trajectory coordinates in EPIO coordinates", "gll_orb_euxyzephio0": {"__spz_name__": "x_ephio", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_orb_euxyzephio(0)", "dataset": "gll-orb-eu", "index1": "0", "is_public": "True", "name": "x_ephio", "parameter": "gll_orb_euxyzephio", "start_date": "1996-12-19T06:33:27Z", "stop_date": "2000-01-03T18:30:14Z", "xmlid": "gll_orb_euxyzephio(0)"}, "gll_orb_euxyzephio1": {"__spz_name__": "y_ephio", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_orb_euxyzephio(1)", "dataset": "gll-orb-eu", "index1": "1", "is_public": "True", "name": "y_ephio", "parameter": "gll_orb_euxyzephio", "start_date": "1996-12-19T06:33:27Z", "stop_date": "2000-01-03T18:30:14Z", "xmlid": "gll_orb_euxyzephio(1)"}, "gll_orb_euxyzephio2": {"__spz_name__": "z_ephio", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_orb_euxyzephio(2)", "dataset": "gll-orb-eu", "index1": "2", "is_public": "True", "name": "z_ephio", "parameter": "gll_orb_euxyzephio", "start_date": "1996-12-19T06:33:27Z", "stop_date": "2000-01-03T18:30:14Z", "xmlid": "gll_orb_euxyzephio(2)"}, "is_public": "True", "name": "xyz_ephio", "size": "3", "start_date": "1996-12-19T06:33:27Z", "stop_date": "2000-01-03T18:30:14Z", "ucd": "pos.ephem;instr.obsty", "units": "Reu", "xmlid": "gll_orb_euxyzephio"}, "is_public": "True", "lastModificationDate": "2012-03-06T19:43:03Z", "lastUpdate": "2012-03-06T19:43:04Z", "maxSampling": "12S", "measurement_type": "Ephemeris", "name": "flybys europa", "processing_level": "Calibrated", "sampling": "0.333S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Galileo/ephemeris/gll-orb-eu", "start_date": "1996-12-19T06:33:27Z", "stop_date": "2000-01-03T18:30:14Z", "target": "Jupiter.Europa", "xmlid": "gll-orb-eu"}, "gll_orb_ga": {"__spz_name__": "flybys ganymede", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "gll-orb-ga", "att": "auto/gll-orb-ga", "dataSource": "PDS", "desc": "
MinSampling: 0.3S; MaxSampling: 24S
Provider: PDS", "gll_orb_galatgsprh": {"__spz_name__": "lat_gsprh", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_orb_galatgsprh", "dataset": "gll-orb-ga", "description": "Galileo latitude in GSPRH coordinates", "display_type": "timeseries", "is_public": "True", "name": "lat_gsprh", "start_date": "1996-06-27T06:07:08Z", "stop_date": "2000-12-28T08:55:20Z", "ucd": "pos.bodyrc.lat;instr.obsty", "units": "deg", "xmlid": "gll_orb_galatgsprh"}, "gll_orb_galatsys3": {"__spz_name__": "lat_sys3", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_orb_galatsys3", "dataset": "gll-orb-ga", "description": "Galileo latitude in System III coordinates", "display_type": "timeseries", "is_public": "True", "name": "lat_sys3", "start_date": "1996-06-27T06:07:08Z", "stop_date": "2000-12-28T08:55:20Z", "ucd": "pos.bodyrc.lat;instr.obsty", "units": "deg", "xmlid": "gll_orb_galatsys3"}, "gll_orb_galonesys3": {"__spz_name__": "lon_east_sys3", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_orb_galonesys3", "dataset": "gll-orb-ga", "description": "Galileo east-longitude in System III coordinates", "display_type": "timeseries", "is_public": "True", "name": "lon_east_sys3", "start_date": "1996-06-27T06:07:08Z", "stop_date": "2000-12-28T08:55:20Z", "ucd": "pos.bodyrc.lon;instr.obsty", "units": "deg", "xmlid": "gll_orb_galonesys3"}, "gll_orb_galongsprh": {"__spz_name__": "lon_gsprh", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_orb_galongsprh", "dataset": "gll-orb-ga", "description": "Galileo longitude in GSPRH coordinates", "display_type": "timeseries", "is_public": "True", "name": "lon_gsprh", "start_date": "1996-06-27T06:07:08Z", "stop_date": "2000-12-28T08:55:20Z", "ucd": "pos.bodyrc.lon;instr.obsty", "units": "deg", "xmlid": "gll_orb_galongsprh"}, "gll_orb_galonwsys3": {"__spz_name__": "lon_west_sys3", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_orb_galonwsys3", "dataset": "gll-orb-ga", "description": "Galileo west-longitude in System III coordinates", "display_type": "timeseries", "is_public": "True", "name": "lon_west_sys3", "start_date": "1996-06-27T06:07:08Z", "stop_date": "2000-12-28T08:55:20Z", "ucd": "pos.bodyrc.lon;instr.obsty", "units": "deg", "xmlid": "gll_orb_galonwsys3"}, "gll_orb_gargsprh": {"__spz_name__": "r_gsprh", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_orb_gargsprh", "dataset": "gll-orb-ga", "description": "Galileo distance to Ganymede (in Ganymede Radii)", "display_type": "timeseries", "is_public": "True", "name": "r_gsprh", "start_date": "1996-06-27T06:07:08Z", "stop_date": "2000-12-28T08:55:20Z", "ucd": "pos.distance;instr.obsty", "units": "Rca", "xmlid": "gll_orb_gargsprh"}, "gll_orb_garsys3": {"__spz_name__": "r_sys3", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_orb_garsys3", "dataset": "gll-orb-ga", "description": "Galileo distance to Jupiter in Jovian Radii", "display_type": "timeseries", "is_public": "True", "name": "r_sys3", "start_date": "1996-06-27T06:07:08Z", "stop_date": "2000-12-28T08:55:20Z", "ucd": "pos.distance;instr.obsty", "units": "Rga", "xmlid": "gll_orb_garsys3"}, "gll_orb_gaxyzgphio": {"__spz_name__": "xyz_gphio", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_orb_gaxyzgphio", "dataset": "gll-orb-ga", "description": "Galileo trajectory coordinates in GPHIO coordinates", "display_type": "timeseries", "gll_orb_gaxyzgphio0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_orb_gaxyzgphio(0)", "dataset": "gll-orb-ga", "index1": "0", "is_public": "True", "name": "x", "parameter": "gll_orb_gaxyzgphio", "start_date": "1996-06-27T06:07:08Z", "stop_date": "2000-12-28T08:55:20Z", "xmlid": "gll_orb_gaxyzgphio(0)"}, "gll_orb_gaxyzgphio1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_orb_gaxyzgphio(1)", "dataset": "gll-orb-ga", "index1": "1", "is_public": "True", "name": "y", "parameter": "gll_orb_gaxyzgphio", "start_date": "1996-06-27T06:07:08Z", "stop_date": "2000-12-28T08:55:20Z", "xmlid": "gll_orb_gaxyzgphio(1)"}, "gll_orb_gaxyzgphio2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_orb_gaxyzgphio(2)", "dataset": "gll-orb-ga", "index1": "2", "is_public": "True", "name": "z", "parameter": "gll_orb_gaxyzgphio", "start_date": "1996-06-27T06:07:08Z", "stop_date": "2000-12-28T08:55:20Z", "xmlid": "gll_orb_gaxyzgphio(2)"}, "is_public": "True", "name": "xyz_gphio", "size": "3", "start_date": "1996-06-27T06:07:08Z", "stop_date": "2000-12-28T08:55:20Z", "ucd": "pos.ephem;instr.obsty", "units": "Rga", "xmlid": "gll_orb_gaxyzgphio"}, "is_public": "True", "lastModificationDate": "2012-03-06T19:42:40Z", "lastUpdate": "2012-03-06T19:42:41Z", "maxSampling": "24S", "measurement_type": "Ephemeris", "name": "flybys ganymede", "processing_level": "Calibrated", "sampling": "0.3S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Galileo/ephemeris/gll-orb-ga", "start_date": "1996-06-27T06:07:08Z", "stop_date": "2000-12-28T08:55:20Z", "target": "Jupiter.Ganymede", "xmlid": "gll-orb-ga"}, "gll_orb_io": {"__spz_name__": "flybys io", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "gll-orb-io", "att": "auto/gll-orb-io", "dataSource": "PDS", "desc": "
MinSampling: 0.2S; MaxSampling: 0.333S
Provider: PDS", "gll_orb_iolatisprh": {"__spz_name__": "lat_isprh", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_orb_iolatisprh", "dataset": "gll-orb-io", "description": "Galileo latitude in ISPRH coordinates", "display_type": "timeseries", "is_public": "True", "name": "lat_isprh", "start_date": "1995-12-07T15:21:01Z", "stop_date": "2001-10-16T02:21:47Z", "ucd": "pos.bodyrc.lat;instr.obsty", "units": "deg", "xmlid": "gll_orb_iolatisprh"}, "gll_orb_iolatsys3": {"__spz_name__": "lat_sys3", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_orb_iolatsys3", "dataset": "gll-orb-io", "description": "Galileo latitude in System III coordinates", "display_type": "timeseries", "is_public": "True", "name": "lat_sys3", "start_date": "1995-12-07T15:21:01Z", "stop_date": "2001-10-16T02:21:47Z", "ucd": "pos.bodyrc.lat;instr.obsty", "units": "deg", "xmlid": "gll_orb_iolatsys3"}, "gll_orb_iolonesys3": {"__spz_name__": "lon_east_sys3", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_orb_iolonesys3", "dataset": "gll-orb-io", "description": "Galileo east-longitude in System III coordinates", "display_type": "timeseries", "is_public": "True", "name": "lon_east_sys3", "start_date": "1995-12-07T15:21:01Z", "stop_date": "2001-10-16T02:21:47Z", "ucd": "pos.bodyrc.lon;instr.obsty", "units": "deg", "xmlid": "gll_orb_iolonesys3"}, "gll_orb_iolonisprh": {"__spz_name__": "lon_isprh", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_orb_iolonisprh", "dataset": "gll-orb-io", "description": "Galileo longitude in ISPRH coordinates", "display_type": "timeseries", "is_public": "True", "name": "lon_isprh", "start_date": "1995-12-07T15:21:01Z", "stop_date": "2001-10-16T02:21:47Z", "ucd": "pos.bodyrc.lon;instr.obsty", "units": "deg", "xmlid": "gll_orb_iolonisprh"}, "gll_orb_iolonwsys3": {"__spz_name__": "lon_west_sys3", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_orb_iolonwsys3", "dataset": "gll-orb-io", "description": "Galileo west-longitude in System III coordinates", "is_public": "True", "name": "lon_west_sys3", "start_date": "1995-12-07T15:21:01Z", "stop_date": "2001-10-16T02:21:47Z", "ucd": "pos.bodyrc.lon;instr.obsty", "units": "deg", "xmlid": "gll_orb_iolonwsys3"}, "gll_orb_iorisprh": {"__spz_name__": "r_isprh", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_orb_iorisprh", "dataset": "gll-orb-io", "description": "Galileo distance to Io (in Io Radii)", "display_type": "timeseries", "is_public": "True", "name": "r_isprh", "start_date": "1995-12-07T15:21:01Z", "stop_date": "2001-10-16T02:21:47Z", "ucd": "pos.distance;instr.obsty", "units": "Rio", "xmlid": "gll_orb_iorisprh"}, "gll_orb_iorsys3": {"__spz_name__": "r_sys3", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_orb_iorsys3", "dataset": "gll-orb-io", "description": "Galileo distance to Jupiter in Jovian Radii", "display_type": "timeseries", "is_public": "True", "name": "r_sys3", "start_date": "1995-12-07T15:21:01Z", "stop_date": "2001-10-16T02:21:47Z", "ucd": "pos.distance;instr.obsty", "units": "Rio", "xmlid": "gll_orb_iorsys3"}, "gll_orb_ioxyziphio": {"__spz_name__": "xyz_iphio", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_orb_ioxyziphio", "dataset": "gll-orb-io", "description": "Galileo trajectory coordinates in IPIO coordinates", "display_type": "timeseries", "gll_orb_ioxyziphio0": {"__spz_name__": "x_iphio", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_orb_ioxyziphio(0)", "dataset": "gll-orb-io", "index1": "0", "is_public": "True", "name": "x_iphio", "parameter": "gll_orb_ioxyziphio", "start_date": "1995-12-07T15:21:01Z", "stop_date": "2001-10-16T02:21:47Z", "xmlid": "gll_orb_ioxyziphio(0)"}, "gll_orb_ioxyziphio1": {"__spz_name__": "y_iphio", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_orb_ioxyziphio(1)", "dataset": "gll-orb-io", "index1": "1", "is_public": "True", "name": "y_iphio", "parameter": "gll_orb_ioxyziphio", "start_date": "1995-12-07T15:21:01Z", "stop_date": "2001-10-16T02:21:47Z", "xmlid": "gll_orb_ioxyziphio(1)"}, "gll_orb_ioxyziphio2": {"__spz_name__": "z_iphio", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_orb_ioxyziphio(2)", "dataset": "gll-orb-io", "index1": "2", "is_public": "True", "name": "z_iphio", "parameter": "gll_orb_ioxyziphio", "start_date": "1995-12-07T15:21:01Z", "stop_date": "2001-10-16T02:21:47Z", "xmlid": "gll_orb_ioxyziphio(2)"}, "is_public": "True", "name": "xyz_iphio", "size": "3", "start_date": "1995-12-07T15:21:01Z", "stop_date": "2001-10-16T02:21:47Z", "ucd": "pos.ephem;instr.obsty", "units": "Rio", "xmlid": "gll_orb_ioxyziphio"}, "is_public": "True", "lastModificationDate": "2012-03-06T19:42:38Z", "lastUpdate": "2012-03-06T19:42:39Z", "maxSampling": "0.333S", "measurement_type": "Ephemeris", "name": "flybys io", "processing_level": "Calibrated", "sampling": "0.2S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Galileo/ephemeris/gll-orb-io", "start_date": "1995-12-07T15:21:01Z", "stop_date": "2001-10-16T02:21:47Z", "target": "Jupiter.Io", "xmlid": "gll-orb-io"}, "gll_orbit_jup": {"__spz_name__": "orbit jupiter", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "gll-orbit-jup", "att": "auto/gll-orbit-jup", "dataSource": "NAIF/SPICE", "desc": "Galileo ephemeris during Jupiter orbiting : 5 min
Sampling: 300S
Provider: NAIF/SPICE", "gll_lat_jup": {"__spz_name__": "lat_iau_jupiter", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_lat_jup", "dataset": "gll-orbit-jup", "display_type": "timeseries", "is_public": "True", "name": "lat_iau_jupiter", "start_date": "1995-07-14T00:00:00Z", "stop_date": "2003-09-21T23:50:00Z", "ucd": "pos.bodyrc.lat", "units": "deg", "xmlid": "gll_lat_jup"}, "gll_lon_jup": {"__spz_name__": "lon_iau_jupiter", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_lon_jup", "dataset": "gll-orbit-jup", "display_type": "timeseries", "is_public": "True", "name": "lon_iau_jupiter", "start_date": "1995-07-14T00:00:00Z", "stop_date": "2003-09-21T23:50:00Z", "units": "deg", "xmlid": "gll_lon_jup"}, "gll_r_jup": {"__spz_name__": "distance galileo-jupiter", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_r_jup", "dataset": "gll-orbit-jup", "display_type": "timeseries", "is_public": "True", "name": "distance galileo-jupiter", "start_date": "1995-07-14T00:00:00Z", "stop_date": "2003-09-21T23:50:00Z", "ucd": "pos.distance;instr.obsty", "units": "Rj", "xmlid": "gll_r_jup"}, "gll_xyz_jsm": {"__spz_name__": "xyz_jsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_xyz_jsm", "dataset": "gll-orbit-jup", "description": "Galileo spacecraft trajectory in JSO coordinates", "display_type": "timeseries", "gll_xyz_jsm0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_xyz_jsm(0)", "dataset": "gll-orbit-jup", "index1": "0", "is_public": "True", "name": "x", "parameter": "gll_xyz_jsm", "start_date": "1995-07-14T00:00:00Z", "stop_date": "2003-09-21T23:50:00Z", "xmlid": "gll_xyz_jsm(0)"}, "gll_xyz_jsm1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_xyz_jsm(1)", "dataset": "gll-orbit-jup", "index1": "1", "is_public": "True", "name": "y", "parameter": "gll_xyz_jsm", "start_date": "1995-07-14T00:00:00Z", "stop_date": "2003-09-21T23:50:00Z", "xmlid": "gll_xyz_jsm(1)"}, "gll_xyz_jsm2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_xyz_jsm(2)", "dataset": "gll-orbit-jup", "index1": "2", "is_public": "True", "name": "z", "parameter": "gll_xyz_jsm", "start_date": "1995-07-14T00:00:00Z", "stop_date": "2003-09-21T23:50:00Z", "xmlid": "gll_xyz_jsm(2)"}, "is_public": "True", "name": "xyz_jsm", "size": "3", "start_date": "1995-07-14T00:00:00Z", "stop_date": "2003-09-21T23:50:00Z", "ucd": "pos.ephem;instr.obsty", "units": "Rj", "xmlid": "gll_xyz_jsm"}, "gll_xyz_jso": {"__spz_name__": "xyz_jso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_xyz_jso", "dataset": "gll-orbit-jup", "description": "Galileo spacecraft trajectory in JSO coordinates", "display_type": "timeseries", "gll_xyz_jso0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_xyz_jso(0)", "dataset": "gll-orbit-jup", "index1": "0", "is_public": "True", "name": "x", "parameter": "gll_xyz_jso", "start_date": "1995-07-14T00:00:00Z", "stop_date": "2003-09-21T23:50:00Z", "xmlid": "gll_xyz_jso(0)"}, "gll_xyz_jso1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_xyz_jso(1)", "dataset": "gll-orbit-jup", "index1": "1", "is_public": "True", "name": "y", "parameter": "gll_xyz_jso", "start_date": "1995-07-14T00:00:00Z", "stop_date": "2003-09-21T23:50:00Z", "xmlid": "gll_xyz_jso(1)"}, "gll_xyz_jso2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_xyz_jso(2)", "dataset": "gll-orbit-jup", "index1": "2", "is_public": "True", "name": "z", "parameter": "gll_xyz_jso", "start_date": "1995-07-14T00:00:00Z", "stop_date": "2003-09-21T23:50:00Z", "xmlid": "gll_xyz_jso(2)"}, "is_public": "True", "name": "xyz_jso", "size": "3", "start_date": "1995-07-14T00:00:00Z", "stop_date": "2003-09-21T23:50:00Z", "ucd": "pos.ephem;instr.obsty", "units": "Rj", "xmlid": "gll_xyz_jso"}, "is_public": "True", "lastModificationDate": "2018-09-06T15:05:46Z", "lastUpdate": "2018-09-04T15:44:27Z", "measurement_type": "Ephemeris", "name": "orbit jupiter", "processing_level": "Calibrated", "sampling": "300S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Galileo/ephemeris/gll-orbit-jup", "start_date": "1995-07-14T00:00:00Z", "stop_date": "2003-09-21T23:50:00Z", "target": "Jupiter", "xmlid": "gll-orbit-jup"}, "is_public": "True", "name": "Ephemeris : Galileo", "xmlid": "Galileo_ephemeris"}, "Ephemeris___Jupiter_Moons___special": {"__spz_name__": "Ephemeris : Jupiter Moons : special", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Galileo_moons_ephemeris", "att": "auto/Galileo_moons_ephemeris", "cal_eph_pol": {"__spz_name__": "Callisto", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "cal-eph-pol", "att": "auto/cal-eph-pol", "cal_pol_iophase": {"__spz_name__": "IoPhase", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cal_pol_iophase", "dataset": "cal-eph-pol", "is_public": "True", "name": "IoPhase", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2003-09-30T11:55:00Z", "units": "deg", "xmlid": "cal_pol_iophase"}, "cal_pol_lat": {"__spz_name__": "lat", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cal_pol_lat", "dataset": "cal-eph-pol", "is_public": "True", "name": "lat", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2003-09-30T11:55:00Z", "units": "deg", "xmlid": "cal_pol_lat"}, "cal_pol_lon": {"__spz_name__": "lon", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cal_pol_lon", "dataset": "cal-eph-pol", "is_public": "True", "name": "lon", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2003-09-30T11:55:00Z", "units": "deg", "xmlid": "cal_pol_lon"}, "cal_pol_lt": {"__spz_name__": "local time", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cal_pol_lt", "dataset": "cal-eph-pol", "is_public": "True", "name": "local time", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2003-09-30T11:55:00Z", "units": "hours", "xmlid": "cal_pol_lt"}, "cal_pol_mlat": {"__spz_name__": "mlat", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cal_pol_mlat", "dataset": "cal-eph-pol", "is_public": "True", "name": "mlat", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2003-09-30T11:55:00Z", "units": "deg", "xmlid": "cal_pol_mlat"}, "cal_pol_r": {"__spz_name__": "distance callisto-jupiter", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cal_pol_r", "dataset": "cal-eph-pol", "is_public": "True", "name": "distance callisto-jupiter", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2003-09-30T11:55:00Z", "units": "Rj", "xmlid": "cal_pol_r"}, "dataSource": "University of Iowa", "desc": "
Sampling: 300S
Provider: University of Iowa", "is_public": "True", "lastModificationDate": "2012-03-06T19:42:20Z", "lastUpdate": "2012-03-06T19:42:21Z", "measurement_type": "Ephemeris", "name": "Callisto", "processing_level": "Calibrated", "sampling": "300S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Galileo/Moons_Ephemeris/cal-eph-pol", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2003-09-30T11:55:00Z", "target": "Jupiter", "xmlid": "cal-eph-pol"}, "desc": "", "eur_eph_pol": {"__spz_name__": "Europa", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "eur-eph-pol", "att": "auto/eur-eph-pol", "dataSource": "University of Iowa", "desc": "
Sampling: 300S
Provider: University of Iowa", "eur_pol_iophase": {"__spz_name__": "IoPhase", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "eur_pol_iophase", "dataset": "eur-eph-pol", "is_public": "True", "name": "IoPhase", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2003-09-30T11:55:00Z", "units": "deg", "xmlid": "eur_pol_iophase"}, "eur_pol_lat": {"__spz_name__": "lat", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "eur_pol_lat", "dataset": "eur-eph-pol", "is_public": "True", "name": "lat", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2003-09-30T11:55:00Z", "units": "deg", "xmlid": "eur_pol_lat"}, "eur_pol_lon": {"__spz_name__": "lon", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "eur_pol_lon", "dataset": "eur-eph-pol", "is_public": "True", "name": "lon", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2003-09-30T11:55:00Z", "units": "deg", "xmlid": "eur_pol_lon"}, "eur_pol_lt": {"__spz_name__": "local time", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "eur_pol_lt", "dataset": "eur-eph-pol", "is_public": "True", "name": "local time", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2003-09-30T11:55:00Z", "units": "hours", "xmlid": "eur_pol_lt"}, "eur_pol_mlat": {"__spz_name__": "mlat", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "eur_pol_mlat", "dataset": "eur-eph-pol", "is_public": "True", "name": "mlat", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2003-09-30T11:55:00Z", "units": "deg", "xmlid": "eur_pol_mlat"}, "eur_pol_r": {"__spz_name__": "distance europa-jupiter", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "eur_pol_r", "dataset": "eur-eph-pol", "is_public": "True", "name": "distance europa-jupiter", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2003-09-30T11:55:00Z", "units": "Rj", "xmlid": "eur_pol_r"}, "is_public": "True", "lastModificationDate": "2012-03-06T19:42:17Z", "lastUpdate": "2012-03-06T19:42:19Z", "measurement_type": "Ephemeris", "name": "Europa", "processing_level": "Calibrated", "sampling": "300S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Galileo/Moons_Ephemeris/eur-eph-pol", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2003-09-30T11:55:00Z", "target": "Jupiter", "xmlid": "eur-eph-pol"}, "gan_eph_pol": {"__spz_name__": "Ganymede", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "gan-eph-pol", "att": "auto/gan-eph-pol", "dataSource": "University of Iowa", "desc": "
Sampling: 300S
Provider: University of Iowa", "gan_pol_iophase": {"__spz_name__": "IoPhase", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gan_pol_iophase", "dataset": "gan-eph-pol", "is_public": "True", "name": "IoPhase", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2003-09-30T11:55:00Z", "units": "deg", "xmlid": "gan_pol_iophase"}, "gan_pol_lat": {"__spz_name__": "lat", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gan_pol_lat", "dataset": "gan-eph-pol", "is_public": "True", "name": "lat", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2003-09-30T11:55:00Z", "units": "deg", "xmlid": "gan_pol_lat"}, "gan_pol_lon": {"__spz_name__": "lon", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gan_pol_lon", "dataset": "gan-eph-pol", "is_public": "True", "name": "lon", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2003-09-30T11:55:00Z", "units": "deg", "xmlid": "gan_pol_lon"}, "gan_pol_lt": {"__spz_name__": "local time", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gan_pol_lt", "dataset": "gan-eph-pol", "is_public": "True", "name": "local time", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2003-09-30T11:55:00Z", "units": "hours", "xmlid": "gan_pol_lt"}, "gan_pol_mlat": {"__spz_name__": "mlat", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gan_pol_mlat", "dataset": "gan-eph-pol", "is_public": "True", "name": "mlat", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2003-09-30T11:55:00Z", "units": "deg", "xmlid": "gan_pol_mlat"}, "gan_pol_r": {"__spz_name__": "distanse ganymede-jupiter", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gan_pol_r", "dataset": "gan-eph-pol", "is_public": "True", "name": "distanse ganymede-jupiter", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2003-09-30T11:55:00Z", "units": "Rj", "xmlid": "gan_pol_r"}, "is_public": "True", "lastModificationDate": "2012-03-06T19:42:26Z", "lastUpdate": "2012-03-06T19:42:26Z", "measurement_type": "Ephemeris", "name": "Ganymede", "processing_level": "Calibrated", "sampling": "300S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Galileo/Moons_Ephemeris/gan-eph-pol", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2003-09-30T11:55:00Z", "target": "Jupiter", "xmlid": "gan-eph-pol"}, "io_eph_pol": {"__spz_name__": "Io", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "io-eph-pol", "att": "auto/io-eph-pol", "dataSource": "University of Iowa", "desc": "
Sampling: 300S
Provider: University of Iowa", "io_pol_iophase": {"__spz_name__": "IoPhase", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "io_pol_iophase", "dataset": "io-eph-pol", "is_public": "True", "name": "IoPhase", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2003-09-30T11:55:00Z", "units": "deg", "xmlid": "io_pol_iophase"}, "io_pol_lat": {"__spz_name__": "lat", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "io_pol_lat", "dataset": "io-eph-pol", "is_public": "True", "name": "lat", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2003-09-30T11:55:00Z", "units": "deg", "xmlid": "io_pol_lat"}, "io_pol_lon": {"__spz_name__": "lon", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "io_pol_lon", "dataset": "io-eph-pol", "is_public": "True", "name": "lon", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2003-09-30T11:55:00Z", "units": "deg", "xmlid": "io_pol_lon"}, "io_pol_lt": {"__spz_name__": "local time", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "io_pol_lt", "dataset": "io-eph-pol", "is_public": "True", "name": "local time", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2003-09-30T11:55:00Z", "units": "hours", "xmlid": "io_pol_lt"}, "io_pol_mlat": {"__spz_name__": "mlat", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "io_pol_mlat", "dataset": "io-eph-pol", "is_public": "True", "name": "mlat", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2003-09-30T11:55:00Z", "units": "deg", "xmlid": "io_pol_mlat"}, "io_pol_r": {"__spz_name__": "distance io-jupiter", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "io_pol_r", "dataset": "io-eph-pol", "is_public": "True", "name": "distance io-jupiter", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2003-09-30T11:55:00Z", "units": "Rj", "xmlid": "io_pol_r"}, "is_public": "True", "lastModificationDate": "2012-03-06T19:42:22Z", "lastUpdate": "2012-03-06T19:42:23Z", "measurement_type": "Ephemeris", "name": "Io", "processing_level": "Calibrated", "sampling": "300S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Galileo/Moons_Ephemeris/io-eph-pol", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2003-09-30T11:55:00Z", "target": "Jupiter", "xmlid": "io-eph-pol"}, "is_public": "True", "name": "Ephemeris : Jupiter Moons : special", "xmlid": "Galileo_moons_ephemeris"}, "Jovian_Magnetic_Field_Models": {"__spz_name__": "Jovian Magnetic Field Models", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Galileo_models", "att": "auto/Galileo_models", "desc": "", "gll_jrm09_model": {"PriorID": "gll-orbit-jup", "__spz_name__": "JRM09 + CAN field model", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "gll-jrm09-model", "att": "auto/gll-jrm09-model", "b_jrm09_can_60_1_gll_xyz_iau": {"__spz_name__": "b_iau_jup", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_jrm09_can_60_1_gll_xyz_iau", "b_jrm09_can_60_1_gll_xyz_iau0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_jrm09_can_60_1_gll_xyz_iau(0)", "dataset": "gll-jrm09-model", "index1": "0", "is_public": "True", "name": "bx", "parameter": "b_jrm09_can_60_1_gll_xyz_iau", "start_date": "1995-07-14T00:00:00Z", "stop_date": "2003-09-21T23:50:00Z", "xmlid": "b_jrm09_can_60_1_gll_xyz_iau(0)"}, "b_jrm09_can_60_1_gll_xyz_iau1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_jrm09_can_60_1_gll_xyz_iau(1)", "dataset": "gll-jrm09-model", "index1": "1", "is_public": "True", "name": "by", "parameter": "b_jrm09_can_60_1_gll_xyz_iau", "start_date": "1995-07-14T00:00:00Z", "stop_date": "2003-09-21T23:50:00Z", "xmlid": "b_jrm09_can_60_1_gll_xyz_iau(1)"}, "b_jrm09_can_60_1_gll_xyz_iau2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_jrm09_can_60_1_gll_xyz_iau(2)", "dataset": "gll-jrm09-model", "index1": "2", "is_public": "True", "name": "bz", "parameter": "b_jrm09_can_60_1_gll_xyz_iau", "start_date": "1995-07-14T00:00:00Z", "stop_date": "2003-09-21T23:50:00Z", "xmlid": "b_jrm09_can_60_1_gll_xyz_iau(2)"}, "dataset": "gll-jrm09-model", "is_public": "True", "name": "b_iau_jup", "predefined": "1", "size": "3", "start_date": "1995-07-14T00:00:00Z", "stop_date": "2003-09-21T23:50:00Z", "template": "b_jrm09_can_##sampling##_##can##_##orbit##", "units": "nT", "xmlid": "b_jrm09_can_60_1_gll_xyz_iau"}, "b_jrm09_can_tot_60_1_gll_xyz_iau": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_jrm09_can_tot_60_1_gll_xyz_iau", "dataset": "gll-jrm09-model", "is_public": "True", "name": "|b|", "predefined": "1", "start_date": "1995-07-14T00:00:00Z", "stop_date": "2003-09-21T23:50:00Z", "template": "b_jrm09_can_tot_##sampling##_##can##_##orbit##", "units": "nT", "xmlid": "b_jrm09_can_tot_60_1_gll_xyz_iau"}, "b_jrm09_sys3_can_60_1_gll_xyz_iau": {"__spz_name__": "b_sys3_jup", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_jrm09_sys3_can_60_1_gll_xyz_iau", "b_jrm09_sys3_can_60_1_gll_xyz_iau0": {"__spz_name__": "br", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_jrm09_sys3_can_60_1_gll_xyz_iau(0)", "dataset": "gll-jrm09-model", "index1": "0", "is_public": "True", "name": "br", "parameter": "b_jrm09_sys3_can_60_1_gll_xyz_iau", "start_date": "1995-07-14T00:00:00Z", "stop_date": "2003-09-21T23:50:00Z", "xmlid": "b_jrm09_sys3_can_60_1_gll_xyz_iau(0)"}, "b_jrm09_sys3_can_60_1_gll_xyz_iau1": {"__spz_name__": "btheta", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_jrm09_sys3_can_60_1_gll_xyz_iau(1)", "dataset": "gll-jrm09-model", "index1": "1", "is_public": "True", "name": "btheta", "parameter": "b_jrm09_sys3_can_60_1_gll_xyz_iau", "start_date": "1995-07-14T00:00:00Z", "stop_date": "2003-09-21T23:50:00Z", "xmlid": "b_jrm09_sys3_can_60_1_gll_xyz_iau(1)"}, "b_jrm09_sys3_can_60_1_gll_xyz_iau2": {"__spz_name__": "bphi", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_jrm09_sys3_can_60_1_gll_xyz_iau(2)", "dataset": "gll-jrm09-model", "index1": "2", "is_public": "True", "name": "bphi", "parameter": "b_jrm09_sys3_can_60_1_gll_xyz_iau", "start_date": "1995-07-14T00:00:00Z", "stop_date": "2003-09-21T23:50:00Z", "xmlid": "b_jrm09_sys3_can_60_1_gll_xyz_iau(2)"}, "dataset": "gll-jrm09-model", "is_public": "True", "name": "b_sys3_jup", "predefined": "1", "size": "3", "start_date": "1995-07-14T00:00:00Z", "stop_date": "2003-09-21T23:50:00Z", "template": "b_jrm09_sys3_can_##sampling##_##can##_##orbit##", "units": "nT", "xmlid": "b_jrm09_sys3_can_60_1_gll_xyz_iau"}, "dataSource": "IRAP", "desc": "JRM09 + CAN jovian magnetic field model
Sampling: 1M
Provider: IRAP", "is_public": "True", "lastModificationDate": "2018-09-06T15:05:46Z", "lastUpdate": "2018-09-04T15:44:27Z", "measurement_type": "MagneticField", "name": "JRM09 + CAN field model", "processing_level": "Calibrated", "sampling": "1M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Galileo/Models/gll-jrm09-model", "start_date": "1995-07-14T00:00:00Z", "stop_date": "2003-09-21T23:50:00Z", "target": "Jupiter", "xmlid": "gll-jrm09-model"}, "gll_jrm33_model": {"PriorID": "gll-orbit-jup", "__spz_name__": "JRM33 + Con2020 field model", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "gll-jrm33-model", "att": "auto/gll-jrm33-model", "b_jrm33_con_60_1_gll_xyz_iau": {"__spz_name__": "b_iau_jup", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_jrm33_con_60_1_gll_xyz_iau", "b_jrm33_con_60_1_gll_xyz_iau0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_jrm33_con_60_1_gll_xyz_iau(0)", "dataset": "gll-jrm33-model", "index1": "0", "is_public": "True", "name": "bx", "parameter": "b_jrm33_con_60_1_gll_xyz_iau", "start_date": "1995-07-14T00:00:00Z", "stop_date": "2003-09-21T23:50:00Z", "xmlid": "b_jrm33_con_60_1_gll_xyz_iau(0)"}, "b_jrm33_con_60_1_gll_xyz_iau1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_jrm33_con_60_1_gll_xyz_iau(1)", "dataset": "gll-jrm33-model", "index1": "1", "is_public": "True", "name": "by", "parameter": "b_jrm33_con_60_1_gll_xyz_iau", "start_date": "1995-07-14T00:00:00Z", "stop_date": "2003-09-21T23:50:00Z", "xmlid": "b_jrm33_con_60_1_gll_xyz_iau(1)"}, "b_jrm33_con_60_1_gll_xyz_iau2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_jrm33_con_60_1_gll_xyz_iau(2)", "dataset": "gll-jrm33-model", "index1": "2", "is_public": "True", "name": "bz", "parameter": "b_jrm33_con_60_1_gll_xyz_iau", "start_date": "1995-07-14T00:00:00Z", "stop_date": "2003-09-21T23:50:00Z", "xmlid": "b_jrm33_con_60_1_gll_xyz_iau(2)"}, "dataset": "gll-jrm33-model", "is_public": "True", "name": "b_iau_jup", "predefined": "1", "size": "3", "start_date": "1995-07-14T00:00:00Z", "stop_date": "2003-09-21T23:50:00Z", "template": "b_jrm33_con_##sampling##_##con##_##orbit##", "units": "nT", "xmlid": "b_jrm33_con_60_1_gll_xyz_iau"}, "b_jrm33_con_tot_60_1_gll_xyz_iau": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_jrm33_con_tot_60_1_gll_xyz_iau", "dataset": "gll-jrm33-model", "is_public": "True", "name": "|b|", "predefined": "1", "start_date": "1995-07-14T00:00:00Z", "stop_date": "2003-09-21T23:50:00Z", "template": "b_jrm33_con_tot_##sampling##_##con##_##orbit##", "units": "nT", "xmlid": "b_jrm33_con_tot_60_1_gll_xyz_iau"}, "b_jrm33_sys3_con_60_1_gll_xyz_iau": {"__spz_name__": "b_sys3_jup", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_jrm33_sys3_con_60_1_gll_xyz_iau", "b_jrm33_sys3_con_60_1_gll_xyz_iau0": {"__spz_name__": "br", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_jrm33_sys3_con_60_1_gll_xyz_iau(0)", "dataset": "gll-jrm33-model", "index1": "0", "is_public": "True", "name": "br", "parameter": "b_jrm33_sys3_con_60_1_gll_xyz_iau", "start_date": "1995-07-14T00:00:00Z", "stop_date": "2003-09-21T23:50:00Z", "xmlid": "b_jrm33_sys3_con_60_1_gll_xyz_iau(0)"}, "b_jrm33_sys3_con_60_1_gll_xyz_iau1": {"__spz_name__": "btheta", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_jrm33_sys3_con_60_1_gll_xyz_iau(1)", "dataset": "gll-jrm33-model", "index1": "1", "is_public": "True", "name": "btheta", "parameter": "b_jrm33_sys3_con_60_1_gll_xyz_iau", "start_date": "1995-07-14T00:00:00Z", "stop_date": "2003-09-21T23:50:00Z", "xmlid": "b_jrm33_sys3_con_60_1_gll_xyz_iau(1)"}, "b_jrm33_sys3_con_60_1_gll_xyz_iau2": {"__spz_name__": "bphi", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_jrm33_sys3_con_60_1_gll_xyz_iau(2)", "dataset": "gll-jrm33-model", "index1": "2", "is_public": "True", "name": "bphi", "parameter": "b_jrm33_sys3_con_60_1_gll_xyz_iau", "start_date": "1995-07-14T00:00:00Z", "stop_date": "2003-09-21T23:50:00Z", "xmlid": "b_jrm33_sys3_con_60_1_gll_xyz_iau(2)"}, "dataset": "gll-jrm33-model", "is_public": "True", "name": "b_sys3_jup", "predefined": "1", "size": "3", "start_date": "1995-07-14T00:00:00Z", "stop_date": "2003-09-21T23:50:00Z", "template": "b_jrm33_sys3_con_##sampling##_##con##_##orbit##", "units": "nT", "xmlid": "b_jrm33_sys3_con_60_1_gll_xyz_iau"}, "dataSource": "IRAP", "desc": "JRM33 + Con2020 jovian magnetic field model
Sampling: 1M
Provider: IRAP", "is_public": "True", "lastModificationDate": "2018-09-06T15:05:46Z", "lastUpdate": "2018-09-04T15:44:27Z", "measurement_type": "MagneticField", "name": "JRM33 + Con2020 field model", "processing_level": "Calibrated", "sampling": "1M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Galileo/Models/gll-jrm33-model", "start_date": "1995-07-14T00:00:00Z", "stop_date": "2003-09-21T23:50:00Z", "target": "Jupiter", "xmlid": "gll-jrm33-model"}, "gll_mod_khurana": {"__spz_name__": "Khurana Model", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "gll-mod-khurana", "att": "auto/gll-mod-khurana", "dataSource": "", "desc": "
Sampling: 300S", "gll_khurana_bmag": {"__spz_name__": "b_mag", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_khurana_bmag", "dataset": "gll-mod-khurana", "is_public": "True", "name": "b_mag", "start_date": "1996-05-29T00:00:00Z", "stop_date": "2003-09-30T11:55:00Z", "units": "nT", "xmlid": "gll_khurana_bmag"}, "gll_khurana_bsys3": {"__spz_name__": "b_sys3", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_khurana_bsys3", "dataset": "gll-mod-khurana", "gll_khurana_bsys30": {"__spz_name__": "br_sys3", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_khurana_bsys3(0)", "dataset": "gll-mod-khurana", "index1": "0", "is_public": "True", "name": "br_sys3", "parameter": "gll_khurana_bsys3", "start_date": "1996-05-29T00:00:00Z", "stop_date": "2003-09-30T11:55:00Z", "xmlid": "gll_khurana_bsys3(0)"}, "gll_khurana_bsys31": {"__spz_name__": "bt_sys3", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_khurana_bsys3(1)", "dataset": "gll-mod-khurana", "index1": "1", "is_public": "True", "name": "bt_sys3", "parameter": "gll_khurana_bsys3", "start_date": "1996-05-29T00:00:00Z", "stop_date": "2003-09-30T11:55:00Z", "xmlid": "gll_khurana_bsys3(1)"}, "gll_khurana_bsys32": {"__spz_name__": "bp_sys3", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_khurana_bsys3(2)", "dataset": "gll-mod-khurana", "index1": "2", "is_public": "True", "name": "bp_sys3", "parameter": "gll_khurana_bsys3", "start_date": "1996-05-29T00:00:00Z", "stop_date": "2003-09-30T11:55:00Z", "xmlid": "gll_khurana_bsys3(2)"}, "is_public": "True", "name": "b_sys3", "size": "3", "start_date": "1996-05-29T00:00:00Z", "stop_date": "2003-09-30T11:55:00Z", "units": "nT", "xmlid": "gll_khurana_bsys3"}, "is_public": "True", "lastModificationDate": "2012-07-24T11:11:48Z", "lastUpdate": "2012-07-24T11:05:50Z", "measurement_type": "MagneticField", "name": "Khurana Model", "processing_level": "Calibrated", "sampling": "300S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Galileo/Models/gll-mod-khurana", "start_date": "1996-05-29T00:00:00Z", "stop_date": "2003-09-30T11:55:00Z", "target": "Jupiter", "xmlid": "gll-mod-khurana"}, "gll_mod_mshell": {"__spz_name__": "JRM33 + Con2020 M-Shell", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "gll-mod-mshell", "att": "auto/gll-mod-mshell", "dataSource": "IRAP", "desc": "JRM33 + Con2020 M-Shell
Sampling: 15M
Provider: IRAP", "is_public": "True", "lastModificationDate": "2024-02-21T10:46:45Z", "lastUpdate": "2024-02-21T10:46:45Z", "measurement_type": "MagneticField", "mshell_gll_m": {"__spz_name__": "M-Shell", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mshell_gll_m", "dataset": "gll-mod-mshell", "description": "M-Shell - Radial distance of the intersection between the magnetic field line and themagnetic equator", "is_public": "True", "name": "M-Shell", "start_date": "1995-12-05T13:35:00Z", "stop_date": "2003-09-21T23:50:00Z", "xmlid": "mshell_gll_m"}, "mshell_gll_p": {"__spz_name__": "M-Shell longitude", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mshell_gll_p", "dataset": "gll-mod-mshell", "description": "Longitude (S3RH) of the intersection between the magnetic field line and themagnetic equator", "is_public": "True", "name": "M-Shell longitude", "start_date": "1995-12-05T13:35:00Z", "stop_date": "2003-09-21T23:50:00Z", "units": "deg", "xmlid": "mshell_gll_p"}, "mshell_gll_s": {"__spz_name__": "curvilinear distance s", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mshell_gll_s", "dataset": "gll-mod-mshell", "description": "Curvilinear distance along the magnetic field line between the magnetic equator and the spacecraft", "is_public": "True", "name": "curvilinear distance s", "start_date": "1995-12-05T13:35:00Z", "stop_date": "2003-09-21T23:50:00Z", "units": "Rj", "xmlid": "mshell_gll_s"}, "mshell_gll_t": {"__spz_name__": "M-Shell colatitude", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mshell_gll_t", "dataset": "gll-mod-mshell", "description": "Colatitude (S3RH) of the intersection between the magnetic field line and themagnetic equator", "is_public": "True", "name": "M-Shell colatitude", "start_date": "1995-12-05T13:35:00Z", "stop_date": "2003-09-21T23:50:00Z", "units": "deg", "xmlid": "mshell_gll_t"}, "name": "JRM33 + Con2020 M-Shell", "processing_level": "Calibrated", "sampling": "15M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Galileo/Models/gll-mod-mshell", "start_date": "1995-12-05T13:35:00Z", "stop_date": "2003-09-21T23:50:00Z", "target": "Jupiter", "xmlid": "gll-mod-mshell"}, "gll_mod_onera": {"__spz_name__": "ONERA Model", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "gll-mod-onera", "att": "auto/gll-mod-onera", "dataSource": "", "desc": "
MinSampling: 114S; MaxSampling: 685S", "gll_onera_alpha": {"__spz_name__": "alpha", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_onera_alpha", "dataset": "gll-mod-onera", "is_public": "True", "name": "alpha", "start_date": "1996-05-27T00:25:50Z", "stop_date": "2003-09-21T18:15:57Z", "units": "deg", "xmlid": "gll_onera_alpha"}, "gll_onera_alphaeq": {"__spz_name__": "alpha_eq", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_onera_alphaeq", "dataset": "gll-mod-onera", "is_public": "True", "name": "alpha_eq", "start_date": "1996-05-27T00:25:50Z", "stop_date": "2003-09-21T18:15:57Z", "units": "deg", "xmlid": "gll_onera_alphaeq"}, "gll_onera_bcalc": {"__spz_name__": "b_calc", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_onera_bcalc", "dataset": "gll-mod-onera", "is_public": "True", "name": "b_calc", "start_date": "1996-05-27T00:25:50Z", "stop_date": "2003-09-21T18:15:57Z", "units": "nT", "xmlid": "gll_onera_bcalc"}, "gll_onera_beq": {"__spz_name__": "b_eq", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_onera_beq", "dataset": "gll-mod-onera", "is_public": "True", "name": "b_eq", "start_date": "1996-05-27T00:25:50Z", "stop_date": "2003-09-21T18:15:57Z", "units": "nT", "xmlid": "gll_onera_beq"}, "gll_onera_i": {"__spz_name__": "I", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_onera_i", "dataset": "gll-mod-onera", "is_public": "True", "name": "I", "start_date": "1996-05-27T00:25:50Z", "stop_date": "2003-09-21T18:15:57Z", "xmlid": "gll_onera_i"}, "gll_onera_l": {"__spz_name__": "L", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_onera_l", "dataset": "gll-mod-onera", "is_public": "True", "name": "L", "start_date": "1996-05-27T00:25:50Z", "stop_date": "2003-09-21T18:15:57Z", "units": "Rj", "xmlid": "gll_onera_l"}, "gll_onera_lstar": {"__spz_name__": "L*", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_onera_lstar", "dataset": "gll-mod-onera", "is_public": "True", "name": "L*", "start_date": "1996-05-27T00:25:50Z", "stop_date": "2003-09-21T18:15:57Z", "units": "Rj", "xmlid": "gll_onera_lstar"}, "gll_onera_mlt": {"__spz_name__": "MLT", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_onera_mlt", "dataset": "gll-mod-onera", "is_public": "True", "name": "MLT", "start_date": "1996-05-27T00:25:50Z", "stop_date": "2003-09-21T18:15:57Z", "units": "h", "xmlid": "gll_onera_mlt"}, "is_public": "True", "lastModificationDate": "2012-07-24T09:08:17Z", "lastUpdate": "2012-07-24T09:05:02Z", "maxSampling": "685S", "measurement_type": "MagneticField", "name": "ONERA Model", "processing_level": "Calibrated", "sampling": "114S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Galileo/Models/gll-mod-onera", "start_date": "1996-05-27T00:25:50Z", "stop_date": "2003-09-21T18:15:57Z", "target": "Jupiter", "xmlid": "gll-mod-onera"}, "is_public": "True", "name": "Jovian Magnetic Field Models", "xmlid": "Galileo_models"}, "MAG": {"__spz_name__": "MAG", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Galileo_mag", "att": "auto/Galileo_mag", "desc": "Galileo Magnetometer
Magnetometer", "gll_mag_burst": {"__spz_name__": "orbit jupiter : burst", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "gll-mag-burst", "att": "auto/gll-mag-burst", "dataSource": "PDS", "desc": "
MinSampling: 0.3S; MaxSampling: 0.666S
Provider: PDS", "gll_mag_burstirc": {"__spz_name__": "b_irc", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_mag_burstirc", "dataset": "gll-mag-burst", "description": "Magnetic field vector components in IRC coordinates", "display_type": "timeseries", "gll_mag_burstirc0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_mag_burstirc(0)", "dataset": "gll-mag-burst", "index1": "0", "is_public": "True", "name": "bx", "parameter": "gll_mag_burstirc", "start_date": "1996-06-30T02:00:53Z", "stop_date": "2002-11-05T05:45:42Z", "xmlid": "gll_mag_burstirc(0)"}, "gll_mag_burstirc1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_mag_burstirc(1)", "dataset": "gll-mag-burst", "index1": "1", "is_public": "True", "name": "by", "parameter": "gll_mag_burstirc", "start_date": "1996-06-30T02:00:53Z", "stop_date": "2002-11-05T05:45:42Z", "xmlid": "gll_mag_burstirc(1)"}, "gll_mag_burstirc2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_mag_burstirc(2)", "dataset": "gll-mag-burst", "index1": "2", "is_public": "True", "name": "bz", "parameter": "gll_mag_burstirc", "start_date": "1996-06-30T02:00:53Z", "stop_date": "2002-11-05T05:45:42Z", "xmlid": "gll_mag_burstirc(2)"}, "is_public": "True", "name": "b_irc", "size": "3", "start_date": "1996-06-30T02:00:53Z", "stop_date": "2002-11-05T05:45:42Z", "ucd": "phys.magField", "units": "nT", "xmlid": "gll_mag_burstirc"}, "gll_mag_burstmagnitude": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_mag_burstmagnitude", "dataset": "gll-mag-burst", "description": "Magnetic field vector magnitude", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "1996-06-30T02:00:53Z", "stop_date": "2002-11-05T05:45:42Z", "ucd": "phys.magField", "units": "nT", "xmlid": "gll_mag_burstmagnitude"}, "gll_mag_burstsys3": {"__spz_name__": "b_sys3", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_mag_burstsys3", "dataset": "gll-mag-burst", "description": "Magnetic field vector components in SYS3 coordinates", "display_type": "timeseries", "gll_mag_burstsys30": {"__spz_name__": "br", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_mag_burstsys3(0)", "dataset": "gll-mag-burst", "index1": "0", "is_public": "True", "name": "br", "parameter": "gll_mag_burstsys3", "start_date": "1996-06-30T02:00:53Z", "stop_date": "2002-11-05T05:45:42Z", "xmlid": "gll_mag_burstsys3(0)"}, "gll_mag_burstsys31": {"__spz_name__": "btheta", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_mag_burstsys3(1)", "dataset": "gll-mag-burst", "index1": "1", "is_public": "True", "name": "btheta", "parameter": "gll_mag_burstsys3", "start_date": "1996-06-30T02:00:53Z", "stop_date": "2002-11-05T05:45:42Z", "xmlid": "gll_mag_burstsys3(1)"}, "gll_mag_burstsys32": {"__spz_name__": "bphi", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_mag_burstsys3(2)", "dataset": "gll-mag-burst", "index1": "2", "is_public": "True", "name": "bphi", "parameter": "gll_mag_burstsys3", "start_date": "1996-06-30T02:00:53Z", "stop_date": "2002-11-05T05:45:42Z", "xmlid": "gll_mag_burstsys3(2)"}, "is_public": "True", "name": "b_sys3", "size": "3", "start_date": "1996-06-30T02:00:53Z", "stop_date": "2002-11-05T05:45:42Z", "ucd": "phys.magField", "units": "nT", "xmlid": "gll_mag_burstsys3"}, "is_public": "True", "lastModificationDate": "2012-03-06T19:42:36Z", "lastUpdate": "2012-03-06T19:42:38Z", "maxSampling": "0.666S", "measurement_type": "MagneticField", "name": "orbit jupiter : burst", "processing_level": "Calibrated", "sampling": "0.3S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Galileo/MAG/gll-mag-burst", "start_date": "1996-06-30T02:00:53Z", "stop_date": "2002-11-05T05:45:42Z", "target": "Jupiter", "xmlid": "gll-mag-burst"}, "gll_mag_ca": {"__spz_name__": "flybys callisto", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "gll-mag-ca", "att": "auto/gll-mag-ca", "dataSource": "PDS", "desc": "
MinSampling: 0.334S; MaxSampling: 24S
Provider: PDS", "gll_mag_cacphio": {"__spz_name__": "b_cphio", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_mag_cacphio", "dataset": "gll-mag-ca", "description": "Magnetic field vector components in Callisto-centered Phi-Omega coordinates", "display_type": "timeseries", "gll_mag_cacphio0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_mag_cacphio(0)", "dataset": "gll-mag-ca", "index1": "0", "is_public": "True", "name": "bx", "parameter": "gll_mag_cacphio", "start_date": "1996-11-04T13:15:10Z", "stop_date": "2001-05-25T11:45:04Z", "xmlid": "gll_mag_cacphio(0)"}, "gll_mag_cacphio1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_mag_cacphio(1)", "dataset": "gll-mag-ca", "index1": "1", "is_public": "True", "name": "by", "parameter": "gll_mag_cacphio", "start_date": "1996-11-04T13:15:10Z", "stop_date": "2001-05-25T11:45:04Z", "xmlid": "gll_mag_cacphio(1)"}, "gll_mag_cacphio2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_mag_cacphio(2)", "dataset": "gll-mag-ca", "index1": "2", "is_public": "True", "name": "bz", "parameter": "gll_mag_cacphio", "start_date": "1996-11-04T13:15:10Z", "stop_date": "2001-05-25T11:45:04Z", "xmlid": "gll_mag_cacphio(2)"}, "is_public": "True", "name": "b_cphio", "size": "3", "start_date": "1996-11-04T13:15:10Z", "stop_date": "2001-05-25T11:45:04Z", "ucd": "phys.magField", "units": "nT", "xmlid": "gll_mag_cacphio"}, "gll_mag_cacsprh": {"__spz_name__": "b_csprh", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_mag_cacsprh", "dataset": "gll-mag-ca", "description": "Magnetic field vector components in Callisto-centered spherical coordinates", "display_type": "timeseries", "gll_mag_cacsprh0": {"__spz_name__": "br", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_mag_cacsprh(0)", "dataset": "gll-mag-ca", "index1": "0", "is_public": "True", "name": "br", "parameter": "gll_mag_cacsprh", "start_date": "1996-11-04T13:15:10Z", "stop_date": "2001-05-25T11:45:04Z", "xmlid": "gll_mag_cacsprh(0)"}, "gll_mag_cacsprh1": {"__spz_name__": "btheta", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_mag_cacsprh(1)", "dataset": "gll-mag-ca", "index1": "1", "is_public": "True", "name": "btheta", "parameter": "gll_mag_cacsprh", "start_date": "1996-11-04T13:15:10Z", "stop_date": "2001-05-25T11:45:04Z", "xmlid": "gll_mag_cacsprh(1)"}, "gll_mag_cacsprh2": {"__spz_name__": "bphi", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_mag_cacsprh(2)", "dataset": "gll-mag-ca", "index1": "2", "is_public": "True", "name": "bphi", "parameter": "gll_mag_cacsprh", "start_date": "1996-11-04T13:15:10Z", "stop_date": "2001-05-25T11:45:04Z", "xmlid": "gll_mag_cacsprh(2)"}, "is_public": "True", "name": "b_csprh", "size": "3", "start_date": "1996-11-04T13:15:10Z", "stop_date": "2001-05-25T11:45:04Z", "ucd": "phys.magField", "units": "nT", "xmlid": "gll_mag_cacsprh"}, "gll_mag_cairc": {"__spz_name__": "b_irc", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_mag_cairc", "dataset": "gll-mag-ca", "description": "Magnetic field vector components in IRC coordinates", "display_type": "timeseries", "gll_mag_cairc0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_mag_cairc(0)", "dataset": "gll-mag-ca", "index1": "0", "is_public": "True", "name": "bx", "parameter": "gll_mag_cairc", "start_date": "1996-11-04T13:15:10Z", "stop_date": "2001-05-25T11:45:04Z", "xmlid": "gll_mag_cairc(0)"}, "gll_mag_cairc1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_mag_cairc(1)", "dataset": "gll-mag-ca", "index1": "1", "is_public": "True", "name": "by", "parameter": "gll_mag_cairc", "start_date": "1996-11-04T13:15:10Z", "stop_date": "2001-05-25T11:45:04Z", "xmlid": "gll_mag_cairc(1)"}, "gll_mag_cairc2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_mag_cairc(2)", "dataset": "gll-mag-ca", "index1": "2", "is_public": "True", "name": "bz", "parameter": "gll_mag_cairc", "start_date": "1996-11-04T13:15:10Z", "stop_date": "2001-05-25T11:45:04Z", "xmlid": "gll_mag_cairc(2)"}, "is_public": "True", "name": "b_irc", "size": "3", "start_date": "1996-11-04T13:15:10Z", "stop_date": "2001-05-25T11:45:04Z", "ucd": "phys.magField", "units": "nT", "xmlid": "gll_mag_cairc"}, "gll_mag_camagnitude": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_mag_camagnitude", "dataset": "gll-mag-ca", "description": "Magnetic field vector magnitude", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "1996-11-04T13:15:10Z", "stop_date": "2001-05-25T11:45:04Z", "ucd": "phys.magField", "units": "nT", "xmlid": "gll_mag_camagnitude"}, "gll_mag_casys3": {"__spz_name__": "b_sys3", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_mag_casys3", "dataset": "gll-mag-ca", "description": "Magnetic field vector components in SYS3 spherical coordinates", "display_type": "timeseries", "gll_mag_casys30": {"__spz_name__": "br", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_mag_casys3(0)", "dataset": "gll-mag-ca", "index1": "0", "is_public": "True", "name": "br", "parameter": "gll_mag_casys3", "start_date": "1996-11-04T13:15:10Z", "stop_date": "2001-05-25T11:45:04Z", "xmlid": "gll_mag_casys3(0)"}, "gll_mag_casys31": {"__spz_name__": "btheta", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_mag_casys3(1)", "dataset": "gll-mag-ca", "index1": "1", "is_public": "True", "name": "btheta", "parameter": "gll_mag_casys3", "start_date": "1996-11-04T13:15:10Z", "stop_date": "2001-05-25T11:45:04Z", "xmlid": "gll_mag_casys3(1)"}, "gll_mag_casys32": {"__spz_name__": "bphi", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_mag_casys3(2)", "dataset": "gll-mag-ca", "index1": "2", "is_public": "True", "name": "bphi", "parameter": "gll_mag_casys3", "start_date": "1996-11-04T13:15:10Z", "stop_date": "2001-05-25T11:45:04Z", "xmlid": "gll_mag_casys3(2)"}, "is_public": "True", "name": "b_sys3", "size": "3", "start_date": "1996-11-04T13:15:10Z", "stop_date": "2001-05-25T11:45:04Z", "ucd": "phys.magField", "units": "nT", "xmlid": "gll_mag_casys3"}, "is_public": "True", "lastModificationDate": "2012-03-06T19:42:35Z", "lastUpdate": "2012-03-06T19:42:35Z", "maxSampling": "24S", "measurement_type": "MagneticField", "name": "flybys callisto", "processing_level": "Calibrated", "sampling": "0.334S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Galileo/MAG/gll-mag-ca", "start_date": "1996-11-04T13:15:10Z", "stop_date": "2001-05-25T11:45:04Z", "target": "Jupiter.Callisto", "xmlid": "gll-mag-ca"}, "gll_mag_eu": {"__spz_name__": "flybys europa", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "gll-mag-eu", "att": "auto/gll-mag-eu", "dataSource": "PDS", "desc": "
MinSampling: 0.333S; MaxSampling: 12S
Provider: PDS", "gll_mag_euephio": {"__spz_name__": "b_ephio", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_mag_euephio", "dataset": "gll-mag-eu", "description": "Magnetic field vector components in Europa-centered Phi-Omega coordinates", "display_type": "timeseries", "gll_mag_euephio0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_mag_euephio(0)", "dataset": "gll-mag-eu", "index1": "0", "is_public": "True", "name": "bx", "parameter": "gll_mag_euephio", "start_date": "1996-12-19T06:33:27Z", "stop_date": "2000-01-03T18:30:14Z", "xmlid": "gll_mag_euephio(0)"}, "gll_mag_euephio1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_mag_euephio(1)", "dataset": "gll-mag-eu", "index1": "1", "is_public": "True", "name": "by", "parameter": "gll_mag_euephio", "start_date": "1996-12-19T06:33:27Z", "stop_date": "2000-01-03T18:30:14Z", "xmlid": "gll_mag_euephio(1)"}, "gll_mag_euephio2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_mag_euephio(2)", "dataset": "gll-mag-eu", "index1": "2", "is_public": "True", "name": "bz", "parameter": "gll_mag_euephio", "start_date": "1996-12-19T06:33:27Z", "stop_date": "2000-01-03T18:30:14Z", "xmlid": "gll_mag_euephio(2)"}, "is_public": "True", "name": "b_ephio", "size": "3", "start_date": "1996-12-19T06:33:27Z", "stop_date": "2000-01-03T18:30:14Z", "ucd": "phys.magField", "units": "nT", "xmlid": "gll_mag_euephio"}, "gll_mag_euesprh": {"__spz_name__": "b_esprh", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_mag_euesprh", "dataset": "gll-mag-eu", "description": "Magnetic field vector components in Europa-centered spherical coordinates", "display_type": "timeseries", "gll_mag_euesprh0": {"__spz_name__": "br", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_mag_euesprh(0)", "dataset": "gll-mag-eu", "index1": "0", "is_public": "True", "name": "br", "parameter": "gll_mag_euesprh", "start_date": "1996-12-19T06:33:27Z", "stop_date": "2000-01-03T18:30:14Z", "xmlid": "gll_mag_euesprh(0)"}, "gll_mag_euesprh1": {"__spz_name__": "btheta", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_mag_euesprh(1)", "dataset": "gll-mag-eu", "index1": "1", "is_public": "True", "name": "btheta", "parameter": "gll_mag_euesprh", "start_date": "1996-12-19T06:33:27Z", "stop_date": "2000-01-03T18:30:14Z", "xmlid": "gll_mag_euesprh(1)"}, "gll_mag_euesprh2": {"__spz_name__": "bphi", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_mag_euesprh(2)", "dataset": "gll-mag-eu", "index1": "2", "is_public": "True", "name": "bphi", "parameter": "gll_mag_euesprh", "start_date": "1996-12-19T06:33:27Z", "stop_date": "2000-01-03T18:30:14Z", "xmlid": "gll_mag_euesprh(2)"}, "is_public": "True", "name": "b_esprh", "size": "3", "start_date": "1996-12-19T06:33:27Z", "stop_date": "2000-01-03T18:30:14Z", "ucd": "phys.magField", "units": "nT", "xmlid": "gll_mag_euesprh"}, "gll_mag_euirc": {"__spz_name__": "b_irc", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_mag_euirc", "dataset": "gll-mag-eu", "description": "Magnetic field vector components in IRC coordinates", "display_type": "timeseries", "gll_mag_euirc0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_mag_euirc(0)", "dataset": "gll-mag-eu", "index1": "0", "is_public": "True", "name": "bx", "parameter": "gll_mag_euirc", "start_date": "1996-12-19T06:33:27Z", "stop_date": "2000-01-03T18:30:14Z", "xmlid": "gll_mag_euirc(0)"}, "gll_mag_euirc1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_mag_euirc(1)", "dataset": "gll-mag-eu", "index1": "1", "is_public": "True", "name": "by", "parameter": "gll_mag_euirc", "start_date": "1996-12-19T06:33:27Z", "stop_date": "2000-01-03T18:30:14Z", "xmlid": "gll_mag_euirc(1)"}, "gll_mag_euirc2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_mag_euirc(2)", "dataset": "gll-mag-eu", "index1": "2", "is_public": "True", "name": "bz", "parameter": "gll_mag_euirc", "start_date": "1996-12-19T06:33:27Z", "stop_date": "2000-01-03T18:30:14Z", "xmlid": "gll_mag_euirc(2)"}, "is_public": "True", "name": "b_irc", "size": "3", "start_date": "1996-12-19T06:33:27Z", "stop_date": "2000-01-03T18:30:14Z", "ucd": "phys.magField", "units": "nT", "xmlid": "gll_mag_euirc"}, "gll_mag_eumagnitude": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_mag_eumagnitude", "dataset": "gll-mag-eu", "description": "Magnetic field vector magnitude", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "1996-12-19T06:33:27Z", "stop_date": "2000-01-03T18:30:14Z", "ucd": "phys.magField", "units": "nT", "xmlid": "gll_mag_eumagnitude"}, "gll_mag_eusys3": {"__spz_name__": "b_sys3", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_mag_eusys3", "dataset": "gll-mag-eu", "description": "Magnetic field vector components in SYS3 spherical coordinates", "display_type": "timeseries", "gll_mag_eusys30": {"__spz_name__": "br", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_mag_eusys3(0)", "dataset": "gll-mag-eu", "index1": "0", "is_public": "True", "name": "br", "parameter": "gll_mag_eusys3", "start_date": "1996-12-19T06:33:27Z", "stop_date": "2000-01-03T18:30:14Z", "xmlid": "gll_mag_eusys3(0)"}, "gll_mag_eusys31": {"__spz_name__": "btheta", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_mag_eusys3(1)", "dataset": "gll-mag-eu", "index1": "1", "is_public": "True", "name": "btheta", "parameter": "gll_mag_eusys3", "start_date": "1996-12-19T06:33:27Z", "stop_date": "2000-01-03T18:30:14Z", "xmlid": "gll_mag_eusys3(1)"}, "gll_mag_eusys32": {"__spz_name__": "bphi", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_mag_eusys3(2)", "dataset": "gll-mag-eu", "index1": "2", "is_public": "True", "name": "bphi", "parameter": "gll_mag_eusys3", "start_date": "1996-12-19T06:33:27Z", "stop_date": "2000-01-03T18:30:14Z", "xmlid": "gll_mag_eusys3(2)"}, "is_public": "True", "name": "b_sys3", "size": "3", "start_date": "1996-12-19T06:33:27Z", "stop_date": "2000-01-03T18:30:14Z", "ucd": "phys.magField", "units": "nT", "xmlid": "gll_mag_eusys3"}, "is_public": "True", "lastModificationDate": "2012-03-06T19:43:03Z", "lastUpdate": "2012-03-06T19:43:04Z", "maxSampling": "12S", "measurement_type": "MagneticField", "name": "flybys europa", "processing_level": "Calibrated", "sampling": "0.333S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Galileo/MAG/gll-mag-eu", "start_date": "1996-12-19T06:33:27Z", "stop_date": "2000-01-03T18:30:14Z", "target": "Jupiter.Europa", "xmlid": "gll-mag-eu"}, "gll_mag_ga": {"__spz_name__": "flybys ganymede", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "gll-mag-ga", "att": "auto/gll-mag-ga", "dataSource": "PDS", "desc": "
Sampling: 0.3S
Provider: PDS", "gll_mag_gagphio": {"__spz_name__": "b_gphio", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_mag_gagphio", "dataset": "gll-mag-ga", "description": "Magnetic field vector components in Ganymede-centered Phi-Omega coordinates", "display_type": "timeseries", "gll_mag_gagphio0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_mag_gagphio(0)", "dataset": "gll-mag-ga", "index1": "0", "is_public": "True", "name": "bx", "parameter": "gll_mag_gagphio", "start_date": "1996-06-27T06:07:08Z", "stop_date": "2000-12-28T08:55:20Z", "xmlid": "gll_mag_gagphio(0)"}, "gll_mag_gagphio1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_mag_gagphio(1)", "dataset": "gll-mag-ga", "index1": "1", "is_public": "True", "name": "by", "parameter": "gll_mag_gagphio", "start_date": "1996-06-27T06:07:08Z", "stop_date": "2000-12-28T08:55:20Z", "xmlid": "gll_mag_gagphio(1)"}, "gll_mag_gagphio2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_mag_gagphio(2)", "dataset": "gll-mag-ga", "index1": "2", "is_public": "True", "name": "bz", "parameter": "gll_mag_gagphio", "start_date": "1996-06-27T06:07:08Z", "stop_date": "2000-12-28T08:55:20Z", "xmlid": "gll_mag_gagphio(2)"}, "is_public": "True", "name": "b_gphio", "size": "3", "start_date": "1996-06-27T06:07:08Z", "stop_date": "2000-12-28T08:55:20Z", "ucd": "phys.magField", "units": "nT", "xmlid": "gll_mag_gagphio"}, "gll_mag_gagsprh": {"__spz_name__": "b gsprh", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_mag_gagsprh", "dataset": "gll-mag-ga", "description": "Magnetic field vector components in Ganymede-centered spherical coordinates", "gll_mag_gagsprh0": {"__spz_name__": "br", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_mag_gagsprh(0)", "dataset": "gll-mag-ga", "index1": "0", "is_public": "True", "name": "br", "parameter": "gll_mag_gagsprh", "start_date": "1996-06-27T06:07:08Z", "stop_date": "2000-12-28T08:55:20Z", "xmlid": "gll_mag_gagsprh(0)"}, "gll_mag_gagsprh1": {"__spz_name__": "btheta", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_mag_gagsprh(1)", "dataset": "gll-mag-ga", "index1": "1", "is_public": "True", "name": "btheta", "parameter": "gll_mag_gagsprh", "start_date": "1996-06-27T06:07:08Z", "stop_date": "2000-12-28T08:55:20Z", "xmlid": "gll_mag_gagsprh(1)"}, "gll_mag_gagsprh2": {"__spz_name__": "bphi", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_mag_gagsprh(2)", "dataset": "gll-mag-ga", "index1": "2", "is_public": "True", "name": "bphi", "parameter": "gll_mag_gagsprh", "start_date": "1996-06-27T06:07:08Z", "stop_date": "2000-12-28T08:55:20Z", "xmlid": "gll_mag_gagsprh(2)"}, "is_public": "True", "name": "b gsprh", "size": "3", "start_date": "1996-06-27T06:07:08Z", "stop_date": "2000-12-28T08:55:20Z", "units": "nT", "xmlid": "gll_mag_gagsprh"}, "gll_mag_gairc": {"__spz_name__": "b_irc", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_mag_gairc", "dataset": "gll-mag-ga", "description": "Magnetic field vector components in IRC coordinates", "display_type": "timeseries", "gll_mag_gairc0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_mag_gairc(0)", "dataset": "gll-mag-ga", "index1": "0", "is_public": "True", "name": "bx", "parameter": "gll_mag_gairc", "start_date": "1996-06-27T06:07:08Z", "stop_date": "2000-12-28T08:55:20Z", "xmlid": "gll_mag_gairc(0)"}, "gll_mag_gairc1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_mag_gairc(1)", "dataset": "gll-mag-ga", "index1": "1", "is_public": "True", "name": "by", "parameter": "gll_mag_gairc", "start_date": "1996-06-27T06:07:08Z", "stop_date": "2000-12-28T08:55:20Z", "xmlid": "gll_mag_gairc(1)"}, "gll_mag_gairc2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_mag_gairc(2)", "dataset": "gll-mag-ga", "index1": "2", "is_public": "True", "name": "bz", "parameter": "gll_mag_gairc", "start_date": "1996-06-27T06:07:08Z", "stop_date": "2000-12-28T08:55:20Z", "xmlid": "gll_mag_gairc(2)"}, "is_public": "True", "name": "b_irc", "size": "3", "start_date": "1996-06-27T06:07:08Z", "stop_date": "2000-12-28T08:55:20Z", "ucd": "phys.magField", "units": "nT", "xmlid": "gll_mag_gairc"}, "gll_mag_gamagnitude": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_mag_gamagnitude", "dataset": "gll-mag-ga", "description": "Magnetic field vector magnitude", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "1996-06-27T06:07:08Z", "stop_date": "2000-12-28T08:55:20Z", "ucd": "phys.magField", "units": "nT", "xmlid": "gll_mag_gamagnitude"}, "gll_mag_gasys3": {"__spz_name__": "b_sys3", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_mag_gasys3", "dataset": "gll-mag-ga", "description": "Magnetic field vector components in SYS3 spherical coordinates", "display_type": "timeseries", "gll_mag_gasys30": {"__spz_name__": "br", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_mag_gasys3(0)", "dataset": "gll-mag-ga", "index1": "0", "is_public": "True", "name": "br", "parameter": "gll_mag_gasys3", "start_date": "1996-06-27T06:07:08Z", "stop_date": "2000-12-28T08:55:20Z", "xmlid": "gll_mag_gasys3(0)"}, "gll_mag_gasys31": {"__spz_name__": "btheta", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_mag_gasys3(1)", "dataset": "gll-mag-ga", "index1": "1", "is_public": "True", "name": "btheta", "parameter": "gll_mag_gasys3", "start_date": "1996-06-27T06:07:08Z", "stop_date": "2000-12-28T08:55:20Z", "xmlid": "gll_mag_gasys3(1)"}, "gll_mag_gasys32": {"__spz_name__": "bphi", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_mag_gasys3(2)", "dataset": "gll-mag-ga", "index1": "2", "is_public": "True", "name": "bphi", "parameter": "gll_mag_gasys3", "start_date": "1996-06-27T06:07:08Z", "stop_date": "2000-12-28T08:55:20Z", "xmlid": "gll_mag_gasys3(2)"}, "is_public": "True", "name": "b_sys3", "size": "3", "start_date": "1996-06-27T06:07:08Z", "stop_date": "2000-12-28T08:55:20Z", "ucd": "phys.magField", "units": "nT", "xmlid": "gll_mag_gasys3"}, "is_public": "True", "lastModificationDate": "2012-03-06T19:42:40Z", "lastUpdate": "2012-03-06T19:42:41Z", "measurement_type": "MagneticField", "name": "flybys ganymede", "processing_level": "Calibrated", "sampling": "0.3S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Galileo/MAG/gll-mag-ga", "start_date": "1996-06-27T06:07:08Z", "stop_date": "2000-12-28T08:55:20Z", "target": "Jupiter.Ganymede", "xmlid": "gll-mag-ga"}, "gll_mag_io": {"__spz_name__": "flybys io", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "gll-mag-io", "att": "auto/gll-mag-io", "dataSource": "PDS", "desc": "
MinSampling: 0.2S; MaxSampling: 0.333S
Provider: PDS", "gll_mag_ioiphio": {"__spz_name__": "b_iphio", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_mag_ioiphio", "dataset": "gll-mag-io", "description": "Magnetic field vector components in Io-centered Phi-Omega coordinates", "display_type": "timeseries", "gll_mag_ioiphio0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_mag_ioiphio(0)", "dataset": "gll-mag-io", "index1": "0", "is_public": "True", "name": "bx", "parameter": "gll_mag_ioiphio", "start_date": "1995-12-07T15:21:01Z", "stop_date": "2001-10-16T02:21:47Z", "xmlid": "gll_mag_ioiphio(0)"}, "gll_mag_ioiphio1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_mag_ioiphio(1)", "dataset": "gll-mag-io", "index1": "1", "is_public": "True", "name": "by", "parameter": "gll_mag_ioiphio", "start_date": "1995-12-07T15:21:01Z", "stop_date": "2001-10-16T02:21:47Z", "xmlid": "gll_mag_ioiphio(1)"}, "gll_mag_ioiphio2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_mag_ioiphio(2)", "dataset": "gll-mag-io", "index1": "2", "is_public": "True", "name": "bz", "parameter": "gll_mag_ioiphio", "start_date": "1995-12-07T15:21:01Z", "stop_date": "2001-10-16T02:21:47Z", "xmlid": "gll_mag_ioiphio(2)"}, "is_public": "True", "name": "b_iphio", "size": "3", "start_date": "1995-12-07T15:21:01Z", "stop_date": "2001-10-16T02:21:47Z", "ucd": "phys.magField", "units": "nT", "xmlid": "gll_mag_ioiphio"}, "gll_mag_ioirc": {"__spz_name__": "b_irc", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_mag_ioirc", "dataset": "gll-mag-io", "description": "Magnetic field vector components in IRC coordinates", "display_type": "timeseries", "gll_mag_ioirc0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_mag_ioirc(0)", "dataset": "gll-mag-io", "index1": "0", "is_public": "True", "name": "bx", "parameter": "gll_mag_ioirc", "start_date": "1995-12-07T15:21:01Z", "stop_date": "2001-10-16T02:21:47Z", "xmlid": "gll_mag_ioirc(0)"}, "gll_mag_ioirc1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_mag_ioirc(1)", "dataset": "gll-mag-io", "index1": "1", "is_public": "True", "name": "by", "parameter": "gll_mag_ioirc", "start_date": "1995-12-07T15:21:01Z", "stop_date": "2001-10-16T02:21:47Z", "xmlid": "gll_mag_ioirc(1)"}, "gll_mag_ioirc2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_mag_ioirc(2)", "dataset": "gll-mag-io", "index1": "2", "is_public": "True", "name": "bz", "parameter": "gll_mag_ioirc", "start_date": "1995-12-07T15:21:01Z", "stop_date": "2001-10-16T02:21:47Z", "xmlid": "gll_mag_ioirc(2)"}, "is_public": "True", "name": "b_irc", "size": "3", "start_date": "1995-12-07T15:21:01Z", "stop_date": "2001-10-16T02:21:47Z", "ucd": "phys.magField", "units": "nT", "xmlid": "gll_mag_ioirc"}, "gll_mag_ioisprh": {"__spz_name__": "b_isprh", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_mag_ioisprh", "dataset": "gll-mag-io", "description": "Magnetic field vector components in Io-centered spherical coordinates", "gll_mag_ioisprh0": {"__spz_name__": "br", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_mag_ioisprh(0)", "dataset": "gll-mag-io", "index1": "0", "is_public": "True", "name": "br", "parameter": "gll_mag_ioisprh", "start_date": "1995-12-07T15:21:01Z", "stop_date": "2001-10-16T02:21:47Z", "xmlid": "gll_mag_ioisprh(0)"}, "gll_mag_ioisprh1": {"__spz_name__": "btheta", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_mag_ioisprh(1)", "dataset": "gll-mag-io", "index1": "1", "is_public": "True", "name": "btheta", "parameter": "gll_mag_ioisprh", "start_date": "1995-12-07T15:21:01Z", "stop_date": "2001-10-16T02:21:47Z", "xmlid": "gll_mag_ioisprh(1)"}, "gll_mag_ioisprh2": {"__spz_name__": "bphi", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_mag_ioisprh(2)", "dataset": "gll-mag-io", "index1": "2", "is_public": "True", "name": "bphi", "parameter": "gll_mag_ioisprh", "start_date": "1995-12-07T15:21:01Z", "stop_date": "2001-10-16T02:21:47Z", "xmlid": "gll_mag_ioisprh(2)"}, "is_public": "True", "name": "b_isprh", "size": "3", "start_date": "1995-12-07T15:21:01Z", "stop_date": "2001-10-16T02:21:47Z", "ucd": "phys.magField", "units": "nT", "xmlid": "gll_mag_ioisprh"}, "gll_mag_iomagnitude": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_mag_iomagnitude", "dataset": "gll-mag-io", "description": "Magnetic field vector magnitude", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "1995-12-07T15:21:01Z", "stop_date": "2001-10-16T02:21:47Z", "ucd": "phys.magField", "units": "nT", "xmlid": "gll_mag_iomagnitude"}, "gll_mag_iosys3": {"__spz_name__": "b_sys3", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_mag_iosys3", "dataset": "gll-mag-io", "description": "Magnetic field vector components in SYS3 spherical coordinates", "gll_mag_iosys30": {"__spz_name__": "br", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_mag_iosys3(0)", "dataset": "gll-mag-io", "index1": "0", "is_public": "True", "name": "br", "parameter": "gll_mag_iosys3", "start_date": "1995-12-07T15:21:01Z", "stop_date": "2001-10-16T02:21:47Z", "xmlid": "gll_mag_iosys3(0)"}, "gll_mag_iosys31": {"__spz_name__": "btheta", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_mag_iosys3(1)", "dataset": "gll-mag-io", "index1": "1", "is_public": "True", "name": "btheta", "parameter": "gll_mag_iosys3", "start_date": "1995-12-07T15:21:01Z", "stop_date": "2001-10-16T02:21:47Z", "xmlid": "gll_mag_iosys3(1)"}, "gll_mag_iosys32": {"__spz_name__": "bphi", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_mag_iosys3(2)", "dataset": "gll-mag-io", "index1": "2", "is_public": "True", "name": "bphi", "parameter": "gll_mag_iosys3", "start_date": "1995-12-07T15:21:01Z", "stop_date": "2001-10-16T02:21:47Z", "xmlid": "gll_mag_iosys3(2)"}, "is_public": "True", "name": "b_sys3", "size": "3", "start_date": "1995-12-07T15:21:01Z", "stop_date": "2001-10-16T02:21:47Z", "ucd": "phys.magField", "units": "nT", "xmlid": "gll_mag_iosys3"}, "is_public": "True", "lastModificationDate": "2012-03-06T19:42:38Z", "lastUpdate": "2012-03-06T19:42:39Z", "maxSampling": "0.333S", "measurement_type": "MagneticField", "name": "flybys io", "processing_level": "Calibrated", "sampling": "0.2S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Galileo/MAG/gll-mag-io", "start_date": "1995-12-07T15:21:01Z", "stop_date": "2001-10-16T02:21:47Z", "target": "Jupiter.Io", "xmlid": "gll-mag-io"}, "gll_mag_msreal": {"__spz_name__": "orbit jupiter", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "gll-mag-msreal", "att": "auto/gll-mag-msreal", "dataSource": "PDS", "desc": "
MinSampling: 2.666S; MaxSampling: 24S
Provider: PDS", "gmmr_irc": {"__spz_name__": "b_irc", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gmmr_irc", "dataset": "gll-mag-msreal", "description": "Magnetic field vector components in IRC coordinates", "display_type": "timeseries", "gmmr_irc0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gmmr_irc(0)", "dataset": "gll-mag-msreal", "index1": "0", "is_public": "True", "name": "bx", "parameter": "gmmr_irc", "start_date": "1996-03-29T16:38:42Z", "stop_date": "2003-09-21T17:33:26Z", "xmlid": "gmmr_irc(0)"}, "gmmr_irc1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gmmr_irc(1)", "dataset": "gll-mag-msreal", "index1": "1", "is_public": "True", "name": "by", "parameter": "gmmr_irc", "start_date": "1996-03-29T16:38:42Z", "stop_date": "2003-09-21T17:33:26Z", "xmlid": "gmmr_irc(1)"}, "gmmr_irc2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gmmr_irc(2)", "dataset": "gll-mag-msreal", "index1": "2", "is_public": "True", "name": "bz", "parameter": "gmmr_irc", "start_date": "1996-03-29T16:38:42Z", "stop_date": "2003-09-21T17:33:26Z", "xmlid": "gmmr_irc(2)"}, "is_public": "True", "name": "b_irc", "size": "3", "start_date": "1996-03-29T16:38:42Z", "stop_date": "2003-09-21T17:33:26Z", "ucd": "phys.magField", "units": "nT", "xmlid": "gmmr_irc"}, "gmmr_jse": {"__spz_name__": "b_jse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gmmr_jse", "dataset": "gll-mag-msreal", "description": "Magnetic field vector components in JSE coordinates", "display_type": "timeseries", "gmmr_jse0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gmmr_jse(0)", "dataset": "gll-mag-msreal", "index1": "0", "is_public": "True", "name": "bx", "parameter": "gmmr_jse", "start_date": "1996-03-29T16:38:42Z", "stop_date": "2003-09-21T17:33:26Z", "xmlid": "gmmr_jse(0)"}, "gmmr_jse1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gmmr_jse(1)", "dataset": "gll-mag-msreal", "index1": "1", "is_public": "True", "name": "by", "parameter": "gmmr_jse", "start_date": "1996-03-29T16:38:42Z", "stop_date": "2003-09-21T17:33:26Z", "xmlid": "gmmr_jse(1)"}, "gmmr_jse2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gmmr_jse(2)", "dataset": "gll-mag-msreal", "index1": "2", "is_public": "True", "name": "bz", "parameter": "gmmr_jse", "start_date": "1996-03-29T16:38:42Z", "stop_date": "2003-09-21T17:33:26Z", "xmlid": "gmmr_jse(2)"}, "is_public": "True", "name": "b_jse", "size": "3", "start_date": "1996-03-29T16:38:42Z", "stop_date": "2003-09-21T17:33:26Z", "ucd": "phys.magField", "units": "nT", "xmlid": "gmmr_jse"}, "gmmr_jsm": {"__spz_name__": "b_jsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gmmr_jsm", "dataset": "gll-mag-msreal", "description": "Magnetic field vector components in JSM coordinates", "display_type": "timeseries", "gmmr_jsm0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gmmr_jsm(0)", "dataset": "gll-mag-msreal", "index1": "0", "is_public": "True", "name": "bx", "parameter": "gmmr_jsm", "start_date": "1996-03-29T16:38:42Z", "stop_date": "2003-09-21T17:33:26Z", "xmlid": "gmmr_jsm(0)"}, "gmmr_jsm1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gmmr_jsm(1)", "dataset": "gll-mag-msreal", "index1": "1", "is_public": "True", "name": "by", "parameter": "gmmr_jsm", "start_date": "1996-03-29T16:38:42Z", "stop_date": "2003-09-21T17:33:26Z", "xmlid": "gmmr_jsm(1)"}, "gmmr_jsm2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gmmr_jsm(2)", "dataset": "gll-mag-msreal", "index1": "2", "is_public": "True", "name": "bz", "parameter": "gmmr_jsm", "start_date": "1996-03-29T16:38:42Z", "stop_date": "2003-09-21T17:33:26Z", "xmlid": "gmmr_jsm(2)"}, "is_public": "True", "name": "b_jsm", "size": "3", "start_date": "1996-03-29T16:38:42Z", "stop_date": "2003-09-21T17:33:26Z", "ucd": "phys.magField", "units": "nT", "xmlid": "gmmr_jsm"}, "gmmr_magnitude": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gmmr_magnitude", "dataset": "gll-mag-msreal", "description": "Magnetic field magnitude", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "1996-03-29T16:38:42Z", "stop_date": "2003-09-21T17:33:26Z", "units": "nT", "xmlid": "gmmr_magnitude"}, "gmmr_sys3": {"__spz_name__": "b_sys3", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gmmr_sys3", "dataset": "gll-mag-msreal", "description": "Magnetic field vector components in SYS3 spherical coordinates", "display_type": "timeseries", "gmmr_sys30": {"__spz_name__": "br", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gmmr_sys3(0)", "dataset": "gll-mag-msreal", "index1": "0", "is_public": "True", "name": "br", "parameter": "gmmr_sys3", "start_date": "1996-03-29T16:38:42Z", "stop_date": "2003-09-21T17:33:26Z", "xmlid": "gmmr_sys3(0)"}, "gmmr_sys31": {"__spz_name__": "btheta", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gmmr_sys3(1)", "dataset": "gll-mag-msreal", "index1": "1", "is_public": "True", "name": "btheta", "parameter": "gmmr_sys3", "start_date": "1996-03-29T16:38:42Z", "stop_date": "2003-09-21T17:33:26Z", "xmlid": "gmmr_sys3(1)"}, "gmmr_sys32": {"__spz_name__": "bphi", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gmmr_sys3(2)", "dataset": "gll-mag-msreal", "index1": "2", "is_public": "True", "name": "bphi", "parameter": "gmmr_sys3", "start_date": "1996-03-29T16:38:42Z", "stop_date": "2003-09-21T17:33:26Z", "xmlid": "gmmr_sys3(2)"}, "is_public": "True", "name": "b_sys3", "size": "3", "start_date": "1996-03-29T16:38:42Z", "stop_date": "2003-09-21T17:33:26Z", "ucd": "phys.magField", "units": "nT", "xmlid": "gmmr_sys3"}, "is_public": "True", "lastModificationDate": "2012-03-06T19:42:51Z", "lastUpdate": "2012-03-06T19:42:51Z", "maxSampling": "24S", "measurement_type": "MagneticField", "name": "orbit jupiter", "processing_level": "Calibrated", "sampling": "2.666S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Galileo/MAG/gll-mag-msreal", "start_date": "1996-03-29T16:38:42Z", "stop_date": "2003-09-21T17:33:26Z", "target": "Jupiter", "xmlid": "gll-mag-msreal"}, "is_public": "True", "name": "MAG", "xmlid": "Galileo_mag"}, "PLS": {"__spz_name__": "PLS", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Galileo_pls", "att": "auto/Galileo_pls", "desc": "Plasma Science
MassSpectrometer", "gll_pls_fit": {"__spz_name__": "fitted parameters", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "gll-pls-fit", "att": "auto/gll-pls-fit", "dataSource": "PDS", "desc": "
MinSampling: 8S; MaxSampling: 775S
Provider: PDS", "gll_pls_fitm": {"__spz_name__": "m", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_pls_fitm", "dataset": "gll-pls-fit", "description": "assumed mass of ion used in fit", "is_public": "True", "name": "m", "start_date": "1995-12-07T15:21:55Z", "stop_date": "2002-11-05T04:05:56Z", "units": "amu", "xmlid": "gll_pls_fitm"}, "gll_pls_fitn": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_pls_fitn", "dataset": "gll-pls-fit", "description": "Ion density fitted", "display_type": "timeseries", "is_public": "True", "name": "density", "start_date": "1995-12-07T15:21:55Z", "stop_date": "2002-11-05T04:05:56Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm\u207b\u00b3", "xmlid": "gll_pls_fitn"}, "gll_pls_fitnun": {"__spz_name__": "density uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_pls_fitnun", "dataset": "gll-pls-fit", "description": "fitted Ion density uncertainty", "display_type": "timeseries", "is_public": "True", "name": "density uncertainty", "start_date": "1995-12-07T15:21:55Z", "stop_date": "2002-11-05T04:05:56Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm\u207b\u00b3", "xmlid": "gll_pls_fitnun"}, "gll_pls_fitq": {"__spz_name__": "q", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_pls_fitq", "dataset": "gll-pls-fit", "description": "assumed charge of ion used in fit", "is_public": "True", "name": "q", "start_date": "1995-12-07T15:21:55Z", "stop_date": "2002-11-05T04:05:56Z", "units": "e", "xmlid": "gll_pls_fitq"}, "gll_pls_fitqf": {"__spz_name__": "quality flag", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_pls_fitqf", "dataset": "gll-pls-fit", "description": "1=good fit, used in JGR paper; 0=bad fit", "is_public": "True", "name": "quality flag", "start_date": "1995-12-07T15:21:55Z", "stop_date": "2002-11-05T04:05:56Z", "xmlid": "gll_pls_fitqf"}, "gll_pls_fitt": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_pls_fitt", "dataset": "gll-pls-fit", "description": "Ion temperature fitted", "display_type": "timeseries", "is_public": "True", "name": "temperature", "start_date": "1995-12-07T15:21:55Z", "stop_date": "2002-11-05T04:05:56Z", "ucd": "phys.temperature;phys.atmol.ionStage", "units": "eV", "xmlid": "gll_pls_fitt"}, "gll_pls_fittun": {"__spz_name__": "temperature uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_pls_fittun", "dataset": "gll-pls-fit", "description": "fitted Ion temperature uncertainty", "display_type": "timeseries", "is_public": "True", "name": "temperature uncertainty", "start_date": "1995-12-07T15:21:55Z", "stop_date": "2002-11-05T04:05:56Z", "ucd": "phys.temperature;phys.atmol.ionStage", "units": "eV", "xmlid": "gll_pls_fittun"}, "gll_pls_fitv": {"__spz_name__": "velocity", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_pls_fitv", "dataset": "gll-pls-fit", "description": "Fitted value of V (Vr, Vtheta, Vphi) in SC coordinates", "display_type": "timeseries", "gll_pls_fitv0": {"__spz_name__": "vr", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_pls_fitv(0)", "dataset": "gll-pls-fit", "index1": "0", "is_public": "True", "name": "vr", "parameter": "gll_pls_fitv", "start_date": "1995-12-07T15:21:55Z", "stop_date": "2002-11-05T04:05:56Z", "xmlid": "gll_pls_fitv(0)"}, "gll_pls_fitv1": {"__spz_name__": "vth", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_pls_fitv(1)", "dataset": "gll-pls-fit", "index1": "1", "is_public": "True", "name": "vth", "parameter": "gll_pls_fitv", "start_date": "1995-12-07T15:21:55Z", "stop_date": "2002-11-05T04:05:56Z", "xmlid": "gll_pls_fitv(1)"}, "gll_pls_fitv2": {"__spz_name__": "vph", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_pls_fitv(2)", "dataset": "gll-pls-fit", "index1": "2", "is_public": "True", "name": "vph", "parameter": "gll_pls_fitv", "start_date": "1995-12-07T15:21:55Z", "stop_date": "2002-11-05T04:05:56Z", "xmlid": "gll_pls_fitv(2)"}, "is_public": "True", "name": "velocity", "size": "3", "start_date": "1995-12-07T15:21:55Z", "stop_date": "2002-11-05T04:05:56Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "gll_pls_fitv"}, "gll_pls_fitvun": {"__spz_name__": "velocity uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_pls_fitvun", "dataset": "gll-pls-fit", "description": "Uncertainty of fitted value of V sigma(Vr, Vtheta, Vphi)", "display_type": "timeseries", "gll_pls_fitvun0": {"__spz_name__": "sig_vr", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_pls_fitvun(0)", "dataset": "gll-pls-fit", "index1": "0", "is_public": "True", "name": "sig_vr", "parameter": "gll_pls_fitvun", "start_date": "1995-12-07T15:21:55Z", "stop_date": "2002-11-05T04:05:56Z", "xmlid": "gll_pls_fitvun(0)"}, "gll_pls_fitvun1": {"__spz_name__": "sig_vth", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_pls_fitvun(1)", "dataset": "gll-pls-fit", "index1": "1", "is_public": "True", "name": "sig_vth", "parameter": "gll_pls_fitvun", "start_date": "1995-12-07T15:21:55Z", "stop_date": "2002-11-05T04:05:56Z", "xmlid": "gll_pls_fitvun(1)"}, "gll_pls_fitvun2": {"__spz_name__": "sig_vph", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_pls_fitvun(2)", "dataset": "gll-pls-fit", "index1": "2", "is_public": "True", "name": "sig_vph", "parameter": "gll_pls_fitvun", "start_date": "1995-12-07T15:21:55Z", "stop_date": "2002-11-05T04:05:56Z", "xmlid": "gll_pls_fitvun(2)"}, "is_public": "True", "name": "velocity uncertainty", "size": "3", "start_date": "1995-12-07T15:21:55Z", "stop_date": "2002-11-05T04:05:56Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "gll_pls_fitvun"}, "is_public": "True", "lastModificationDate": "2020-08-27T12:55:21Z", "lastUpdate": "2020-08-17T14:40:17Z", "maxSampling": "775S", "measurement_type": "ThermalPlasma", "name": "fitted parameters", "processing_level": "Calibrated", "sampling": "8S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Galileo/PLS/gll-pls-fit", "start_date": "1995-12-07T15:21:55Z", "stop_date": "2002-11-05T04:05:56Z", "target": "Jupiter", "xmlid": "gll-pls-fit"}, "gll_pls_mom": {"__spz_name__": "ion moments", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "gll-pls-mom", "att": "auto/gll-pls-mom", "dataSource": "PDS", "desc": "
MinSampling: 360S; MaxSampling: 1800S
Provider: PDS", "gll_pls_momdens": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_pls_momdens", "dataset": "gll-pls-mom", "description": "Ion density", "display_type": "timeseries", "is_public": "True", "name": "density", "start_date": "1996-06-25T17:00:33Z", "stop_date": "2002-01-19T14:26:29Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm\u207b\u00b3", "xmlid": "gll_pls_momdens"}, "gll_pls_momtemp": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_pls_momtemp", "dataset": "gll-pls-mom", "description": "Ion temperature", "display_type": "timeseries", "is_public": "True", "name": "temperature", "start_date": "1996-06-25T17:00:33Z", "stop_date": "2002-01-19T14:26:29Z", "ucd": "phys.temperature;phys.atmol.ionStage", "units": "eV", "xmlid": "gll_pls_momtemp"}, "gll_pls_momv": {"__spz_name__": "v sc", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_pls_momv", "dataset": "gll-pls-mom", "description": "Ion bulk velocity components in SpaceCraft coordinates", "display_type": "timeseries", "gll_pls_momv0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_pls_momv(0)", "dataset": "gll-pls-mom", "index1": "0", "is_public": "True", "name": "vx", "parameter": "gll_pls_momv", "start_date": "1996-06-25T17:00:33Z", "stop_date": "2002-01-19T14:26:29Z", "xmlid": "gll_pls_momv(0)"}, "gll_pls_momv1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_pls_momv(1)", "dataset": "gll-pls-mom", "index1": "1", "is_public": "True", "name": "vy", "parameter": "gll_pls_momv", "start_date": "1996-06-25T17:00:33Z", "stop_date": "2002-01-19T14:26:29Z", "xmlid": "gll_pls_momv(1)"}, "gll_pls_momv2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gll_pls_momv(2)", "dataset": "gll-pls-mom", "index1": "2", "is_public": "True", "name": "vz", "parameter": "gll_pls_momv", "start_date": "1996-06-25T17:00:33Z", "stop_date": "2002-01-19T14:26:29Z", "xmlid": "gll_pls_momv(2)"}, "is_public": "True", "name": "v sc", "size": "3", "start_date": "1996-06-25T17:00:33Z", "stop_date": "2002-01-19T14:26:29Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "counts", "xmlid": "gll_pls_momv"}, "gll_pls_momvmag": {"__spz_name__": "|v|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_pls_momvmag", "dataset": "gll-pls-mom", "description": "Ion bulk velocity magnitude", "is_public": "True", "name": "|v|", "start_date": "1996-06-25T17:00:33Z", "stop_date": "2002-01-19T14:26:29Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km.s-1", "xmlid": "gll_pls_momvmag"}, "is_public": "True", "lastModificationDate": "2012-03-06T19:42:28Z", "lastUpdate": "2012-03-06T19:42:28Z", "maxSampling": "1800S", "measurement_type": "ThermalPlasma", "name": "ion moments", "processing_level": "Calibrated", "sampling": "360S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Galileo/PLS/gll-pls-mom", "start_date": "1996-06-25T17:00:33Z", "stop_date": "2002-01-19T14:26:29Z", "target": "Jupiter", "xmlid": "gll-pls-mom"}, "is_public": "True", "name": "PLS", "spectra": {"__spz_name__": "spectra", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "gll-pls-spectro", "gll_pls_burstion": {"__spz_name__": "orbit jupiter : burst", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "gll-pls-burstion", "att": "auto/gll-pls-burstion", "dataSource": "PDS", "desc": "
MinSampling: 0.667S; MaxSampling: 44S
Provider: PDS", "gll_pls_bursticount": {"__spz_name__": "ions", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_pls_bursticount", "dataset": "gll-pls-burstion", "description": "Spin averaged energy-time spectrogram of ion counts", "display_type": "spectrogram", "is_public": "True", "name": "ions", "start_date": "1997-06-28T13:51:17Z", "stop_date": "1999-09-14T21:28:07Z", "ucd": "phys.flux;phys.atmol.ionStage", "units": "cnts", "xmlid": "gll_pls_bursticount"}, "is_public": "True", "lastModificationDate": "2012-03-06T19:42:28Z", "lastUpdate": "2012-03-06T19:42:28Z", "maxSampling": "44S", "measurement_type": "ThermalPlasma", "name": "orbit jupiter : burst", "processing_level": "Calibrated", "sampling": "0.667S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Galileo/PLS/gll-pls-burstion", "start_date": "1997-06-28T13:51:17Z", "stop_date": "1999-09-14T21:28:07Z", "target": "Jupiter", "xmlid": "gll-pls-burstion"}, "gll_pls_caion": {"__spz_name__": "flybys callisto", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "gll-pls-caion", "att": "auto/gll-pls-caion", "dataSource": "PDS", "desc": "
MinSampling: 0.667S; MaxSampling: 44S
Provider: PDS", "gll_pls_caicount": {"__spz_name__": "ions", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_pls_caicount", "dataset": "gll-pls-caion", "description": "Spin averaged energy-time spectrogram of ion counts", "display_type": "spectrogram", "is_public": "True", "name": "ions", "start_date": "1996-11-04T13:14:51Z", "stop_date": "2001-05-25T11:46:06Z", "ucd": "phys.flux;phys.atmol.ionStage", "units": "cnts", "xmlid": "gll_pls_caicount"}, "is_public": "True", "lastModificationDate": "2012-03-06T19:42:28Z", "lastUpdate": "2012-03-06T19:42:28Z", "maxSampling": "44S", "measurement_type": "ThermalPlasma", "name": "flybys callisto", "processing_level": "Calibrated", "sampling": "0.667S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Galileo/PLS/gll-pls-caion", "start_date": "1996-11-04T13:14:51Z", "stop_date": "2001-05-25T11:46:06Z", "target": "Jupiter", "xmlid": "gll-pls-caion"}, "gll_pls_euion": {"__spz_name__": "flybys europa", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "gll-pls-euion", "att": "auto/gll-pls-euion", "dataSource": "PDS", "desc": "
MinSampling: 0.667S; MaxSampling: 44S
Provider: PDS", "gll_pls_euicount": {"__spz_name__": "ions", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_pls_euicount", "dataset": "gll-pls-euion", "display_type": "spectrogram", "is_public": "True", "name": "ions", "start_date": "1996-12-19T06:28:47Z", "stop_date": "2000-01-03T18:21:51Z", "ucd": "phys.flux;phys.atmol.ionStage", "units": "cnts", "xmlid": "gll_pls_euicount"}, "is_public": "True", "lastModificationDate": "2012-03-06T19:42:34Z", "lastUpdate": "2012-03-06T19:42:34Z", "maxSampling": "44S", "measurement_type": "ThermalPlasma", "name": "flybys europa", "processing_level": "Calibrated", "sampling": "0.667S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Galileo/PLS/gll-pls-euion", "start_date": "1996-12-19T06:28:47Z", "stop_date": "2000-01-03T18:21:51Z", "target": "Jupiter.Europa", "xmlid": "gll-pls-euion"}, "gll_pls_gaion": {"__spz_name__": "flybys ganymede", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "gll-pls-gaion", "att": "auto/gll-pls-gaion", "dataSource": "PDS", "desc": "
MinSampling: 0.667S; MaxSampling: 44S
Provider: PDS", "gll_pls_gaicount": {"__spz_name__": "ions", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_pls_gaicount", "dataset": "gll-pls-gaion", "display_type": "spectrogram", "is_public": "True", "name": "ions", "start_date": "1996-06-27T06:07:08Z", "stop_date": "2000-12-28T08:54:59Z", "ucd": "phys.flux;phys.atmol.ionStage", "units": "cnts", "xmlid": "gll_pls_gaicount"}, "is_public": "True", "lastModificationDate": "2012-03-06T19:42:28Z", "lastUpdate": "2012-03-06T19:42:28Z", "maxSampling": "44S", "measurement_type": "ThermalPlasma", "name": "flybys ganymede", "processing_level": "Calibrated", "sampling": "0.667S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Galileo/PLS/gll-pls-gaion", "start_date": "1996-06-27T06:07:08Z", "stop_date": "2000-12-28T08:54:59Z", "target": "Jupiter.Ganymede", "xmlid": "gll-pls-gaion"}, "gll_pls_ioion": {"__spz_name__": "flybys io", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "gll-pls-ioion", "att": "auto/gll-pls-ioion", "dataSource": "PDS", "desc": "
MinSampling: 0.667S; MaxSampling: 44S
Provider: PDS", "gll_pls_ioicount": {"__spz_name__": "ions", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_pls_ioicount", "dataset": "gll-pls-ioion", "display_type": "spectrogram", "is_public": "True", "name": "ions", "start_date": "1999-10-11T03:42:35Z", "stop_date": "2001-10-16T01:49:50Z", "ucd": "phys.flux;phys.atmol.ionStage", "units": "cnts", "xmlid": "gll_pls_ioicount"}, "is_public": "True", "lastModificationDate": "2012-03-06T19:42:28Z", "lastUpdate": "2012-03-06T19:42:28Z", "maxSampling": "44S", "measurement_type": "ThermalPlasma", "name": "flybys io", "processing_level": "Calibrated", "sampling": "0.667S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Galileo/PLS/gll-pls-ioion", "start_date": "1999-10-11T03:42:35Z", "stop_date": "2001-10-16T01:49:50Z", "target": "Jupiter.Io", "xmlid": "gll-pls-ioion"}, "gll_pls_real": {"__spz_name__": "orbit jupiter", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "gll-pls-real", "att": "auto/gll-pls-real", "dataSource": "PDS", "desc": "
MinSampling: 18S; MaxSampling: 1800S
Provider: PDS", "gll_pls_reale4": {"__spz_name__": "electrons e4", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_pls_reale4", "dataset": "gll-pls-real", "description": "energy-time spectrogram of ion counts for the E4 detector", "display_type": "spectrogram", "is_public": "True", "name": "electrons e4", "start_date": "1995-12-07T15:21:07Z", "stop_date": "2003-09-21T18:13:44Z", "ucd": "phys.flux;phys.atmol.ionStage", "units": "cnts", "xmlid": "gll_pls_reale4"}, "gll_pls_realp2": {"__spz_name__": "ions p2", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_pls_realp2", "dataset": "gll-pls-real", "description": "energy-time spectrogram of ion counts for the P2 detector", "display_type": "spectrogram", "is_public": "True", "name": "ions p2", "start_date": "1995-12-07T15:21:07Z", "stop_date": "2003-09-21T18:13:44Z", "ucd": "phys.flux;phys.atmol.ionStage", "units": "cnts", "xmlid": "gll_pls_realp2"}, "gll_pls_realp4": {"__spz_name__": "ions p4", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_pls_realp4", "dataset": "gll-pls-real", "description": "energy-time spectrogram of ion counts for the P4 detector", "display_type": "spectrogram", "is_public": "True", "name": "ions p4", "start_date": "1995-12-07T15:21:07Z", "stop_date": "2003-09-21T18:13:44Z", "ucd": "phys.flux;phys.atmol.ionStage", "units": "cnts", "xmlid": "gll_pls_realp4"}, "gll_pls_realp6": {"__spz_name__": "ions p6", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_pls_realp6", "dataset": "gll-pls-real", "description": "energy-time spectrogram of ion counts for the P6 detector", "display_type": "spectrogram", "is_public": "True", "name": "ions p6", "start_date": "1995-12-07T15:21:07Z", "stop_date": "2003-09-21T18:13:44Z", "ucd": "phys.flux;phys.atmol.ionStage", "units": "cnts", "xmlid": "gll_pls_realp6"}, "is_public": "True", "lastModificationDate": "2012-03-06T19:42:31Z", "lastUpdate": "2012-03-06T19:42:34Z", "maxSampling": "1800S", "measurement_type": "ThermalPlasma", "name": "orbit jupiter", "processing_level": "Calibrated", "sampling": "18S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Galileo/PLS/gll-pls-real", "start_date": "1995-12-07T15:21:07Z", "stop_date": "2003-09-21T18:13:44Z", "target": "Jupiter", "xmlid": "gll-pls-real"}, "is_public": "True", "name": "spectra", "xmlid": "gll-pls-spectro"}, "xmlid": "Galileo_pls"}, "PWS": {"__spz_name__": "PWS", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Galileo_pws", "att": "auto/Galileo_pws", "desc": "Plasma Wave Investigation
Antenna", "gll_pws_sumelec": {"__spz_name__": "electric field : summary", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "gll-pws-sumelec", "att": "auto/gll-pws-sumelec", "dataSource": "PDS", "desc": "Electric field spectral density : summary
Sampling: 60S
Provider: PDS", "gll_pws_sumelec": {"__spz_name__": "e-field density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_pws_sumelec", "dataset": "gll-pws-sumelec", "description": "Electric field spectral power density", "display_type": "spectrogram", "is_public": "True", "name": "e-field density", "start_date": "1995-12-07T15:21:00Z", "stop_date": "2003-09-21T18:34:00Z", "ucd": "phys.electField", "units": "V\u00b2/m\u00b2/Hz", "xmlid": "gll_pws_sumelec"}, "is_public": "True", "lastModificationDate": "2012-08-14T15:28:05Z", "lastUpdate": "2012-08-14T13:39:51Z", "measurement_type": "Waves.Passive", "name": "electric field : summary", "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Galileo/PWS/gll-pws-sumelec", "start_date": "1995-12-07T15:21:00Z", "stop_date": "2003-09-21T18:34:00Z", "target": "Jupiter", "xmlid": "gll-pws-sumelec"}, "gll_pws_summag": {"__spz_name__": "magnetic field : summary", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "gll-pws-summag", "att": "auto/gll-pws-summag", "dataSource": "PDS", "desc": "Magnetic field spectral density : summary
Sampling: 60S
Provider: PDS", "gll_pws_summag": {"__spz_name__": "b-field density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_pws_summag", "dataset": "gll-pws-summag", "description": "magnetic field spectral power density", "display_type": "spectrogram", "is_public": "True", "name": "b-field density", "start_date": "1995-12-07T15:21:00Z", "stop_date": "2003-03-13T02:23:00Z", "ucd": "phys.magField", "units": "nT\u00b2/Hz", "xmlid": "gll_pws_summag"}, "is_public": "True", "lastModificationDate": "2012-08-14T15:28:32Z", "lastUpdate": "2012-08-14T15:12:35Z", "measurement_type": "Waves.Passive", "name": "magnetic field : summary", "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Galileo/PWS/gll-pws-summag", "start_date": "1995-12-07T15:21:00Z", "stop_date": "2003-03-13T02:23:00Z", "target": "Jupiter", "xmlid": "gll-pws-summag"}, "gll_pwshr_elec": {"__spz_name__": "electric field : high resolution", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "gll-pwshr-elec", "att": "auto/gll-pwshr-elec", "dataSource": "PDS", "desc": "Electric field spectral density : high resolution
MinSampling: 18.666S; MaxSampling: 37.333S
Provider: PDS", "gll_pwshr_elec": {"__spz_name__": "e-field density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_pwshr_elec", "dataset": "gll-pwshr-elec", "description": "Electric field spectral power density", "display_type": "spectrogram", "is_public": "True", "name": "e-field density", "start_date": "1996-05-23T20:02:30Z", "stop_date": "2003-09-21T18:34:30Z", "ucd": "phys.electField", "units": "V\u00b2/m\u00b2/Hz", "xmlid": "gll_pwshr_elec"}, "is_public": "True", "lastModificationDate": "2012-08-31T17:48:03Z", "lastUpdate": "2012-08-31T17:39:36Z", "maxSampling": "37.333S", "measurement_type": "Waves.Passive", "name": "electric field : high resolution", "processing_level": "Calibrated", "sampling": "18.666S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Galileo/PWS/gll-pwshr-elec", "start_date": "1996-05-23T20:02:30Z", "stop_date": "2003-09-21T18:34:30Z", "target": "Jupiter", "xmlid": "gll-pwshr-elec"}, "gll_pwshr_mag": {"__spz_name__": "magnetic field : high resolution", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "gll-pwshr-mag", "att": "auto/gll-pwshr-mag", "dataSource": "PDS", "desc": "Magnetic field spectral density : high resolution
MinSampling: 18.666S; MaxSampling: 37.333S
Provider: PDS", "gll_pwshr_mag": {"__spz_name__": "b-field density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gll_pwshr_mag", "dataset": "gll-pwshr-mag", "description": "magnetic field spectral power density", "display_type": "spectrogram", "is_public": "True", "name": "b-field density", "start_date": "1996-05-23T20:02:48Z", "stop_date": "2002-11-05T05:13:17Z", "ucd": "phys.magField", "units": "nT\u00b2/Hz", "xmlid": "gll_pwshr_mag"}, "is_public": "True", "lastModificationDate": "2012-09-03T09:35:43Z", "lastUpdate": "2012-09-03T09:32:49Z", "maxSampling": "37.333S", "measurement_type": "Waves.Passive", "name": "magnetic field : high resolution", "processing_level": "Calibrated", "sampling": "18.666S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Galileo/PWS/gll-pwshr-mag", "start_date": "1996-05-23T20:02:48Z", "stop_date": "2002-11-05T05:13:17Z", "target": "Jupiter", "xmlid": "gll-pwshr-mag"}, "is_public": "True", "name": "PWS", "xmlid": "Galileo_pws"}, "__spz_name__": "Galileo", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Galileo", "att": "auto/Galileo", "desc": "Galileo Orbiter
1989-10-18T12:00:00 - 2003-09-21T12:00:00
Jupiter arrival : 1995-12-07", "is_public": "True", "name": "Galileo", "rank": "9", "target": "Jupiter", "xmlid": "Galileo"}, "Geotail": {"Analytical_Models": {"__spz_name__": "Analytical Models", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Geotail_models", "att": "auto/Geotail_models", "desc": "", "gtl_msph_models": {"PriorID": "gtl-orb-all", "__spz_name__": "distance to neutral sheet", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "gtl-msph-models", "att": "auto/gtl-msph-models", "dataSource": "IRAP", "desc": "Distance to model neutral sheet
Sampling: 1M
Provider: IRAP", "dz_fairfield70_gtl_xyz": {"__spz_name__": "dZ Fairfield70", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "dz_fairfield70_gtl_xyz", "dataset": "gtl-msph-models", "description": "Distance (Re) from s/c location to Fairfield1970 neutral sheet position. Depends on spacecraft location in SM coordinates and dipole tilt angle. Valid for Ysm less than 15 Re.", "is_public": "True", "name": "dZ Fairfield70", "predefined": "1", "start_date": "1992-07-27T16:00:00Z", "stop_date": "2022-11-28T00:00:00Z", "template": "dz_fairfield70_##ORBIT##", "units": "Re", "xmlid": "dz_fairfield70_gtl_xyz"}, "dz_fairfield80_gtl_xyz": {"__spz_name__": "dZ Fairfield80", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "dz_fairfield80_gtl_xyz", "dataset": "gtl-msph-models", "description": "Distance (Re) from s/c location to Fairfield1980 neutral sheet position. Depends on spacecraft location in SM coordinates and dipole tilt angle.", "is_public": "True", "name": "dZ Fairfield80", "predefined": "1", "start_date": "1992-07-27T16:00:00Z", "stop_date": "2022-11-28T00:00:00Z", "template": "dz_fairfield80_##ORBIT##", "units": "Re", "xmlid": "dz_fairfield80_gtl_xyz"}, "is_public": "True", "lastModificationDate": "2024-04-14T22:04:38Z", "lastUpdate": "2024-04-14T22:04:38Z", "measurement_type": "Ephemeris", "name": "distance to neutral sheet", "processing_level": "Calibrated", "sampling": "1M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/GEOTAIL/Models/gtl-msph-models", "start_date": "1992-07-27T16:00:00Z", "stop_date": "2022-11-28T00:00:00Z", "target": "Earth", "xmlid": "gtl-msph-models"}, "gtl_t96_model": {"PriorID": "gtl-orb-all", "__spz_name__": "T96 field model", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "gtl-t96-model", "att": "auto/gtl-t96-model", "b_t96gse_gtl_xyz": {"__spz_name__": "b_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_t96gse_gtl_xyz", "b_t96gse_gtl_xyz0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gse_gtl_xyz(0)", "dataset": "gtl-t96-model", "index1": "0", "is_public": "True", "name": "bx", "parameter": "b_t96gse_gtl_xyz", "start_date": "1992-07-27T16:00:00Z", "stop_date": "2022-11-28T00:00:00Z", "xmlid": "b_t96gse_gtl_xyz(0)"}, "b_t96gse_gtl_xyz1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gse_gtl_xyz(1)", "dataset": "gtl-t96-model", "index1": "1", "is_public": "True", "name": "by", "parameter": "b_t96gse_gtl_xyz", "start_date": "1992-07-27T16:00:00Z", "stop_date": "2022-11-28T00:00:00Z", "xmlid": "b_t96gse_gtl_xyz(1)"}, "b_t96gse_gtl_xyz2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gse_gtl_xyz(2)", "dataset": "gtl-t96-model", "index1": "2", "is_public": "True", "name": "bz", "parameter": "b_t96gse_gtl_xyz", "start_date": "1992-07-27T16:00:00Z", "stop_date": "2022-11-28T00:00:00Z", "xmlid": "b_t96gse_gtl_xyz(2)"}, "dataset": "gtl-t96-model", "is_public": "True", "name": "b_gse", "predefined": "1", "size": "3", "start_date": "1992-07-27T16:00:00Z", "stop_date": "2022-11-28T00:00:00Z", "template": "b_t96gse_##ORBIT##", "units": "nT", "xmlid": "b_t96gse_gtl_xyz"}, "b_t96gsm_gtl_xyz": {"__spz_name__": "b_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_t96gsm_gtl_xyz", "b_t96gsm_gtl_xyz0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gsm_gtl_xyz(0)", "dataset": "gtl-t96-model", "index1": "0", "is_public": "True", "name": "bx", "parameter": "b_t96gsm_gtl_xyz", "start_date": "1992-07-27T16:00:00Z", "stop_date": "2022-11-28T00:00:00Z", "xmlid": "b_t96gsm_gtl_xyz(0)"}, "b_t96gsm_gtl_xyz1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gsm_gtl_xyz(1)", "dataset": "gtl-t96-model", "index1": "1", "is_public": "True", "name": "by", "parameter": "b_t96gsm_gtl_xyz", "start_date": "1992-07-27T16:00:00Z", "stop_date": "2022-11-28T00:00:00Z", "xmlid": "b_t96gsm_gtl_xyz(1)"}, "b_t96gsm_gtl_xyz2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gsm_gtl_xyz(2)", "dataset": "gtl-t96-model", "index1": "2", "is_public": "True", "name": "bz", "parameter": "b_t96gsm_gtl_xyz", "start_date": "1992-07-27T16:00:00Z", "stop_date": "2022-11-28T00:00:00Z", "xmlid": "b_t96gsm_gtl_xyz(2)"}, "dataset": "gtl-t96-model", "is_public": "True", "name": "b_gsm", "predefined": "1", "size": "3", "start_date": "1992-07-27T16:00:00Z", "stop_date": "2022-11-28T00:00:00Z", "template": "b_t96gsm_##ORBIT##", "units": "nT", "xmlid": "b_t96gsm_gtl_xyz"}, "b_t96tot_gtl_xyz": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_t96tot_gtl_xyz", "dataset": "gtl-t96-model", "is_public": "True", "name": "|b|", "predefined": "1", "start_date": "1992-07-27T16:00:00Z", "stop_date": "2022-11-28T00:00:00Z", "template": "b_t96tot_##ORBIT##", "units": "nT", "xmlid": "b_t96tot_gtl_xyz"}, "dataSource": "IRAP", "desc": "Tsyganenko96 geomagnetospheric magnetic field model
Sampling: 1M
Provider: IRAP", "is_public": "True", "lastModificationDate": "2024-04-14T22:04:38Z", "lastUpdate": "2024-04-14T22:04:38Z", "measurement_type": "MagneticField", "name": "T96 field model", "processing_level": "Calibrated", "sampling": "1M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/GEOTAIL/Models/gtl-t96-model", "start_date": "1992-07-27T16:00:00Z", "stop_date": "2022-11-28T00:00:00Z", "target": "Earth", "xmlid": "gtl-t96-model"}, "is_public": "True", "name": "Analytical Models", "xmlid": "Geotail_models"}, "CPI": {"__spz_name__": "CPI", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Geotail_cpi", "att": "auto/Geotail_cpi", "desc": "Geotail Comprehensive Plasma Instrumentation
QuadrisphericalAnalyser", "gtl_cpi_swa": {"__spz_name__": "SWA", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "gtl-cpi-swa", "att": "auto/gtl-cpi-swa", "dataSource": "CDAWeb", "desc": "Solar Wind Analyser
Sampling: 96S
Provider: CDAWeb", "gtl_cpi_swa_n": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_cpi_swa_n", "dataset": "gtl-cpi-swa", "description": "Ion number density", "display_type": "timeseries", "is_public": "True", "name": "density", "start_date": "1992-09-28T00:00:34Z", "stop_date": "2020-08-29T23:57:13Z", "units": "cm\u207b\u00b3", "xmlid": "gtl_cpi_swa_n"}, "gtl_cpi_swa_t": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_cpi_swa_t", "dataset": "gtl-cpi-swa", "description": "Ion average kinetic temperature", "display_type": "timeseries", "is_public": "True", "name": "temperature", "start_date": "1992-09-28T00:00:34Z", "stop_date": "2020-08-29T23:57:13Z", "units": "eV", "xmlid": "gtl_cpi_swa_t"}, "gtl_cpi_swa_v": {"__spz_name__": "v_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_cpi_swa_v", "dataset": "gtl-cpi-swa", "description": "Ion bulk flow velocity (H+ only in solar wind) in GSE cartesian coordinates", "display_type": "timeseries", "gtl_cpi_swa_v0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gtl_cpi_swa_v(0)", "dataset": "gtl-cpi-swa", "index1": "0", "is_public": "True", "name": "vx", "parameter": "gtl_cpi_swa_v", "start_date": "1992-09-28T00:00:34Z", "stop_date": "2020-08-29T23:57:13Z", "xmlid": "gtl_cpi_swa_v(0)"}, "gtl_cpi_swa_v1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gtl_cpi_swa_v(1)", "dataset": "gtl-cpi-swa", "index1": "1", "is_public": "True", "name": "vy", "parameter": "gtl_cpi_swa_v", "start_date": "1992-09-28T00:00:34Z", "stop_date": "2020-08-29T23:57:13Z", "xmlid": "gtl_cpi_swa_v(1)"}, "gtl_cpi_swa_v2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gtl_cpi_swa_v(2)", "dataset": "gtl-cpi-swa", "index1": "2", "is_public": "True", "name": "vz", "parameter": "gtl_cpi_swa_v", "start_date": "1992-09-28T00:00:34Z", "stop_date": "2020-08-29T23:57:13Z", "xmlid": "gtl_cpi_swa_v(2)"}, "is_public": "True", "name": "v_gse", "size": "3", "start_date": "1992-09-28T00:00:34Z", "stop_date": "2020-08-29T23:57:13Z", "units": "km/s", "xmlid": "gtl_cpi_swa_v"}, "is_public": "True", "lastModificationDate": "2024-04-14T22:05:10Z", "lastUpdate": "2024-04-14T22:05:10Z", "measurement_type": "EnergeticParticles", "name": "SWA", "processing_level": "Calibrated", "sampling": "96S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/GEOTAIL/CPI/gtl-cpi-swa", "start_date": "1992-09-28T00:00:34Z", "stop_date": "2020-08-29T23:57:13Z", "target": "Earth.Magnetosheath", "xmlid": "gtl-cpi-swa"}, "is_public": "True", "name": "CPI", "xmlid": "Geotail_cpi"}, "EFD": {"__spz_name__": "EFD", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Geotail_efd", "att": "auto/Geotail_efd", "desc": "Geotail Electric Field Detector
DoubleSphere", "gtl_efd_edb": {"__spz_name__": "editor B", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "gtl-efd-edb", "att": "auto/gtl-efd-edb", "dataSource": "DARTS", "desc": "
Sampling: 3S
Provider: DARTS", "gtl_e_edb": {"__spz_name__": "e_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_e_edb", "dataset": "gtl-efd-edb", "description": "Electric field vector in SC cartesian coordinates, which are nearly equivalent to GSE coordinates", "display_type": "timeseries", "gtl_e_edb0": {"__spz_name__": "ex", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gtl_e_edb(0)", "dataset": "gtl-efd-edb", "index1": "0", "is_public": "True", "name": "ex", "parameter": "gtl_e_edb", "start_date": "1992-09-18T00:00:08Z", "stop_date": "2006-09-30T23:59:20Z", "xmlid": "gtl_e_edb(0)"}, "gtl_e_edb1": {"__spz_name__": "ey", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gtl_e_edb(1)", "dataset": "gtl-efd-edb", "index1": "1", "is_public": "True", "name": "ey", "parameter": "gtl_e_edb", "start_date": "1992-09-18T00:00:08Z", "stop_date": "2006-09-30T23:59:20Z", "xmlid": "gtl_e_edb(1)"}, "is_public": "True", "name": "e_gse", "size": "2", "start_date": "1992-09-18T00:00:08Z", "stop_date": "2006-09-30T23:59:20Z", "units": "mV/m", "xmlid": "gtl_e_edb"}, "gtl_e_edb_pot": {"__spz_name__": "s/c potential", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_e_edb_pot", "dataset": "gtl-efd-edb", "description": "spacecraft potential", "display_type": "timeseries", "is_public": "True", "name": "s/c potential", "start_date": "1992-09-18T00:00:08Z", "stop_date": "2006-09-30T23:59:20Z", "units": "V", "xmlid": "gtl_e_edb_pot"}, "gtl_e_edb_rem": {"__spz_name__": "Rem", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_e_edb_rem", "dataset": "gtl-efd-edb", "description": "Deviation of the electric field from a sine wave", "display_type": "timeseries", "is_public": "True", "name": "Rem", "start_date": "1992-09-18T00:00:08Z", "stop_date": "2006-09-30T23:59:20Z", "units": "mV/m", "xmlid": "gtl_e_edb_rem"}, "is_public": "True", "lastModificationDate": "2023-08-31T16:30:31Z", "lastUpdate": "2023-08-31T16:29:21Z", "measurement_type": "ElectricField", "name": "editor B", "processing_level": "Calibrated", "sampling": "3S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/GEOTAIL/EFD/gtl-efd-edb", "start_date": "1992-09-18T00:00:08Z", "stop_date": "2006-09-30T23:59:20Z", "target": "Earth.Magnetosheath", "xmlid": "gtl-efd-edb"}, "is_public": "True", "name": "EFD", "xmlid": "Geotail_efd"}, "EPIC": {"ICS___high_resolution": {"__spz_name__": "ICS : high resolution", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "gtl-ics-high", "att": "auto/gtl-ics-high", "gtl_epic_ehigh": {"__spz_name__": "E3/4 : ion flux", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "gtl-epic-ehigh", "att": "auto/gtl-epic-ehigh", "dataSource": "JHU/APL", "desc": "E3/4: ion flux : E3 : 61.5-73.7 keV; E4 - 73.7-89.3 keV
Sampling: 6S
Provider: JHU/APL", "gtl_e3high_av": {"__spz_name__": "e3 ave", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_e3high_av", "dataset": "gtl-epic-ehigh", "display_type": "spectrogram", "is_public": "True", "name": "e3 ave", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:56:58Z", "units": "1/(cm\u00b2-s-sr-kev)", "xmlid": "gtl_e3high_av"}, "gtl_e3high_dawn": {"__spz_name__": "e3 ave : dawn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_e3high_dawn", "dataset": "gtl-epic-ehigh", "is_public": "True", "name": "e3 ave : dawn", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:56:58Z", "units": "1/(cm\u00b2-s-sr-kev)", "xmlid": "gtl_e3high_dawn"}, "gtl_e3high_dusk": {"__spz_name__": "e3 ave : dusk", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_e3high_dusk", "dataset": "gtl-epic-ehigh", "is_public": "True", "name": "e3 ave : dusk", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:56:58Z", "units": "1/(cm\u00b2-s-sr-kev)", "xmlid": "gtl_e3high_dusk"}, "gtl_e3high_head1": {"__spz_name__": "e3 : head 1", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_e3high_head1", "dataset": "gtl-epic-ehigh", "display_type": "spectrogram", "is_public": "True", "name": "e3 : head 1", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:56:58Z", "units": "1/(cm\u00b2-s-sr-kev)", "xmlid": "gtl_e3high_head1"}, "gtl_e3high_head2": {"__spz_name__": "e3 : head 2", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_e3high_head2", "dataset": "gtl-epic-ehigh", "display_type": "spectrogram", "is_public": "True", "name": "e3 : head 2", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:56:58Z", "units": "1/(cm\u00b2-s-sr-kev)", "xmlid": "gtl_e3high_head2"}, "gtl_e3high_omni": {"__spz_name__": "e3 ave : omni", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_e3high_omni", "dataset": "gtl-epic-ehigh", "is_public": "True", "name": "e3 ave : omni", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:56:58Z", "units": "1/(cm\u00b2-s-sr-kev)", "xmlid": "gtl_e3high_omni"}, "gtl_e3high_sun": {"__spz_name__": "e3 ave : sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_e3high_sun", "dataset": "gtl-epic-ehigh", "is_public": "True", "name": "e3 ave : sun", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:56:58Z", "units": "1/(cm\u00b2-s-sr-kev)", "xmlid": "gtl_e3high_sun"}, "gtl_e3high_tail": {"__spz_name__": "e3 ave : tail", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_e3high_tail", "dataset": "gtl-epic-ehigh", "is_public": "True", "name": "e3 ave : tail", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:56:58Z", "units": "1/(cm\u00b2-s-sr-kev)", "xmlid": "gtl_e3high_tail"}, "gtl_e4high_av": {"__spz_name__": "e4 ave", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_e4high_av", "dataset": "gtl-epic-ehigh", "display_type": "spectrogram", "is_public": "True", "name": "e4 ave", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:56:58Z", "units": "1/(cm\u00b2-s-sr-kev)", "xmlid": "gtl_e4high_av"}, "gtl_e4high_dawn": {"__spz_name__": "e4 ave : dawn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_e4high_dawn", "dataset": "gtl-epic-ehigh", "is_public": "True", "name": "e4 ave : dawn", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:56:58Z", "units": "1/(cm\u00b2-s-sr-kev)", "xmlid": "gtl_e4high_dawn"}, "gtl_e4high_dusk": {"__spz_name__": "e4 ave : dusk", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_e4high_dusk", "dataset": "gtl-epic-ehigh", "is_public": "True", "name": "e4 ave : dusk", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:56:58Z", "units": "1/(cm\u00b2-s-sr-kev)", "xmlid": "gtl_e4high_dusk"}, "gtl_e4high_head1": {"__spz_name__": "e4 : head 1", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_e4high_head1", "dataset": "gtl-epic-ehigh", "display_type": "spectrogram", "is_public": "True", "name": "e4 : head 1", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:56:58Z", "units": "1/(cm\u00b2-s-sr-kev)", "xmlid": "gtl_e4high_head1"}, "gtl_e4high_head2": {"__spz_name__": "e4 : head 2", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_e4high_head2", "dataset": "gtl-epic-ehigh", "display_type": "spectrogram", "is_public": "True", "name": "e4 : head 2", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:56:58Z", "units": "1/(cm\u00b2-s-sr-kev)", "xmlid": "gtl_e4high_head2"}, "gtl_e4high_omni": {"__spz_name__": "e4 ave : omni", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_e4high_omni", "dataset": "gtl-epic-ehigh", "is_public": "True", "name": "e4 ave : omni", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:56:58Z", "units": "1/(cm\u00b2-s-sr-kev)", "xmlid": "gtl_e4high_omni"}, "gtl_e4high_sun": {"__spz_name__": "e4 ave : sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_e4high_sun", "dataset": "gtl-epic-ehigh", "is_public": "True", "name": "e4 ave : sun", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:56:58Z", "units": "1/(cm\u00b2-s-sr-kev)", "xmlid": "gtl_e4high_sun"}, "gtl_e4high_tail": {"__spz_name__": "e4 ave : tail", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_e4high_tail", "dataset": "gtl-epic-ehigh", "is_public": "True", "name": "e4 ave : tail", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:56:58Z", "units": "1/(cm\u00b2-s-sr-kev)", "xmlid": "gtl_e4high_tail"}, "gtl_ehigh_app1": {"__spz_name__": "apperture flag head1", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_ehigh_app1", "dataset": "gtl-epic-ehigh", "is_public": "True", "name": "apperture flag head1", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:56:58Z", "xmlid": "gtl_ehigh_app1"}, "gtl_ehigh_app2": {"__spz_name__": "apperture flag head2", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_ehigh_app2", "dataset": "gtl-epic-ehigh", "is_public": "True", "name": "apperture flag head2", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:56:58Z", "xmlid": "gtl_ehigh_app2"}, "is_public": "True", "lastModificationDate": "2016-09-15T10:44:11Z", "lastUpdate": "2016-08-30T14:26:16Z", "measurement_type": "EnergeticParticles", "name": "E3/4 : ion flux", "processing_level": "Calibrated", "sampling": "6S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/GEOTAIL/EPIC/gtl-epic-ehigh", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:56:58Z", "target": "Earth.Magnetosphere", "xmlid": "gtl-epic-ehigh"}, "gtl_epic_hehigh": {"__spz_name__": "He2 : helium flux", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "gtl-epic-hehigh", "att": "auto/gtl-epic-hehigh", "dataSource": "JHU/APL", "desc": "He2 : helium flux : 70.0-95.8 keV
Sampling: 6S
Provider: JHU/APL", "gtl_hehigh_app1": {"__spz_name__": "apperture flag head1", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_hehigh_app1", "dataset": "gtl-epic-hehigh", "is_public": "True", "name": "apperture flag head1", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:56:58Z", "xmlid": "gtl_hehigh_app1"}, "gtl_hehigh_app2": {"__spz_name__": "apperture flag head2", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_hehigh_app2", "dataset": "gtl-epic-hehigh", "is_public": "True", "name": "apperture flag head2", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:56:58Z", "xmlid": "gtl_hehigh_app2"}, "gtl_hehigh_av": {"__spz_name__": "he2 ave", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_hehigh_av", "dataset": "gtl-epic-hehigh", "display_type": "spectrogram", "is_public": "True", "name": "he2 ave", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:56:58Z", "units": "1/(cm\u00b2-s-sr-kev)", "xmlid": "gtl_hehigh_av"}, "gtl_hehigh_dawn": {"__spz_name__": "he2 ave : dawn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_hehigh_dawn", "dataset": "gtl-epic-hehigh", "is_public": "True", "name": "he2 ave : dawn", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:56:58Z", "units": "1/(cm\u00b2-s-sr-kev)", "xmlid": "gtl_hehigh_dawn"}, "gtl_hehigh_dusk": {"__spz_name__": "he2 ave : dusk", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_hehigh_dusk", "dataset": "gtl-epic-hehigh", "is_public": "True", "name": "he2 ave : dusk", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:56:58Z", "units": "1/(cm\u00b2-s-sr-kev)", "xmlid": "gtl_hehigh_dusk"}, "gtl_hehigh_head1": {"__spz_name__": "he2 : head 1", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_hehigh_head1", "dataset": "gtl-epic-hehigh", "display_type": "spectrogram", "is_public": "True", "name": "he2 : head 1", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:56:58Z", "units": "1/(cm\u00b2-s-sr-kev)", "xmlid": "gtl_hehigh_head1"}, "gtl_hehigh_head2": {"__spz_name__": "he2 : head 2", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_hehigh_head2", "dataset": "gtl-epic-hehigh", "display_type": "spectrogram", "is_public": "True", "name": "he2 : head 2", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:56:58Z", "units": "1/(cm\u00b2-s-sr-kev)", "xmlid": "gtl_hehigh_head2"}, "gtl_hehigh_omni": {"__spz_name__": "he2 ave : omni", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_hehigh_omni", "dataset": "gtl-epic-hehigh", "is_public": "True", "name": "he2 ave : omni", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:56:58Z", "units": "1/(cm\u00b2-s-sr-kev)", "xmlid": "gtl_hehigh_omni"}, "gtl_hehigh_sun": {"__spz_name__": "he2 ave : sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_hehigh_sun", "dataset": "gtl-epic-hehigh", "is_public": "True", "name": "he2 ave : sun", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:56:58Z", "units": "1/(cm\u00b2-s-sr-kev)", "xmlid": "gtl_hehigh_sun"}, "gtl_hehigh_tail": {"__spz_name__": "he2 ave : tail", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_hehigh_tail", "dataset": "gtl-epic-hehigh", "is_public": "True", "name": "he2 ave : tail", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:56:58Z", "units": "1/(cm\u00b2-s-sr-kev)", "xmlid": "gtl_hehigh_tail"}, "is_public": "True", "lastModificationDate": "2016-09-15T10:46:10Z", "lastUpdate": "2016-08-31T11:14:15Z", "measurement_type": "EnergeticParticles", "name": "He2 : helium flux", "processing_level": "Calibrated", "sampling": "6S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/GEOTAIL/EPIC/gtl-epic-hehigh", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:56:58Z", "target": "Earth.Magnetosphere", "xmlid": "gtl-epic-hehigh"}, "gtl_epic_mhigh": {"__spz_name__": "M2 : CNO flux", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "gtl-epic-mhigh", "att": "auto/gtl-epic-mhigh", "dataSource": "JHU/APL", "desc": "M2 : CNO flux : 186.50-221.40 keV
Sampling: 6S
Provider: JHU/APL", "gtl_mhigh_app1": {"__spz_name__": "apperture flag head1", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_mhigh_app1", "dataset": "gtl-epic-mhigh", "is_public": "True", "name": "apperture flag head1", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:56:58Z", "xmlid": "gtl_mhigh_app1"}, "gtl_mhigh_app2": {"__spz_name__": "apperture flag head2", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_mhigh_app2", "dataset": "gtl-epic-mhigh", "is_public": "True", "name": "apperture flag head2", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:56:58Z", "xmlid": "gtl_mhigh_app2"}, "gtl_mhigh_av": {"__spz_name__": "cno ave", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_mhigh_av", "dataset": "gtl-epic-mhigh", "display_type": "spectrogram", "is_public": "True", "name": "cno ave", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:56:58Z", "units": "1/(cm\u00b2-s-sr-kev)", "xmlid": "gtl_mhigh_av"}, "gtl_mhigh_dawn": {"__spz_name__": "cno ave : dawn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_mhigh_dawn", "dataset": "gtl-epic-mhigh", "is_public": "True", "name": "cno ave : dawn", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:56:58Z", "units": "1/(cm\u00b2-s-sr-kev)", "xmlid": "gtl_mhigh_dawn"}, "gtl_mhigh_dusk": {"__spz_name__": "cno ave : dusk", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_mhigh_dusk", "dataset": "gtl-epic-mhigh", "is_public": "True", "name": "cno ave : dusk", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:56:58Z", "units": "1/(cm\u00b2-s-sr-kev)", "xmlid": "gtl_mhigh_dusk"}, "gtl_mhigh_head1": {"__spz_name__": "cno : head 1", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_mhigh_head1", "dataset": "gtl-epic-mhigh", "display_type": "spectrogram", "is_public": "True", "name": "cno : head 1", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:56:58Z", "units": "1/(cm\u00b2-s-sr-kev)", "xmlid": "gtl_mhigh_head1"}, "gtl_mhigh_head2": {"__spz_name__": "cno : head 2", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_mhigh_head2", "dataset": "gtl-epic-mhigh", "display_type": "spectrogram", "is_public": "True", "name": "cno : head 2", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:56:58Z", "units": "1/(cm\u00b2-s-sr-kev)", "xmlid": "gtl_mhigh_head2"}, "gtl_mhigh_omni": {"__spz_name__": "cno ave : omni", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_mhigh_omni", "dataset": "gtl-epic-mhigh", "is_public": "True", "name": "cno ave : omni", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:56:58Z", "units": "1/(cm\u00b2-s-sr-kev)", "xmlid": "gtl_mhigh_omni"}, "gtl_mhigh_sun": {"__spz_name__": "cno ave : sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_mhigh_sun", "dataset": "gtl-epic-mhigh", "is_public": "True", "name": "cno ave : sun", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:56:58Z", "units": "1/(cm\u00b2-s-sr-kev)", "xmlid": "gtl_mhigh_sun"}, "gtl_mhigh_tail": {"__spz_name__": "cno ave : tail", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_mhigh_tail", "dataset": "gtl-epic-mhigh", "is_public": "True", "name": "cno ave : tail", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:56:58Z", "units": "1/(cm\u00b2-s-sr-kev)", "xmlid": "gtl_mhigh_tail"}, "is_public": "True", "lastModificationDate": "2024-04-08T10:06:45Z", "lastUpdate": "2016-08-30T15:35:49Z", "measurement_type": "EnergeticParticles", "name": "M2 : CNO flux", "processing_level": "Calibrated", "sampling": "6S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/GEOTAIL/EPIC/gtl-epic-mhigh", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:56:58Z", "target": "Earth.Magnetosphere", "xmlid": "gtl-epic-mhigh"}, "gtl_epic_phigh": {"__spz_name__": "P2 : proton flux", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "gtl-epic-phigh", "att": "auto/gtl-epic-phigh", "dataSource": "JHU/APL", "desc": "P2 : proton flux : 58 - 77 keV
Sampling: 6S
Provider: JHU/APL", "gtl_phigh_app1": {"__spz_name__": "apperture flag head1", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_phigh_app1", "dataset": "gtl-epic-phigh", "is_public": "True", "name": "apperture flag head1", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:56:58Z", "xmlid": "gtl_phigh_app1"}, "gtl_phigh_app2": {"__spz_name__": "apperture flag head2", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_phigh_app2", "dataset": "gtl-epic-phigh", "is_public": "True", "name": "apperture flag head2", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:56:58Z", "xmlid": "gtl_phigh_app2"}, "gtl_phigh_av": {"__spz_name__": "h+ ave", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_phigh_av", "dataset": "gtl-epic-phigh", "display_type": "spectrogram", "is_public": "True", "name": "h+ ave", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:56:58Z", "units": "1/(cm\u00b2-s-sr-kev)", "xmlid": "gtl_phigh_av"}, "gtl_phigh_dawn": {"__spz_name__": "h+ ave : dawn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_phigh_dawn", "dataset": "gtl-epic-phigh", "is_public": "True", "name": "h+ ave : dawn", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:56:58Z", "units": "1/(cm\u00b2-s-sr-kev)", "xmlid": "gtl_phigh_dawn"}, "gtl_phigh_dusk": {"__spz_name__": "h+ ave : dusk", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_phigh_dusk", "dataset": "gtl-epic-phigh", "is_public": "True", "name": "h+ ave : dusk", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:56:58Z", "units": "1/(cm\u00b2-s-sr-kev)", "xmlid": "gtl_phigh_dusk"}, "gtl_phigh_head1": {"__spz_name__": "h+ : head 1", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_phigh_head1", "dataset": "gtl-epic-phigh", "display_type": "spectrogram", "is_public": "True", "name": "h+ : head 1", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:56:58Z", "units": "1/(cm\u00b2-s-sr-kev)", "xmlid": "gtl_phigh_head1"}, "gtl_phigh_head2": {"__spz_name__": "h+ : head 2", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_phigh_head2", "dataset": "gtl-epic-phigh", "display_type": "spectrogram", "is_public": "True", "name": "h+ : head 2", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:56:58Z", "units": "1/(cm\u00b2-s-sr-kev)", "xmlid": "gtl_phigh_head2"}, "gtl_phigh_omni": {"__spz_name__": "h+ ave : omni", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_phigh_omni", "dataset": "gtl-epic-phigh", "is_public": "True", "name": "h+ ave : omni", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:56:58Z", "units": "1/(cm\u00b2-s-sr-kev)", "xmlid": "gtl_phigh_omni"}, "gtl_phigh_sun": {"__spz_name__": "h+ ave : sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_phigh_sun", "dataset": "gtl-epic-phigh", "is_public": "True", "name": "h+ ave : sun", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:56:58Z", "units": "1/(cm\u00b2-s-sr-kev)", "xmlid": "gtl_phigh_sun"}, "gtl_phigh_tail": {"__spz_name__": "h+ ave : tail", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_phigh_tail", "dataset": "gtl-epic-phigh", "is_public": "True", "name": "h+ ave : tail", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:56:58Z", "units": "1/(cm\u00b2-s-sr-kev)", "xmlid": "gtl_phigh_tail"}, "is_public": "True", "lastModificationDate": "2016-09-15T10:50:52Z", "lastUpdate": "2016-08-30T18:44:28Z", "measurement_type": "EnergeticParticles", "name": "P2 : proton flux", "processing_level": "Calibrated", "sampling": "6S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/GEOTAIL/EPIC/gtl-epic-phigh", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:56:58Z", "target": "Earth.Magnetosphere", "xmlid": "gtl-epic-phigh"}, "is_public": "True", "name": "ICS : high resolution", "xmlid": "gtl-ics-high"}, "ICS___low_resolution": {"__spz_name__": "ICS : low resolution", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "gtl-ics-low", "att": "auto/gtl-ics-low", "gtl_epic_e": {"__spz_name__": "E : ion spectra", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "gtl-epic-e", "att": "auto/gtl-epic-e", "dataSource": "JHU/APL", "desc": "E: ion spectra : averaged over two heads
Sampling: 96S
Provider: JHU/APL", "gtl_e_app1": {"__spz_name__": "apperture flag head1", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_e_app1", "dataset": "gtl-epic-e", "is_public": "True", "name": "apperture flag head1", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:55:28Z", "xmlid": "gtl_e_app1"}, "gtl_e_app2": {"__spz_name__": "apperture flag head2", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_e_app2", "dataset": "gtl-epic-e", "is_public": "True", "name": "apperture flag head2", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:55:28Z", "xmlid": "gtl_e_app2"}, "gtl_e_av": {"__spz_name__": "ion flux : 2D", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_e_av", "dataset": "gtl-epic-e", "display_type": "spectrogram", "is_public": "True", "name": "ion flux : 2D", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:55:28Z", "units": "1/(cm\u00b2-s-sr-kev)", "xmlid": "gtl_e_av"}, "gtl_e_omni": {"__spz_name__": "ion flux : omni", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_e_omni", "dataset": "gtl-epic-e", "display_type": "spectrogram", "is_public": "True", "name": "ion flux : omni", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:55:28Z", "units": "1/(cm\u00b2-s-sr-kev)", "xmlid": "gtl_e_omni"}, "is_public": "True", "lastModificationDate": "2016-09-15T10:38:30Z", "lastUpdate": "2019-02-05T17:58:03Z", "measurement_type": "EnergeticParticles", "name": "E : ion spectra", "processing_level": "Calibrated", "sampling": "96S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/GEOTAIL/EPIC/gtl-epic-e", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:55:28Z", "target": "Earth.Magnetosphere", "xmlid": "gtl-epic-e"}, "gtl_epic_he": {"__spz_name__": "HE : helium spectra", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "gtl-epic-he", "att": "auto/gtl-epic-he", "dataSource": "JHU/APL", "desc": "HE: helium spectra : averaged over two heads
Sampling: 96S
Provider: JHU/APL", "gtl_he_app1": {"__spz_name__": "apperture flag head1", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_he_app1", "dataset": "gtl-epic-he", "is_public": "True", "name": "apperture flag head1", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:55:28Z", "xmlid": "gtl_he_app1"}, "gtl_he_app2": {"__spz_name__": "apperture flag head2", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_he_app2", "dataset": "gtl-epic-he", "is_public": "True", "name": "apperture flag head2", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:55:28Z", "xmlid": "gtl_he_app2"}, "gtl_he_av": {"__spz_name__": "he flux : 2D", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_he_av", "dataset": "gtl-epic-he", "display_type": "spectrogram", "is_public": "True", "name": "he flux : 2D", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:55:28Z", "units": "1/(cm\u00b2-s-sr-kev)", "xmlid": "gtl_he_av"}, "gtl_he_omni": {"__spz_name__": "he flux : omni", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_he_omni", "dataset": "gtl-epic-he", "display_type": "spectrogram", "is_public": "True", "name": "he flux : omni", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:55:28Z", "units": "1/(cm\u00b2-s-sr-kev)", "xmlid": "gtl_he_omni"}, "is_public": "True", "lastModificationDate": "2016-10-11T11:21:56Z", "lastUpdate": "2019-02-06T10:23:59Z", "measurement_type": "EnergeticParticles", "name": "HE : helium spectra", "processing_level": "Calibrated", "sampling": "96S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/GEOTAIL/EPIC/gtl-epic-he", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:55:28Z", "target": "Earth.Magnetosphere", "xmlid": "gtl-epic-he"}, "gtl_epic_m": {"__spz_name__": "M : CNO spectra", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "gtl-epic-m", "att": "auto/gtl-epic-m", "dataSource": "JHU/APL", "desc": "M: CNO spectra : averaged over two heads
Sampling: 96S
Provider: JHU/APL", "gtl_m_app1": {"__spz_name__": "apperture flag head1", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_m_app1", "dataset": "gtl-epic-m", "is_public": "True", "name": "apperture flag head1", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:55:28Z", "xmlid": "gtl_m_app1"}, "gtl_m_app2": {"__spz_name__": "apperture flag head2", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_m_app2", "dataset": "gtl-epic-m", "is_public": "True", "name": "apperture flag head2", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:55:28Z", "xmlid": "gtl_m_app2"}, "gtl_m_av": {"__spz_name__": "cno flux : 2D", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_m_av", "dataset": "gtl-epic-m", "display_type": "spectrogram", "is_public": "True", "name": "cno flux : 2D", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:55:28Z", "units": "1/(cm\u00b2-s-sr-kev)", "xmlid": "gtl_m_av"}, "gtl_m_omni": {"__spz_name__": "cno flux : omni", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_m_omni", "dataset": "gtl-epic-m", "display_type": "spectrogram", "is_public": "True", "name": "cno flux : omni", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:55:28Z", "units": "1/(cm\u00b2-s-sr-kev)", "xmlid": "gtl_m_omni"}, "is_public": "True", "lastModificationDate": "2016-09-15T14:44:41Z", "lastUpdate": "2019-02-06T10:27:52Z", "measurement_type": "EnergeticParticles", "name": "M : CNO spectra", "processing_level": "Calibrated", "sampling": "96S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/GEOTAIL/EPIC/gtl-epic-m", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:55:28Z", "target": "Earth.Magnetosphere", "xmlid": "gtl-epic-m"}, "gtl_epic_p": {"__spz_name__": "P : proton spectra", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "gtl-epic-p", "att": "auto/gtl-epic-p", "dataSource": "JHU/APL", "desc": "P: proton spectra : averaged over two heads
Sampling: 96S
Provider: JHU/APL", "gtl_p_app1": {"__spz_name__": "apperture flag head1", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_p_app1", "dataset": "gtl-epic-p", "is_public": "True", "name": "apperture flag head1", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:55:28Z", "xmlid": "gtl_p_app1"}, "gtl_p_app2": {"__spz_name__": "apperture flag head2", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_p_app2", "dataset": "gtl-epic-p", "is_public": "True", "name": "apperture flag head2", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:55:28Z", "xmlid": "gtl_p_app2"}, "gtl_p_av": {"__spz_name__": "h+ flux : 2D", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_p_av", "dataset": "gtl-epic-p", "display_type": "spectrogram", "is_public": "True", "name": "h+ flux : 2D", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:55:28Z", "units": "1/(cm\u00b2-s-sr-kev)", "xmlid": "gtl_p_av"}, "gtl_p_omni": {"__spz_name__": "h+ flux : omni", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_p_omni", "dataset": "gtl-epic-p", "display_type": "spectrogram", "is_public": "True", "name": "h+ flux : omni", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:55:28Z", "units": "1/(cm\u00b2-s-sr-kev)", "xmlid": "gtl_p_omni"}, "is_public": "True", "lastModificationDate": "2016-10-11T11:22:22Z", "lastUpdate": "2019-02-06T10:11:10Z", "measurement_type": "EnergeticParticles", "name": "P : proton spectra", "processing_level": "Calibrated", "sampling": "96S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/GEOTAIL/EPIC/gtl-epic-p", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:55:28Z", "target": "Earth.Magnetosphere", "xmlid": "gtl-epic-p"}, "is_public": "True", "name": "ICS : low resolution", "xmlid": "gtl-ics-low"}, "__spz_name__": "EPIC", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Geotail_epic", "att": "auto/Geotail_epic", "desc": "Energetic Particles and Ion Composition instrument
QuadrisphericalAnalyser", "gtl_epic_ed": {"__spz_name__": "ED : integral electron flux : E > 38 keV", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "gtl-epic-ed", "att": "auto/gtl-epic-ed", "dataSource": "JHU/APL", "desc": "Electron Detector : electron integral flux : E > 38 keV
Sampling: 3S
Provider: JHU/APL", "gtl_edhigh_av": {"__spz_name__": "e- flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_edhigh_av", "dataset": "gtl-epic-ed", "display_type": "spectrogram", "is_public": "True", "name": "e- flux", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2010-12-31T23:57:50Z", "units": "1/(cm\u00b2-s-sr-kev)", "xmlid": "gtl_edhigh_av"}, "gtl_edhigh_omni": {"__spz_name__": "e- flux : omni", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_edhigh_omni", "dataset": "gtl-epic-ed", "is_public": "True", "name": "e- flux : omni", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2010-12-31T23:57:50Z", "units": "1/(cm\u00b2-s-sr-kev)", "xmlid": "gtl_edhigh_omni"}, "is_public": "True", "lastModificationDate": "2016-09-15T11:54:50Z", "lastUpdate": "2016-09-15T11:38:51Z", "measurement_type": "EnergeticParticles", "name": "ED : integral electron flux : E > 38 keV", "processing_level": "Calibrated", "sampling": "3S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/GEOTAIL/EPIC/gtl-epic-ed", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2010-12-31T23:57:50Z", "target": "Earth.Magnetosphere", "xmlid": "gtl-epic-ed"}, "gtl_epic_hr0": {"__spz_name__": "STICS : hro : protons", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "gtl-epic-hr0", "att": "auto/gtl-epic-hr0", "dataSource": "JHU/APL", "desc": "STICS : hro : protons
Sampling: 24S
Provider: JHU/APL", "gtl_hr0_eqt": {"__spz_name__": "h+ flux : eqt : 2D", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_hr0_eqt", "dataset": "gtl-epic-hr0", "display_type": "spectrogram", "is_public": "True", "name": "h+ flux : eqt : 2D", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:57:01Z", "units": "1/(cm\u00b2-s-sr-keV)", "xmlid": "gtl_hr0_eqt"}, "gtl_hr0_eqtdawn": {"__spz_name__": "h+ flux : eqt-dawn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_hr0_eqtdawn", "dataset": "gtl-epic-hr0", "display_type": "spectrogram", "is_public": "True", "name": "h+ flux : eqt-dawn", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:57:01Z", "units": "1/(cm\u00b2-s-sr-keV)", "xmlid": "gtl_hr0_eqtdawn"}, "gtl_hr0_eqtdusk": {"__spz_name__": "h+ flux : eqt-dusk", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_hr0_eqtdusk", "dataset": "gtl-epic-hr0", "display_type": "spectrogram", "is_public": "True", "name": "h+ flux : eqt-dusk", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:57:01Z", "units": "1/(cm\u00b2-s-sr-keV)", "xmlid": "gtl_hr0_eqtdusk"}, "gtl_hr0_eqtomni": {"__spz_name__": "h+ flux : eqt-omni", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_hr0_eqtomni", "dataset": "gtl-epic-hr0", "display_type": "spectrogram", "is_public": "True", "name": "h+ flux : eqt-omni", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:57:01Z", "units": "1/(cm\u00b2-s-sr-keV)", "xmlid": "gtl_hr0_eqtomni"}, "gtl_hr0_eqtsun": {"__spz_name__": "h+ flux : eqt-sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_hr0_eqtsun", "dataset": "gtl-epic-hr0", "display_type": "spectrogram", "is_public": "True", "name": "h+ flux : eqt-sun", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:57:01Z", "units": "1/(cm\u00b2-s-sr-keV)", "xmlid": "gtl_hr0_eqtsun"}, "gtl_hr0_eqttail": {"__spz_name__": "h+ flux : eqt-tail", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_hr0_eqttail", "dataset": "gtl-epic-hr0", "display_type": "spectrogram", "is_public": "True", "name": "h+ flux : eqt-tail", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:57:01Z", "units": "1/(cm\u00b2-s-sr-keV)", "xmlid": "gtl_hr0_eqttail"}, "gtl_hr0_omni": {"__spz_name__": "h+ flux : omni", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_hr0_omni", "dataset": "gtl-epic-hr0", "display_type": "spectrogram", "is_public": "True", "name": "h+ flux : omni", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:57:01Z", "units": "1/(cm\u00b2-s-sr-keV)", "xmlid": "gtl_hr0_omni"}, "is_public": "True", "lastModificationDate": "2024-04-08T13:10:51Z", "lastUpdate": "2016-10-11T13:30:30Z", "measurement_type": "EnergeticParticles", "name": "STICS : hro : protons", "processing_level": "Calibrated", "sampling": "24S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/GEOTAIL/EPIC/gtl-epic-hr0", "start_date": "1992-10-18T00:01:17Z", "stop_date": "2011-12-31T23:57:01Z", "target": "Earth.Magnetosphere", "xmlid": "gtl-epic-hr0"}, "is_public": "True", "name": "EPIC", "xmlid": "Geotail_epic"}, "Ephemeris": {"__spz_name__": "Ephemeris", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Geotail_ephemeris", "att": "auto/Geotail_ephemeris", "desc": "", "gtl_orb_all": {"__spz_name__": "orbit", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "gtl-orb-all", "att": "auto/gtl-orb-all", "dataSource": "CDAWeb", "desc": "
Sampling: 10M
Provider: CDAWeb", "gtl_r": {"__spz_name__": "distance gtl-earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_r", "dataset": "gtl-orb-all", "display_type": "timeseries", "is_public": "True", "name": "distance gtl-earth", "start_date": "1992-07-27T16:00:00Z", "stop_date": "2022-11-28T00:00:00Z", "ucd": "pos.distance;instr.obsty", "xmlid": "gtl_r"}, "gtl_xyz": {"__spz_name__": "xyz_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_xyz", "dataset": "gtl-orb-all", "description": "Spacecraft position vector in GSE coordinates", "display_type": "timeseries", "gtl_xyz0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gtl_xyz(0)", "dataset": "gtl-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "gtl_xyz", "start_date": "1992-07-27T16:00:00Z", "stop_date": "2022-11-28T00:00:00Z", "xmlid": "gtl_xyz(0)"}, "gtl_xyz1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gtl_xyz(1)", "dataset": "gtl-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "gtl_xyz", "start_date": "1992-07-27T16:00:00Z", "stop_date": "2022-11-28T00:00:00Z", "xmlid": "gtl_xyz(1)"}, "gtl_xyz2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gtl_xyz(2)", "dataset": "gtl-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "gtl_xyz", "start_date": "1992-07-27T16:00:00Z", "stop_date": "2022-11-28T00:00:00Z", "xmlid": "gtl_xyz(2)"}, "is_public": "True", "name": "xyz_gse", "size": "3", "start_date": "1992-07-27T16:00:00Z", "stop_date": "2022-11-28T00:00:00Z", "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "Re", "xmlid": "gtl_xyz"}, "gtl_xyz_gsm": {"__spz_name__": "xyz_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_xyz_gsm", "dataset": "gtl-orb-all", "description": "Spacecraft position vector in GSM coordinates", "display_type": "timeseries", "gtl_xyz_gsm0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gtl_xyz_gsm(0)", "dataset": "gtl-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "gtl_xyz_gsm", "start_date": "1992-07-27T16:00:00Z", "stop_date": "2022-11-28T00:00:00Z", "xmlid": "gtl_xyz_gsm(0)"}, "gtl_xyz_gsm1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gtl_xyz_gsm(1)", "dataset": "gtl-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "gtl_xyz_gsm", "start_date": "1992-07-27T16:00:00Z", "stop_date": "2022-11-28T00:00:00Z", "xmlid": "gtl_xyz_gsm(1)"}, "gtl_xyz_gsm2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gtl_xyz_gsm(2)", "dataset": "gtl-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "gtl_xyz_gsm", "start_date": "1992-07-27T16:00:00Z", "stop_date": "2022-11-28T00:00:00Z", "xmlid": "gtl_xyz_gsm(2)"}, "is_public": "True", "name": "xyz_gsm", "size": "3", "start_date": "1992-07-27T16:00:00Z", "stop_date": "2022-11-28T00:00:00Z", "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "Re", "xmlid": "gtl_xyz_gsm"}, "is_public": "True", "lastModificationDate": "2024-04-14T22:04:38Z", "lastUpdate": "2024-04-14T22:04:38Z", "measurement_type": "Ephemeris", "name": "orbit", "processing_level": "Calibrated", "sampling": "10M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/GEOTAIL/Ephemeris/gtl-orb-all", "start_date": "1992-07-27T16:00:00Z", "stop_date": "2022-11-28T00:00:00Z", "xmlid": "gtl-orb-all"}, "is_public": "True", "name": "Ephemeris", "xmlid": "Geotail_ephemeris"}, "LEP": {"__spz_name__": "LEP", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Geotail_lep", "att": "auto/Geotail_lep", "desc": "Low Energy Particle Experiment
QuadrisphericalAnalyser", "gtl_lep_edb": {"__spz_name__": "editor B: ions", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "gtl-lep-edb", "att": "auto/gtl-lep-edb", "dataSource": "DARTS", "desc": "
Sampling: 12S
Provider: DARTS", "gtl_lepb_dens": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_lepb_dens", "dataset": "gtl-lep-edb", "description": "Ion density", "display_type": "timeseries", "is_public": "True", "name": "density", "start_date": "1993-10-05T00:00:34Z", "stop_date": "2019-12-31T23:33:34Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm\u207b\u00b3", "xmlid": "gtl_lepb_dens"}, "gtl_lepb_t": {"__spz_name__": "t_sc", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_lepb_t", "dataset": "gtl-lep-edb", "description": "Ion temperature in satellite coordinates", "display_type": "timeseries", "gtl_lepb_t0": {"__spz_name__": "Tyy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gtl_lepb_t(0)", "dataset": "gtl-lep-edb", "index1": "0", "is_public": "True", "name": "Tyy", "parameter": "gtl_lepb_t", "start_date": "1993-10-05T00:00:34Z", "stop_date": "2019-12-31T23:33:34Z", "xmlid": "gtl_lepb_t(0)"}, "gtl_lepb_t1": {"__spz_name__": "Tzz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gtl_lepb_t(1)", "dataset": "gtl-lep-edb", "index1": "1", "is_public": "True", "name": "Tzz", "parameter": "gtl_lepb_t", "start_date": "1993-10-05T00:00:34Z", "stop_date": "2019-12-31T23:33:34Z", "xmlid": "gtl_lepb_t(1)"}, "is_public": "True", "name": "t_sc", "size": "2", "start_date": "1993-10-05T00:00:34Z", "stop_date": "2019-12-31T23:33:34Z", "ucd": "phys.temperature;phys.atmol.ionStage", "units": "eV", "xmlid": "gtl_lepb_t"}, "gtl_lepb_v": {"__spz_name__": "v_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_lepb_v", "dataset": "gtl-lep-edb", "description": "Ion velocity in GSE coordinates", "display_type": "timeseries", "gtl_lepb_v0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gtl_lepb_v(0)", "dataset": "gtl-lep-edb", "index1": "0", "is_public": "True", "name": "vx", "parameter": "gtl_lepb_v", "start_date": "1993-10-05T00:00:34Z", "stop_date": "2019-12-31T23:33:34Z", "xmlid": "gtl_lepb_v(0)"}, "gtl_lepb_v1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gtl_lepb_v(1)", "dataset": "gtl-lep-edb", "index1": "1", "is_public": "True", "name": "vy", "parameter": "gtl_lepb_v", "start_date": "1993-10-05T00:00:34Z", "stop_date": "2019-12-31T23:33:34Z", "xmlid": "gtl_lepb_v(1)"}, "gtl_lepb_v2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gtl_lepb_v(2)", "dataset": "gtl-lep-edb", "index1": "2", "is_public": "True", "name": "vz", "parameter": "gtl_lepb_v", "start_date": "1993-10-05T00:00:34Z", "stop_date": "2019-12-31T23:33:34Z", "xmlid": "gtl_lepb_v(2)"}, "is_public": "True", "name": "v_gse", "size": "3", "start_date": "1993-10-05T00:00:34Z", "stop_date": "2019-12-31T23:33:34Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "gtl_lepb_v"}, "gtl_lepb_v_gsm": {"__spz_name__": "v_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_lepb_v_gsm", "dataset": "gtl-lep-edb", "description": "Ion velocity in GSM coordinates", "display_type": "timeseries", "gtl_lepb_v_gsm0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gtl_lepb_v_gsm(0)", "dataset": "gtl-lep-edb", "index1": "0", "is_public": "True", "name": "vx", "parameter": "gtl_lepb_v_gsm", "start_date": "1993-10-05T00:00:34Z", "stop_date": "2019-12-31T23:33:34Z", "xmlid": "gtl_lepb_v_gsm(0)"}, "gtl_lepb_v_gsm1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gtl_lepb_v_gsm(1)", "dataset": "gtl-lep-edb", "index1": "1", "is_public": "True", "name": "vy", "parameter": "gtl_lepb_v_gsm", "start_date": "1993-10-05T00:00:34Z", "stop_date": "2019-12-31T23:33:34Z", "xmlid": "gtl_lepb_v_gsm(1)"}, "gtl_lepb_v_gsm2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gtl_lepb_v_gsm(2)", "dataset": "gtl-lep-edb", "index1": "2", "is_public": "True", "name": "vz", "parameter": "gtl_lepb_v_gsm", "start_date": "1993-10-05T00:00:34Z", "stop_date": "2019-12-31T23:33:34Z", "xmlid": "gtl_lepb_v_gsm(2)"}, "is_public": "True", "name": "v_gsm", "size": "3", "start_date": "1993-10-05T00:00:34Z", "stop_date": "2019-12-31T23:33:34Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "gtl_lepb_v_gsm"}, "is_public": "True", "lastModificationDate": "2020-08-16T22:34:22Z", "lastUpdate": "2020-08-16T22:33:50Z", "measurement_type": "ThermalPlasma", "name": "editor B: ions", "processing_level": "Calibrated", "sampling": "12S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/GEOTAIL/LEP/gtl-lep-edb", "start_date": "1993-10-05T00:00:34Z", "stop_date": "2019-12-31T23:33:34Z", "target": "Heliosphere.NearEarth", "xmlid": "gtl-lep-edb"}, "gtl_lep_k0": {"__spz_name__": "key parameters : spectra", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "gtl-lep-k0", "att": "auto/gtl-lep-k0", "dataSource": "CDAWeb", "desc": "
Sampling: 64S
Provider: CDAWeb", "gtl_lep_espec": {"__spz_name__": "electrons : 2D", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_lep_espec", "dataset": "gtl-lep-k0", "description": "sunward, duskward, tailward, dawnward; 32 energy ; range", "display_type": "spectrogram", "is_public": "True", "name": "electrons : 2D", "start_date": "1993-10-05T00:00:32Z", "stop_date": "2022-06-27T12:24:00Z", "ucd": "phys.flux;phys.electron", "units": "cnts", "xmlid": "gtl_lep_espec"}, "gtl_lep_espec_omni": {"__spz_name__": "electrons : omni", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_lep_espec_omni", "dataset": "gtl-lep-k0", "display_type": "spectrogram", "is_public": "True", "name": "electrons : omni", "start_date": "1993-10-05T00:00:32Z", "stop_date": "2022-06-27T12:24:00Z", "ucd": "phys.flux;phys.electron", "units": "cnts", "xmlid": "gtl_lep_espec_omni"}, "gtl_lep_i_tabn": {"__spz_name__": "ions : flag RAM", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_lep_i_tabn", "dataset": "gtl-lep-k0", "is_public": "True", "name": "ions : flag RAM", "start_date": "1993-10-05T00:00:32Z", "stop_date": "2022-06-27T12:24:00Z", "xmlid": "gtl_lep_i_tabn"}, "gtl_lep_ispec": {"__spz_name__": "ions : 2D", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_lep_ispec", "dataset": "gtl-lep-k0", "description": "sunward, duskward, tailward, dawnward; 32 energy ; range", "display_type": "spectrogram", "is_public": "True", "name": "ions : 2D", "start_date": "1993-10-05T00:00:32Z", "stop_date": "2022-06-27T12:24:00Z", "ucd": "phys.flux;phys.atmol.ionStage", "units": "cnts", "xmlid": "gtl_lep_ispec"}, "gtl_lep_ispec_omni": {"__spz_name__": "ions : omni", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_lep_ispec_omni", "dataset": "gtl-lep-k0", "display_type": "spectrogram", "is_public": "True", "name": "ions : omni", "start_date": "1993-10-05T00:00:32Z", "stop_date": "2022-06-27T12:24:00Z", "ucd": "phys.flux;phys.atmol.ionStage", "units": "cnts", "xmlid": "gtl_lep_ispec_omni"}, "is_public": "True", "lastModificationDate": "2024-07-28T22:04:29Z", "lastUpdate": "2024-07-28T22:04:28Z", "measurement_type": "ThermalPlasma", "name": "key parameters : spectra", "processing_level": "Calibrated", "sampling": "64S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/GEOTAIL/LEP/gtl-lep-k0", "start_date": "1993-10-05T00:00:32Z", "stop_date": "2022-06-27T12:24:00Z", "target": "Earth.Magnetosphere.Magnetotail", "xmlid": "gtl-lep-k0"}, "is_public": "True", "name": "LEP", "xmlid": "Geotail_lep"}, "MGF": {"__spz_name__": "MGF", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Geotail_mgf", "att": "auto/Geotail_mgf", "desc": "Magnetometer", "gtl_mgf_edb": {"__spz_name__": "editor B", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "gtl-mgf-edb", "att": "auto/gtl-mgf-edb", "dataSource": "DARTS", "desc": "
Sampling: 3S
Provider: DARTS", "gtl_b_edb": {"__spz_name__": "b_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_b_edb", "dataset": "gtl-mgf-edb", "description": "Magnetic field vector in GSE cartesian coordinates", "display_type": "timeseries", "gtl_b_edb0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gtl_b_edb(0)", "dataset": "gtl-mgf-edb", "index1": "0", "is_public": "True", "name": "bx", "parameter": "gtl_b_edb", "start_date": "1992-09-18T00:00:08Z", "stop_date": "2006-11-22T23:59:28Z", "xmlid": "gtl_b_edb(0)"}, "gtl_b_edb1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gtl_b_edb(1)", "dataset": "gtl-mgf-edb", "index1": "1", "is_public": "True", "name": "by", "parameter": "gtl_b_edb", "start_date": "1992-09-18T00:00:08Z", "stop_date": "2006-11-22T23:59:28Z", "xmlid": "gtl_b_edb(1)"}, "gtl_b_edb2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gtl_b_edb(2)", "dataset": "gtl-mgf-edb", "index1": "2", "is_public": "True", "name": "bz", "parameter": "gtl_b_edb", "start_date": "1992-09-18T00:00:08Z", "stop_date": "2006-11-22T23:59:28Z", "xmlid": "gtl_b_edb(2)"}, "is_public": "True", "name": "b_gse", "size": "3", "start_date": "1992-09-18T00:00:08Z", "stop_date": "2006-11-22T23:59:28Z", "ucd": "phys.magField", "units": "nT", "xmlid": "gtl_b_edb"}, "gtl_b_edb_gsm": {"__spz_name__": "b_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_b_edb_gsm", "dataset": "gtl-mgf-edb", "description": "Magnetic field vector in GSM coordinates", "display_type": "timeseries", "gtl_b_edb_gsm0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gtl_b_edb_gsm(0)", "dataset": "gtl-mgf-edb", "index1": "0", "is_public": "True", "name": "bx", "parameter": "gtl_b_edb_gsm", "start_date": "1992-09-18T00:00:08Z", "stop_date": "2006-11-22T23:59:28Z", "xmlid": "gtl_b_edb_gsm(0)"}, "gtl_b_edb_gsm1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gtl_b_edb_gsm(1)", "dataset": "gtl-mgf-edb", "index1": "1", "is_public": "True", "name": "by", "parameter": "gtl_b_edb_gsm", "start_date": "1992-09-18T00:00:08Z", "stop_date": "2006-11-22T23:59:28Z", "xmlid": "gtl_b_edb_gsm(1)"}, "gtl_b_edb_gsm2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gtl_b_edb_gsm(2)", "dataset": "gtl-mgf-edb", "index1": "2", "is_public": "True", "name": "bz", "parameter": "gtl_b_edb_gsm", "start_date": "1992-09-18T00:00:08Z", "stop_date": "2006-11-22T23:59:28Z", "xmlid": "gtl_b_edb_gsm(2)"}, "is_public": "True", "name": "b_gsm", "size": "3", "start_date": "1992-09-18T00:00:08Z", "stop_date": "2006-11-22T23:59:28Z", "ucd": "phys.magField", "units": "nT", "xmlid": "gtl_b_edb_gsm"}, "gtl_bmag_edb": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_bmag_edb", "dataset": "gtl-mgf-edb", "description": "Observed magnetic field intensity", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "1992-09-18T00:00:08Z", "stop_date": "2006-11-22T23:59:28Z", "ucd": "phys.magField", "units": "nT", "xmlid": "gtl_bmag_edb"}, "is_public": "True", "lastModificationDate": "2020-03-06T11:31:36Z", "lastUpdate": "2020-03-04T15:14:50Z", "measurement_type": "MagneticField", "name": "editor B", "processing_level": "Calibrated", "sampling": "3S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/GEOTAIL/MGF/gtl-mgf-edb", "start_date": "1992-09-18T00:00:08Z", "stop_date": "2006-11-22T23:59:28Z", "target": "Earth.Magnetosheath", "xmlid": "gtl-mgf-edb"}, "gtl_mgf_k0": {"__spz_name__": "key parameters", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "gtl-mgf-k0", "att": "auto/gtl-mgf-k0", "dataSource": "CDAWeb", "desc": "
Sampling: 64S
Provider: CDAWeb", "gtl_b": {"__spz_name__": "b_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_b", "dataset": "gtl-mgf-k0", "description": "Observed magnetic field vector in GSE coordinates", "display_type": "timeseries", "gtl_b0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gtl_b(0)", "dataset": "gtl-mgf-k0", "index1": "0", "is_public": "True", "name": "bx", "parameter": "gtl_b", "start_date": "1992-09-04T19:14:06Z", "stop_date": "2022-06-27T12:23:54Z", "xmlid": "gtl_b(0)"}, "gtl_b1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gtl_b(1)", "dataset": "gtl-mgf-k0", "index1": "1", "is_public": "True", "name": "by", "parameter": "gtl_b", "start_date": "1992-09-04T19:14:06Z", "stop_date": "2022-06-27T12:23:54Z", "xmlid": "gtl_b(1)"}, "gtl_b2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gtl_b(2)", "dataset": "gtl-mgf-k0", "index1": "2", "is_public": "True", "name": "bz", "parameter": "gtl_b", "start_date": "1992-09-04T19:14:06Z", "stop_date": "2022-06-27T12:23:54Z", "xmlid": "gtl_b(2)"}, "is_public": "True", "name": "b_gse", "size": "3", "start_date": "1992-09-04T19:14:06Z", "stop_date": "2022-06-27T12:23:54Z", "ucd": "phys.magField", "units": "nT", "xmlid": "gtl_b"}, "gtl_b_gsm": {"__spz_name__": "b_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_b_gsm", "dataset": "gtl-mgf-k0", "description": "Observed magnetic field vector in GSM coordinates", "display_type": "timeseries", "gtl_b_gsm0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gtl_b_gsm(0)", "dataset": "gtl-mgf-k0", "index1": "0", "is_public": "True", "name": "bx", "parameter": "gtl_b_gsm", "start_date": "1992-09-04T19:14:06Z", "stop_date": "2022-06-27T12:23:54Z", "xmlid": "gtl_b_gsm(0)"}, "gtl_b_gsm1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gtl_b_gsm(1)", "dataset": "gtl-mgf-k0", "index1": "1", "is_public": "True", "name": "by", "parameter": "gtl_b_gsm", "start_date": "1992-09-04T19:14:06Z", "stop_date": "2022-06-27T12:23:54Z", "xmlid": "gtl_b_gsm(1)"}, "gtl_b_gsm2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gtl_b_gsm(2)", "dataset": "gtl-mgf-k0", "index1": "2", "is_public": "True", "name": "bz", "parameter": "gtl_b_gsm", "start_date": "1992-09-04T19:14:06Z", "stop_date": "2022-06-27T12:23:54Z", "xmlid": "gtl_b_gsm(2)"}, "is_public": "True", "name": "b_gsm", "size": "3", "start_date": "1992-09-04T19:14:06Z", "stop_date": "2022-06-27T12:23:54Z", "ucd": "phys.magField", "units": "nT", "xmlid": "gtl_b_gsm"}, "gtl_bmag": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gtl_bmag", "dataset": "gtl-mgf-k0", "description": "Observed magnetic field intensity", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "1992-09-04T19:14:06Z", "stop_date": "2022-06-27T12:23:54Z", "ucd": "phys.magField", "units": "nT", "xmlid": "gtl_bmag"}, "is_public": "True", "lastModificationDate": "2024-04-14T22:04:23Z", "lastUpdate": "2024-04-14T22:04:23Z", "measurement_type": "MagneticField", "name": "key parameters", "processing_level": "Calibrated", "sampling": "64S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/GEOTAIL/MGF/gtl-mgf-k0", "start_date": "1992-09-04T19:14:06Z", "stop_date": "2022-06-27T12:23:54Z", "target": "Earth.Magnetosheath", "xmlid": "gtl-mgf-k0"}, "is_public": "True", "name": "MGF", "xmlid": "Geotail_mgf"}, "__spz_name__": "Geotail", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Geotail", "att": "auto/Geotail", "desc": "Geomagnetic Tail Lab
1992-07-24T00:00:00
Distant tail campaign, various orbits between 8 and 210 Re: August 1992 - October 1994", "is_public": "True", "name": "Geotail", "rank": "6", "target": "Earth.Magnetosphere", "xmlid": "Geotail"}, "Giotto": {"Ephemeris": {"__spz_name__": "Ephemeris", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Giotto_ephemeris", "att": "auto/Giotto_ephemeris", "desc": "", "gio_orb_comet": {"__spz_name__": "flyby comet/halley", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "gio-orb-comet", "att": "auto/gio-orb-comet", "dataSource": "PDS", "desc": "
Sampling: 60S
Provider: PDS", "gio_r_cso": {"__spz_name__": "distance giotto-halley", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gio_r_cso", "dataset": "gio-orb-comet", "display_type": "timeseries", "is_public": "True", "name": "distance giotto-halley", "start_date": "1986-03-05T00:00:00Z", "stop_date": "1986-03-15T23:59:00Z", "ucd": "pos.distance;instr.obsty", "units": "km", "xmlid": "gio_r_cso"}, "gio_r_sun": {"__spz_name__": "distance giotto-sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gio_r_sun", "dataset": "gio-orb-comet", "display_type": "timeseries", "is_public": "True", "name": "distance giotto-sun", "start_date": "1986-03-05T00:00:00Z", "stop_date": "1986-03-15T23:59:00Z", "ucd": "pos.distance;instr.obsty", "units": "AU", "xmlid": "gio_r_sun"}, "gio_xyz_cso": {"__spz_name__": "xyz_cso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gio_xyz_cso", "dataset": "gio-orb-comet", "display_type": "timeseries", "gio_xyz_cso0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gio_xyz_cso(0)", "dataset": "gio-orb-comet", "index1": "0", "is_public": "True", "name": "x", "parameter": "gio_xyz_cso", "start_date": "1986-03-05T00:00:00Z", "stop_date": "1986-03-15T23:59:00Z", "xmlid": "gio_xyz_cso(0)"}, "gio_xyz_cso1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gio_xyz_cso(1)", "dataset": "gio-orb-comet", "index1": "1", "is_public": "True", "name": "y", "parameter": "gio_xyz_cso", "start_date": "1986-03-05T00:00:00Z", "stop_date": "1986-03-15T23:59:00Z", "xmlid": "gio_xyz_cso(1)"}, "gio_xyz_cso2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gio_xyz_cso(2)", "dataset": "gio-orb-comet", "index1": "2", "is_public": "True", "name": "z", "parameter": "gio_xyz_cso", "start_date": "1986-03-05T00:00:00Z", "stop_date": "1986-03-15T23:59:00Z", "xmlid": "gio_xyz_cso(2)"}, "is_public": "True", "name": "xyz_cso", "size": "3", "start_date": "1986-03-05T00:00:00Z", "stop_date": "1986-03-15T23:59:00Z", "ucd": "pos.ephem;instr.obsty", "units": "km", "xmlid": "gio_xyz_cso"}, "gio_xyz_hci": {"__spz_name__": "xyz_hci", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gio_xyz_hci", "dataset": "gio-orb-comet", "display_type": "timeseries", "gio_xyz_hci0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gio_xyz_hci(0)", "dataset": "gio-orb-comet", "index1": "0", "is_public": "True", "name": "x", "parameter": "gio_xyz_hci", "start_date": "1986-03-05T00:00:00Z", "stop_date": "1986-03-15T23:59:00Z", "xmlid": "gio_xyz_hci(0)"}, "gio_xyz_hci1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gio_xyz_hci(1)", "dataset": "gio-orb-comet", "index1": "1", "is_public": "True", "name": "y", "parameter": "gio_xyz_hci", "start_date": "1986-03-05T00:00:00Z", "stop_date": "1986-03-15T23:59:00Z", "xmlid": "gio_xyz_hci(1)"}, "gio_xyz_hci2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gio_xyz_hci(2)", "dataset": "gio-orb-comet", "index1": "2", "is_public": "True", "name": "z", "parameter": "gio_xyz_hci", "start_date": "1986-03-05T00:00:00Z", "stop_date": "1986-03-15T23:59:00Z", "xmlid": "gio_xyz_hci(2)"}, "is_public": "True", "name": "xyz_hci", "size": "3", "start_date": "1986-03-05T00:00:00Z", "stop_date": "1986-03-15T23:59:00Z", "ucd": "pos.ephem;instr.obsty", "units": "AU", "xmlid": "gio_xyz_hci"}, "gio_xyz_hee": {"__spz_name__": "xyz_hee", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gio_xyz_hee", "dataset": "gio-orb-comet", "display_type": "timeseries", "gio_xyz_hee0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gio_xyz_hee(0)", "dataset": "gio-orb-comet", "index1": "0", "is_public": "True", "name": "x", "parameter": "gio_xyz_hee", "start_date": "1986-03-05T00:00:00Z", "stop_date": "1986-03-15T23:59:00Z", "xmlid": "gio_xyz_hee(0)"}, "gio_xyz_hee1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gio_xyz_hee(1)", "dataset": "gio-orb-comet", "index1": "1", "is_public": "True", "name": "y", "parameter": "gio_xyz_hee", "start_date": "1986-03-05T00:00:00Z", "stop_date": "1986-03-15T23:59:00Z", "xmlid": "gio_xyz_hee(1)"}, "gio_xyz_hee2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gio_xyz_hee(2)", "dataset": "gio-orb-comet", "index1": "2", "is_public": "True", "name": "z", "parameter": "gio_xyz_hee", "start_date": "1986-03-05T00:00:00Z", "stop_date": "1986-03-15T23:59:00Z", "xmlid": "gio_xyz_hee(2)"}, "is_public": "True", "name": "xyz_hee", "size": "3", "start_date": "1986-03-05T00:00:00Z", "stop_date": "1986-03-15T23:59:00Z", "ucd": "pos.ephem;instr.obsty", "units": "AU", "xmlid": "gio_xyz_hee"}, "gio_xyz_heeq": {"__spz_name__": "xyz_heeq", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gio_xyz_heeq", "dataset": "gio-orb-comet", "display_type": "timeseries", "gio_xyz_heeq0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gio_xyz_heeq(0)", "dataset": "gio-orb-comet", "index1": "0", "is_public": "True", "name": "x", "parameter": "gio_xyz_heeq", "start_date": "1986-03-05T00:00:00Z", "stop_date": "1986-03-15T23:59:00Z", "xmlid": "gio_xyz_heeq(0)"}, "gio_xyz_heeq1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gio_xyz_heeq(1)", "dataset": "gio-orb-comet", "index1": "1", "is_public": "True", "name": "y", "parameter": "gio_xyz_heeq", "start_date": "1986-03-05T00:00:00Z", "stop_date": "1986-03-15T23:59:00Z", "xmlid": "gio_xyz_heeq(1)"}, "gio_xyz_heeq2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gio_xyz_heeq(2)", "dataset": "gio-orb-comet", "index1": "2", "is_public": "True", "name": "z", "parameter": "gio_xyz_heeq", "start_date": "1986-03-05T00:00:00Z", "stop_date": "1986-03-15T23:59:00Z", "xmlid": "gio_xyz_heeq(2)"}, "is_public": "True", "name": "xyz_heeq", "size": "3", "start_date": "1986-03-05T00:00:00Z", "stop_date": "1986-03-15T23:59:00Z", "ucd": "pos.ephem;instr.obsty", "units": "AU", "xmlid": "gio_xyz_heeq"}, "is_public": "True", "lastModificationDate": "2014-07-03T12:10:51Z", "lastUpdate": "2014-06-18T14:59:54Z", "measurement_type": "Ephemeris", "name": "flyby comet/halley", "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Giotto/Ephemeris/gio-orb-comet", "start_date": "1986-03-05T00:00:00Z", "stop_date": "1986-03-15T23:59:00Z", "xmlid": "gio-orb-comet"}, "is_public": "True", "name": "Ephemeris", "xmlid": "Giotto_ephemeris"}, "IMS": {"__spz_name__": "IMS", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Giotto_ims", "att": "auto/Giotto_ims", "desc": "Ion Mass Spectrometer
MassSpectrometer", "gio_ims_a": {"__spz_name__": "alphas", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "gio-ims-a", "att": "auto/gio-ims-a", "dataSource": "PSA", "desc": "HERS
Sampling: 16S
Provider: PSA", "gio_na_ims": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gio_na_ims", "dataset": "gio-ims-a", "display_type": "timeseries", "is_public": "True", "name": "density", "start_date": "1986-03-13T18:30:56Z", "stop_date": "1986-03-13T23:59:42Z", "ucd": "phys.density", "units": "cm-1", "xmlid": "gio_na_ims"}, "gio_ta_ims": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gio_ta_ims", "dataset": "gio-ims-a", "display_type": "timeseries", "is_public": "True", "name": "temperature", "start_date": "1986-03-13T18:30:56Z", "stop_date": "1986-03-13T23:59:42Z", "ucd": "phys.temperature", "units": "eV", "xmlid": "gio_ta_ims"}, "gio_va_cse": {"__spz_name__": "v_cse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gio_va_cse", "dataset": "gio-ims-a", "display_type": "timeseries", "gio_va_cse0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gio_va_cse(0)", "dataset": "gio-ims-a", "index1": "0", "is_public": "True", "name": "vx", "parameter": "gio_va_cse", "start_date": "1986-03-13T18:30:56Z", "stop_date": "1986-03-13T23:59:42Z", "xmlid": "gio_va_cse(0)"}, "gio_va_cse1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gio_va_cse(1)", "dataset": "gio-ims-a", "index1": "1", "is_public": "True", "name": "vy", "parameter": "gio_va_cse", "start_date": "1986-03-13T18:30:56Z", "stop_date": "1986-03-13T23:59:42Z", "xmlid": "gio_va_cse(1)"}, "gio_va_cse2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gio_va_cse(2)", "dataset": "gio-ims-a", "index1": "2", "is_public": "True", "name": "vz", "parameter": "gio_va_cse", "start_date": "1986-03-13T18:30:56Z", "stop_date": "1986-03-13T23:59:42Z", "xmlid": "gio_va_cse(2)"}, "is_public": "True", "name": "v_cse", "size": "3", "start_date": "1986-03-13T18:30:56Z", "stop_date": "1986-03-13T23:59:42Z", "ucd": "phys.veloc", "units": "km/s", "xmlid": "gio_va_cse"}, "is_public": "True", "lastModificationDate": "2014-07-03T12:12:40Z", "lastUpdate": "2014-06-16T14:53:01Z", "measurement_type": "ThermalPlasma", "name": "alphas", "processing_level": "Calibrated", "sampling": "16S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Giotto/IMS/gio-ims-a", "start_date": "1986-03-13T18:30:56Z", "stop_date": "1986-03-13T23:59:42Z", "xmlid": "gio-ims-a"}, "gio_ims_his": {"__spz_name__": "heavy ions countrate", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "gio-ims-his", "att": "auto/gio-ims-his", "dataSource": "PSA", "desc": "HIS
Sampling: 8S
Provider: PSA", "gio_his_16": {"__spz_name__": "m/qQ 16 (O+, NH2+, CH4+)", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gio_his_16", "dataset": "gio-ims-his", "display_type": "timeseries", "is_public": "True", "name": "m/qQ 16 (O+, NH2+, CH4+)", "start_date": "1986-03-13T23:23:06Z", "stop_date": "1986-03-14T00:02:44Z", "ucd": "phys.density", "units": "s-1", "xmlid": "gio_his_16"}, "gio_his_17": {"__spz_name__": "m/q 17 (OH+, NH3+)", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gio_his_17", "dataset": "gio-ims-his", "display_type": "timeseries", "is_public": "True", "name": "m/q 17 (OH+, NH3+)", "start_date": "1986-03-13T23:23:06Z", "stop_date": "1986-03-14T00:02:44Z", "ucd": "phys.density", "units": "s-1", "xmlid": "gio_his_17"}, "gio_his_18": {"__spz_name__": "m/q 18 (H2O+)", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gio_his_18", "dataset": "gio-ims-his", "display_type": "timeseries", "is_public": "True", "name": "m/q 18 (H2O+)", "start_date": "1986-03-13T23:23:06Z", "stop_date": "1986-03-14T00:02:44Z", "ucd": "phys.density", "units": "s-1", "xmlid": "gio_his_18"}, "gio_his_19": {"__spz_name__": "m/q 19 (H3O+)", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gio_his_19", "dataset": "gio-ims-his", "display_type": "timeseries", "is_public": "True", "name": "m/q 19 (H3O+)", "start_date": "1986-03-13T23:23:06Z", "stop_date": "1986-03-14T00:02:44Z", "ucd": "phys.density", "units": "s-1", "xmlid": "gio_his_19"}, "gio_his_28": {"__spz_name__": "m/q 28 (CO+, N2+)", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gio_his_28", "dataset": "gio-ims-his", "display_type": "timeseries", "is_public": "True", "name": "m/q 28 (CO+, N2+)", "start_date": "1986-03-13T23:23:06Z", "stop_date": "1986-03-14T00:02:44Z", "ucd": "phys.density", "units": "s-1", "xmlid": "gio_his_28"}, "gio_his_32": {"__spz_name__": "m/q 32 (O2+)", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gio_his_32", "dataset": "gio-ims-his", "display_type": "timeseries", "is_public": "True", "name": "m/q 32 (O2+)", "start_date": "1986-03-13T23:23:06Z", "stop_date": "1986-03-14T00:02:44Z", "ucd": "phys.density", "units": "s-1", "xmlid": "gio_his_32"}, "is_public": "True", "lastModificationDate": "2014-07-03T12:13:09Z", "lastUpdate": "2014-06-17T18:59:11Z", "measurement_type": "ThermalPlasma", "name": "heavy ions countrate", "processing_level": "Calibrated", "sampling": "8S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Giotto/IMS/gio-ims-his", "start_date": "1986-03-13T23:23:06Z", "stop_date": "1986-03-14T00:02:44Z", "xmlid": "gio-ims-his"}, "gio_ims_p": {"__spz_name__": "protons", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "gio-ims-p", "att": "auto/gio-ims-p", "dataSource": "PSA", "desc": "HERS
Sampling: 16S
Provider: PSA", "gio_np_ims": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gio_np_ims", "dataset": "gio-ims-p", "display_type": "timeseries", "is_public": "True", "name": "density", "start_date": "1986-03-13T18:30:06Z", "stop_date": "1986-03-14T00:00:58Z", "ucd": "phys.density", "units": "cm-1", "xmlid": "gio_np_ims"}, "gio_tp_ims": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gio_tp_ims", "dataset": "gio-ims-p", "display_type": "timeseries", "is_public": "True", "name": "temperature", "start_date": "1986-03-13T18:30:06Z", "stop_date": "1986-03-14T00:00:58Z", "ucd": "phys.temperature", "units": "eV", "xmlid": "gio_tp_ims"}, "gio_vp_cse": {"__spz_name__": "v_cse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gio_vp_cse", "dataset": "gio-ims-p", "gio_vp_cse0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gio_vp_cse(0)", "dataset": "gio-ims-p", "index1": "0", "is_public": "True", "name": "vx", "parameter": "gio_vp_cse", "start_date": "1986-03-13T18:30:06Z", "stop_date": "1986-03-14T00:00:58Z", "xmlid": "gio_vp_cse(0)"}, "gio_vp_cse1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gio_vp_cse(1)", "dataset": "gio-ims-p", "index1": "1", "is_public": "True", "name": "vy", "parameter": "gio_vp_cse", "start_date": "1986-03-13T18:30:06Z", "stop_date": "1986-03-14T00:00:58Z", "xmlid": "gio_vp_cse(1)"}, "gio_vp_cse2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gio_vp_cse(2)", "dataset": "gio-ims-p", "index1": "2", "is_public": "True", "name": "vz", "parameter": "gio_vp_cse", "start_date": "1986-03-13T18:30:06Z", "stop_date": "1986-03-14T00:00:58Z", "xmlid": "gio_vp_cse(2)"}, "is_public": "True", "name": "v_cse", "size": "3", "start_date": "1986-03-13T18:30:06Z", "stop_date": "1986-03-14T00:00:58Z", "ucd": "phys.veloc", "units": "km/s", "xmlid": "gio_vp_cse"}, "is_public": "True", "lastModificationDate": "2014-07-03T12:12:19Z", "lastUpdate": "2014-06-16T14:46:56Z", "measurement_type": "ThermalPlasma", "name": "protons", "processing_level": "Calibrated", "sampling": "16S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Giotto/IMS/gio-ims-p", "start_date": "1986-03-13T18:30:06Z", "stop_date": "1986-03-14T00:00:58Z", "xmlid": "gio-ims-p"}, "is_public": "True", "name": "IMS", "xmlid": "Giotto_ims"}, "JPA": {"__spz_name__": "JPA", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Giotto_jpa", "att": "auto/Giotto_jpa", "desc": "Johnstone Plasma Analyser
Spectrometer", "gio_jpa_psa": {"__spz_name__": "protons", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "gio-jpa-psa", "att": "auto/gio-jpa-psa", "dataSource": "PSA", "desc": "
MinSampling: 8S; MaxSampling: 120S
Provider: PSA", "gio_n_jpa": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gio_n_jpa", "dataset": "gio-jpa-psa", "display_type": "timeseries", "is_public": "True", "name": "density", "start_date": "1986-03-12T06:09:34Z", "stop_date": "1986-03-15T02:30:28Z", "ucd": "phys.density", "units": "cm-1", "xmlid": "gio_n_jpa"}, "gio_t_jpa": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gio_t_jpa", "dataset": "gio-jpa-psa", "display_type": "timeseries", "is_public": "True", "name": "temperature", "start_date": "1986-03-12T06:09:34Z", "stop_date": "1986-03-15T02:30:28Z", "ucd": "phys.temperature", "units": "eV", "xmlid": "gio_t_jpa"}, "gio_v_cse": {"__spz_name__": "v_cse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gio_v_cse", "dataset": "gio-jpa-psa", "display_type": "timeseries", "gio_v_cse0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gio_v_cse(0)", "dataset": "gio-jpa-psa", "index1": "0", "is_public": "True", "name": "vx", "parameter": "gio_v_cse", "start_date": "1986-03-12T06:09:34Z", "stop_date": "1986-03-15T02:30:28Z", "xmlid": "gio_v_cse(0)"}, "gio_v_cse1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gio_v_cse(1)", "dataset": "gio-jpa-psa", "index1": "1", "is_public": "True", "name": "vy", "parameter": "gio_v_cse", "start_date": "1986-03-12T06:09:34Z", "stop_date": "1986-03-15T02:30:28Z", "xmlid": "gio_v_cse(1)"}, "gio_v_cse2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gio_v_cse(2)", "dataset": "gio-jpa-psa", "index1": "2", "is_public": "True", "name": "vz", "parameter": "gio_v_cse", "start_date": "1986-03-12T06:09:34Z", "stop_date": "1986-03-15T02:30:28Z", "xmlid": "gio_v_cse(2)"}, "is_public": "True", "name": "v_cse", "size": "3", "start_date": "1986-03-12T06:09:34Z", "stop_date": "1986-03-15T02:30:28Z", "ucd": "phys.veloc", "units": "km/s", "xmlid": "gio_v_cse"}, "is_public": "True", "lastModificationDate": "2014-07-03T12:11:48Z", "lastUpdate": "2014-06-13T16:06:35Z", "maxSampling": "120S", "measurement_type": "ThermalPlasma", "name": "protons", "processing_level": "Calibrated", "sampling": "8S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Giotto/JPA/gio-jpa-psa", "start_date": "1986-03-12T06:09:34Z", "stop_date": "1986-03-15T02:30:28Z", "xmlid": "gio-jpa-psa"}, "is_public": "True", "name": "JPA", "xmlid": "Giotto_jpa"}, "MAG": {"__spz_name__": "MAG", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Giotto_mag", "att": "auto/Giotto_mag", "desc": "Magnetometer", "gio_mag_psa": {"__spz_name__": "magnetic field", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "gio-mag-psa", "att": "auto/gio-mag-psa", "dataSource": "PSA", "desc": "
Sampling: 8S
Provider: PSA", "gio_b_cse": {"__spz_name__": "b_cse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gio_b_cse", "dataset": "gio-mag-psa", "display_type": "timeseries", "gio_b_cse0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gio_b_cse(0)", "dataset": "gio-mag-psa", "index1": "0", "is_public": "True", "name": "bx", "parameter": "gio_b_cse", "start_date": "1986-03-12T00:00:06Z", "stop_date": "1986-03-14T02:59:58Z", "xmlid": "gio_b_cse(0)"}, "gio_b_cse1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gio_b_cse(1)", "dataset": "gio-mag-psa", "index1": "1", "is_public": "True", "name": "by", "parameter": "gio_b_cse", "start_date": "1986-03-12T00:00:06Z", "stop_date": "1986-03-14T02:59:58Z", "xmlid": "gio_b_cse(1)"}, "gio_b_cse2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "gio_b_cse(2)", "dataset": "gio-mag-psa", "index1": "2", "is_public": "True", "name": "bz", "parameter": "gio_b_cse", "start_date": "1986-03-12T00:00:06Z", "stop_date": "1986-03-14T02:59:58Z", "xmlid": "gio_b_cse(2)"}, "is_public": "True", "name": "b_cse", "size": "3", "start_date": "1986-03-12T00:00:06Z", "stop_date": "1986-03-14T02:59:58Z", "ucd": "phys.magField", "units": "nT", "xmlid": "gio_b_cse"}, "gio_b_mean": {"__spz_name__": "b_mean", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gio_b_mean", "dataset": "gio-mag-psa", "display_type": "timeseries", "is_public": "True", "name": "b_mean", "start_date": "1986-03-12T00:00:06Z", "stop_date": "1986-03-14T02:59:58Z", "ucd": "phys.magField", "units": "nT", "xmlid": "gio_b_mean"}, "gio_b_phi": {"__spz_name__": "b_phi", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gio_b_phi", "dataset": "gio-mag-psa", "display_type": "timeseries", "is_public": "True", "name": "b_phi", "start_date": "1986-03-12T00:00:06Z", "stop_date": "1986-03-14T02:59:58Z", "ucd": "pos.az.azi", "units": "deg", "xmlid": "gio_b_phi"}, "gio_b_rms": {"__spz_name__": "b_rms", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gio_b_rms", "dataset": "gio-mag-psa", "display_type": "timeseries", "is_public": "True", "name": "b_rms", "start_date": "1986-03-12T00:00:06Z", "stop_date": "1986-03-14T02:59:58Z", "ucd": "phys.magField", "units": "nT", "xmlid": "gio_b_rms"}, "gio_b_theta": {"__spz_name__": "b_theta", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gio_b_theta", "dataset": "gio-mag-psa", "display_type": "timeseries", "is_public": "True", "name": "b_theta", "start_date": "1986-03-12T00:00:06Z", "stop_date": "1986-03-14T02:59:58Z", "ucd": "pos.az.alt", "units": "deg", "xmlid": "gio_b_theta"}, "gio_b_tot": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gio_b_tot", "dataset": "gio-mag-psa", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "1986-03-12T00:00:06Z", "stop_date": "1986-03-14T02:59:58Z", "ucd": "phys.magField", "units": "nT", "xmlid": "gio_b_tot"}, "is_public": "True", "lastModificationDate": "2014-07-03T12:11:20Z", "lastUpdate": "2014-06-12T11:43:08Z", "measurement_type": "MagneticField", "name": "magnetic field", "processing_level": "Calibrated", "sampling": "8S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Giotto/MAG/gio-mag-psa", "start_date": "1986-03-12T00:00:06Z", "stop_date": "1986-03-14T02:59:58Z", "xmlid": "gio-mag-psa"}, "is_public": "True", "name": "MAG", "xmlid": "Giotto_mag"}, "RPA": {"__spz_name__": "RPA", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Giotto_rpa", "att": "auto/Giotto_rpa", "desc": "Reme Copernic Plasma Experiment
Spectrometer", "gio_rpa1_corr": {"__spz_name__": "density elec", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "gio-rpa1-corr", "att": "auto/gio-rpa1-corr", "dataSource": "IRAP", "desc": "
Sampling: 2S
Provider: IRAP", "gio_rpa1_n0": {"__spz_name__": "N0 (10-40eV)", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gio_rpa1_n0", "dataset": "gio-rpa1-corr", "display_type": "timeseries", "is_public": "True", "name": "N0 (10-40eV)", "start_date": "1986-03-13T00:00:06Z", "stop_date": "1986-03-13T23:59:58Z", "ucd": "phys.density;phys.electron", "units": "cm-3", "xmlid": "gio_rpa1_n0"}, "gio_rpa1_n1": {"__spz_name__": "N1 (40-75eV)", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gio_rpa1_n1", "dataset": "gio-rpa1-corr", "display_type": "timeseries", "is_public": "True", "name": "N1 (40-75eV)", "start_date": "1986-03-13T00:00:06Z", "stop_date": "1986-03-13T23:59:58Z", "ucd": "phys.density;phys.electron", "units": "cm-3", "xmlid": "gio_rpa1_n1"}, "gio_rpa1_n2": {"__spz_name__": "N2 (75-165eV)", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gio_rpa1_n2", "dataset": "gio-rpa1-corr", "display_type": "timeseries", "is_public": "True", "name": "N2 (75-165eV)", "start_date": "1986-03-13T00:00:06Z", "stop_date": "1986-03-13T23:59:58Z", "ucd": "phys.density;phys.electron", "units": "cm-3", "xmlid": "gio_rpa1_n2"}, "gio_rpa1_n3": {"__spz_name__": "N3 (165-790eV)", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gio_rpa1_n3", "dataset": "gio-rpa1-corr", "display_type": "timeseries", "is_public": "True", "name": "N3 (165-790eV)", "start_date": "1986-03-13T00:00:06Z", "stop_date": "1986-03-13T23:59:58Z", "ucd": "phys.density;phys.electron", "units": "cm-3", "xmlid": "gio_rpa1_n3"}, "gio_rpa1_n4": {"__spz_name__": "N4 (800-3700eV)", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gio_rpa1_n4", "dataset": "gio-rpa1-corr", "display_type": "timeseries", "is_public": "True", "name": "N4 (800-3700eV)", "start_date": "1986-03-13T00:00:06Z", "stop_date": "1986-03-13T23:59:58Z", "ucd": "phys.density;phys.electron", "units": "cm-3", "xmlid": "gio_rpa1_n4"}, "gio_rpa1_n5": {"__spz_name__": "N5 (3.7-30keV)", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gio_rpa1_n5", "dataset": "gio-rpa1-corr", "display_type": "timeseries", "is_public": "True", "name": "N5 (3.7-30keV)", "start_date": "1986-03-13T00:00:06Z", "stop_date": "1986-03-13T23:59:58Z", "ucd": "phys.density;phys.electron", "units": "cm-3", "xmlid": "gio_rpa1_n5"}, "gio_rpa1_ntot": {"__spz_name__": "Ntot", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "gio_rpa1_ntot", "dataset": "gio-rpa1-corr", "display_type": "timeseries", "is_public": "True", "name": "Ntot", "start_date": "1986-03-13T00:00:06Z", "stop_date": "1986-03-13T23:59:58Z", "ucd": "phys.density;phys.electron", "units": "cm-3", "xmlid": "gio_rpa1_ntot"}, "is_public": "True", "lastModificationDate": "2018-03-22T15:17:15Z", "lastUpdate": "2014-05-27T17:16:06Z", "measurement_type": "ThermalPlasma", "name": "density elec", "processing_level": "Calibrated", "sampling": "2S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Giotto/RPA/gio-rpa1-corr", "start_date": "1986-03-13T00:00:06Z", "stop_date": "1986-03-13T23:59:58Z", "xmlid": "gio-rpa1-corr"}, "is_public": "True", "name": "RPA", "xmlid": "Giotto_rpa"}, "__spz_name__": "Giotto", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Giotto", "att": "auto/Giotto", "desc": "ESA's first deep space mission: P1/Halley Flyby
1985-07-02T00:00:00 - 1999-03-15T02:00:00
Halley Flyby : 1986-03-14", "is_public": "True", "name": "Giotto", "rank": "94", "target": "Comet", "xmlid": "Giotto"}, "HelioSwarm": {"Ephemeris": {"__spz_name__": "Ephemeris", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "HelioSwarm_ephemeris", "att": "auto/HelioSwarm_ephemeris", "desc": "", "hs_ephem_n0": {"PriorID": "helioswarm-ephem-test", "__spz_name__": "Hub", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "hs-ephem-n0", "att": "auto/hs-ephem-n0", "dataSource": "HelioSwarm Team", "desc": "
Sampling: 1H
Provider: HelioSwarm Team", "hs_ephem_mag_n0": {"__spz_name__": "distance n0-earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "hs_ephem_mag_n0", "dataset": "hs-ephem-n0", "display_type": "timeseries", "is_public": "True", "name": "distance n0-earth", "predefined": "1", "start_date": "2026-09-07T11:40:00Z", "stop_date": "2027-08-29T11:39:59Z", "template": "hs_ephem_mag_##node##", "units": "Re", "xmlid": "hs_ephem_mag_n0"}, "hs_ephem_ta_n0": {"__spz_name__": "true anomaly", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "hs_ephem_ta_n0", "dataset": "hs-ephem-n0", "display_type": "timeseries", "is_public": "True", "name": "true anomaly", "predefined": "1", "start_date": "2026-09-07T11:40:00Z", "stop_date": "2027-08-29T11:39:59Z", "template": "hs_ephem_ta_##node##", "units": "deg", "xmlid": "hs_ephem_ta_n0"}, "hs_ephem_tmfr_n0": {"__spz_name__": "total mass flow rate", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "hs_ephem_tmfr_n0", "dataset": "hs-ephem-n0", "display_type": "timeseries", "is_public": "True", "name": "total mass flow rate", "predefined": "1", "start_date": "2026-09-07T11:40:00Z", "stop_date": "2027-08-29T11:39:59Z", "template": "hs_ephem_tmfr_##node##", "units": "g/hr", "xmlid": "hs_ephem_tmfr_n0"}, "hs_ephem_xyz_gse_n0": {"__spz_name__": "xyz_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "hs_ephem_xyz_gse_n0", "dataset": "hs-ephem-n0", "description": "Position in GSE coordinates", "display_type": "timeseries", "hs_ephem_xyz_gse_n00": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "hs_ephem_xyz_gse_n0(0)", "dataset": "hs-ephem-n0", "index1": "0", "is_public": "True", "name": "x", "parameter": "hs_ephem_xyz_gse_n0", "start_date": "2026-09-07T11:40:00Z", "stop_date": "2027-08-29T11:39:59Z", "xmlid": "hs_ephem_xyz_gse_n0(0)"}, "hs_ephem_xyz_gse_n01": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "hs_ephem_xyz_gse_n0(1)", "dataset": "hs-ephem-n0", "index1": "1", "is_public": "True", "name": "y", "parameter": "hs_ephem_xyz_gse_n0", "start_date": "2026-09-07T11:40:00Z", "stop_date": "2027-08-29T11:39:59Z", "xmlid": "hs_ephem_xyz_gse_n0(1)"}, "hs_ephem_xyz_gse_n02": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "hs_ephem_xyz_gse_n0(2)", "dataset": "hs-ephem-n0", "index1": "2", "is_public": "True", "name": "z", "parameter": "hs_ephem_xyz_gse_n0", "start_date": "2026-09-07T11:40:00Z", "stop_date": "2027-08-29T11:39:59Z", "xmlid": "hs_ephem_xyz_gse_n0(2)"}, "is_public": "True", "name": "xyz_gse", "predefined": "1", "size": "3", "start_date": "2026-09-07T11:40:00Z", "stop_date": "2027-08-29T11:39:59Z", "template": "hs_ephem_xyz_gse_##node##", "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "Re", "xmlid": "hs_ephem_xyz_gse_n0"}, "is_public": "True", "lastModificationDate": "2023-02-22T14:53:39Z", "lastUpdate": "2023-02-22T14:53:04Z", "measurement_type": "Ephemeris", "name": "Hub", "processing_level": "Calibrated", "sampling": "1H", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/HelioSwarm/Ephemeris/hs-ephem-n0", "start_date": "2026-09-07T11:40:00Z", "stop_date": "2027-08-29T11:39:59Z", "xmlid": "hs-ephem-n0"}, "hs_ephem_n1": {"PriorID": "helioswarm-ephem-test", "__spz_name__": "Node 1", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "hs-ephem-n1", "att": "auto/hs-ephem-n1", "dataSource": "HelioSwarm Team", "desc": "
Sampling: 1H
Provider: HelioSwarm Team", "hs_ephem_mag_n1": {"__spz_name__": "distance n1-earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "hs_ephem_mag_n1", "dataset": "hs-ephem-n1", "display_type": "timeseries", "is_public": "True", "name": "distance n1-earth", "predefined": "1", "start_date": "2026-09-07T11:40:00Z", "stop_date": "2027-08-29T11:39:59Z", "template": "hs_ephem_mag_##node##", "units": "Re", "xmlid": "hs_ephem_mag_n1"}, "hs_ephem_ta_n1": {"__spz_name__": "true anomaly", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "hs_ephem_ta_n1", "dataset": "hs-ephem-n1", "display_type": "timeseries", "is_public": "True", "name": "true anomaly", "predefined": "1", "start_date": "2026-09-07T11:40:00Z", "stop_date": "2027-08-29T11:39:59Z", "template": "hs_ephem_ta_##node##", "units": "deg", "xmlid": "hs_ephem_ta_n1"}, "hs_ephem_tmfr_n1": {"__spz_name__": "total mass flow rate", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "hs_ephem_tmfr_n1", "dataset": "hs-ephem-n1", "display_type": "timeseries", "is_public": "True", "name": "total mass flow rate", "predefined": "1", "start_date": "2026-09-07T11:40:00Z", "stop_date": "2027-08-29T11:39:59Z", "template": "hs_ephem_tmfr_##node##", "units": "g/hr", "xmlid": "hs_ephem_tmfr_n1"}, "hs_ephem_xyz_gse_n1": {"__spz_name__": "xyz_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "hs_ephem_xyz_gse_n1", "dataset": "hs-ephem-n1", "description": "Position in GSE coordinates", "display_type": "timeseries", "hs_ephem_xyz_gse_n10": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "hs_ephem_xyz_gse_n1(0)", "dataset": "hs-ephem-n1", "index1": "0", "is_public": "True", "name": "x", "parameter": "hs_ephem_xyz_gse_n1", "start_date": "2026-09-07T11:40:00Z", "stop_date": "2027-08-29T11:39:59Z", "xmlid": "hs_ephem_xyz_gse_n1(0)"}, "hs_ephem_xyz_gse_n11": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "hs_ephem_xyz_gse_n1(1)", "dataset": "hs-ephem-n1", "index1": "1", "is_public": "True", "name": "y", "parameter": "hs_ephem_xyz_gse_n1", "start_date": "2026-09-07T11:40:00Z", "stop_date": "2027-08-29T11:39:59Z", "xmlid": "hs_ephem_xyz_gse_n1(1)"}, "hs_ephem_xyz_gse_n12": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "hs_ephem_xyz_gse_n1(2)", "dataset": "hs-ephem-n1", "index1": "2", "is_public": "True", "name": "z", "parameter": "hs_ephem_xyz_gse_n1", "start_date": "2026-09-07T11:40:00Z", "stop_date": "2027-08-29T11:39:59Z", "xmlid": "hs_ephem_xyz_gse_n1(2)"}, "is_public": "True", "name": "xyz_gse", "predefined": "1", "size": "3", "start_date": "2026-09-07T11:40:00Z", "stop_date": "2027-08-29T11:39:59Z", "template": "hs_ephem_xyz_gse_##node##", "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "Re", "xmlid": "hs_ephem_xyz_gse_n1"}, "is_public": "True", "lastModificationDate": "2023-02-22T14:53:39Z", "lastUpdate": "2023-02-22T14:53:04Z", "measurement_type": "Ephemeris", "name": "Node 1", "processing_level": "Calibrated", "sampling": "1H", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/HelioSwarm/Ephemeris/hs-ephem-n1", "start_date": "2026-09-07T11:40:00Z", "stop_date": "2027-08-29T11:39:59Z", "xmlid": "hs-ephem-n1"}, "hs_ephem_n2": {"PriorID": "helioswarm-ephem-test", "__spz_name__": "Node 2", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "hs-ephem-n2", "att": "auto/hs-ephem-n2", "dataSource": "HelioSwarm Team", "desc": "
Sampling: 1H
Provider: HelioSwarm Team", "hs_ephem_mag_n2": {"__spz_name__": "distance n2-earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "hs_ephem_mag_n2", "dataset": "hs-ephem-n2", "display_type": "timeseries", "is_public": "True", "name": "distance n2-earth", "predefined": "1", "start_date": "2026-09-07T11:40:00Z", "stop_date": "2027-08-29T11:39:59Z", "template": "hs_ephem_mag_##node##", "units": "Re", "xmlid": "hs_ephem_mag_n2"}, "hs_ephem_ta_n2": {"__spz_name__": "true anomaly", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "hs_ephem_ta_n2", "dataset": "hs-ephem-n2", "display_type": "timeseries", "is_public": "True", "name": "true anomaly", "predefined": "1", "start_date": "2026-09-07T11:40:00Z", "stop_date": "2027-08-29T11:39:59Z", "template": "hs_ephem_ta_##node##", "units": "deg", "xmlid": "hs_ephem_ta_n2"}, "hs_ephem_tmfr_n2": {"__spz_name__": "total mass flow rate", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "hs_ephem_tmfr_n2", "dataset": "hs-ephem-n2", "display_type": "timeseries", "is_public": "True", "name": "total mass flow rate", "predefined": "1", "start_date": "2026-09-07T11:40:00Z", "stop_date": "2027-08-29T11:39:59Z", "template": "hs_ephem_tmfr_##node##", "units": "g/hr", "xmlid": "hs_ephem_tmfr_n2"}, "hs_ephem_xyz_gse_n2": {"__spz_name__": "xyz_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "hs_ephem_xyz_gse_n2", "dataset": "hs-ephem-n2", "description": "Position in GSE coordinates", "display_type": "timeseries", "hs_ephem_xyz_gse_n20": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "hs_ephem_xyz_gse_n2(0)", "dataset": "hs-ephem-n2", "index1": "0", "is_public": "True", "name": "x", "parameter": "hs_ephem_xyz_gse_n2", "start_date": "2026-09-07T11:40:00Z", "stop_date": "2027-08-29T11:39:59Z", "xmlid": "hs_ephem_xyz_gse_n2(0)"}, "hs_ephem_xyz_gse_n21": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "hs_ephem_xyz_gse_n2(1)", "dataset": "hs-ephem-n2", "index1": "1", "is_public": "True", "name": "y", "parameter": "hs_ephem_xyz_gse_n2", "start_date": "2026-09-07T11:40:00Z", "stop_date": "2027-08-29T11:39:59Z", "xmlid": "hs_ephem_xyz_gse_n2(1)"}, "hs_ephem_xyz_gse_n22": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "hs_ephem_xyz_gse_n2(2)", "dataset": "hs-ephem-n2", "index1": "2", "is_public": "True", "name": "z", "parameter": "hs_ephem_xyz_gse_n2", "start_date": "2026-09-07T11:40:00Z", "stop_date": "2027-08-29T11:39:59Z", "xmlid": "hs_ephem_xyz_gse_n2(2)"}, "is_public": "True", "name": "xyz_gse", "predefined": "1", "size": "3", "start_date": "2026-09-07T11:40:00Z", "stop_date": "2027-08-29T11:39:59Z", "template": "hs_ephem_xyz_gse_##node##", "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "Re", "xmlid": "hs_ephem_xyz_gse_n2"}, "is_public": "True", "lastModificationDate": "2023-02-22T14:53:39Z", "lastUpdate": "2023-02-22T14:53:04Z", "measurement_type": "Ephemeris", "name": "Node 2", "processing_level": "Calibrated", "sampling": "1H", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/HelioSwarm/Ephemeris/hs-ephem-n2", "start_date": "2026-09-07T11:40:00Z", "stop_date": "2027-08-29T11:39:59Z", "xmlid": "hs-ephem-n2"}, "hs_ephem_n3": {"PriorID": "helioswarm-ephem-test", "__spz_name__": "Node 3", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "hs-ephem-n3", "att": "auto/hs-ephem-n3", "dataSource": "HelioSwarm Team", "desc": "
Sampling: 1H
Provider: HelioSwarm Team", "hs_ephem_mag_n3": {"__spz_name__": "distance n3-earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "hs_ephem_mag_n3", "dataset": "hs-ephem-n3", "display_type": "timeseries", "is_public": "True", "name": "distance n3-earth", "predefined": "1", "start_date": "2026-09-07T11:40:00Z", "stop_date": "2027-08-29T11:39:59Z", "template": "hs_ephem_mag_##node##", "units": "Re", "xmlid": "hs_ephem_mag_n3"}, "hs_ephem_ta_n3": {"__spz_name__": "true anomaly", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "hs_ephem_ta_n3", "dataset": "hs-ephem-n3", "display_type": "timeseries", "is_public": "True", "name": "true anomaly", "predefined": "1", "start_date": "2026-09-07T11:40:00Z", "stop_date": "2027-08-29T11:39:59Z", "template": "hs_ephem_ta_##node##", "units": "deg", "xmlid": "hs_ephem_ta_n3"}, "hs_ephem_tmfr_n3": {"__spz_name__": "total mass flow rate", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "hs_ephem_tmfr_n3", "dataset": "hs-ephem-n3", "display_type": "timeseries", "is_public": "True", "name": "total mass flow rate", "predefined": "1", "start_date": "2026-09-07T11:40:00Z", "stop_date": "2027-08-29T11:39:59Z", "template": "hs_ephem_tmfr_##node##", "units": "g/hr", "xmlid": "hs_ephem_tmfr_n3"}, "hs_ephem_xyz_gse_n3": {"__spz_name__": "xyz_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "hs_ephem_xyz_gse_n3", "dataset": "hs-ephem-n3", "description": "Position in GSE coordinates", "display_type": "timeseries", "hs_ephem_xyz_gse_n30": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "hs_ephem_xyz_gse_n3(0)", "dataset": "hs-ephem-n3", "index1": "0", "is_public": "True", "name": "x", "parameter": "hs_ephem_xyz_gse_n3", "start_date": "2026-09-07T11:40:00Z", "stop_date": "2027-08-29T11:39:59Z", "xmlid": "hs_ephem_xyz_gse_n3(0)"}, "hs_ephem_xyz_gse_n31": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "hs_ephem_xyz_gse_n3(1)", "dataset": "hs-ephem-n3", "index1": "1", "is_public": "True", "name": "y", "parameter": "hs_ephem_xyz_gse_n3", "start_date": "2026-09-07T11:40:00Z", "stop_date": "2027-08-29T11:39:59Z", "xmlid": "hs_ephem_xyz_gse_n3(1)"}, "hs_ephem_xyz_gse_n32": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "hs_ephem_xyz_gse_n3(2)", "dataset": "hs-ephem-n3", "index1": "2", "is_public": "True", "name": "z", "parameter": "hs_ephem_xyz_gse_n3", "start_date": "2026-09-07T11:40:00Z", "stop_date": "2027-08-29T11:39:59Z", "xmlid": "hs_ephem_xyz_gse_n3(2)"}, "is_public": "True", "name": "xyz_gse", "predefined": "1", "size": "3", "start_date": "2026-09-07T11:40:00Z", "stop_date": "2027-08-29T11:39:59Z", "template": "hs_ephem_xyz_gse_##node##", "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "Re", "xmlid": "hs_ephem_xyz_gse_n3"}, "is_public": "True", "lastModificationDate": "2023-02-22T14:53:39Z", "lastUpdate": "2023-02-22T14:53:04Z", "measurement_type": "Ephemeris", "name": "Node 3", "processing_level": "Calibrated", "sampling": "1H", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/HelioSwarm/Ephemeris/hs-ephem-n3", "start_date": "2026-09-07T11:40:00Z", "stop_date": "2027-08-29T11:39:59Z", "xmlid": "hs-ephem-n3"}, "hs_ephem_n4": {"PriorID": "helioswarm-ephem-test", "__spz_name__": "Node 4", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "hs-ephem-n4", "att": "auto/hs-ephem-n4", "dataSource": "HelioSwarm Team", "desc": "
Sampling: 1H
Provider: HelioSwarm Team", "hs_ephem_mag_n4": {"__spz_name__": "distance n4-earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "hs_ephem_mag_n4", "dataset": "hs-ephem-n4", "display_type": "timeseries", "is_public": "True", "name": "distance n4-earth", "predefined": "1", "start_date": "2026-09-07T11:40:00Z", "stop_date": "2027-08-29T11:39:59Z", "template": "hs_ephem_mag_##node##", "units": "Re", "xmlid": "hs_ephem_mag_n4"}, "hs_ephem_ta_n4": {"__spz_name__": "true anomaly", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "hs_ephem_ta_n4", "dataset": "hs-ephem-n4", "display_type": "timeseries", "is_public": "True", "name": "true anomaly", "predefined": "1", "start_date": "2026-09-07T11:40:00Z", "stop_date": "2027-08-29T11:39:59Z", "template": "hs_ephem_ta_##node##", "units": "deg", "xmlid": "hs_ephem_ta_n4"}, "hs_ephem_tmfr_n4": {"__spz_name__": "total mass flow rate", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "hs_ephem_tmfr_n4", "dataset": "hs-ephem-n4", "display_type": "timeseries", "is_public": "True", "name": "total mass flow rate", "predefined": "1", "start_date": "2026-09-07T11:40:00Z", "stop_date": "2027-08-29T11:39:59Z", "template": "hs_ephem_tmfr_##node##", "units": "g/hr", "xmlid": "hs_ephem_tmfr_n4"}, "hs_ephem_xyz_gse_n4": {"__spz_name__": "xyz_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "hs_ephem_xyz_gse_n4", "dataset": "hs-ephem-n4", "description": "Position in GSE coordinates", "display_type": "timeseries", "hs_ephem_xyz_gse_n40": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "hs_ephem_xyz_gse_n4(0)", "dataset": "hs-ephem-n4", "index1": "0", "is_public": "True", "name": "x", "parameter": "hs_ephem_xyz_gse_n4", "start_date": "2026-09-07T11:40:00Z", "stop_date": "2027-08-29T11:39:59Z", "xmlid": "hs_ephem_xyz_gse_n4(0)"}, "hs_ephem_xyz_gse_n41": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "hs_ephem_xyz_gse_n4(1)", "dataset": "hs-ephem-n4", "index1": "1", "is_public": "True", "name": "y", "parameter": "hs_ephem_xyz_gse_n4", "start_date": "2026-09-07T11:40:00Z", "stop_date": "2027-08-29T11:39:59Z", "xmlid": "hs_ephem_xyz_gse_n4(1)"}, "hs_ephem_xyz_gse_n42": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "hs_ephem_xyz_gse_n4(2)", "dataset": "hs-ephem-n4", "index1": "2", "is_public": "True", "name": "z", "parameter": "hs_ephem_xyz_gse_n4", "start_date": "2026-09-07T11:40:00Z", "stop_date": "2027-08-29T11:39:59Z", "xmlid": "hs_ephem_xyz_gse_n4(2)"}, "is_public": "True", "name": "xyz_gse", "predefined": "1", "size": "3", "start_date": "2026-09-07T11:40:00Z", "stop_date": "2027-08-29T11:39:59Z", "template": "hs_ephem_xyz_gse_##node##", "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "Re", "xmlid": "hs_ephem_xyz_gse_n4"}, "is_public": "True", "lastModificationDate": "2023-02-22T14:53:39Z", "lastUpdate": "2023-02-22T14:53:04Z", "measurement_type": "Ephemeris", "name": "Node 4", "processing_level": "Calibrated", "sampling": "1H", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/HelioSwarm/Ephemeris/hs-ephem-n4", "start_date": "2026-09-07T11:40:00Z", "stop_date": "2027-08-29T11:39:59Z", "xmlid": "hs-ephem-n4"}, "hs_ephem_n5": {"PriorID": "helioswarm-ephem-test", "__spz_name__": "Node 5", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "hs-ephem-n5", "att": "auto/hs-ephem-n5", "dataSource": "HelioSwarm Team", "desc": "
Sampling: 1H
Provider: HelioSwarm Team", "hs_ephem_mag_n5": {"__spz_name__": "distance n5-earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "hs_ephem_mag_n5", "dataset": "hs-ephem-n5", "display_type": "timeseries", "is_public": "True", "name": "distance n5-earth", "predefined": "1", "start_date": "2026-09-07T11:40:00Z", "stop_date": "2027-08-29T11:39:59Z", "template": "hs_ephem_mag_##node##", "units": "Re", "xmlid": "hs_ephem_mag_n5"}, "hs_ephem_ta_n5": {"__spz_name__": "true anomaly", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "hs_ephem_ta_n5", "dataset": "hs-ephem-n5", "display_type": "timeseries", "is_public": "True", "name": "true anomaly", "predefined": "1", "start_date": "2026-09-07T11:40:00Z", "stop_date": "2027-08-29T11:39:59Z", "template": "hs_ephem_ta_##node##", "units": "deg", "xmlid": "hs_ephem_ta_n5"}, "hs_ephem_tmfr_n5": {"__spz_name__": "total mass flow rate", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "hs_ephem_tmfr_n5", "dataset": "hs-ephem-n5", "display_type": "timeseries", "is_public": "True", "name": "total mass flow rate", "predefined": "1", "start_date": "2026-09-07T11:40:00Z", "stop_date": "2027-08-29T11:39:59Z", "template": "hs_ephem_tmfr_##node##", "units": "g/hr", "xmlid": "hs_ephem_tmfr_n5"}, "hs_ephem_xyz_gse_n5": {"__spz_name__": "xyz_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "hs_ephem_xyz_gse_n5", "dataset": "hs-ephem-n5", "description": "Position in GSE coordinates", "display_type": "timeseries", "hs_ephem_xyz_gse_n50": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "hs_ephem_xyz_gse_n5(0)", "dataset": "hs-ephem-n5", "index1": "0", "is_public": "True", "name": "x", "parameter": "hs_ephem_xyz_gse_n5", "start_date": "2026-09-07T11:40:00Z", "stop_date": "2027-08-29T11:39:59Z", "xmlid": "hs_ephem_xyz_gse_n5(0)"}, "hs_ephem_xyz_gse_n51": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "hs_ephem_xyz_gse_n5(1)", "dataset": "hs-ephem-n5", "index1": "1", "is_public": "True", "name": "y", "parameter": "hs_ephem_xyz_gse_n5", "start_date": "2026-09-07T11:40:00Z", "stop_date": "2027-08-29T11:39:59Z", "xmlid": "hs_ephem_xyz_gse_n5(1)"}, "hs_ephem_xyz_gse_n52": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "hs_ephem_xyz_gse_n5(2)", "dataset": "hs-ephem-n5", "index1": "2", "is_public": "True", "name": "z", "parameter": "hs_ephem_xyz_gse_n5", "start_date": "2026-09-07T11:40:00Z", "stop_date": "2027-08-29T11:39:59Z", "xmlid": "hs_ephem_xyz_gse_n5(2)"}, "is_public": "True", "name": "xyz_gse", "predefined": "1", "size": "3", "start_date": "2026-09-07T11:40:00Z", "stop_date": "2027-08-29T11:39:59Z", "template": "hs_ephem_xyz_gse_##node##", "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "Re", "xmlid": "hs_ephem_xyz_gse_n5"}, "is_public": "True", "lastModificationDate": "2023-02-22T14:53:39Z", "lastUpdate": "2023-02-22T14:53:04Z", "measurement_type": "Ephemeris", "name": "Node 5", "processing_level": "Calibrated", "sampling": "1H", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/HelioSwarm/Ephemeris/hs-ephem-n5", "start_date": "2026-09-07T11:40:00Z", "stop_date": "2027-08-29T11:39:59Z", "xmlid": "hs-ephem-n5"}, "hs_ephem_n6": {"PriorID": "helioswarm-ephem-test", "__spz_name__": "Node 6", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "hs-ephem-n6", "att": "auto/hs-ephem-n6", "dataSource": "HelioSwarm Team", "desc": "
Sampling: 1H
Provider: HelioSwarm Team", "hs_ephem_mag_n6": {"__spz_name__": "distance n6-earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "hs_ephem_mag_n6", "dataset": "hs-ephem-n6", "display_type": "timeseries", "is_public": "True", "name": "distance n6-earth", "predefined": "1", "start_date": "2026-09-07T11:40:00Z", "stop_date": "2027-08-29T11:39:59Z", "template": "hs_ephem_mag_##node##", "units": "Re", "xmlid": "hs_ephem_mag_n6"}, "hs_ephem_ta_n6": {"__spz_name__": "true anomaly", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "hs_ephem_ta_n6", "dataset": "hs-ephem-n6", "display_type": "timeseries", "is_public": "True", "name": "true anomaly", "predefined": "1", "start_date": "2026-09-07T11:40:00Z", "stop_date": "2027-08-29T11:39:59Z", "template": "hs_ephem_ta_##node##", "units": "deg", "xmlid": "hs_ephem_ta_n6"}, "hs_ephem_tmfr_n6": {"__spz_name__": "total mass flow rate", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "hs_ephem_tmfr_n6", "dataset": "hs-ephem-n6", "display_type": "timeseries", "is_public": "True", "name": "total mass flow rate", "predefined": "1", "start_date": "2026-09-07T11:40:00Z", "stop_date": "2027-08-29T11:39:59Z", "template": "hs_ephem_tmfr_##node##", "units": "g/hr", "xmlid": "hs_ephem_tmfr_n6"}, "hs_ephem_xyz_gse_n6": {"__spz_name__": "xyz_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "hs_ephem_xyz_gse_n6", "dataset": "hs-ephem-n6", "description": "Position in GSE coordinates", "display_type": "timeseries", "hs_ephem_xyz_gse_n60": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "hs_ephem_xyz_gse_n6(0)", "dataset": "hs-ephem-n6", "index1": "0", "is_public": "True", "name": "x", "parameter": "hs_ephem_xyz_gse_n6", "start_date": "2026-09-07T11:40:00Z", "stop_date": "2027-08-29T11:39:59Z", "xmlid": "hs_ephem_xyz_gse_n6(0)"}, "hs_ephem_xyz_gse_n61": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "hs_ephem_xyz_gse_n6(1)", "dataset": "hs-ephem-n6", "index1": "1", "is_public": "True", "name": "y", "parameter": "hs_ephem_xyz_gse_n6", "start_date": "2026-09-07T11:40:00Z", "stop_date": "2027-08-29T11:39:59Z", "xmlid": "hs_ephem_xyz_gse_n6(1)"}, "hs_ephem_xyz_gse_n62": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "hs_ephem_xyz_gse_n6(2)", "dataset": "hs-ephem-n6", "index1": "2", "is_public": "True", "name": "z", "parameter": "hs_ephem_xyz_gse_n6", "start_date": "2026-09-07T11:40:00Z", "stop_date": "2027-08-29T11:39:59Z", "xmlid": "hs_ephem_xyz_gse_n6(2)"}, "is_public": "True", "name": "xyz_gse", "predefined": "1", "size": "3", "start_date": "2026-09-07T11:40:00Z", "stop_date": "2027-08-29T11:39:59Z", "template": "hs_ephem_xyz_gse_##node##", "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "Re", "xmlid": "hs_ephem_xyz_gse_n6"}, "is_public": "True", "lastModificationDate": "2023-02-22T14:53:39Z", "lastUpdate": "2023-02-22T14:53:04Z", "measurement_type": "Ephemeris", "name": "Node 6", "processing_level": "Calibrated", "sampling": "1H", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/HelioSwarm/Ephemeris/hs-ephem-n6", "start_date": "2026-09-07T11:40:00Z", "stop_date": "2027-08-29T11:39:59Z", "xmlid": "hs-ephem-n6"}, "hs_ephem_n7": {"PriorID": "helioswarm-ephem-test", "__spz_name__": "Node 7", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "hs-ephem-n7", "att": "auto/hs-ephem-n7", "dataSource": "HelioSwarm Team", "desc": "
Sampling: 1H
Provider: HelioSwarm Team", "hs_ephem_mag_n7": {"__spz_name__": "distance n7-earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "hs_ephem_mag_n7", "dataset": "hs-ephem-n7", "display_type": "timeseries", "is_public": "True", "name": "distance n7-earth", "predefined": "1", "start_date": "2026-09-07T11:40:00Z", "stop_date": "2027-08-29T11:39:59Z", "template": "hs_ephem_mag_##node##", "units": "Re", "xmlid": "hs_ephem_mag_n7"}, "hs_ephem_ta_n7": {"__spz_name__": "true anomaly", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "hs_ephem_ta_n7", "dataset": "hs-ephem-n7", "display_type": "timeseries", "is_public": "True", "name": "true anomaly", "predefined": "1", "start_date": "2026-09-07T11:40:00Z", "stop_date": "2027-08-29T11:39:59Z", "template": "hs_ephem_ta_##node##", "units": "deg", "xmlid": "hs_ephem_ta_n7"}, "hs_ephem_tmfr_n7": {"__spz_name__": "total mass flow rate", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "hs_ephem_tmfr_n7", "dataset": "hs-ephem-n7", "display_type": "timeseries", "is_public": "True", "name": "total mass flow rate", "predefined": "1", "start_date": "2026-09-07T11:40:00Z", "stop_date": "2027-08-29T11:39:59Z", "template": "hs_ephem_tmfr_##node##", "units": "g/hr", "xmlid": "hs_ephem_tmfr_n7"}, "hs_ephem_xyz_gse_n7": {"__spz_name__": "xyz_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "hs_ephem_xyz_gse_n7", "dataset": "hs-ephem-n7", "description": "Position in GSE coordinates", "display_type": "timeseries", "hs_ephem_xyz_gse_n70": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "hs_ephem_xyz_gse_n7(0)", "dataset": "hs-ephem-n7", "index1": "0", "is_public": "True", "name": "x", "parameter": "hs_ephem_xyz_gse_n7", "start_date": "2026-09-07T11:40:00Z", "stop_date": "2027-08-29T11:39:59Z", "xmlid": "hs_ephem_xyz_gse_n7(0)"}, "hs_ephem_xyz_gse_n71": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "hs_ephem_xyz_gse_n7(1)", "dataset": "hs-ephem-n7", "index1": "1", "is_public": "True", "name": "y", "parameter": "hs_ephem_xyz_gse_n7", "start_date": "2026-09-07T11:40:00Z", "stop_date": "2027-08-29T11:39:59Z", "xmlid": "hs_ephem_xyz_gse_n7(1)"}, "hs_ephem_xyz_gse_n72": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "hs_ephem_xyz_gse_n7(2)", "dataset": "hs-ephem-n7", "index1": "2", "is_public": "True", "name": "z", "parameter": "hs_ephem_xyz_gse_n7", "start_date": "2026-09-07T11:40:00Z", "stop_date": "2027-08-29T11:39:59Z", "xmlid": "hs_ephem_xyz_gse_n7(2)"}, "is_public": "True", "name": "xyz_gse", "predefined": "1", "size": "3", "start_date": "2026-09-07T11:40:00Z", "stop_date": "2027-08-29T11:39:59Z", "template": "hs_ephem_xyz_gse_##node##", "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "Re", "xmlid": "hs_ephem_xyz_gse_n7"}, "is_public": "True", "lastModificationDate": "2023-02-22T14:53:39Z", "lastUpdate": "2023-02-22T14:53:04Z", "measurement_type": "Ephemeris", "name": "Node 7", "processing_level": "Calibrated", "sampling": "1H", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/HelioSwarm/Ephemeris/hs-ephem-n7", "start_date": "2026-09-07T11:40:00Z", "stop_date": "2027-08-29T11:39:59Z", "xmlid": "hs-ephem-n7"}, "hs_ephem_n8": {"PriorID": "helioswarm-ephem-test", "__spz_name__": "Node 8", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "hs-ephem-n8", "att": "auto/hs-ephem-n8", "dataSource": "HelioSwarm Team", "desc": "
Sampling: 1H
Provider: HelioSwarm Team", "hs_ephem_mag_n8": {"__spz_name__": "distance n8-earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "hs_ephem_mag_n8", "dataset": "hs-ephem-n8", "display_type": "timeseries", "is_public": "True", "name": "distance n8-earth", "predefined": "1", "start_date": "2026-09-07T11:40:00Z", "stop_date": "2027-08-29T11:39:59Z", "template": "hs_ephem_mag_##node##", "units": "Re", "xmlid": "hs_ephem_mag_n8"}, "hs_ephem_ta_n8": {"__spz_name__": "true anomaly", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "hs_ephem_ta_n8", "dataset": "hs-ephem-n8", "display_type": "timeseries", "is_public": "True", "name": "true anomaly", "predefined": "1", "start_date": "2026-09-07T11:40:00Z", "stop_date": "2027-08-29T11:39:59Z", "template": "hs_ephem_ta_##node##", "units": "deg", "xmlid": "hs_ephem_ta_n8"}, "hs_ephem_tmfr_n8": {"__spz_name__": "total mass flow rate", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "hs_ephem_tmfr_n8", "dataset": "hs-ephem-n8", "display_type": "timeseries", "is_public": "True", "name": "total mass flow rate", "predefined": "1", "start_date": "2026-09-07T11:40:00Z", "stop_date": "2027-08-29T11:39:59Z", "template": "hs_ephem_tmfr_##node##", "units": "g/hr", "xmlid": "hs_ephem_tmfr_n8"}, "hs_ephem_xyz_gse_n8": {"__spz_name__": "xyz_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "hs_ephem_xyz_gse_n8", "dataset": "hs-ephem-n8", "description": "Position in GSE coordinates", "display_type": "timeseries", "hs_ephem_xyz_gse_n80": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "hs_ephem_xyz_gse_n8(0)", "dataset": "hs-ephem-n8", "index1": "0", "is_public": "True", "name": "x", "parameter": "hs_ephem_xyz_gse_n8", "start_date": "2026-09-07T11:40:00Z", "stop_date": "2027-08-29T11:39:59Z", "xmlid": "hs_ephem_xyz_gse_n8(0)"}, "hs_ephem_xyz_gse_n81": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "hs_ephem_xyz_gse_n8(1)", "dataset": "hs-ephem-n8", "index1": "1", "is_public": "True", "name": "y", "parameter": "hs_ephem_xyz_gse_n8", "start_date": "2026-09-07T11:40:00Z", "stop_date": "2027-08-29T11:39:59Z", "xmlid": "hs_ephem_xyz_gse_n8(1)"}, "hs_ephem_xyz_gse_n82": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "hs_ephem_xyz_gse_n8(2)", "dataset": "hs-ephem-n8", "index1": "2", "is_public": "True", "name": "z", "parameter": "hs_ephem_xyz_gse_n8", "start_date": "2026-09-07T11:40:00Z", "stop_date": "2027-08-29T11:39:59Z", "xmlid": "hs_ephem_xyz_gse_n8(2)"}, "is_public": "True", "name": "xyz_gse", "predefined": "1", "size": "3", "start_date": "2026-09-07T11:40:00Z", "stop_date": "2027-08-29T11:39:59Z", "template": "hs_ephem_xyz_gse_##node##", "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "Re", "xmlid": "hs_ephem_xyz_gse_n8"}, "is_public": "True", "lastModificationDate": "2023-02-22T14:53:39Z", "lastUpdate": "2023-02-22T14:53:04Z", "measurement_type": "Ephemeris", "name": "Node 8", "processing_level": "Calibrated", "sampling": "1H", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/HelioSwarm/Ephemeris/hs-ephem-n8", "start_date": "2026-09-07T11:40:00Z", "stop_date": "2027-08-29T11:39:59Z", "xmlid": "hs-ephem-n8"}, "is_public": "True", "name": "Ephemeris", "xmlid": "HelioSwarm_ephemeris"}, "__spz_name__": "HelioSwarm", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "HelioSwarm", "att": "auto/HelioSwarm", "desc": "HelioSwarm
2028-01-01T00:00:00", "is_public": "True", "name": "HelioSwarm", "rank": "4", "target": "Heliosphere.NearEarth", "xmlid": "HelioSwarm"}, "Helios": {"Helios1": {"AUX": {"__spz_name__": "AUX", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Helios1_auxilliary", "att": "auto/Helios1_auxilliary", "desc": "", "helios1_aux_corefit": {"__spz_name__": "corefit : 40s", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "helios1-aux-corefit", "att": "auto/helios1-aux-corefit", "dataSource": "Helios Data Archive", "desc": "Helios corefit data product : auxilliary
MinSampling: 40S; MaxSampling: 300S
Provider: Helios Data Archive", "helios1_car_rot": {"__spz_name__": "carr rotation", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "helios1_car_rot", "dataset": "helios1-aux-corefit", "description": "Carrington rotation number", "is_public": "True", "name": "carr rotation", "start_date": "1974-12-12T01:38:10Z", "stop_date": "1984-08-15T23:33:14Z", "xmlid": "helios1_car_rot"}, "helios1_carr_lat": {"__spz_name__": "carr lat", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "helios1_carr_lat", "dataset": "helios1-aux-corefit", "is_public": "True", "name": "carr lat", "start_date": "1974-12-12T01:38:10Z", "stop_date": "1984-08-15T23:33:14Z", "units": "deg", "xmlid": "helios1_carr_lat"}, "helios1_carr_lon": {"__spz_name__": "carr lon", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "helios1_carr_lon", "dataset": "helios1-aux-corefit", "is_public": "True", "name": "carr lon", "start_date": "1974-12-12T01:38:10Z", "stop_date": "1984-08-15T23:33:14Z", "units": "deg", "xmlid": "helios1_carr_lon"}, "helios1_carr_r": {"__spz_name__": "carr r", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "helios1_carr_r", "dataset": "helios1-aux-corefit", "is_public": "True", "name": "carr r", "start_date": "1974-12-12T01:38:10Z", "stop_date": "1984-08-15T23:33:14Z", "units": "AU", "xmlid": "helios1_carr_r"}, "helios1_earth_ang": {"__spz_name__": "angle helios1-earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "helios1_earth_ang", "dataset": "helios1-aux-corefit", "is_public": "True", "name": "angle helios1-earth", "start_date": "1974-12-12T01:38:10Z", "stop_date": "1984-08-15T23:33:14Z", "units": "deg", "xmlid": "helios1_earth_ang"}, "is_public": "True", "lastModificationDate": "2018-11-12T12:15:48Z", "lastUpdate": "2018-11-12T15:01:59Z", "maxSampling": "300S", "measurement_type": "Ephemeris", "name": "corefit : 40s", "processing_level": "Calibrated", "sampling": "40S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Helios1/AUXILLIARY/helios1-aux-corefit", "start_date": "1974-12-12T01:38:10Z", "stop_date": "1984-08-15T23:33:14Z", "target": "Heliosphere", "xmlid": "helios1-aux-corefit"}, "is_public": "True", "name": "AUX", "xmlid": "Helios1_auxilliary"}, "E1": {"__spz_name__": "E1", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Helios1_e1", "att": "auto/Helios1_e1", "desc": "The plasma experiment on Helios : E1
ElectrostaticAnalyser", "helios1_e1_all": {"__spz_name__": "corefit : protons", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "helios1-e1-all", "att": "auto/helios1-e1-all", "dataSource": "Helios Data Archive", "desc": "Helios corefit data product
MinSampling: 40S; MaxSampling: 300S
Provider: Helios Data Archive", "helios1_e1_flag": {"__spz_name__": "status", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "helios1_e1_flag", "dataset": "helios1-e1-all", "is_public": "True", "name": "status", "start_date": "1974-12-12T01:38:10Z", "stop_date": "1984-08-15T23:33:14Z", "xmlid": "helios1_e1_flag"}, "helios1_e1_instr": {"__spz_name__": "ion_instr", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "helios1_e1_instr", "dataset": "helios1-e1-all", "is_public": "True", "name": "ion_instr", "start_date": "1974-12-12T01:38:10Z", "stop_date": "1984-08-15T23:33:14Z", "xmlid": "helios1_e1_instr"}, "helios1_e1_np": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "helios1_e1_np", "dataset": "helios1-e1-all", "is_public": "True", "name": "density", "start_date": "1974-12-12T01:38:10Z", "stop_date": "1984-08-15T23:33:14Z", "units": "cm\u207b\u00b3", "xmlid": "helios1_e1_np"}, "helios1_e1_t_para": {"__spz_name__": "t_para", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "helios1_e1_t_para", "dataset": "helios1-e1-all", "is_public": "True", "name": "t_para", "start_date": "1974-12-12T01:38:10Z", "stop_date": "1984-08-15T23:33:14Z", "units": "eV", "xmlid": "helios1_e1_t_para"}, "helios1_e1_t_perp": {"__spz_name__": "t_perp", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "helios1_e1_t_perp", "dataset": "helios1-e1-all", "is_public": "True", "name": "t_perp", "start_date": "1974-12-12T01:38:10Z", "stop_date": "1984-08-15T23:33:14Z", "units": "eV", "xmlid": "helios1_e1_t_perp"}, "helios1_e1_vp": {"__spz_name__": "v_rtn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "helios1_e1_vp", "dataset": "helios1-e1-all", "helios1_e1_vp0": {"__spz_name__": "vr", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "helios1_e1_vp(0)", "dataset": "helios1-e1-all", "index1": "0", "is_public": "True", "name": "vr", "parameter": "helios1_e1_vp", "start_date": "1974-12-12T01:38:10Z", "stop_date": "1984-08-15T23:33:14Z", "xmlid": "helios1_e1_vp(0)"}, "helios1_e1_vp1": {"__spz_name__": "vt", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "helios1_e1_vp(1)", "dataset": "helios1-e1-all", "index1": "1", "is_public": "True", "name": "vt", "parameter": "helios1_e1_vp", "start_date": "1974-12-12T01:38:10Z", "stop_date": "1984-08-15T23:33:14Z", "xmlid": "helios1_e1_vp(1)"}, "helios1_e1_vp2": {"__spz_name__": "vn", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "helios1_e1_vp(2)", "dataset": "helios1-e1-all", "index1": "2", "is_public": "True", "name": "vn", "parameter": "helios1_e1_vp", "start_date": "1974-12-12T01:38:10Z", "stop_date": "1984-08-15T23:33:14Z", "xmlid": "helios1_e1_vp(2)"}, "is_public": "True", "name": "v_rtn", "size": "3", "start_date": "1974-12-12T01:38:10Z", "stop_date": "1984-08-15T23:33:14Z", "units": "km/s", "xmlid": "helios1_e1_vp"}, "helios1_e1_vth_para": {"__spz_name__": "v_thermal_para", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "helios1_e1_vth_para", "dataset": "helios1-e1-all", "is_public": "True", "name": "v_thermal_para", "start_date": "1974-12-12T01:38:10Z", "stop_date": "1984-08-15T23:33:14Z", "units": "km/s", "xmlid": "helios1_e1_vth_para"}, "helios1_e1_vth_perp": {"__spz_name__": "v_thermal_perp", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "helios1_e1_vth_perp", "dataset": "helios1-e1-all", "is_public": "True", "name": "v_thermal_perp", "start_date": "1974-12-12T01:38:10Z", "stop_date": "1984-08-15T23:33:14Z", "units": "km/s", "xmlid": "helios1_e1_vth_perp"}, "is_public": "True", "lastModificationDate": "2018-11-07T16:43:18Z", "lastUpdate": "2018-11-06T19:11:24Z", "maxSampling": "300S", "measurement_type": "ThermalPlasma", "name": "corefit : protons", "processing_level": "Calibrated", "sampling": "40S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Helios1/E1/helios1-e1-all", "start_date": "1974-12-12T01:38:10Z", "stop_date": "1984-08-15T23:33:14Z", "target": "Heliosphere", "xmlid": "helios1-e1-all"}, "is_public": "True", "name": "E1", "xmlid": "Helios1_e1"}, "E3": {"__spz_name__": "E3", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Helios1_e3", "att": "auto/Helios1_e3", "desc": "Fluxgare Magnetometer for Average Fields
Magnetometer", "helios1_e3_all": {"__spz_name__": "magnetic field 6-sec average", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "helios1-e3-all", "att": "auto/helios1-e3-all", "dataSource": "Helios Data Archive", "desc": "
Sampling: 6S
Provider: Helios Data Archive", "helios1_e3_bmag": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "helios1_e3_bmag", "dataset": "helios1-e3-all", "description": "Magnetic field magnitude", "is_public": "True", "name": "|b|", "start_date": "1974-12-15T00:01:00Z", "stop_date": "1981-06-16T04:59:06Z", "units": "nT", "xmlid": "helios1_e3_bmag"}, "helios1_e3_brtn": {"__spz_name__": "b_rtn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "helios1_e3_brtn", "dataset": "helios1-e3-all", "description": "Magnetic field in RTN coordinates", "helios1_e3_brtn0": {"__spz_name__": "br", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "helios1_e3_brtn(0)", "dataset": "helios1-e3-all", "index1": "0", "is_public": "True", "name": "br", "parameter": "helios1_e3_brtn", "start_date": "1974-12-15T00:01:00Z", "stop_date": "1981-06-16T04:59:06Z", "xmlid": "helios1_e3_brtn(0)"}, "helios1_e3_brtn1": {"__spz_name__": "bt", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "helios1_e3_brtn(1)", "dataset": "helios1-e3-all", "index1": "1", "is_public": "True", "name": "bt", "parameter": "helios1_e3_brtn", "start_date": "1974-12-15T00:01:00Z", "stop_date": "1981-06-16T04:59:06Z", "xmlid": "helios1_e3_brtn(1)"}, "helios1_e3_brtn2": {"__spz_name__": "bn", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "helios1_e3_brtn(2)", "dataset": "helios1-e3-all", "index1": "2", "is_public": "True", "name": "bn", "parameter": "helios1_e3_brtn", "start_date": "1974-12-15T00:01:00Z", "stop_date": "1981-06-16T04:59:06Z", "xmlid": "helios1_e3_brtn(2)"}, "is_public": "True", "name": "b_rtn", "size": "3", "start_date": "1974-12-15T00:01:00Z", "stop_date": "1981-06-16T04:59:06Z", "units": "nT", "xmlid": "helios1_e3_brtn"}, "helios1_e3_brtn_phi": {"__spz_name__": "phi", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "helios1_e3_brtn_phi", "dataset": "helios1-e3-all", "description": "Magnetic field phi angle", "display_type": "timeseries", "is_public": "True", "name": "phi", "start_date": "1974-12-15T00:01:00Z", "stop_date": "1981-06-16T04:59:06Z", "ucd": "phys.magField", "units": "degrees", "xmlid": "helios1_e3_brtn_phi"}, "helios1_e3_brtn_theta": {"__spz_name__": "theta", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "helios1_e3_brtn_theta", "dataset": "helios1-e3-all", "description": "Magnetic field theta angle", "display_type": "timeseries", "is_public": "True", "name": "theta", "start_date": "1974-12-15T00:01:00Z", "stop_date": "1981-06-16T04:59:06Z", "ucd": "phys.magField", "units": "degrees", "xmlid": "helios1_e3_brtn_theta"}, "helios1_e3_bse": {"__spz_name__": "b_se", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "helios1_e3_bse", "dataset": "helios1-e3-all", "description": "Magnetic field in solar ecliptic spacecraft centered coordinates", "helios1_e3_bse0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "helios1_e3_bse(0)", "dataset": "helios1-e3-all", "index1": "0", "is_public": "True", "name": "bx", "parameter": "helios1_e3_bse", "start_date": "1974-12-15T00:01:00Z", "stop_date": "1981-06-16T04:59:06Z", "xmlid": "helios1_e3_bse(0)"}, "helios1_e3_bse1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "helios1_e3_bse(1)", "dataset": "helios1-e3-all", "index1": "1", "is_public": "True", "name": "by", "parameter": "helios1_e3_bse", "start_date": "1974-12-15T00:01:00Z", "stop_date": "1981-06-16T04:59:06Z", "xmlid": "helios1_e3_bse(1)"}, "helios1_e3_bse2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "helios1_e3_bse(2)", "dataset": "helios1-e3-all", "index1": "2", "is_public": "True", "name": "bz", "parameter": "helios1_e3_bse", "start_date": "1974-12-15T00:01:00Z", "stop_date": "1981-06-16T04:59:06Z", "xmlid": "helios1_e3_bse(2)"}, "is_public": "True", "name": "b_se", "size": "3", "start_date": "1974-12-15T00:01:00Z", "stop_date": "1981-06-16T04:59:06Z", "units": "nT", "xmlid": "helios1_e3_bse"}, "helios1_e3_std": {"__spz_name__": "std_b", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "helios1_e3_std", "dataset": "helios1-e3-all", "description": "Magnetic field standard deviation", "helios1_e3_std0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "helios1_e3_std(0)", "dataset": "helios1-e3-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "helios1_e3_std", "start_date": "1974-12-15T00:01:00Z", "stop_date": "1981-06-16T04:59:06Z", "xmlid": "helios1_e3_std(0)"}, "helios1_e3_std1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "helios1_e3_std(1)", "dataset": "helios1-e3-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "helios1_e3_std", "start_date": "1974-12-15T00:01:00Z", "stop_date": "1981-06-16T04:59:06Z", "xmlid": "helios1_e3_std(1)"}, "helios1_e3_std2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "helios1_e3_std(2)", "dataset": "helios1-e3-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "helios1_e3_std", "start_date": "1974-12-15T00:01:00Z", "stop_date": "1981-06-16T04:59:06Z", "xmlid": "helios1_e3_std(2)"}, "is_public": "True", "name": "std_b", "size": "3", "start_date": "1974-12-15T00:01:00Z", "stop_date": "1981-06-16T04:59:06Z", "units": "nT", "xmlid": "helios1_e3_std"}, "is_public": "True", "lastModificationDate": "2020-09-01T14:15:11Z", "lastUpdate": "2020-08-19T11:27:41Z", "measurement_type": "MagneticField", "name": "magnetic field 6-sec average", "processing_level": "Calibrated", "sampling": "6S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Helios1/E3/helios1-e3-all", "start_date": "1974-12-15T00:01:00Z", "stop_date": "1981-06-16T04:59:06Z", "target": "Heliosphere", "xmlid": "helios1-e3-all"}, "is_public": "True", "name": "E3", "xmlid": "Helios1_e3"}, "Ephemeris": {"__spz_name__": "Ephemeris", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Helios1_ephemeris", "att": "auto/Helios1_ephemeris", "desc": "", "helios1_orb_all": {"__spz_name__": "orbit", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "helios1-orb-all", "att": "auto/helios1-orb-all", "dataSource": "SPICE/NAIF", "desc": "Helios1 orbit
Sampling: 1H
Provider: SPICE/NAIF", "helios1_lat_hee": {"__spz_name__": "lat hee", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "helios1_lat_hee", "dataset": "helios1-orb-all", "is_public": "True", "name": "lat hee", "start_date": "1974-12-11T00:00:00Z", "stop_date": "1986-03-15T22:59:58Z", "units": "deg", "xmlid": "helios1_lat_hee"}, "helios1_lat_iausun": {"__spz_name__": "lat iau_sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "helios1_lat_iausun", "dataset": "helios1-orb-all", "is_public": "True", "name": "lat iau_sun", "start_date": "1974-12-11T00:00:00Z", "stop_date": "1986-03-15T22:59:58Z", "units": "deg", "xmlid": "helios1_lat_iausun"}, "helios1_lon_hee": {"__spz_name__": "lon hee", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "helios1_lon_hee", "dataset": "helios1-orb-all", "is_public": "True", "name": "lon hee", "start_date": "1974-12-11T00:00:00Z", "stop_date": "1986-03-15T22:59:58Z", "units": "deg", "xmlid": "helios1_lon_hee"}, "helios1_lon_iausun": {"__spz_name__": "lon iau_sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "helios1_lon_iausun", "dataset": "helios1-orb-all", "is_public": "True", "name": "lon iau_sun", "start_date": "1974-12-11T00:00:00Z", "stop_date": "1986-03-15T22:59:58Z", "units": "deg", "xmlid": "helios1_lon_iausun"}, "helios1_sun_r": {"__spz_name__": "distance helios1-sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "helios1_sun_r", "dataset": "helios1-orb-all", "is_public": "True", "name": "distance helios1-sun", "start_date": "1974-12-11T00:00:00Z", "stop_date": "1986-03-15T22:59:58Z", "units": "AU", "xmlid": "helios1_sun_r"}, "helios1_xyz_hee": {"__spz_name__": "xyz_hee", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "helios1_xyz_hee", "dataset": "helios1-orb-all", "helios1_xyz_hee0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "helios1_xyz_hee(0)", "dataset": "helios1-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "helios1_xyz_hee", "start_date": "1974-12-11T00:00:00Z", "stop_date": "1986-03-15T22:59:58Z", "xmlid": "helios1_xyz_hee(0)"}, "helios1_xyz_hee1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "helios1_xyz_hee(1)", "dataset": "helios1-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "helios1_xyz_hee", "start_date": "1974-12-11T00:00:00Z", "stop_date": "1986-03-15T22:59:58Z", "xmlid": "helios1_xyz_hee(1)"}, "helios1_xyz_hee2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "helios1_xyz_hee(2)", "dataset": "helios1-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "helios1_xyz_hee", "start_date": "1974-12-11T00:00:00Z", "stop_date": "1986-03-15T22:59:58Z", "xmlid": "helios1_xyz_hee(2)"}, "is_public": "True", "name": "xyz_hee", "size": "3", "start_date": "1974-12-11T00:00:00Z", "stop_date": "1986-03-15T22:59:58Z", "units": "AU", "xmlid": "helios1_xyz_hee"}, "helios1_xyz_heeq": {"__spz_name__": "xyz_heeq", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "helios1_xyz_heeq", "dataset": "helios1-orb-all", "helios1_xyz_heeq0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "helios1_xyz_heeq(0)", "dataset": "helios1-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "helios1_xyz_heeq", "start_date": "1974-12-11T00:00:00Z", "stop_date": "1986-03-15T22:59:58Z", "xmlid": "helios1_xyz_heeq(0)"}, "helios1_xyz_heeq1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "helios1_xyz_heeq(1)", "dataset": "helios1-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "helios1_xyz_heeq", "start_date": "1974-12-11T00:00:00Z", "stop_date": "1986-03-15T22:59:58Z", "xmlid": "helios1_xyz_heeq(1)"}, "helios1_xyz_heeq2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "helios1_xyz_heeq(2)", "dataset": "helios1-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "helios1_xyz_heeq", "start_date": "1974-12-11T00:00:00Z", "stop_date": "1986-03-15T22:59:58Z", "xmlid": "helios1_xyz_heeq(2)"}, "is_public": "True", "name": "xyz_heeq", "size": "3", "start_date": "1974-12-11T00:00:00Z", "stop_date": "1986-03-15T22:59:58Z", "units": "AU", "xmlid": "helios1_xyz_heeq"}, "helios1_xyz_iausun": {"__spz_name__": "xyz_iau_sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "helios1_xyz_iausun", "dataset": "helios1-orb-all", "helios1_xyz_iausun0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "helios1_xyz_iausun(0)", "dataset": "helios1-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "helios1_xyz_iausun", "start_date": "1974-12-11T00:00:00Z", "stop_date": "1986-03-15T22:59:58Z", "xmlid": "helios1_xyz_iausun(0)"}, "helios1_xyz_iausun1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "helios1_xyz_iausun(1)", "dataset": "helios1-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "helios1_xyz_iausun", "start_date": "1974-12-11T00:00:00Z", "stop_date": "1986-03-15T22:59:58Z", "xmlid": "helios1_xyz_iausun(1)"}, "helios1_xyz_iausun2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "helios1_xyz_iausun(2)", "dataset": "helios1-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "helios1_xyz_iausun", "start_date": "1974-12-11T00:00:00Z", "stop_date": "1986-03-15T22:59:58Z", "xmlid": "helios1_xyz_iausun(2)"}, "is_public": "True", "name": "xyz_iau_sun", "size": "3", "start_date": "1974-12-11T00:00:00Z", "stop_date": "1986-03-15T22:59:58Z", "units": "AU", "xmlid": "helios1_xyz_iausun"}, "is_public": "True", "lastModificationDate": "2018-11-06T18:50:36Z", "lastUpdate": "2018-11-06T12:55:57Z", "measurement_type": "Ephemeris", "name": "orbit", "processing_level": "Calibrated", "sampling": "1H", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Helios1/ephemeris/helios1-orb-all", "start_date": "1974-12-11T00:00:00Z", "stop_date": "1986-03-15T22:59:58Z", "target": "Heliosphere", "xmlid": "helios1-orb-all"}, "is_public": "True", "name": "Ephemeris", "xmlid": "Helios1_ephemeris"}, "MAG": {"__spz_name__": "MAG", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Helios1_mag", "att": "auto/Helios1_mag", "desc": "Helios Magnetometers : E2, E3
Magnetometer", "helios1_mag_corefit": {"__spz_name__": "corefit : 40s", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "helios1-mag-corefit", "att": "auto/helios1-mag-corefit", "dataSource": "Helios Data Archive", "desc": "Helios corefit data product
MinSampling: 40S; MaxSampling: 300S
Provider: Helios Data Archive", "helios1_b_mag": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "helios1_b_mag", "dataset": "helios1-mag-corefit", "is_public": "True", "name": "|b|", "start_date": "1974-12-12T01:38:10Z", "stop_date": "1984-08-15T23:33:14Z", "units": "nT", "xmlid": "helios1_b_mag"}, "helios1_b_rtn": {"__spz_name__": "b_se", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "helios1_b_rtn", "dataset": "helios1-mag-corefit", "description": "magnetic field in solar ecliptic spacecraft centered coordinates (SE)", "helios1_b_rtn0": {"__spz_name__": "r", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "helios1_b_rtn(0)", "dataset": "helios1-mag-corefit", "index1": "0", "is_public": "True", "name": "r", "parameter": "helios1_b_rtn", "start_date": "1974-12-12T01:38:10Z", "stop_date": "1984-08-15T23:33:14Z", "xmlid": "helios1_b_rtn(0)"}, "helios1_b_rtn1": {"__spz_name__": "t", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "helios1_b_rtn(1)", "dataset": "helios1-mag-corefit", "index1": "1", "is_public": "True", "name": "t", "parameter": "helios1_b_rtn", "start_date": "1974-12-12T01:38:10Z", "stop_date": "1984-08-15T23:33:14Z", "xmlid": "helios1_b_rtn(1)"}, "helios1_b_rtn2": {"__spz_name__": "n", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "helios1_b_rtn(2)", "dataset": "helios1-mag-corefit", "index1": "2", "is_public": "True", "name": "n", "parameter": "helios1_b_rtn", "start_date": "1974-12-12T01:38:10Z", "stop_date": "1984-08-15T23:33:14Z", "xmlid": "helios1_b_rtn(2)"}, "is_public": "True", "name": "b_se", "size": "3", "start_date": "1974-12-12T01:38:10Z", "stop_date": "1984-08-15T23:33:14Z", "units": "nT", "xmlid": "helios1_b_rtn"}, "helios1_b_std": {"__spz_name__": "sigma b", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "helios1_b_std", "dataset": "helios1-mag-corefit", "is_public": "True", "name": "sigma b", "start_date": "1974-12-12T01:38:10Z", "stop_date": "1984-08-15T23:33:14Z", "units": "nT", "xmlid": "helios1_b_std"}, "helios1_mag_instr": {"__spz_name__": "mag_instr", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "helios1_mag_instr", "dataset": "helios1-mag-corefit", "description": "Magnetometer being used for data. 1=E3, 2=E2", "is_public": "True", "name": "mag_instr", "start_date": "1974-12-12T01:38:10Z", "stop_date": "1984-08-15T23:33:14Z", "xmlid": "helios1_mag_instr"}, "is_public": "True", "lastModificationDate": "2018-11-12T12:15:41Z", "lastUpdate": "2018-11-08T11:12:03Z", "maxSampling": "300S", "measurement_type": "MagneticField", "name": "corefit : 40s", "processing_level": "Calibrated", "sampling": "40S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Helios1/MAG/helios1-mag-corefit", "start_date": "1974-12-12T01:38:10Z", "stop_date": "1984-08-15T23:33:14Z", "target": "Heliosphere", "xmlid": "helios1-mag-corefit"}, "is_public": "True", "name": "MAG", "xmlid": "Helios1_mag"}, "__spz_name__": "Helios1", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Helios1", "att": "auto/Helios1", "desc": "Helios-A
1974-12-10T07:11:01 - 1985-02-18T00:00:00", "is_public": "True", "name": "Helios1", "target": "Heliosphere", "xmlid": "Helios1"}, "Helios2": {"AUX": {"__spz_name__": "AUX", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Helios2_auxilliary", "att": "auto/Helios2_auxilliary", "desc": "", "helios2_aux_corefit": {"__spz_name__": "corefit : 40s", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "helios2-aux-corefit", "att": "auto/helios2-aux-corefit", "dataSource": "Helios Data Archive", "desc": "Helios corefit data product : auxilliary
MinSampling: 40S; MaxSampling: 300S
Provider: Helios Data Archive", "helios2_car_rot": {"__spz_name__": "carr rotation", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "helios2_car_rot", "dataset": "helios2-aux-corefit", "description": "Carrington rotation number", "is_public": "True", "name": "carr rotation", "start_date": "1976-01-17T01:42:11Z", "stop_date": "1980-03-08T17:46:32Z", "xmlid": "helios2_car_rot"}, "helios2_carr_lat": {"__spz_name__": "carr lat", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "helios2_carr_lat", "dataset": "helios2-aux-corefit", "is_public": "True", "name": "carr lat", "start_date": "1976-01-17T01:42:11Z", "stop_date": "1980-03-08T17:46:32Z", "units": "deg", "xmlid": "helios2_carr_lat"}, "helios2_carr_lon": {"__spz_name__": "carr lon", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "helios2_carr_lon", "dataset": "helios2-aux-corefit", "is_public": "True", "name": "carr lon", "start_date": "1976-01-17T01:42:11Z", "stop_date": "1980-03-08T17:46:32Z", "units": "deg", "xmlid": "helios2_carr_lon"}, "helios2_carr_r": {"__spz_name__": "carr r", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "helios2_carr_r", "dataset": "helios2-aux-corefit", "is_public": "True", "name": "carr r", "start_date": "1976-01-17T01:42:11Z", "stop_date": "1980-03-08T17:46:32Z", "units": "AU", "xmlid": "helios2_carr_r"}, "helios2_earth_ang": {"__spz_name__": "angle helios2-earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "helios2_earth_ang", "dataset": "helios2-aux-corefit", "is_public": "True", "name": "angle helios2-earth", "start_date": "1976-01-17T01:42:11Z", "stop_date": "1980-03-08T17:46:32Z", "units": "deg", "xmlid": "helios2_earth_ang"}, "is_public": "True", "lastModificationDate": "2018-11-12T12:15:50Z", "lastUpdate": "2018-11-12T15:02:34Z", "maxSampling": "300S", "measurement_type": "Ephemeris", "name": "corefit : 40s", "processing_level": "Calibrated", "sampling": "40S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Helios2/AUXILLIARY/helios2-aux-corefit", "start_date": "1976-01-17T01:42:11Z", "stop_date": "1980-03-08T17:46:32Z", "target": "Heliosphere", "xmlid": "helios2-aux-corefit"}, "is_public": "True", "name": "AUX", "xmlid": "Helios2_auxilliary"}, "E1": {"__spz_name__": "E1", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Helios2_e1", "att": "auto/Helios2_e1", "desc": "The plasma experiment on Helios : E1
ElectrostaticAnalyser", "helios2_e1_all": {"__spz_name__": "corefit : protons", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "helios2-e1-all", "att": "auto/helios2-e1-all", "dataSource": "Helios Data Archive", "desc": "Helios corefit data product
MinSampling: 40S; MaxSampling: 300S
Provider: Helios Data Archive", "helios2_e1_flag": {"__spz_name__": "status", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "helios2_e1_flag", "dataset": "helios2-e1-all", "is_public": "True", "name": "status", "start_date": "1976-01-17T01:42:11Z", "stop_date": "1980-03-08T17:46:32Z", "xmlid": "helios2_e1_flag"}, "helios2_e1_instr": {"__spz_name__": "ion_instr", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "helios2_e1_instr", "dataset": "helios2-e1-all", "is_public": "True", "name": "ion_instr", "start_date": "1976-01-17T01:42:11Z", "stop_date": "1980-03-08T17:46:32Z", "xmlid": "helios2_e1_instr"}, "helios2_e1_np": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "helios2_e1_np", "dataset": "helios2-e1-all", "is_public": "True", "name": "density", "start_date": "1976-01-17T01:42:11Z", "stop_date": "1980-03-08T17:46:32Z", "units": "cm\u207b\u00b3", "xmlid": "helios2_e1_np"}, "helios2_e1_t_para": {"__spz_name__": "t_para", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "helios2_e1_t_para", "dataset": "helios2-e1-all", "is_public": "True", "name": "t_para", "start_date": "1976-01-17T01:42:11Z", "stop_date": "1980-03-08T17:46:32Z", "units": "eV", "xmlid": "helios2_e1_t_para"}, "helios2_e1_t_perp": {"__spz_name__": "t_perp", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "helios2_e1_t_perp", "dataset": "helios2-e1-all", "is_public": "True", "name": "t_perp", "start_date": "1976-01-17T01:42:11Z", "stop_date": "1980-03-08T17:46:32Z", "units": "eV", "xmlid": "helios2_e1_t_perp"}, "helios2_e1_vp": {"__spz_name__": "v_rtn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "helios2_e1_vp", "dataset": "helios2-e1-all", "helios2_e1_vp0": {"__spz_name__": "vr", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "helios2_e1_vp(0)", "dataset": "helios2-e1-all", "index1": "0", "is_public": "True", "name": "vr", "parameter": "helios2_e1_vp", "start_date": "1976-01-17T01:42:11Z", "stop_date": "1980-03-08T17:46:32Z", "xmlid": "helios2_e1_vp(0)"}, "helios2_e1_vp1": {"__spz_name__": "vt", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "helios2_e1_vp(1)", "dataset": "helios2-e1-all", "index1": "1", "is_public": "True", "name": "vt", "parameter": "helios2_e1_vp", "start_date": "1976-01-17T01:42:11Z", "stop_date": "1980-03-08T17:46:32Z", "xmlid": "helios2_e1_vp(1)"}, "helios2_e1_vp2": {"__spz_name__": "vn", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "helios2_e1_vp(2)", "dataset": "helios2-e1-all", "index1": "2", "is_public": "True", "name": "vn", "parameter": "helios2_e1_vp", "start_date": "1976-01-17T01:42:11Z", "stop_date": "1980-03-08T17:46:32Z", "xmlid": "helios2_e1_vp(2)"}, "is_public": "True", "name": "v_rtn", "size": "3", "start_date": "1976-01-17T01:42:11Z", "stop_date": "1980-03-08T17:46:32Z", "units": "km/s", "xmlid": "helios2_e1_vp"}, "helios2_e1_vth_para": {"__spz_name__": "v_thermal_para", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "helios2_e1_vth_para", "dataset": "helios2-e1-all", "is_public": "True", "name": "v_thermal_para", "start_date": "1976-01-17T01:42:11Z", "stop_date": "1980-03-08T17:46:32Z", "units": "km/s", "xmlid": "helios2_e1_vth_para"}, "helios2_e1_vth_perp": {"__spz_name__": "v_thermal_perp", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "helios2_e1_vth_perp", "dataset": "helios2-e1-all", "is_public": "True", "name": "v_thermal_perp", "start_date": "1976-01-17T01:42:11Z", "stop_date": "1980-03-08T17:46:32Z", "units": "km/s", "xmlid": "helios2_e1_vth_perp"}, "is_public": "True", "lastModificationDate": "2018-11-07T16:43:21Z", "lastUpdate": "2018-11-06T19:14:12Z", "maxSampling": "300S", "measurement_type": "ThermalPlasma", "name": "corefit : protons", "processing_level": "Calibrated", "sampling": "40S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Helios2/E1/helios2-e1-all", "start_date": "1976-01-17T01:42:11Z", "stop_date": "1980-03-08T17:46:32Z", "target": "Heliosphere", "xmlid": "helios2-e1-all"}, "is_public": "True", "name": "E1", "xmlid": "Helios2_e1"}, "E3": {"__spz_name__": "E3", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Helios2_e3", "att": "auto/Helios2_e3", "desc": "Fluxgare Magnetometer for Average Fields
Magnetometer", "helios2_e3_all": {"__spz_name__": "magnetic field 6-sec average", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "helios2-e3-all", "att": "auto/helios2-e3-all", "dataSource": "Helios Data Archive", "desc": "
Sampling: 6S
Provider: Helios Data Archive", "helios2_e3_bmag": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "helios2_e3_bmag", "dataset": "helios2-e3-all", "description": "Magnetic field magnitude", "is_public": "True", "name": "|b|", "start_date": "1976-01-17T07:34:06Z", "stop_date": "1980-03-08T17:50:00Z", "units": "nT", "xmlid": "helios2_e3_bmag"}, "helios2_e3_brtn": {"__spz_name__": "b_rtn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "helios2_e3_brtn", "dataset": "helios2-e3-all", "description": "Magnetic field in RTN coordinates", "helios2_e3_brtn0": {"__spz_name__": "br", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "helios2_e3_brtn(0)", "dataset": "helios2-e3-all", "index1": "0", "is_public": "True", "name": "br", "parameter": "helios2_e3_brtn", "start_date": "1976-01-17T07:34:06Z", "stop_date": "1980-03-08T17:50:00Z", "xmlid": "helios2_e3_brtn(0)"}, "helios2_e3_brtn1": {"__spz_name__": "bt", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "helios2_e3_brtn(1)", "dataset": "helios2-e3-all", "index1": "1", "is_public": "True", "name": "bt", "parameter": "helios2_e3_brtn", "start_date": "1976-01-17T07:34:06Z", "stop_date": "1980-03-08T17:50:00Z", "xmlid": "helios2_e3_brtn(1)"}, "helios2_e3_brtn2": {"__spz_name__": "bn", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "helios2_e3_brtn(2)", "dataset": "helios2-e3-all", "index1": "2", "is_public": "True", "name": "bn", "parameter": "helios2_e3_brtn", "start_date": "1976-01-17T07:34:06Z", "stop_date": "1980-03-08T17:50:00Z", "xmlid": "helios2_e3_brtn(2)"}, "is_public": "True", "name": "b_rtn", "size": "3", "start_date": "1976-01-17T07:34:06Z", "stop_date": "1980-03-08T17:50:00Z", "units": "nT", "xmlid": "helios2_e3_brtn"}, "helios2_e3_brtn_phi": {"__spz_name__": "phi", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "helios2_e3_brtn_phi", "dataset": "helios2-e3-all", "description": "Magnetic field phi angle", "display_type": "timeseries", "is_public": "True", "name": "phi", "start_date": "1976-01-17T07:34:06Z", "stop_date": "1980-03-08T17:50:00Z", "ucd": "phys.magField", "units": "degrees", "xmlid": "helios2_e3_brtn_phi"}, "helios2_e3_brtn_theta": {"__spz_name__": "theta", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "helios2_e3_brtn_theta", "dataset": "helios2-e3-all", "description": "Magnetic field theta angle", "display_type": "timeseries", "is_public": "True", "name": "theta", "start_date": "1976-01-17T07:34:06Z", "stop_date": "1980-03-08T17:50:00Z", "ucd": "phys.magField", "units": "degrees", "xmlid": "helios2_e3_brtn_theta"}, "helios2_e3_bse": {"__spz_name__": "b_se", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "helios2_e3_bse", "dataset": "helios2-e3-all", "description": "Magnetic field in solar ecliptic spacecraft centered coordinates", "helios2_e3_bse0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "helios2_e3_bse(0)", "dataset": "helios2-e3-all", "index1": "0", "is_public": "True", "name": "bx", "parameter": "helios2_e3_bse", "start_date": "1976-01-17T07:34:06Z", "stop_date": "1980-03-08T17:50:00Z", "xmlid": "helios2_e3_bse(0)"}, "helios2_e3_bse1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "helios2_e3_bse(1)", "dataset": "helios2-e3-all", "index1": "1", "is_public": "True", "name": "by", "parameter": "helios2_e3_bse", "start_date": "1976-01-17T07:34:06Z", "stop_date": "1980-03-08T17:50:00Z", "xmlid": "helios2_e3_bse(1)"}, "helios2_e3_bse2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "helios2_e3_bse(2)", "dataset": "helios2-e3-all", "index1": "2", "is_public": "True", "name": "bz", "parameter": "helios2_e3_bse", "start_date": "1976-01-17T07:34:06Z", "stop_date": "1980-03-08T17:50:00Z", "xmlid": "helios2_e3_bse(2)"}, "is_public": "True", "name": "b_se", "size": "3", "start_date": "1976-01-17T07:34:06Z", "stop_date": "1980-03-08T17:50:00Z", "units": "nT", "xmlid": "helios2_e3_bse"}, "helios2_e3_std": {"__spz_name__": "std_b", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "helios2_e3_std", "dataset": "helios2-e3-all", "description": "Magnetic field standard deviation", "helios2_e3_std0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "helios2_e3_std(0)", "dataset": "helios2-e3-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "helios2_e3_std", "start_date": "1976-01-17T07:34:06Z", "stop_date": "1980-03-08T17:50:00Z", "xmlid": "helios2_e3_std(0)"}, "helios2_e3_std1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "helios2_e3_std(1)", "dataset": "helios2-e3-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "helios2_e3_std", "start_date": "1976-01-17T07:34:06Z", "stop_date": "1980-03-08T17:50:00Z", "xmlid": "helios2_e3_std(1)"}, "helios2_e3_std2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "helios2_e3_std(2)", "dataset": "helios2-e3-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "helios2_e3_std", "start_date": "1976-01-17T07:34:06Z", "stop_date": "1980-03-08T17:50:00Z", "xmlid": "helios2_e3_std(2)"}, "is_public": "True", "name": "std_b", "size": "3", "start_date": "1976-01-17T07:34:06Z", "stop_date": "1980-03-08T17:50:00Z", "units": "nT", "xmlid": "helios2_e3_std"}, "is_public": "True", "lastModificationDate": "2020-09-01T14:15:23Z", "lastUpdate": "2020-08-18T18:18:19Z", "measurement_type": "MagneticField", "name": "magnetic field 6-sec average", "processing_level": "Calibrated", "sampling": "6S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Helios2/E3/helios2-e3-all", "start_date": "1976-01-17T07:34:06Z", "stop_date": "1980-03-08T17:50:00Z", "target": "Heliosphere", "xmlid": "helios2-e3-all"}, "is_public": "True", "name": "E3", "xmlid": "Helios2_e3"}, "Ephemeris": {"__spz_name__": "Ephemeris", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Helios2_ephemeris", "att": "auto/Helios2_ephemeris", "desc": "", "helios2_orb_all": {"__spz_name__": "orbit", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "helios2-orb-all", "att": "auto/helios2-orb-all", "dataSource": "SPICE/NAIF", "desc": "Helios2 orbit
Sampling: 1H
Provider: SPICE/NAIF", "helios2_lat_hee": {"__spz_name__": "lat hee", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "helios2_lat_hee", "dataset": "helios2-orb-all", "is_public": "True", "name": "lat hee", "start_date": "1976-01-16T00:00:00Z", "stop_date": "1980-03-08T22:59:58Z", "units": "deg", "xmlid": "helios2_lat_hee"}, "helios2_lat_iausun": {"__spz_name__": "lat iau_sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "helios2_lat_iausun", "dataset": "helios2-orb-all", "is_public": "True", "name": "lat iau_sun", "start_date": "1976-01-16T00:00:00Z", "stop_date": "1980-03-08T22:59:58Z", "units": "deg", "xmlid": "helios2_lat_iausun"}, "helios2_lon_hee": {"__spz_name__": "lon hee", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "helios2_lon_hee", "dataset": "helios2-orb-all", "is_public": "True", "name": "lon hee", "start_date": "1976-01-16T00:00:00Z", "stop_date": "1980-03-08T22:59:58Z", "units": "deg", "xmlid": "helios2_lon_hee"}, "helios2_lon_iausun": {"__spz_name__": "lon iau_sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "helios2_lon_iausun", "dataset": "helios2-orb-all", "is_public": "True", "name": "lon iau_sun", "start_date": "1976-01-16T00:00:00Z", "stop_date": "1980-03-08T22:59:58Z", "units": "deg", "xmlid": "helios2_lon_iausun"}, "helios2_sun_r": {"__spz_name__": "distance helios2-sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "helios2_sun_r", "dataset": "helios2-orb-all", "is_public": "True", "name": "distance helios2-sun", "start_date": "1976-01-16T00:00:00Z", "stop_date": "1980-03-08T22:59:58Z", "units": "AU", "xmlid": "helios2_sun_r"}, "helios2_xyz_hee": {"__spz_name__": "xyz_hee", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "helios2_xyz_hee", "dataset": "helios2-orb-all", "helios2_xyz_hee0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "helios2_xyz_hee(0)", "dataset": "helios2-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "helios2_xyz_hee", "start_date": "1976-01-16T00:00:00Z", "stop_date": "1980-03-08T22:59:58Z", "xmlid": "helios2_xyz_hee(0)"}, "helios2_xyz_hee1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "helios2_xyz_hee(1)", "dataset": "helios2-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "helios2_xyz_hee", "start_date": "1976-01-16T00:00:00Z", "stop_date": "1980-03-08T22:59:58Z", "xmlid": "helios2_xyz_hee(1)"}, "helios2_xyz_hee2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "helios2_xyz_hee(2)", "dataset": "helios2-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "helios2_xyz_hee", "start_date": "1976-01-16T00:00:00Z", "stop_date": "1980-03-08T22:59:58Z", "xmlid": "helios2_xyz_hee(2)"}, "is_public": "True", "name": "xyz_hee", "size": "3", "start_date": "1976-01-16T00:00:00Z", "stop_date": "1980-03-08T22:59:58Z", "units": "AU", "xmlid": "helios2_xyz_hee"}, "helios2_xyz_heeq": {"__spz_name__": "xyz_heeq", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "helios2_xyz_heeq", "dataset": "helios2-orb-all", "helios2_xyz_heeq0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "helios2_xyz_heeq(0)", "dataset": "helios2-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "helios2_xyz_heeq", "start_date": "1976-01-16T00:00:00Z", "stop_date": "1980-03-08T22:59:58Z", "xmlid": "helios2_xyz_heeq(0)"}, "helios2_xyz_heeq1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "helios2_xyz_heeq(1)", "dataset": "helios2-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "helios2_xyz_heeq", "start_date": "1976-01-16T00:00:00Z", "stop_date": "1980-03-08T22:59:58Z", "xmlid": "helios2_xyz_heeq(1)"}, "helios2_xyz_heeq2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "helios2_xyz_heeq(2)", "dataset": "helios2-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "helios2_xyz_heeq", "start_date": "1976-01-16T00:00:00Z", "stop_date": "1980-03-08T22:59:58Z", "xmlid": "helios2_xyz_heeq(2)"}, "is_public": "True", "name": "xyz_heeq", "size": "3", "start_date": "1976-01-16T00:00:00Z", "stop_date": "1980-03-08T22:59:58Z", "units": "AU", "xmlid": "helios2_xyz_heeq"}, "helios2_xyz_iausun": {"__spz_name__": "xyz_iau_sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "helios2_xyz_iausun", "dataset": "helios2-orb-all", "helios2_xyz_iausun0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "helios2_xyz_iausun(0)", "dataset": "helios2-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "helios2_xyz_iausun", "start_date": "1976-01-16T00:00:00Z", "stop_date": "1980-03-08T22:59:58Z", "xmlid": "helios2_xyz_iausun(0)"}, "helios2_xyz_iausun1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "helios2_xyz_iausun(1)", "dataset": "helios2-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "helios2_xyz_iausun", "start_date": "1976-01-16T00:00:00Z", "stop_date": "1980-03-08T22:59:58Z", "xmlid": "helios2_xyz_iausun(1)"}, "helios2_xyz_iausun2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "helios2_xyz_iausun(2)", "dataset": "helios2-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "helios2_xyz_iausun", "start_date": "1976-01-16T00:00:00Z", "stop_date": "1980-03-08T22:59:58Z", "xmlid": "helios2_xyz_iausun(2)"}, "is_public": "True", "name": "xyz_iau_sun", "size": "3", "start_date": "1976-01-16T00:00:00Z", "stop_date": "1980-03-08T22:59:58Z", "units": "AU", "xmlid": "helios2_xyz_iausun"}, "is_public": "True", "lastModificationDate": "2018-11-06T18:50:37Z", "lastUpdate": "2018-11-06T13:06:06Z", "measurement_type": "Ephemeris", "name": "orbit", "processing_level": "Calibrated", "sampling": "1H", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Helios2/ephemeris/helios2-orb-all", "start_date": "1976-01-16T00:00:00Z", "stop_date": "1980-03-08T22:59:58Z", "target": "Heliosphere", "xmlid": "helios2-orb-all"}, "is_public": "True", "name": "Ephemeris", "xmlid": "Helios2_ephemeris"}, "MAG": {"__spz_name__": "MAG", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Helios2_mag", "att": "auto/Helios2_mag", "desc": "Helios Magnetometers : E2, E3
Magnetometer", "helios2_mag_corefit": {"__spz_name__": "corefit : 40s", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "helios2-mag-corefit", "att": "auto/helios2-mag-corefit", "dataSource": "Helios Data Archive", "desc": "Helios corefit data product
MinSampling: 40S; MaxSampling: 300S
Provider: Helios Data Archive", "helios2_b_mag": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "helios2_b_mag", "dataset": "helios2-mag-corefit", "is_public": "True", "name": "|b|", "start_date": "1976-01-17T01:42:11Z", "stop_date": "1980-03-08T17:46:32Z", "units": "nT", "xmlid": "helios2_b_mag"}, "helios2_b_rtn": {"__spz_name__": "b_se", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "helios2_b_rtn", "dataset": "helios2-mag-corefit", "description": "magnetic field in solar ecliptic spacecraft centered coordinates (SE)", "helios2_b_rtn0": {"__spz_name__": "r", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "helios2_b_rtn(0)", "dataset": "helios2-mag-corefit", "index1": "0", "is_public": "True", "name": "r", "parameter": "helios2_b_rtn", "start_date": "1976-01-17T01:42:11Z", "stop_date": "1980-03-08T17:46:32Z", "xmlid": "helios2_b_rtn(0)"}, "helios2_b_rtn1": {"__spz_name__": "t", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "helios2_b_rtn(1)", "dataset": "helios2-mag-corefit", "index1": "1", "is_public": "True", "name": "t", "parameter": "helios2_b_rtn", "start_date": "1976-01-17T01:42:11Z", "stop_date": "1980-03-08T17:46:32Z", "xmlid": "helios2_b_rtn(1)"}, "helios2_b_rtn2": {"__spz_name__": "n", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "helios2_b_rtn(2)", "dataset": "helios2-mag-corefit", "index1": "2", "is_public": "True", "name": "n", "parameter": "helios2_b_rtn", "start_date": "1976-01-17T01:42:11Z", "stop_date": "1980-03-08T17:46:32Z", "xmlid": "helios2_b_rtn(2)"}, "is_public": "True", "name": "b_se", "size": "3", "start_date": "1976-01-17T01:42:11Z", "stop_date": "1980-03-08T17:46:32Z", "units": "nT", "xmlid": "helios2_b_rtn"}, "helios2_b_std": {"__spz_name__": "sigma b", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "helios2_b_std", "dataset": "helios2-mag-corefit", "is_public": "True", "name": "sigma b", "start_date": "1976-01-17T01:42:11Z", "stop_date": "1980-03-08T17:46:32Z", "units": "nT", "xmlid": "helios2_b_std"}, "helios2_mag_instr": {"__spz_name__": "mag_instr", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "helios2_mag_instr", "dataset": "helios2-mag-corefit", "description": "Instrument flag", "is_public": "True", "name": "mag_instr", "start_date": "1976-01-17T01:42:11Z", "stop_date": "1980-03-08T17:46:32Z", "xmlid": "helios2_mag_instr"}, "is_public": "True", "lastModificationDate": "2018-11-12T12:15:44Z", "lastUpdate": "2018-11-08T11:14:42Z", "maxSampling": "300S", "measurement_type": "MagneticField", "name": "corefit : 40s", "processing_level": "Calibrated", "sampling": "40S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Helios2/MAG/helios2-mag-corefit", "start_date": "1976-01-17T01:42:11Z", "stop_date": "1980-03-08T17:46:32Z", "target": "Heliosphere", "xmlid": "helios2-mag-corefit"}, "is_public": "True", "name": "MAG", "xmlid": "Helios2_mag"}, "__spz_name__": "Helios2", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Helios2", "att": "auto/Helios2", "desc": "Helios-B
1976-01-15T05:34:00 - 1979-12-23T00:00:00", "is_public": "True", "name": "Helios2", "target": "Heliosphere", "xmlid": "Helios2"}, "__spz_name__": "Helios", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Helios", "att": "auto/Helios", "desc": "
1974-12-10T07:11:01 - 1979-12-23T00:00:00", "is_public": "True", "name": "Helios", "rank": "99", "target": "Heliosphere", "xmlid": "Helios"}, "ICE": {"MAG": {"__spz_name__": "MAG", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "ICE_mag", "att": "auto/ICE_mag", "desc": "Vector Helium Magnetometer
Magnetometer", "ice_mag_p21": {"__spz_name__": "flyby Giacobini-Zinner", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ice-mag-p21", "att": "auto/ice-mag-p21", "dataSource": "PDS", "desc": "
Sampling: 0.16S
Provider: PDS", "ice_b_cse": {"__spz_name__": "b_cse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ice_b_cse", "dataset": "ice-mag-p21", "display_type": "timeseries", "ice_b_cse0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ice_b_cse(0)", "dataset": "ice-mag-p21", "index1": "0", "is_public": "True", "name": "bx", "parameter": "ice_b_cse", "start_date": "1985-09-10T00:00:00Z", "stop_date": "1985-09-14T20:51:15Z", "xmlid": "ice_b_cse(0)"}, "ice_b_cse1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ice_b_cse(1)", "dataset": "ice-mag-p21", "index1": "0", "is_public": "True", "name": "by", "parameter": "ice_b_cse", "start_date": "1985-09-10T00:00:00Z", "stop_date": "1985-09-14T20:51:15Z", "xmlid": "ice_b_cse(1)"}, "ice_b_cse2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ice_b_cse(2)", "dataset": "ice-mag-p21", "index1": "0", "is_public": "True", "name": "bz", "parameter": "ice_b_cse", "start_date": "1985-09-10T00:00:00Z", "stop_date": "1985-09-14T20:51:15Z", "xmlid": "ice_b_cse(2)"}, "is_public": "True", "name": "b_cse", "size": "3", "start_date": "1985-09-10T00:00:00Z", "stop_date": "1985-09-14T20:51:15Z", "ucd": "phys.magField", "units": "nT", "xmlid": "ice_b_cse"}, "ice_b_tot": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ice_b_tot", "dataset": "ice-mag-p21", "description": "Magnetic Field Magnitude", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "1985-09-10T00:00:00Z", "stop_date": "1985-09-14T20:51:15Z", "ucd": "phys.magField", "units": "nT", "xmlid": "ice_b_tot"}, "is_public": "True", "lastModificationDate": "2014-07-20T13:40:52Z", "lastUpdate": "2014-07-20T13:40:50Z", "measurement_type": "MagneticField", "name": "flyby Giacobini-Zinner", "processing_level": "Calibrated", "sampling": "0.16S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/ICE/ice-mag-p21", "start_date": "1985-09-10T00:00:00Z", "stop_date": "1985-09-14T20:51:15Z", "target": "Comet", "xmlid": "ice-mag-p21"}, "is_public": "True", "name": "MAG", "xmlid": "ICE_mag"}, "__spz_name__": "ICE", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "ICE", "att": "auto/ICE", "desc": "International Cometary Explorer : Giacobini-Zinner Flyby
1978-08-12T00:00:00
Depart from Earth: 1983-12-22T00:00:00
Encounter with Giacobini-Zinner : 1985-09-11T00:00:00", "is_public": "True", "name": "ICE", "rank": "94", "target": "Comet", "xmlid": "ICE"}, "IMP": {"IMP_8": {"Ephemeris": {"__spz_name__": "Ephemeris", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "IMP8_ephemeris", "att": "auto/IMP8_ephemeris", "desc": "", "imp_orb_all": {"__spz_name__": "orbit", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "imp-orb-all", "att": "auto/imp-orb-all", "dataSource": "NSSDC", "desc": "
Sampling: 12M
Provider: NSSDC", "imp8_r": {"__spz_name__": "distance imp-earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "imp8_r", "dataset": "imp-orb-all", "description": "Radial distance from the center of Earth", "is_public": "True", "name": "distance imp-earth", "start_date": "1973-10-30T00:00:00Z", "stop_date": "2004-06-30T23:48:00Z", "ucd": "pos.distance;instr.obsty", "units": "Re", "xmlid": "imp8_r"}, "imp8_xyz": {"__spz_name__": "xyz_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "imp8_xyz", "dataset": "imp-orb-all", "description": "Position in cartesian GSE coordinates", "display_type": "timeseries", "imp8_xyz0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "imp8_xyz(0)", "dataset": "imp-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "imp8_xyz", "start_date": "1973-10-30T00:00:00Z", "stop_date": "2004-06-30T23:48:00Z", "xmlid": "imp8_xyz(0)"}, "imp8_xyz1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "imp8_xyz(1)", "dataset": "imp-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "imp8_xyz", "start_date": "1973-10-30T00:00:00Z", "stop_date": "2004-06-30T23:48:00Z", "xmlid": "imp8_xyz(1)"}, "imp8_xyz2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "imp8_xyz(2)", "dataset": "imp-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "imp8_xyz", "start_date": "1973-10-30T00:00:00Z", "stop_date": "2004-06-30T23:48:00Z", "xmlid": "imp8_xyz(2)"}, "is_public": "True", "name": "xyz_gse", "size": "3", "start_date": "1973-10-30T00:00:00Z", "stop_date": "2004-06-30T23:48:00Z", "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "Re", "xmlid": "imp8_xyz"}, "imp8_xyz_gsm": {"__spz_name__": "xyz_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "imp8_xyz_gsm", "dataset": "imp-orb-all", "description": "Position in cartesian GSM coordinates", "display_type": "timeseries", "imp8_xyz_gsm0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "imp8_xyz_gsm(0)", "dataset": "imp-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "imp8_xyz_gsm", "start_date": "1973-10-30T00:00:00Z", "stop_date": "2004-06-30T23:48:00Z", "xmlid": "imp8_xyz_gsm(0)"}, "imp8_xyz_gsm1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "imp8_xyz_gsm(1)", "dataset": "imp-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "imp8_xyz_gsm", "start_date": "1973-10-30T00:00:00Z", "stop_date": "2004-06-30T23:48:00Z", "xmlid": "imp8_xyz_gsm(1)"}, "imp8_xyz_gsm2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "imp8_xyz_gsm(2)", "dataset": "imp-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "imp8_xyz_gsm", "start_date": "1973-10-30T00:00:00Z", "stop_date": "2004-06-30T23:48:00Z", "xmlid": "imp8_xyz_gsm(2)"}, "is_public": "True", "name": "xyz_gsm", "size": "3", "start_date": "1973-10-30T00:00:00Z", "stop_date": "2004-06-30T23:48:00Z", "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "Re", "xmlid": "imp8_xyz_gsm"}, "is_public": "True", "lastModificationDate": "2013-05-13T14:22:56Z", "lastUpdate": "2013-05-13T11:30:55Z", "measurement_type": "Ephemeris", "name": "orbit", "processing_level": "Calibrated", "sampling": "12M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/IMP-8/Ephemeris/imp-orb-all", "start_date": "1973-10-30T00:00:00Z", "stop_date": "2004-06-30T23:48:00Z", "xmlid": "imp-orb-all"}, "is_public": "True", "name": "Ephemeris", "xmlid": "IMP8_ephemeris"}, "MAG": {"__spz_name__": "MAG", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "IMP8_mag", "att": "auto/IMP8_mag", "desc": "IMP8 MAG
Magnetometer", "imp_mag_k0": {"__spz_name__": "15 sec (i8_15sec_mag)", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "imp-mag-k0", "att": "auto/imp-mag-k0", "dataSource": "NSSDC", "desc": "
Sampling: 15.36S
Provider: NSSDC", "imp8_b": {"__spz_name__": "b_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "imp8_b", "dataset": "imp-mag-k0", "description": "Magnetic field vector in GSE coordinates", "display_type": "timeseries", "imp8_b0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "imp8_b(0)", "dataset": "imp-mag-k0", "index1": "0", "is_public": "True", "name": "bx", "parameter": "imp8_b", "start_date": "1973-10-29T23:59:53Z", "stop_date": "2000-06-10T23:59:38Z", "xmlid": "imp8_b(0)"}, "imp8_b1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "imp8_b(1)", "dataset": "imp-mag-k0", "index1": "1", "is_public": "True", "name": "by", "parameter": "imp8_b", "start_date": "1973-10-29T23:59:53Z", "stop_date": "2000-06-10T23:59:38Z", "xmlid": "imp8_b(1)"}, "imp8_b2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "imp8_b(2)", "dataset": "imp-mag-k0", "index1": "2", "is_public": "True", "name": "bz", "parameter": "imp8_b", "start_date": "1973-10-29T23:59:53Z", "stop_date": "2000-06-10T23:59:38Z", "xmlid": "imp8_b(2)"}, "is_public": "True", "name": "b_gse", "size": "3", "start_date": "1973-10-29T23:59:53Z", "stop_date": "2000-06-10T23:59:38Z", "ucd": "phys.magField", "units": "nT", "xmlid": "imp8_b"}, "imp8_b_gsm": {"__spz_name__": "b_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "imp8_b_gsm", "dataset": "imp-mag-k0", "description": "Magnetic field vector in GSM coordinates", "display_type": "timeseries", "imp8_b_gsm0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "imp8_b_gsm(0)", "dataset": "imp-mag-k0", "index1": "0", "is_public": "True", "name": "bx", "parameter": "imp8_b_gsm", "start_date": "1973-10-29T23:59:53Z", "stop_date": "2000-06-10T23:59:38Z", "xmlid": "imp8_b_gsm(0)"}, "imp8_b_gsm1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "imp8_b_gsm(1)", "dataset": "imp-mag-k0", "index1": "1", "is_public": "True", "name": "by", "parameter": "imp8_b_gsm", "start_date": "1973-10-29T23:59:53Z", "stop_date": "2000-06-10T23:59:38Z", "xmlid": "imp8_b_gsm(1)"}, "imp8_b_gsm2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "imp8_b_gsm(2)", "dataset": "imp-mag-k0", "index1": "2", "is_public": "True", "name": "bz", "parameter": "imp8_b_gsm", "start_date": "1973-10-29T23:59:53Z", "stop_date": "2000-06-10T23:59:38Z", "xmlid": "imp8_b_gsm(2)"}, "is_public": "True", "name": "b_gsm", "size": "3", "start_date": "1973-10-29T23:59:53Z", "stop_date": "2000-06-10T23:59:38Z", "ucd": "phys.magField", "units": "nT", "xmlid": "imp8_b_gsm"}, "imp8_btot": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "imp8_btot", "dataset": "imp-mag-k0", "description": "Magnitude of the magnetic field", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "1973-10-29T23:59:53Z", "stop_date": "2000-06-10T23:59:38Z", "ucd": "phys.magField", "units": "nT", "xmlid": "imp8_btot"}, "is_public": "True", "lastModificationDate": "2013-05-15T10:36:03Z", "lastUpdate": "2013-05-14T14:22:40Z", "measurement_type": "MagneticField", "name": "15 sec (i8_15sec_mag)", "processing_level": "Calibrated", "sampling": "15.36S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/IMP-8/MAG/imp-mag-k0", "start_date": "1973-10-29T23:59:53Z", "stop_date": "2000-06-10T23:59:38Z", "target": "Heliosphere.NearEarth", "xmlid": "imp-mag-k0"}, "is_public": "True", "name": "MAG", "xmlid": "IMP8_mag"}, "MIT": {"__spz_name__": "MIT", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "IMP8_pls", "att": "auto/IMP8_pls", "desc": "MIT Faraday cup
FaradayCup", "imp_mit_k0": {"__spz_name__": "best fit", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "imp-mit-k0", "att": "auto/imp-mit-k0", "dataSource": "NSSDC", "desc": "IMP 8 Solar Wind Plasma Faraday Cup Data
Sampling: 58S
Provider: NSSDC", "imp_mit_nfit": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "imp_mit_nfit", "dataset": "imp-mit-k0", "description": "(Better, from fits) Proton number density", "display_type": "timeseries", "is_public": "True", "name": "density", "start_date": "1973-10-31T20:10:27Z", "stop_date": "2006-07-26T17:10:35Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm\u207b\u00b3", "xmlid": "imp_mit_nfit"}, "imp_mit_velewfit": {"__spz_name__": "flow angle e/w", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "imp_mit_velewfit", "dataset": "imp-mit-k0", "description": "(Best, from fits) Proton East/West flow angle \n (aberration corrected). Azimuth is E/W, meaning bulk flow from the East \n or the West side of the Sun respectively. Positive azimuth angle means \n flow from the West.", "display_type": "timeseries", "is_public": "True", "name": "flow angle e/w", "start_date": "1973-10-31T20:10:27Z", "stop_date": "2006-07-26T17:10:35Z", "ucd": "pos.posAng;phys.veloc;phys.atmol.ionStage", "units": "deg", "xmlid": "imp_mit_velewfit"}, "imp_mit_velnsfit": {"__spz_name__": "flow angle n/s", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "imp_mit_velnsfit", "dataset": "imp-mit-k0", "description": "(Best, from fits) Proton North/South flow angle \n (aberration corrected). Azimuth is N/S, meaning bulk flow from the North \n or the South side of the Sun respectively. Positive azimuth angle means \n flow from the North.", "display_type": "timeseries", "is_public": "True", "name": "flow angle n/s", "start_date": "1973-10-31T20:10:27Z", "stop_date": "2006-07-26T17:10:35Z", "ucd": "pos.posAng;phys.veloc;phys.atmol.ionStage", "units": "deg", "xmlid": "imp_mit_velnsfit"}, "imp_mit_vfit": {"__spz_name__": "v_bulk", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "imp_mit_vfit", "dataset": "imp-mit-k0", "description": "(Better, from fits) Ion Flow Velocity (aberration corrected)", "display_type": "timeseries", "is_public": "True", "name": "v_bulk", "start_date": "1973-10-31T20:10:27Z", "stop_date": "2006-07-26T17:10:35Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "imp_mit_vfit"}, "imp_mit_vthfit": {"__spz_name__": "v_thermal", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "imp_mit_vthfit", "dataset": "imp-mit-k0", "description": "(Better, from fits) Proton most-probable thermal \n speed (aberration corrected). Thermal speed is the most probable thermal \n speed (i.e., the square root of [2kT/m(proton)]). To convert thermal speed \n to temperature in eV, multiply 0.0052 by the square of the thermal speed; \n to convert to temperature [K], multiply the square of the thermal speed by \n 60.5.", "display_type": "timeseries", "is_public": "True", "name": "v_thermal", "start_date": "1973-10-31T20:10:27Z", "stop_date": "2006-07-26T17:10:35Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "imp_mit_vthfit"}, "is_public": "True", "lastModificationDate": "2013-09-11T16:09:57Z", "lastUpdate": "2013-09-11T11:48:17Z", "measurement_type": "ThermalPlasma", "name": "best fit", "processing_level": "Calibrated", "sampling": "58S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/IMP-8/MIT/imp-mit-k0", "start_date": "1973-10-31T20:10:27Z", "stop_date": "2006-07-26T17:10:35Z", "target": "Heliosphere.NearEarth", "xmlid": "imp-mit-k0"}, "is_public": "True", "name": "MIT", "xmlid": "IMP8_pls"}, "__spz_name__": "IMP 8", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "IMP8", "att": "auto/IMP8", "desc": "IMP-J
1973-10-26T00:00:00 - 2006-10-30T00:00:00", "is_public": "True", "name": "IMP 8", "target": "Earth.Magnetosphere", "xmlid": "IMP8"}, "__spz_name__": "IMP", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "IMP", "att": "auto/IMP", "desc": "Interplanetary Monitoring Platform (Explorer), NASA
1963-11-27T02:30:00 - 2006-10-30T00:00:00", "is_public": "True", "name": "IMP", "rank": "6", "target": "Earth.Magnetosphere", "xmlid": "IMP"}, "ISEE": {"ISEE_1": {"Ephemeris": {"__spz_name__": "Ephemeris", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "ISEE1_ephemeris", "att": "auto/ISEE1_ephemeris", "desc": "", "is_public": "True", "isee1_orb_all": {"__spz_name__": "orbit", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "isee1-orb-all", "att": "auto/isee1-orb-all", "dataSource": "NSSDC", "desc": "
Sampling: 1M
Provider: NSSDC", "is_public": "True", "isee1_xyz": {"__spz_name__": "xyz_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "isee1_xyz", "dataset": "isee1-orb-all", "description": "Spacecraft position vector, GSE Cartesian components, in Earth radii", "display_type": "timeseries", "is_public": "True", "isee1_xyz0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "isee1_xyz(0)", "dataset": "isee1-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "isee1_xyz", "start_date": "1977-10-22T14:49:00Z", "stop_date": "1987-09-26T05:59:00Z", "xmlid": "isee1_xyz(0)"}, "isee1_xyz1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "isee1_xyz(1)", "dataset": "isee1-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "isee1_xyz", "start_date": "1977-10-22T14:49:00Z", "stop_date": "1987-09-26T05:59:00Z", "xmlid": "isee1_xyz(1)"}, "isee1_xyz2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "isee1_xyz(2)", "dataset": "isee1-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "isee1_xyz", "start_date": "1977-10-22T14:49:00Z", "stop_date": "1987-09-26T05:59:00Z", "xmlid": "isee1_xyz(2)"}, "name": "xyz_gse", "size": "3", "start_date": "1977-10-22T14:49:00Z", "stop_date": "1987-09-26T05:59:00Z", "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "Re", "xmlid": "isee1_xyz"}, "isee1_xyz_gsm": {"__spz_name__": "xyz_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "isee1_xyz_gsm", "dataset": "isee1-orb-all", "description": "Spacecraft position vector, GSM Cartesian components, in Earth radii", "display_type": "timeseries", "is_public": "True", "isee1_xyz_gsm0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "isee1_xyz_gsm(0)", "dataset": "isee1-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "isee1_xyz_gsm", "start_date": "1977-10-22T14:49:00Z", "stop_date": "1987-09-26T05:59:00Z", "xmlid": "isee1_xyz_gsm(0)"}, "isee1_xyz_gsm1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "isee1_xyz_gsm(1)", "dataset": "isee1-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "isee1_xyz_gsm", "start_date": "1977-10-22T14:49:00Z", "stop_date": "1987-09-26T05:59:00Z", "xmlid": "isee1_xyz_gsm(1)"}, "isee1_xyz_gsm2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "isee1_xyz_gsm(2)", "dataset": "isee1-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "isee1_xyz_gsm", "start_date": "1977-10-22T14:49:00Z", "stop_date": "1987-09-26T05:59:00Z", "xmlid": "isee1_xyz_gsm(2)"}, "name": "xyz_gsm", "size": "3", "start_date": "1977-10-22T14:49:00Z", "stop_date": "1987-09-26T05:59:00Z", "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "Re", "xmlid": "isee1_xyz_gsm"}, "lastModificationDate": "2012-03-06T17:40:40Z", "lastUpdate": "2012-03-06T17:40:56Z", "measurement_type": "Ephemeris", "name": "orbit", "processing_level": "Calibrated", "sampling": "1M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/ISEE/ISEE1/Ephemeris/isee1-orb-all", "start_date": "1977-10-22T14:49:00Z", "stop_date": "1987-09-26T05:59:00Z", "target": "Earth.Magnetosphere", "xmlid": "isee1-orb-all"}, "name": "Ephemeris", "xmlid": "ISEE1_ephemeris"}, "FGM": {"__spz_name__": "FGM", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "ISEE1_mag", "att": "auto/ISEE1_mag", "desc": "Fluxgate Magnetometer
Magnetometer", "is_public": "True", "isee1_mag_all": {"__spz_name__": "key parameters", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "isee1-mag-all", "att": "auto/isee1-mag-all", "b_isee1": {"__spz_name__": "b_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_isee1", "b_isee10": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_isee1(0)", "dataset": "isee1-mag-all", "index1": "0", "is_public": "True", "name": "bx", "parameter": "b_isee1", "start_date": "1977-10-22T14:49:00Z", "stop_date": "1987-09-26T05:59:00Z", "xmlid": "b_isee1(0)"}, "b_isee11": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_isee1(1)", "dataset": "isee1-mag-all", "index1": "1", "is_public": "True", "name": "by", "parameter": "b_isee1", "start_date": "1977-10-22T14:49:00Z", "stop_date": "1987-09-26T05:59:00Z", "xmlid": "b_isee1(1)"}, "b_isee12": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_isee1(2)", "dataset": "isee1-mag-all", "index1": "2", "is_public": "True", "name": "bz", "parameter": "b_isee1", "start_date": "1977-10-22T14:49:00Z", "stop_date": "1987-09-26T05:59:00Z", "xmlid": "b_isee1(2)"}, "dataset": "isee1-mag-all", "description": "Triaxial magnetic field vector in GSM coordinates", "display_type": "timeseries", "is_public": "True", "name": "b_gsm", "size": "3", "start_date": "1977-10-22T14:49:00Z", "stop_date": "1987-09-26T05:59:00Z", "ucd": "phys.magField", "units": "nT", "xmlid": "b_isee1"}, "b_isee1_gse": {"__spz_name__": "b_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_isee1_gse", "b_isee1_gse0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_isee1_gse(0)", "dataset": "isee1-mag-all", "index1": "0", "is_public": "True", "name": "bx", "parameter": "b_isee1_gse", "start_date": "1977-10-22T14:49:00Z", "stop_date": "1987-09-26T05:59:00Z", "xmlid": "b_isee1_gse(0)"}, "b_isee1_gse1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_isee1_gse(1)", "dataset": "isee1-mag-all", "index1": "1", "is_public": "True", "name": "by", "parameter": "b_isee1_gse", "start_date": "1977-10-22T14:49:00Z", "stop_date": "1987-09-26T05:59:00Z", "xmlid": "b_isee1_gse(1)"}, "b_isee1_gse2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_isee1_gse(2)", "dataset": "isee1-mag-all", "index1": "2", "is_public": "True", "name": "bz", "parameter": "b_isee1_gse", "start_date": "1977-10-22T14:49:00Z", "stop_date": "1987-09-26T05:59:00Z", "xmlid": "b_isee1_gse(2)"}, "dataset": "isee1-mag-all", "description": "Triaxial magnetic field vector in GSM coordinates", "display_type": "timeseries", "is_public": "True", "name": "b_gse", "size": "3", "start_date": "1977-10-22T14:49:00Z", "stop_date": "1987-09-26T05:59:00Z", "ucd": "phys.magField", "units": "nT", "xmlid": "b_isee1_gse"}, "dataSource": "NSSDC", "desc": "
Sampling: 1M
Provider: NSSDC", "is_public": "True", "isee1_mag_all_bt": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "isee1_mag_all_bt", "dataset": "isee1-mag-all", "description": "Magnetic field magnitude", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "1977-10-22T14:49:00Z", "stop_date": "1987-09-26T05:59:00Z", "ucd": "phys.magField", "units": "nT", "xmlid": "isee1_mag_all_bt"}, "lastModificationDate": "2012-03-06T17:44:08Z", "lastUpdate": "2012-03-06T17:44:28Z", "measurement_type": "MagneticField", "name": "key parameters", "processing_level": "Calibrated", "sampling": "1M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/ISEE/ISEE1/MAG/isee1-mag-all", "start_date": "1977-10-22T14:49:00Z", "stop_date": "1987-09-26T05:59:00Z", "target": "Earth.Magnetosphere", "xmlid": "isee1-mag-all"}, "name": "FGM", "xmlid": "ISEE1_mag"}, "FVA": {"__spz_name__": "FVA", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "ISEE1_fva", "att": "auto/ISEE1_fva", "desc": "Fixed Voltage Analyzer
ElectrostaticAnalyser", "is_public": "True", "isee1_fva_all": {"__spz_name__": "energetic particles fluxes", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "isee1-fva-all", "att": "auto/isee1-fva-all", "dataSource": "", "desc": "
Sampling: 0.1S", "is_public": "True", "isee1_fvae": {"__spz_name__": "flux e-", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "isee1_fvae", "dataset": "isee1-fva-all", "display_type": "timeseries", "is_public": "True", "isee1_fvae0": {"__spz_name__": "2 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "isee1_fvae(0)", "dataset": "isee1-fva-all", "index1": "0", "is_public": "True", "name": "2 keV", "parameter": "isee1_fvae", "start_date": "1977-10-27T01:00:08Z", "stop_date": "1987-08-12T07:54:24Z", "xmlid": "isee1_fvae(0)"}, "isee1_fvae1": {"__spz_name__": "6 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "isee1_fvae(1)", "dataset": "isee1-fva-all", "index1": "1", "is_public": "True", "name": "6 keV", "parameter": "isee1_fvae", "start_date": "1977-10-27T01:00:08Z", "stop_date": "1987-08-12T07:54:24Z", "xmlid": "isee1_fvae(1)"}, "name": "flux e-", "size": "2", "start_date": "1977-10-27T01:00:08Z", "stop_date": "1987-08-12T07:54:24Z", "units": "arbitrary", "xmlid": "isee1_fvae"}, "isee1_fvap": {"__spz_name__": "flux p+", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "isee1_fvap", "dataset": "isee1-fva-all", "is_public": "True", "isee1_fvap0": {"__spz_name__": "2 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "isee1_fvap(0)", "dataset": "isee1-fva-all", "index1": "0", "is_public": "True", "name": "2 keV", "parameter": "isee1_fvap", "start_date": "1977-10-27T01:00:08Z", "stop_date": "1987-08-12T07:54:24Z", "xmlid": "isee1_fvap(0)"}, "isee1_fvap1": {"__spz_name__": "6 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "isee1_fvap(1)", "dataset": "isee1-fva-all", "index1": "1", "is_public": "True", "name": "6 keV", "parameter": "isee1_fvap", "start_date": "1977-10-27T01:00:08Z", "stop_date": "1987-08-12T07:54:24Z", "xmlid": "isee1_fvap(1)"}, "name": "flux p+", "size": "2", "start_date": "1977-10-27T01:00:08Z", "stop_date": "1987-08-12T07:54:24Z", "units": "arbitrary", "xmlid": "isee1_fvap"}, "lastModificationDate": "2012-03-06T17:41:22Z", "lastUpdate": "2012-03-06T17:43:58Z", "measurement_type": "EnergeticParticles", "name": "energetic particles fluxes", "processing_level": "Uncalibrated", "sampling": "0.1S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/ISEE/ISEE1/FVA/isee1-fva-all", "start_date": "1977-10-27T01:00:08Z", "stop_date": "1987-08-12T07:54:24Z", "target": "Earth.Magnetosphere", "xmlid": "isee1-fva-all"}, "name": "FVA", "xmlid": "ISEE1_fva"}, "__spz_name__": "ISEE 1", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "ISEE1", "att": "auto/ISEE1", "desc": "International Sun-Earth Explorer-A
1977-10-22T00:00:00 - 1987-09-25T00:00:00", "is_public": "True", "name": "ISEE 1", "target": "Heliosphere.NearEarth", "xmlid": "ISEE1"}, "ISEE_2": {"Ephemeris": {"__spz_name__": "Ephemeris", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "ISEE2_ephemeris", "att": "auto/ISEE2_ephemeris", "desc": "", "is_public": "True", "isee2_orb_all": {"__spz_name__": "orbit", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "isee2-orb-all", "att": "auto/isee2-orb-all", "dataSource": "NSSDC", "desc": "
Sampling: 1M
Provider: NSSDC", "is_public": "True", "isee2_xyz": {"__spz_name__": "xyz_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "isee2_xyz", "dataset": "isee2-orb-all", "description": "Spacecraft position vector, GSE Cartesian components, in Earth radii", "display_type": "timeseries", "is_public": "True", "isee2_xyz0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "isee2_xyz(0)", "dataset": "isee2-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "isee2_xyz", "start_date": "1977-10-22T14:49:00Z", "stop_date": "1987-09-26T05:59:00Z", "xmlid": "isee2_xyz(0)"}, "isee2_xyz1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "isee2_xyz(1)", "dataset": "isee2-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "isee2_xyz", "start_date": "1977-10-22T14:49:00Z", "stop_date": "1987-09-26T05:59:00Z", "xmlid": "isee2_xyz(1)"}, "isee2_xyz2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "isee2_xyz(2)", "dataset": "isee2-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "isee2_xyz", "start_date": "1977-10-22T14:49:00Z", "stop_date": "1987-09-26T05:59:00Z", "xmlid": "isee2_xyz(2)"}, "name": "xyz_gse", "size": "3", "start_date": "1977-10-22T14:49:00Z", "stop_date": "1987-09-26T05:59:00Z", "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "Re", "xmlid": "isee2_xyz"}, "isee2_xyz_gsm": {"__spz_name__": "xyz_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "isee2_xyz_gsm", "dataset": "isee2-orb-all", "description": "Spacecraft position vector, GSM Cartesian components, in Earth radii", "display_type": "timeseries", "is_public": "True", "isee2_xyz_gsm0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "isee2_xyz_gsm(0)", "dataset": "isee2-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "isee2_xyz_gsm", "start_date": "1977-10-22T14:49:00Z", "stop_date": "1987-09-26T05:59:00Z", "xmlid": "isee2_xyz_gsm(0)"}, "isee2_xyz_gsm1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "isee2_xyz_gsm(1)", "dataset": "isee2-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "isee2_xyz_gsm", "start_date": "1977-10-22T14:49:00Z", "stop_date": "1987-09-26T05:59:00Z", "xmlid": "isee2_xyz_gsm(1)"}, "isee2_xyz_gsm2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "isee2_xyz_gsm(2)", "dataset": "isee2-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "isee2_xyz_gsm", "start_date": "1977-10-22T14:49:00Z", "stop_date": "1987-09-26T05:59:00Z", "xmlid": "isee2_xyz_gsm(2)"}, "name": "xyz_gsm", "size": "3", "start_date": "1977-10-22T14:49:00Z", "stop_date": "1987-09-26T05:59:00Z", "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "Re", "xmlid": "isee2_xyz_gsm"}, "lastModificationDate": "2012-03-06T21:06:52Z", "lastUpdate": "2012-03-06T21:07:04Z", "measurement_type": "Ephemeris", "name": "orbit", "processing_level": "Calibrated", "sampling": "1M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/ISEE/ISEE2/Ephemeris/isee2-orb-all", "start_date": "1977-10-22T14:49:00Z", "stop_date": "1987-09-26T05:59:00Z", "target": "Earth.Magnetosphere", "xmlid": "isee2-orb-all"}, "name": "Ephemeris", "xmlid": "ISEE2_ephemeris"}, "FGM": {"__spz_name__": "FGM", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "ISEE2_mag", "att": "auto/ISEE2_mag", "desc": "Fluxgate Magnetometer
Magnetometer", "is_public": "True", "isee2_mag_all": {"__spz_name__": "key parameters", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "isee2-mag-all", "att": "auto/isee2-mag-all", "b_isee2": {"__spz_name__": "b_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_isee2", "b_isee20": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_isee2(0)", "dataset": "isee2-mag-all", "index1": "0", "is_public": "True", "name": "bx", "parameter": "b_isee2", "start_date": "1977-10-22T14:49:00Z", "stop_date": "1987-09-26T05:59:00Z", "xmlid": "b_isee2(0)"}, "b_isee21": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_isee2(1)", "dataset": "isee2-mag-all", "index1": "1", "is_public": "True", "name": "by", "parameter": "b_isee2", "start_date": "1977-10-22T14:49:00Z", "stop_date": "1987-09-26T05:59:00Z", "xmlid": "b_isee2(1)"}, "b_isee22": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_isee2(2)", "dataset": "isee2-mag-all", "index1": "2", "is_public": "True", "name": "bz", "parameter": "b_isee2", "start_date": "1977-10-22T14:49:00Z", "stop_date": "1987-09-26T05:59:00Z", "xmlid": "b_isee2(2)"}, "dataset": "isee2-mag-all", "description": "Triaxial magnetic field vector in GSM coordinates", "display_type": "timeseries", "is_public": "True", "name": "b_gsm", "size": "3", "start_date": "1977-10-22T14:49:00Z", "stop_date": "1987-09-26T05:59:00Z", "ucd": "phys.magField", "units": "nT", "xmlid": "b_isee2"}, "b_isee2_gse": {"__spz_name__": "b_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_isee2_gse", "b_isee2_gse0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_isee2_gse(0)", "dataset": "isee2-mag-all", "index1": "0", "is_public": "True", "name": "bx", "parameter": "b_isee2_gse", "start_date": "1977-10-22T14:49:00Z", "stop_date": "1987-09-26T05:59:00Z", "xmlid": "b_isee2_gse(0)"}, "b_isee2_gse1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_isee2_gse(1)", "dataset": "isee2-mag-all", "index1": "1", "is_public": "True", "name": "by", "parameter": "b_isee2_gse", "start_date": "1977-10-22T14:49:00Z", "stop_date": "1987-09-26T05:59:00Z", "xmlid": "b_isee2_gse(1)"}, "b_isee2_gse2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_isee2_gse(2)", "dataset": "isee2-mag-all", "index1": "2", "is_public": "True", "name": "bz", "parameter": "b_isee2_gse", "start_date": "1977-10-22T14:49:00Z", "stop_date": "1987-09-26T05:59:00Z", "xmlid": "b_isee2_gse(2)"}, "dataset": "isee2-mag-all", "description": "Triaxial magnetic field vector in GSE coordinates", "display_type": "timeseries", "is_public": "True", "name": "b_gse", "size": "3", "start_date": "1977-10-22T14:49:00Z", "stop_date": "1987-09-26T05:59:00Z", "ucd": "phys.magField", "units": "nT", "xmlid": "b_isee2_gse"}, "dataSource": "NSSDC", "desc": "
Sampling: 1M
Provider: NSSDC", "is_public": "True", "isee2_mag_all_bt": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "isee2_mag_all_bt", "dataset": "isee2-mag-all", "description": "Magnetic field magnitude", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "1977-10-22T14:49:00Z", "stop_date": "1987-09-26T05:59:00Z", "ucd": "phys.magField", "units": "nT", "xmlid": "isee2_mag_all_bt"}, "lastModificationDate": "2012-03-06T21:10:30Z", "lastUpdate": "2012-03-06T21:10:48Z", "measurement_type": "MagneticField", "name": "key parameters", "processing_level": "Calibrated", "sampling": "1M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/ISEE/ISEE2/MAG/isee2-mag-all", "start_date": "1977-10-22T14:49:00Z", "stop_date": "1987-09-26T05:59:00Z", "target": "Earth.Magnetosphere", "xmlid": "isee2-mag-all"}, "name": "FGM", "xmlid": "ISEE2_mag"}, "FVA": {"__spz_name__": "FVA", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "ISEE2_fva", "att": "auto/ISEE2_fva", "desc": "Fixed Voltage Analyzer
ElectrostaticAnalyser", "is_public": "True", "isee2_fva_all": {"__spz_name__": "energetic particles fluxes", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "isee2-fva-all", "att": "auto/isee2-fva-all", "dataSource": "", "desc": "
Sampling: 0.1S", "is_public": "True", "isee2_fvae": {"__spz_name__": "flux e-", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "isee2_fvae", "dataset": "isee2-fva-all", "display_type": "timeseries", "is_public": "True", "isee2_fvae0": {"__spz_name__": "2 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "isee2_fvae(0)", "dataset": "isee2-fva-all", "index1": "0", "is_public": "True", "name": "2 keV", "parameter": "isee2_fvae", "start_date": "1976-12-31T07:24:56Z", "stop_date": "1986-10-21T16:06:03Z", "xmlid": "isee2_fvae(0)"}, "isee2_fvae1": {"__spz_name__": "6 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "isee2_fvae(1)", "dataset": "isee2-fva-all", "index1": "1", "is_public": "True", "name": "6 keV", "parameter": "isee2_fvae", "start_date": "1976-12-31T07:24:56Z", "stop_date": "1986-10-21T16:06:03Z", "xmlid": "isee2_fvae(1)"}, "name": "flux e-", "size": "2", "start_date": "1976-12-31T07:24:56Z", "stop_date": "1986-10-21T16:06:03Z", "units": "arbitrary", "xmlid": "isee2_fvae"}, "isee2_fvap": {"__spz_name__": "flux p+", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "isee2_fvap", "dataset": "isee2-fva-all", "is_public": "True", "isee2_fvap0": {"__spz_name__": "2 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "isee2_fvap(0)", "dataset": "isee2-fva-all", "index1": "0", "is_public": "True", "name": "2 keV", "parameter": "isee2_fvap", "start_date": "1976-12-31T07:24:56Z", "stop_date": "1986-10-21T16:06:03Z", "xmlid": "isee2_fvap(0)"}, "isee2_fvap1": {"__spz_name__": "6 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "isee2_fvap(1)", "dataset": "isee2-fva-all", "index1": "1", "is_public": "True", "name": "6 keV", "parameter": "isee2_fvap", "start_date": "1976-12-31T07:24:56Z", "stop_date": "1986-10-21T16:06:03Z", "xmlid": "isee2_fvap(1)"}, "name": "flux p+", "size": "2", "start_date": "1976-12-31T07:24:56Z", "stop_date": "1986-10-21T16:06:03Z", "units": "arbitrary", "xmlid": "isee2_fvap"}, "lastModificationDate": "2012-03-06T21:07:27Z", "lastUpdate": "2012-03-06T21:10:22Z", "measurement_type": "EnergeticParticles", "name": "energetic particles fluxes", "processing_level": "Uncalibrated", "sampling": "0.1S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/ISEE/ISEE2/FVA/isee2-fva-all", "start_date": "1976-12-31T07:24:56Z", "stop_date": "1986-10-21T16:06:03Z", "target": "Earth.Magnetosphere", "xmlid": "isee2-fva-all"}, "name": "FVA", "xmlid": "ISEE2_fva"}, "__spz_name__": "ISEE 2", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "ISEE2", "att": "auto/ISEE2", "desc": "1977-102B
1977-10-22T00:00:00 - 1987-09-26T00:00:00", "is_public": "True", "name": "ISEE 2", "target": "Heliosphere.NearEarth", "xmlid": "ISEE2"}, "__spz_name__": "ISEE", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "ISEE", "att": "auto/ISEE", "desc": "International Sun-Earth Explorer; NASA
1977-10-22T00:00:00 - 1987-09-26T00:00:00", "is_public": "True", "name": "ISEE", "rank": "4", "target": "Heliosphere.NearEarth", "xmlid": "ISEE"}, "Indices": {"Ground_Based": {"__spz_name__": "Ground Based", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Indices_ground_based", "att": "auto/Indices_ground_based", "desc": "IAGA endorsed geomagnetic indices
Magnetometer", "ground_based_aa": {"Aa": {"__spz_name__": "Aa", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "Aa", "dataset": "ground-based-aa", "description": "Daily Mean of aa", "is_public": "True", "name": "Aa", "start_date": "1975-01-01T00:00:00Z", "stop_date": "2024-10-04T21:00:00Z", "units": "nT", "xmlid": "Aa"}, "__spz_name__": "aa", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ground-based-aa", "aa": {"__spz_name__": "aa", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "aa", "dataset": "ground-based-aa", "is_public": "True", "name": "aa", "start_date": "1975-01-01T00:00:00Z", "stop_date": "2024-10-04T21:00:00Z", "units": "nT", "xmlid": "aa"}, "att": "auto/ground-based-aa", "dataSource": "ISGI/UNISTRA", "desc": "aa IAGA-endorsed magnetic activity index
Sampling: 3H
Provider: ISGI/UNISTRA", "is_public": "True", "lastModificationDate": "2024-10-07T04:07:52Z", "lastUpdate": "2024-10-07T04:07:52Z", "measurement_type": "MagneticField", "name": "aa", "processing_level": "Calibrated", "sampling": "3H", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Indices/Ground_Based/ground-based-aa", "start_date": "1975-01-01T00:00:00Z", "stop_date": "2024-10-04T21:00:00Z", "target": "Earth.NearSurface", "xmlid": "ground-based-aa"}, "ground_based_aei": {"__spz_name__": "auroral electrojet", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ground-based-aei", "ae": {"__spz_name__": "AE", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ae", "dataset": "ground-based-aei", "description": "Auroral Electrojet (AE = AU - AL)", "is_public": "True", "name": "AE", "start_date": "1975-01-01T00:00:00Z", "stop_date": "2019-12-31T23:59:00Z", "units": "nT", "xmlid": "ae"}, "al": {"__spz_name__": "AL", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "al", "dataset": "ground-based-aei", "description": "Auroral Electrojet Lower envelope", "is_public": "True", "name": "AL", "start_date": "1975-01-01T00:00:00Z", "stop_date": "2019-12-31T23:59:00Z", "units": "nT", "xmlid": "al"}, "ao": {"__spz_name__": "AO", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ao", "dataset": "ground-based-aei", "description": "Auroral Electrojet (AO = (AU + AL) / 2)", "is_public": "True", "name": "AO", "start_date": "1975-01-01T00:00:00Z", "stop_date": "2019-12-31T23:59:00Z", "units": "nT", "xmlid": "ao"}, "ap_wdc": {"__spz_name__": "AP", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ap_wdc", "dataset": "ground-based-aei", "description": "Auroral Power (Newell 2011)", "is_public": "True", "name": "AP", "start_date": "1975-01-01T00:00:00Z", "stop_date": "2019-12-31T23:59:00Z", "units": "GW", "xmlid": "ap_wdc"}, "att": "auto/ground-based-aei", "au": {"__spz_name__": "AU", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "au", "dataset": "ground-based-aei", "description": "Auroral Electrojet Upper envelope", "is_public": "True", "name": "AU", "start_date": "1975-01-01T00:00:00Z", "stop_date": "2019-12-31T23:59:00Z", "units": "nT", "xmlid": "au"}, "dataSource": "WDC Kyoto via ISGI/UNISTRA", "desc": "
Sampling: 1M
Provider: WDC Kyoto via ISGI/UNISTRA", "is_public": "True", "lastModificationDate": "2024-01-26T10:39:16Z", "lastUpdate": "2024-01-26T10:39:13Z", "measurement_type": "MagneticField", "name": "auroral electrojet", "processing_level": "Calibrated", "sampling": "1M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Indices/Ground_Based/ground-based-aei", "start_date": "1975-01-01T00:00:00Z", "stop_date": "2019-12-31T23:59:00Z", "target": "Earth.NearSurface.AuroralRegion", "xmlid": "ground-based-aei"}, "ground_based_am": {"Am": {"__spz_name__": "Am", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "Am", "dataset": "ground-based-am", "description": "Daily Mean of am", "is_public": "True", "name": "Am", "start_date": "1975-01-01T00:00:00Z", "stop_date": "2024-10-04T21:00:00Z", "units": "nT", "xmlid": "Am"}, "__spz_name__": "am", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ground-based-am", "am": {"__spz_name__": "am", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "am", "dataset": "ground-based-am", "description": "am = (an + as)/2", "is_public": "True", "name": "am", "start_date": "1975-01-01T00:00:00Z", "stop_date": "2024-10-04T21:00:00Z", "units": "nT", "xmlid": "am"}, "att": "auto/ground-based-am", "dataSource": "ISGI/UNISTRA", "desc": "am IAGA-endorsed magnetic activity index
Sampling: 3H
Provider: ISGI/UNISTRA", "is_public": "True", "lastModificationDate": "2024-10-07T04:07:52Z", "lastUpdate": "2024-10-07T04:07:52Z", "measurement_type": "MagneticField", "name": "am", "processing_level": "Calibrated", "sampling": "3H", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Indices/Ground_Based/ground-based-am", "start_date": "1975-01-01T00:00:00Z", "stop_date": "2024-10-04T21:00:00Z", "target": "Earth.NearSurface", "xmlid": "ground-based-am"}, "ground_based_asy": {"__spz_name__": "asy/sym", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ground-based-asy", "asy": {"__spz_name__": "asy", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "asy", "asy0": {"__spz_name__": "asy-h", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "asy(0)", "dataset": "ground-based-asy", "index1": "0", "is_public": "True", "name": "asy-h", "parameter": "asy", "start_date": "1981-01-01T00:00:00Z", "stop_date": "2023-12-31T23:59:00Z", "xmlid": "asy(0)"}, "asy1": {"__spz_name__": "asy-d", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "asy(1)", "dataset": "ground-based-asy", "index1": "1", "is_public": "True", "name": "asy-d", "parameter": "asy", "start_date": "1981-01-01T00:00:00Z", "stop_date": "2023-12-31T23:59:00Z", "xmlid": "asy(1)"}, "dataset": "ground-based-asy", "is_public": "True", "name": "asy", "size": "2", "start_date": "1981-01-01T00:00:00Z", "stop_date": "2023-12-31T23:59:00Z", "units": "nT", "xmlid": "asy"}, "att": "auto/ground-based-asy", "dataSource": "WDC Kyoto via ISGI/UNISTRA", "desc": "Longitudinally asymmetric and symmetric horizontal component disturbances
Sampling: 1M
Provider: WDC Kyoto via ISGI/UNISTRA", "is_public": "True", "lastModificationDate": "2024-01-26T10:57:53Z", "lastUpdate": "2024-01-26T10:57:52Z", "measurement_type": "MagneticField", "name": "asy/sym", "processing_level": "Calibrated", "sampling": "1M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Indices/Ground_Based/ground-based-asy", "start_date": "1981-01-01T00:00:00Z", "stop_date": "2023-12-31T23:59:00Z", "sym": {"__spz_name__": "sym", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sym", "dataset": "ground-based-asy", "is_public": "True", "name": "sym", "size": "2", "start_date": "1981-01-01T00:00:00Z", "stop_date": "2023-12-31T23:59:00Z", "sym0": {"__spz_name__": "sym-h", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sym(0)", "dataset": "ground-based-asy", "index1": "0", "is_public": "True", "name": "sym-h", "parameter": "sym", "start_date": "1981-01-01T00:00:00Z", "stop_date": "2023-12-31T23:59:00Z", "xmlid": "sym(0)"}, "sym1": {"__spz_name__": "sym-d", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sym(1)", "dataset": "ground-based-asy", "index1": "1", "is_public": "True", "name": "sym-d", "parameter": "sym", "start_date": "1981-01-01T00:00:00Z", "stop_date": "2023-12-31T23:59:00Z", "xmlid": "sym(1)"}, "units": "nT", "xmlid": "sym"}, "target": "Earth.NearSurface.EquatorialRegion", "xmlid": "ground-based-asy"}, "ground_based_dst": {"__spz_name__": "Dst", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ground-based-dst", "att": "auto/ground-based-dst", "dataSource": "WDC Kyoto via ISGI/UNISTRA", "desc": "Disturbance Stormtime index
Sampling: 1H
Provider: WDC Kyoto via ISGI/UNISTRA", "dst": {"__spz_name__": "dst", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "dst", "dataset": "ground-based-dst", "is_public": "True", "name": "dst", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2024-10-04T23:00:00Z", "units": "nT", "xmlid": "dst"}, "is_public": "True", "lastModificationDate": "2024-10-07T04:07:53Z", "lastUpdate": "2024-10-07T04:07:53Z", "measurement_type": "MagneticField", "name": "Dst", "processing_level": "Calibrated", "sampling": "1H", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Indices/Ground_Based/ground-based-dst", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2024-10-04T23:00:00Z", "target": "Earth.Magnetosphere.Main", "xmlid": "ground-based-dst"}, "ground_based_sme": {"__spz_name__": "SuperMAG indices", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ground-based-sme", "att": "auto/ground-based-sme", "dataSource": "SuperMAG", "desc": "SuperMAG SML, SMU, SME indices
Sampling: 1M
Provider: SuperMAG", "is_public": "True", "lastModificationDate": "2024-10-06T22:38:01Z", "lastUpdate": "2024-10-06T22:38:00Z", "measurement_type": "MagneticField", "name": "SuperMAG indices", "processing_level": "Calibrated", "sampling": "1M", "sme": {"__spz_name__": "SME", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sme", "dataset": "ground-based-sme", "is_public": "True", "name": "SME", "start_date": "1975-01-01T00:00:00Z", "stop_date": "2024-10-06T23:59:00Z", "units": "nT", "xmlid": "sme"}, "sml": {"__spz_name__": "SML", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sml", "dataset": "ground-based-sme", "is_public": "True", "name": "SML", "start_date": "1975-01-01T00:00:00Z", "stop_date": "2024-10-06T23:59:00Z", "units": "nT", "xmlid": "sml"}, "smu": {"__spz_name__": "SMU", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "smu", "dataset": "ground-based-sme", "is_public": "True", "name": "SMU", "start_date": "1975-01-01T00:00:00Z", "stop_date": "2024-10-06T23:59:00Z", "units": "nT", "xmlid": "smu"}, "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Indices/Ground_Based/ground-based-sme", "start_date": "1975-01-01T00:00:00Z", "stop_date": "2024-10-06T23:59:00Z", "target": "Earth.NearSurface", "xmlid": "ground-based-sme"}, "indices_pc_all": {"PriorID": "indices-pc-n", "__spz_name__": "polar cap", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "indices-pc-all", "att": "auto/indices-pc-all", "dataSource": "http://pc-index.org", "desc": "Polar Cap Index
Sampling: 1M
Provider: http://pc-index.org", "is_public": "True", "lastModificationDate": "2024-01-25T16:04:26Z", "lastUpdate": "2024-01-25T16:03:57Z", "measurement_type": "MagneticField", "name": "polar cap", "pcn": {"__spz_name__": "pcn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pcn", "dataset": "indices-pc-all", "is_public": "True", "name": "pcn", "start_date": "1975-01-01T00:00:00Z", "stop_date": "2023-12-25T23:59:00Z", "units": "mV/m", "xmlid": "pcn"}, "pcs": {"__spz_name__": "pcs", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pcs", "dataset": "indices-pc-all", "is_public": "True", "name": "pcs", "start_date": "1975-01-01T00:00:00Z", "stop_date": "2023-12-25T23:59:00Z", "units": "mV/m", "xmlid": "pcs"}, "processing_level": "Calibrated", "sampling": "1M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Indices/Ground_Based/indices-pc-all", "start_date": "1975-01-01T00:00:00Z", "stop_date": "2023-12-25T23:59:00Z", "target": "Earth.NearSurface.PolarCap", "xmlid": "indices-pc-all"}, "is_public": "True", "name": "Ground Based", "xmlid": "Indices_ground_based"}, "__spz_name__": "Indices", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Indices", "att": "auto/Indices", "desc": "Geomagnetic Indices
1970-01-01T00:00:00", "is_public": "True", "name": "Indices", "rank": "6", "target": "Earth", "xmlid": "Indices"}, "Interball": {"Interball_Tail": {"Analytical_Models": {"__spz_name__": "Analytical Models", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Interball-Tail_models", "att": "auto/Interball-Tail_models", "desc": "", "is_public": "True", "it_msph_models": {"PriorID": "clust1-orb-all", "__spz_name__": "distance to neutral sheet", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "it-msph-models", "att": "auto/it-msph-models", "dataSource": "IRAP", "desc": "Distance to model neutral sheet
Sampling: 1M
Provider: IRAP", "dz_fairfield70_it_xyz": {"__spz_name__": "dZ Fairfield70", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "dz_fairfield70_it_xyz", "dataset": "it-msph-models", "description": "Distance (Re) from s/c location to Fairfield1970 neutral sheet position. Depends on spacecraft location in SM coordinates and dipole tilt angle. Valid for Ysm less than 15 Re.", "is_public": "True", "name": "dZ Fairfield70", "predefined": "1", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-10-02T00:00:00Z", "template": "dz_fairfield70_##ORBIT##", "units": "Re", "xmlid": "dz_fairfield70_it_xyz"}, "dz_fairfield80_it_xyz": {"__spz_name__": "dZ Fairfield80", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "dz_fairfield80_it_xyz", "dataset": "it-msph-models", "description": "Distance (Re) from s/c location to Fairfield1980 neutral sheet position. Depends on spacecraft location in SM coordinates and dipole tilt angle.", "is_public": "True", "name": "dZ Fairfield80", "predefined": "1", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-10-02T00:00:00Z", "template": "dz_fairfield80_##ORBIT##", "units": "Re", "xmlid": "dz_fairfield80_it_xyz"}, "is_public": "True", "lastModificationDate": "2024-10-06T22:08:27Z", "lastUpdate": "2024-10-06T22:08:27Z", "measurement_type": "Ephemeris", "name": "distance to neutral sheet", "processing_level": "Calibrated", "sampling": "1M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/INTERBALL-Tail/Models/it-msph-models", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-10-02T00:00:00Z", "target": "Earth", "xmlid": "it-msph-models"}, "it_t96_model": {"PriorID": "clust1-orb-all", "__spz_name__": "T96 field model", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "it-t96-model", "att": "auto/it-t96-model", "b_t96gse_it_xyz": {"__spz_name__": "b_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_t96gse_it_xyz", "b_t96gse_it_xyz0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gse_it_xyz(0)", "dataset": "it-t96-model", "index1": "0", "is_public": "True", "name": "bx", "parameter": "b_t96gse_it_xyz", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-10-02T00:00:00Z", "xmlid": "b_t96gse_it_xyz(0)"}, "b_t96gse_it_xyz1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gse_it_xyz(1)", "dataset": "it-t96-model", "index1": "1", "is_public": "True", "name": "by", "parameter": "b_t96gse_it_xyz", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-10-02T00:00:00Z", "xmlid": "b_t96gse_it_xyz(1)"}, "b_t96gse_it_xyz2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gse_it_xyz(2)", "dataset": "it-t96-model", "index1": "2", "is_public": "True", "name": "bz", "parameter": "b_t96gse_it_xyz", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-10-02T00:00:00Z", "xmlid": "b_t96gse_it_xyz(2)"}, "dataset": "it-t96-model", "is_public": "True", "name": "b_gse", "predefined": "1", "size": "3", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-10-02T00:00:00Z", "template": "b_t96gse_##ORBIT##", "units": "nT", "xmlid": "b_t96gse_it_xyz"}, "b_t96gsm_it_xyz": {"__spz_name__": "b_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_t96gsm_it_xyz", "b_t96gsm_it_xyz0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gsm_it_xyz(0)", "dataset": "it-t96-model", "index1": "0", "is_public": "True", "name": "bx", "parameter": "b_t96gsm_it_xyz", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-10-02T00:00:00Z", "xmlid": "b_t96gsm_it_xyz(0)"}, "b_t96gsm_it_xyz1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gsm_it_xyz(1)", "dataset": "it-t96-model", "index1": "1", "is_public": "True", "name": "by", "parameter": "b_t96gsm_it_xyz", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-10-02T00:00:00Z", "xmlid": "b_t96gsm_it_xyz(1)"}, "b_t96gsm_it_xyz2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gsm_it_xyz(2)", "dataset": "it-t96-model", "index1": "2", "is_public": "True", "name": "bz", "parameter": "b_t96gsm_it_xyz", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-10-02T00:00:00Z", "xmlid": "b_t96gsm_it_xyz(2)"}, "dataset": "it-t96-model", "is_public": "True", "name": "b_gsm", "predefined": "1", "size": "3", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-10-02T00:00:00Z", "template": "b_t96gsm_##ORBIT##", "units": "nT", "xmlid": "b_t96gsm_it_xyz"}, "b_t96tot_it_xyz": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_t96tot_it_xyz", "dataset": "it-t96-model", "is_public": "True", "name": "|b|", "predefined": "1", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-10-02T00:00:00Z", "template": "b_t96tot_##ORBIT##", "units": "nT", "xmlid": "b_t96tot_it_xyz"}, "dataSource": "IRAP", "desc": "Tsyganenko96 geomagnetospheric magnetic field model
Sampling: 1M
Provider: IRAP", "is_public": "True", "lastModificationDate": "2024-10-06T22:08:27Z", "lastUpdate": "2024-10-06T22:08:27Z", "measurement_type": "MagneticField", "name": "T96 field model", "processing_level": "Calibrated", "sampling": "1M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/INTERBALL-Tail/Models/it-t96-model", "start_date": "2000-08-22T00:00:00Z", "stop_date": "2024-10-02T00:00:00Z", "target": "Earth", "xmlid": "it-t96-model"}, "name": "Analytical Models", "xmlid": "Interball-Tail_models"}, "Corall": {"__spz_name__": "Corall", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Interball-Tail_corall", "att": "auto/Interball-Tail_corall", "desc": "quasi-3D Ion Spectrometer
ElectrostaticAnalyser", "intt_crl_kp": {"__spz_name__": "key parameters", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "intt-crl-kp", "att": "auto/intt-crl-kp", "dataSource": "IRAP", "desc": "
Sampling: 2M
Provider: IRAP", "is_public": "True", "it_n": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "it_n", "dataset": "intt-crl-kp", "description": "Ion density", "display_type": "timeseries", "is_public": "True", "name": "density", "start_date": "1995-09-03T00:00:27Z", "stop_date": "2000-10-14T23:59:29Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm\u207b\u00b3", "xmlid": "it_n"}, "it_t": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "it_t", "dataset": "intt-crl-kp", "description": "Ion temperature", "display_type": "timeseries", "is_public": "True", "name": "temperature", "start_date": "1995-09-03T00:00:27Z", "stop_date": "2000-10-14T23:59:29Z", "ucd": "phys.temperature;phys.atmol.ionStage", "units": "eV", "xmlid": "it_t"}, "it_v_gse": {"__spz_name__": "v_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "it_v_gse", "dataset": "intt-crl-kp", "description": "Ion velocity in GSE coordinates", "display_type": "timeseries", "is_public": "True", "it_v_gse0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "it_v_gse(0)", "dataset": "intt-crl-kp", "index1": "0", "is_public": "True", "name": "vx", "parameter": "it_v_gse", "start_date": "1995-09-03T00:00:27Z", "stop_date": "2000-10-14T23:59:29Z", "xmlid": "it_v_gse(0)"}, "it_v_gse1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "it_v_gse(1)", "dataset": "intt-crl-kp", "index1": "1", "is_public": "True", "name": "vy", "parameter": "it_v_gse", "start_date": "1995-09-03T00:00:27Z", "stop_date": "2000-10-14T23:59:29Z", "xmlid": "it_v_gse(1)"}, "it_v_gse2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "it_v_gse(2)", "dataset": "intt-crl-kp", "index1": "2", "is_public": "True", "name": "vz", "parameter": "it_v_gse", "start_date": "1995-09-03T00:00:27Z", "stop_date": "2000-10-14T23:59:29Z", "xmlid": "it_v_gse(2)"}, "name": "v_gse", "size": "3", "start_date": "1995-09-03T00:00:27Z", "stop_date": "2000-10-14T23:59:29Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "it_v_gse"}, "it_v_gsm": {"__spz_name__": "v_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "it_v_gsm", "dataset": "intt-crl-kp", "description": "Ion velocity in GSM coordinates", "display_type": "timeseries", "is_public": "True", "it_v_gsm0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "it_v_gsm(0)", "dataset": "intt-crl-kp", "index1": "0", "is_public": "True", "name": "vx", "parameter": "it_v_gsm", "start_date": "1995-09-03T00:00:27Z", "stop_date": "2000-10-14T23:59:29Z", "xmlid": "it_v_gsm(0)"}, "it_v_gsm1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "it_v_gsm(1)", "dataset": "intt-crl-kp", "index1": "1", "is_public": "True", "name": "vy", "parameter": "it_v_gsm", "start_date": "1995-09-03T00:00:27Z", "stop_date": "2000-10-14T23:59:29Z", "xmlid": "it_v_gsm(1)"}, "it_v_gsm2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "it_v_gsm(2)", "dataset": "intt-crl-kp", "index1": "2", "is_public": "True", "name": "vz", "parameter": "it_v_gsm", "start_date": "1995-09-03T00:00:27Z", "stop_date": "2000-10-14T23:59:29Z", "xmlid": "it_v_gsm(2)"}, "name": "v_gsm", "size": "3", "start_date": "1995-09-03T00:00:27Z", "stop_date": "2000-10-14T23:59:29Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "it_v_gsm"}, "it_vabs": {"__spz_name__": "|v|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "it_vabs", "dataset": "intt-crl-kp", "display_type": "timeseries", "is_public": "True", "name": "|v|", "start_date": "1995-09-03T00:00:27Z", "stop_date": "2000-10-14T23:59:29Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "it_vabs"}, "lastModificationDate": "2012-03-06T16:38:15Z", "lastUpdate": "2013-05-24T13:06:59Z", "measurement_type": "ThermalPlasma", "name": "key parameters", "processing_level": "Calibrated", "sampling": "2M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/INTERBALL-Tail/CORALL/intt-crl-kp", "start_date": "1995-09-03T00:00:27Z", "stop_date": "2000-10-14T23:59:29Z", "target": "Earth.Magnetosheath", "xmlid": "intt-crl-kp"}, "is_public": "True", "name": "Corall", "xmlid": "Interball-Tail_corall"}, "DOK2": {"__spz_name__": "DOK2", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Interball-Tail_dok2", "att": "auto/Interball-Tail_dok2", "desc": "SolidStateDetector", "electrons": {"__spz_name__": "electrons", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "int-dok-el", "iball_dok_1s": {"__spz_name__": "spectra : sunward", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "iball-dok-1s", "att": "auto/iball-dok-1s", "dataSource": "IRAP", "desc": "Electron Spectra : Sunward Flow
MinSampling: 4S; MaxSampling: 32S
Provider: IRAP", "is_public": "True", "it_dok_1se": {"__spz_name__": "e- flux sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "it_dok_1se", "dataset": "iball-dok-1s", "display_type": "spectrogram", "is_public": "True", "name": "e- flux sunward", "start_date": "1995-08-06T08:56:45Z", "stop_date": "2000-10-15T21:29:58Z", "units": "cm\u207b\u00b2.sr\u207b\u00b9.s\u207b\u00b9.keV\u207b\u00b9", "xmlid": "it_dok_1se"}, "it_dok_1se_dt": {"__spz_name__": "dT", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "it_dok_1se_dt", "dataset": "iball-dok-1s", "description": "Time Exposition", "display_type": "timeseries", "is_public": "True", "name": "dT", "start_date": "1995-08-06T08:56:45Z", "stop_date": "2000-10-15T21:29:58Z", "units": "sec", "xmlid": "it_dok_1se_dt"}, "it_dok_1se_pitch": {"__spz_name__": "pitch sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "it_dok_1se_pitch", "dataset": "iball-dok-1s", "description": "Pitch angle with incoming flux direction", "display_type": "timeseries", "is_public": "True", "name": "pitch sunward", "start_date": "1995-08-06T08:56:45Z", "stop_date": "2000-10-15T21:29:58Z", "units": "deg", "xmlid": "it_dok_1se_pitch"}, "lastModificationDate": "2020-06-25T14:12:14Z", "lastUpdate": "2004-12-16T18:44:55Z", "maxSampling": "32S", "measurement_type": "EnergeticParticles", "name": "spectra : sunward", "processing_level": "Calibrated", "sampling": "4S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/INTERBALL-Tail/DOK2/iball-dok-1s", "start_date": "1995-08-06T08:56:45Z", "stop_date": "2000-10-15T21:29:58Z", "target": "Earth.Magnetosheath", "xmlid": "iball-dok-1s"}, "iball_dok_1t": {"__spz_name__": "time profiles : sunward", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "iball-dok-1t", "att": "auto/iball-dok-1t", "dataSource": "IRAP", "desc": "Electron Time Profiles : Sunward Flow
MinSampling: 4S; MaxSampling: 32S
Provider: IRAP", "is_public": "True", "it_dok_1te": {"__spz_name__": "e- flux sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "it_dok_1te", "dataset": "iball-dok-1t", "display_type": "timeseries", "is_public": "True", "it_dok_1te0": {"__spz_name__": "28 - 32 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "it_dok_1te(0)", "dataset": "iball-dok-1t", "index1": "0", "is_public": "True", "name": "28 - 32 keV", "parameter": "it_dok_1te", "start_date": "1995-08-05T09:37:47Z", "stop_date": "2000-10-15T21:21:14Z", "xmlid": "it_dok_1te(0)"}, "it_dok_1te1": {"__spz_name__": "44 - 53 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "it_dok_1te(1)", "dataset": "iball-dok-1t", "index1": "1", "is_public": "True", "name": "44 - 53 keV", "parameter": "it_dok_1te", "start_date": "1995-08-05T09:37:47Z", "stop_date": "2000-10-15T21:21:14Z", "xmlid": "it_dok_1te(1)"}, "it_dok_1te2": {"__spz_name__": "79 - 98 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "it_dok_1te(2)", "dataset": "iball-dok-1t", "index1": "2", "is_public": "True", "name": "79 - 98 keV", "parameter": "it_dok_1te", "start_date": "1995-08-05T09:37:47Z", "stop_date": "2000-10-15T21:21:14Z", "xmlid": "it_dok_1te(2)"}, "name": "e- flux sunward", "size": "3", "start_date": "1995-08-05T09:37:47Z", "stop_date": "2000-10-15T21:21:14Z", "units": "cm\u207b\u00b2.sr\u207b\u00b9.s\u207b\u00b9.keV\u207b\u00b9", "xmlid": "it_dok_1te"}, "it_dok_1te_dt": {"__spz_name__": "dT", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "it_dok_1te_dt", "dataset": "iball-dok-1t", "description": "Time Exposition", "display_type": "timeseries", "is_public": "True", "name": "dT", "start_date": "1995-08-05T09:37:47Z", "stop_date": "2000-10-15T21:21:14Z", "units": "sec", "xmlid": "it_dok_1te_dt"}, "it_dok_1te_pitch": {"__spz_name__": "pitch sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "it_dok_1te_pitch", "dataset": "iball-dok-1t", "description": "Pitch angle with incoming flux direction", "display_type": "timeseries", "is_public": "True", "name": "pitch sunward", "start_date": "1995-08-05T09:37:47Z", "stop_date": "2000-10-15T21:21:14Z", "units": "deg", "xmlid": "it_dok_1te_pitch"}, "lastModificationDate": "2020-06-25T14:12:06Z", "lastUpdate": "2004-12-02T20:47:03Z", "maxSampling": "32S", "measurement_type": "EnergeticParticles", "name": "time profiles : sunward", "processing_level": "Calibrated", "sampling": "4S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/INTERBALL-Tail/DOK2/iball-dok-1t", "start_date": "1995-08-05T09:37:47Z", "stop_date": "2000-10-15T21:21:14Z", "target": "Earth.Magnetosheath", "xmlid": "iball-dok-1t"}, "iball_dok_2s": {"__spz_name__": "spectra : tailward", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "iball-dok-2s", "att": "auto/iball-dok-2s", "dataSource": "IRAP", "desc": "Electron Spectra : Tailward Flow
MinSampling: 4S; MaxSampling: 32S
Provider: IRAP", "is_public": "True", "it_dok_2se": {"__spz_name__": "e- flux tailward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "it_dok_2se", "dataset": "iball-dok-2s", "display_type": "spectrogram", "is_public": "True", "name": "e- flux tailward", "start_date": "1995-08-05T10:03:00Z", "stop_date": "1997-02-18T21:15:01Z", "units": "cm\u207b\u00b2.sr\u207b\u00b9.s\u207b\u00b9.keV\u207b\u00b9", "xmlid": "it_dok_2se"}, "it_dok_2se_dt": {"__spz_name__": "dT", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "it_dok_2se_dt", "dataset": "iball-dok-2s", "display_type": "timeseries", "is_public": "True", "name": "dT", "start_date": "1995-08-05T10:03:00Z", "stop_date": "1997-02-18T21:15:01Z", "units": "sec", "xmlid": "it_dok_2se_dt"}, "it_dok_2se_pitch": {"__spz_name__": "pitch tailward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "it_dok_2se_pitch", "dataset": "iball-dok-2s", "description": "Pitch angle with incoming flux direction", "display_type": "timeseries", "is_public": "True", "name": "pitch tailward", "start_date": "1995-08-05T10:03:00Z", "stop_date": "1997-02-18T21:15:01Z", "units": "deg", "xmlid": "it_dok_2se_pitch"}, "it_dok_2se_theta": {"__spz_name__": "theta", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "it_dok_2se_theta", "dataset": "iball-dok-2s", "description": "Detector angle with axe pointed to Sun", "display_type": "timeseries", "is_public": "True", "name": "theta", "start_date": "1995-08-05T10:03:00Z", "stop_date": "1997-02-18T21:15:01Z", "units": "deg", "xmlid": "it_dok_2se_theta"}, "lastModificationDate": "2020-06-25T14:12:16Z", "lastUpdate": "2004-12-16T17:51:20Z", "maxSampling": "32S", "measurement_type": "EnergeticParticles", "name": "spectra : tailward", "processing_level": "Calibrated", "sampling": "4S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/INTERBALL-Tail/DOK2/iball-dok-2s", "start_date": "1995-08-05T10:03:00Z", "stop_date": "1997-02-18T21:15:01Z", "target": "Earth.Magnetosheath", "xmlid": "iball-dok-2s"}, "iball_dok_2t": {"__spz_name__": "time profiles : tailward", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "iball-dok-2t", "att": "auto/iball-dok-2t", "dataSource": "IRAP", "desc": "Electron Time Profiles : Tailward Flow
MinSampling: 4S; MaxSampling: 32S
Provider: IRAP", "is_public": "True", "it_dok_2te": {"__spz_name__": "e- flux tailward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "it_dok_2te", "dataset": "iball-dok-2t", "display_type": "timeseries", "is_public": "True", "it_dok_2te0": {"__spz_name__": "27 - 31 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "it_dok_2te(0)", "dataset": "iball-dok-2t", "index1": "0", "is_public": "True", "name": "27 - 31 keV", "parameter": "it_dok_2te", "start_date": "1995-08-05T09:37:47Z", "stop_date": "1997-02-18T21:15:29Z", "xmlid": "it_dok_2te(0)"}, "it_dok_2te1": {"__spz_name__": "42 - 52 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "it_dok_2te(1)", "dataset": "iball-dok-2t", "index1": "1", "is_public": "True", "name": "42 - 52 keV", "parameter": "it_dok_2te", "start_date": "1995-08-05T09:37:47Z", "stop_date": "1997-02-18T21:15:29Z", "xmlid": "it_dok_2te(1)"}, "it_dok_2te2": {"__spz_name__": "76 - 95 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "it_dok_2te(2)", "dataset": "iball-dok-2t", "index1": "2", "is_public": "True", "name": "76 - 95 keV", "parameter": "it_dok_2te", "start_date": "1995-08-05T09:37:47Z", "stop_date": "1997-02-18T21:15:29Z", "xmlid": "it_dok_2te(2)"}, "name": "e- flux tailward", "size": "3", "start_date": "1995-08-05T09:37:47Z", "stop_date": "1997-02-18T21:15:29Z", "units": "cm\u207b\u00b2.sr\u207b\u00b9.s\u207b\u00b9.keV\u207b\u00b9", "xmlid": "it_dok_2te"}, "it_dok_2te_dt": {"__spz_name__": "dT", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "it_dok_2te_dt", "dataset": "iball-dok-2t", "description": "Time Exposition", "display_type": "timeseries", "is_public": "True", "name": "dT", "start_date": "1995-08-05T09:37:47Z", "stop_date": "1997-02-18T21:15:29Z", "units": "sec", "xmlid": "it_dok_2te_dt"}, "it_dok_2te_pitch": {"__spz_name__": "pitch tailward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "it_dok_2te_pitch", "dataset": "iball-dok-2t", "description": "Pitch angle with incoming flux direction", "display_type": "timeseries", "is_public": "True", "name": "pitch tailward", "start_date": "1995-08-05T09:37:47Z", "stop_date": "1997-02-18T21:15:29Z", "units": "deg", "xmlid": "it_dok_2te_pitch"}, "it_dok_2te_theta": {"__spz_name__": "theta", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "it_dok_2te_theta", "dataset": "iball-dok-2t", "description": "Detector angle with axe pointed to Sun", "display_type": "timeseries", "is_public": "True", "name": "theta", "start_date": "1995-08-05T09:37:47Z", "stop_date": "1997-02-18T21:15:29Z", "units": "deg", "xmlid": "it_dok_2te_theta"}, "lastModificationDate": "2020-06-25T14:12:08Z", "lastUpdate": "2004-12-02T15:45:57Z", "maxSampling": "32S", "measurement_type": "EnergeticParticles", "name": "time profiles : tailward", "processing_level": "Calibrated", "sampling": "4S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/INTERBALL-Tail/DOK2/iball-dok-2t", "start_date": "1995-08-05T09:37:47Z", "stop_date": "1997-02-18T21:15:29Z", "target": "Earth.Magnetosheath", "xmlid": "iball-dok-2t"}, "is_public": "True", "name": "electrons", "xmlid": "int-dok-el"}, "ions": {"__spz_name__": "ions", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "int-dok-ion", "iball_dok_3s": {"__spz_name__": "spectra : sunward", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "iball-dok-3s", "att": "auto/iball-dok-3s", "dataSource": "IRAP", "desc": "Ion Spectra : Sunward Flow
MinSampling: 4S; MaxSampling: 32S
Provider: IRAP", "is_public": "True", "it_dok_1si": {"__spz_name__": "ion flux sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "it_dok_1si", "dataset": "iball-dok-3s", "display_type": "spectrogram", "is_public": "True", "name": "ion flux sunward", "start_date": "1995-08-05T10:03:00Z", "stop_date": "2000-10-15T21:01:35Z", "units": "cm\u207b\u00b2.sr\u207b\u00b9.s\u207b\u00b9.keV\u207b\u00b9", "xmlid": "it_dok_1si"}, "it_dok_1si_dt": {"__spz_name__": "dT", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "it_dok_1si_dt", "dataset": "iball-dok-3s", "description": "Time Exposition", "display_type": "timeseries", "is_public": "True", "name": "dT", "start_date": "1995-08-05T10:03:00Z", "stop_date": "2000-10-15T21:01:35Z", "units": "sec", "xmlid": "it_dok_1si_dt"}, "it_dok_1si_pitch": {"__spz_name__": "pitch sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "it_dok_1si_pitch", "dataset": "iball-dok-3s", "description": "Pitch angle with incoming flux direction", "display_type": "timeseries", "is_public": "True", "name": "pitch sunward", "start_date": "1995-08-05T10:03:00Z", "stop_date": "2000-10-15T21:01:35Z", "units": "deg", "xmlid": "it_dok_1si_pitch"}, "lastModificationDate": "2020-06-25T14:12:18Z", "lastUpdate": "2004-12-16T18:45:33Z", "maxSampling": "32S", "measurement_type": "EnergeticParticles", "name": "spectra : sunward", "processing_level": "Calibrated", "sampling": "4S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/INTERBALL-Tail/DOK2/iball-dok-3s", "start_date": "1995-08-05T10:03:00Z", "stop_date": "2000-10-15T21:01:35Z", "target": "Earth.Magnetosheath", "xmlid": "iball-dok-3s"}, "iball_dok_3t": {"__spz_name__": "time profiles : sunward", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "iball-dok-3t", "att": "auto/iball-dok-3t", "dataSource": "IRAP", "desc": "Ion Time Profiles : Sunward Flow
MinSampling: 4S; MaxSampling: 32S
Provider: IRAP", "is_public": "True", "it_dok_1ti": {"__spz_name__": "ions flux sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "it_dok_1ti", "dataset": "iball-dok-3t", "display_type": "timeseries", "is_public": "True", "it_dok_1ti0": {"__spz_name__": "22 - 29 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "it_dok_1ti(0)", "dataset": "iball-dok-3t", "index1": "0", "is_public": "True", "name": "22 - 29 keV", "parameter": "it_dok_1ti", "start_date": "1995-08-05T09:37:47Z", "stop_date": "2000-10-15T21:11:00Z", "xmlid": "it_dok_1ti(0)"}, "it_dok_1ti1": {"__spz_name__": "47 - 61 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "it_dok_1ti(1)", "dataset": "iball-dok-3t", "index1": "1", "is_public": "True", "name": "47 - 61 keV", "parameter": "it_dok_1ti", "start_date": "1995-08-05T09:37:47Z", "stop_date": "2000-10-15T21:11:00Z", "xmlid": "it_dok_1ti(1)"}, "it_dok_1ti2": {"__spz_name__": "102 - 133 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "it_dok_1ti(2)", "dataset": "iball-dok-3t", "index1": "2", "is_public": "True", "name": "102 - 133 keV", "parameter": "it_dok_1ti", "start_date": "1995-08-05T09:37:47Z", "stop_date": "2000-10-15T21:11:00Z", "xmlid": "it_dok_1ti(2)"}, "name": "ions flux sunward", "size": "3", "start_date": "1995-08-05T09:37:47Z", "stop_date": "2000-10-15T21:11:00Z", "units": "cm\u207b\u00b2.sr\u207b\u00b9.s\u207b\u00b9.keV\u207b\u00b9", "xmlid": "it_dok_1ti"}, "it_dok_1ti_dt": {"__spz_name__": "dT", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "it_dok_1ti_dt", "dataset": "iball-dok-3t", "description": "Time Exposition", "display_type": "timeseries", "is_public": "True", "name": "dT", "start_date": "1995-08-05T09:37:47Z", "stop_date": "2000-10-15T21:11:00Z", "units": "sec", "xmlid": "it_dok_1ti_dt"}, "it_dok_1ti_pitch": {"__spz_name__": "pitch sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "it_dok_1ti_pitch", "dataset": "iball-dok-3t", "description": "Pitch angle with incoming flux direction", "display_type": "timeseries", "is_public": "True", "name": "pitch sunward", "start_date": "1995-08-05T09:37:47Z", "stop_date": "2000-10-15T21:11:00Z", "units": "deg", "xmlid": "it_dok_1ti_pitch"}, "lastModificationDate": "2020-06-25T14:12:10Z", "lastUpdate": "2004-12-02T20:48:02Z", "maxSampling": "32S", "measurement_type": "EnergeticParticles", "name": "time profiles : sunward", "processing_level": "Calibrated", "sampling": "4S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/INTERBALL-Tail/DOK2/iball-dok-3t", "start_date": "1995-08-05T09:37:47Z", "stop_date": "2000-10-15T21:11:00Z", "target": "Earth.Magnetosheath", "xmlid": "iball-dok-3t"}, "iball_dok_4s": {"__spz_name__": "spectra : tailward", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "iball-dok-4s", "att": "auto/iball-dok-4s", "dataSource": "IRAP", "desc": "Ion Spectra : Tailward Flow
MinSampling: 1S; MaxSampling: 32S
Provider: IRAP", "is_public": "True", "it_dok_2si": {"__spz_name__": "ion flux tail", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "it_dok_2si", "dataset": "iball-dok-4s", "display_type": "spectrogram", "is_public": "True", "name": "ion flux tail", "start_date": "1995-08-05T09:45:46Z", "stop_date": "2000-10-15T21:45:07Z", "units": "cm\u207b\u00b2.sr\u207b\u00b9.s\u207b\u00b9.keV\u207b\u00b9", "xmlid": "it_dok_2si"}, "it_dok_2si_dt": {"__spz_name__": "dT", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "it_dok_2si_dt", "dataset": "iball-dok-4s", "description": "Time Exposition", "display_type": "timeseries", "is_public": "True", "name": "dT", "start_date": "1995-08-05T09:45:46Z", "stop_date": "2000-10-15T21:45:07Z", "units": "sec", "xmlid": "it_dok_2si_dt"}, "it_dok_2si_pitch": {"__spz_name__": "pitch tailward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "it_dok_2si_pitch", "dataset": "iball-dok-4s", "description": "Pitch angle with incoming flux direction", "display_type": "timeseries", "is_public": "True", "name": "pitch tailward", "start_date": "1995-08-05T09:45:46Z", "stop_date": "2000-10-15T21:45:07Z", "units": "deg", "xmlid": "it_dok_2si_pitch"}, "it_dok_2si_theta": {"__spz_name__": "theta", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "it_dok_2si_theta", "dataset": "iball-dok-4s", "description": "Detector angle with axe pointed to Sun", "display_type": "timeseries", "is_public": "True", "name": "theta", "start_date": "1995-08-05T09:45:46Z", "stop_date": "2000-10-15T21:45:07Z", "units": "deg", "xmlid": "it_dok_2si_theta"}, "lastModificationDate": "2020-06-25T14:12:20Z", "lastUpdate": "2004-12-16T18:46:24Z", "maxSampling": "32S", "measurement_type": "EnergeticParticles", "name": "spectra : tailward", "processing_level": "Calibrated", "sampling": "1S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/INTERBALL-Tail/DOK2/iball-dok-4s", "start_date": "1995-08-05T09:45:46Z", "stop_date": "2000-10-15T21:45:07Z", "target": "Earth.Magnetosheath", "xmlid": "iball-dok-4s"}, "iball_dok_4t": {"__spz_name__": "time profiles : tailward", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "iball-dok-4t", "att": "auto/iball-dok-4t", "dataSource": "IRAP", "desc": "Ion Time Profiles : Tailward Flow
MinSampling: 4S; MaxSampling: 32S
Provider: IRAP", "is_public": "True", "it_dok_2ti": {"__spz_name__": "ions flux tailward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "it_dok_2ti", "dataset": "iball-dok-4t", "display_type": "timeseries", "is_public": "True", "it_dok_2ti0": {"__spz_name__": "21 - 28 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "it_dok_2ti(0)", "dataset": "iball-dok-4t", "index1": "0", "is_public": "True", "name": "21 - 28 keV", "parameter": "it_dok_2ti", "start_date": "1995-08-05T06:09:39Z", "stop_date": "2000-10-15T22:02:58Z", "xmlid": "it_dok_2ti(0)"}, "it_dok_2ti1": {"__spz_name__": "46 - 60 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "it_dok_2ti(1)", "dataset": "iball-dok-4t", "index1": "1", "is_public": "True", "name": "46 - 60 keV", "parameter": "it_dok_2ti", "start_date": "1995-08-05T06:09:39Z", "stop_date": "2000-10-15T22:02:58Z", "xmlid": "it_dok_2ti(1)"}, "it_dok_2ti2": {"__spz_name__": "102 - 133 keV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "it_dok_2ti(2)", "dataset": "iball-dok-4t", "index1": "2", "is_public": "True", "name": "102 - 133 keV", "parameter": "it_dok_2ti", "start_date": "1995-08-05T06:09:39Z", "stop_date": "2000-10-15T22:02:58Z", "xmlid": "it_dok_2ti(2)"}, "name": "ions flux tailward", "size": "3", "start_date": "1995-08-05T06:09:39Z", "stop_date": "2000-10-15T22:02:58Z", "units": "cm\u207b\u00b2.sr\u207b\u00b9.s\u207b\u00b9.keV\u207b\u00b9", "xmlid": "it_dok_2ti"}, "it_dok_2ti_dt": {"__spz_name__": "dT", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "it_dok_2ti_dt", "dataset": "iball-dok-4t", "description": "Time Exposition", "display_type": "timeseries", "is_public": "True", "name": "dT", "start_date": "1995-08-05T06:09:39Z", "stop_date": "2000-10-15T22:02:58Z", "units": "sec", "xmlid": "it_dok_2ti_dt"}, "it_dok_2ti_pitch": {"__spz_name__": "pitch tailward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "it_dok_2ti_pitch", "dataset": "iball-dok-4t", "description": "Pitch angle with incoming flux direction", "display_type": "timeseries", "is_public": "True", "name": "pitch tailward", "start_date": "1995-08-05T06:09:39Z", "stop_date": "2000-10-15T22:02:58Z", "units": "deg", "xmlid": "it_dok_2ti_pitch"}, "it_dok_2ti_theta": {"__spz_name__": "theta", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "it_dok_2ti_theta", "dataset": "iball-dok-4t", "description": "Detector angle with axe pointed to Sun", "display_type": "timeseries", "is_public": "True", "name": "theta", "start_date": "1995-08-05T06:09:39Z", "stop_date": "2000-10-15T22:02:58Z", "units": "deg", "xmlid": "it_dok_2ti_theta"}, "lastModificationDate": "2020-06-25T14:12:12Z", "lastUpdate": "2004-12-02T20:49:42Z", "maxSampling": "32S", "measurement_type": "EnergeticParticles", "name": "time profiles : tailward", "processing_level": "Calibrated", "sampling": "4S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/INTERBALL-Tail/DOK2/iball-dok-4t", "start_date": "1995-08-05T06:09:39Z", "stop_date": "2000-10-15T22:02:58Z", "target": "Earth.Magnetosheath", "xmlid": "iball-dok-4t"}, "is_public": "True", "name": "ions", "xmlid": "int-dok-ion"}, "is_public": "True", "name": "DOK2", "xmlid": "Interball-Tail_dok2"}, "Ephemeris": {"__spz_name__": "Ephemeris", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Interball-Tail_ephemeris", "att": "auto/Interball-Tail_ephemeris", "desc": "", "intt_orb_all": {"__spz_name__": "orbit", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "intt-orb-all", "att": "auto/intt-orb-all", "dataSource": "CDAWeb", "desc": "
Sampling: 2M
Provider: CDAWeb", "is_public": "True", "it_xyz": {"__spz_name__": "xyz_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "it_xyz", "dataset": "intt-orb-all", "description": "Interball-1 spacecraft position in GSE frame, 3 components in RE (6370km)", "display_type": "timeseries", "is_public": "True", "it_xyz0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "it_xyz(0)", "dataset": "intt-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "it_xyz", "start_date": "1995-08-04T00:01:00Z", "stop_date": "2000-10-16T13:55:00Z", "xmlid": "it_xyz(0)"}, "it_xyz1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "it_xyz(1)", "dataset": "intt-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "it_xyz", "start_date": "1995-08-04T00:01:00Z", "stop_date": "2000-10-16T13:55:00Z", "xmlid": "it_xyz(1)"}, "it_xyz2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "it_xyz(2)", "dataset": "intt-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "it_xyz", "start_date": "1995-08-04T00:01:00Z", "stop_date": "2000-10-16T13:55:00Z", "xmlid": "it_xyz(2)"}, "name": "xyz_gse", "size": "3", "start_date": "1995-08-04T00:01:00Z", "stop_date": "2000-10-16T13:55:00Z", "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "Re", "xmlid": "it_xyz"}, "it_xyz_gsm": {"__spz_name__": "xyz_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "it_xyz_gsm", "dataset": "intt-orb-all", "description": "Interball-1 spacecraft position in GSM frame, 3 components in RE (6370km)", "display_type": "timeseries", "is_public": "True", "it_xyz_gsm0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "it_xyz_gsm(0)", "dataset": "intt-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "it_xyz_gsm", "start_date": "1995-08-04T00:01:00Z", "stop_date": "2000-10-16T13:55:00Z", "xmlid": "it_xyz_gsm(0)"}, "it_xyz_gsm1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "it_xyz_gsm(1)", "dataset": "intt-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "it_xyz_gsm", "start_date": "1995-08-04T00:01:00Z", "stop_date": "2000-10-16T13:55:00Z", "xmlid": "it_xyz_gsm(1)"}, "it_xyz_gsm2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "it_xyz_gsm(2)", "dataset": "intt-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "it_xyz_gsm", "start_date": "1995-08-04T00:01:00Z", "stop_date": "2000-10-16T13:55:00Z", "xmlid": "it_xyz_gsm(2)"}, "name": "xyz_gsm", "size": "3", "start_date": "1995-08-04T00:01:00Z", "stop_date": "2000-10-16T13:55:00Z", "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "Re", "xmlid": "it_xyz_gsm"}, "lastModificationDate": "2012-03-06T16:37:56Z", "lastUpdate": "2013-05-24T12:42:32Z", "measurement_type": "Ephemeris", "name": "orbit", "processing_level": "Calibrated", "sampling": "2M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/INTERBALL-Tail/Ephemeris/intt-orb-all", "start_date": "1995-08-04T00:01:00Z", "stop_date": "2000-10-16T13:55:00Z", "target": "Earth.Magnetosphere", "xmlid": "intt-orb-all"}, "is_public": "True", "name": "Ephemeris", "xmlid": "Interball-Tail_ephemeris"}, "MIF_M": {"__spz_name__": "MIF-M", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Interball-Tail_mifm", "att": "auto/Interball-Tail_mifm", "desc": "Multicomponent Investigations of Fluctuations of Magnetic Fields
Magnetometer", "iball_mif_hr": {"__spz_name__": "high resolution", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "iball-mif-hr", "att": "auto/iball-mif-hr", "dataSource": "cdpp-archive.cnes.fr", "desc": "
MinSampling: 0.1S; MaxSampling: 4S
Provider: cdpp-archive.cnes.fr", "is_public": "True", "it_b_gse": {"__spz_name__": "b_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "it_b_gse", "dataset": "iball-mif-hr", "description": "Magnetic Field,cartesian GSE", "display_type": "timeseries", "is_public": "True", "it_b_gse0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "it_b_gse(0)", "dataset": "iball-mif-hr", "index1": "0", "is_public": "True", "name": "bx", "parameter": "it_b_gse", "start_date": "1995-08-06T05:34:16Z", "stop_date": "2000-10-15T22:12:55Z", "xmlid": "it_b_gse(0)"}, "it_b_gse1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "it_b_gse(1)", "dataset": "iball-mif-hr", "index1": "1", "is_public": "True", "name": "by", "parameter": "it_b_gse", "start_date": "1995-08-06T05:34:16Z", "stop_date": "2000-10-15T22:12:55Z", "xmlid": "it_b_gse(1)"}, "it_b_gse2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "it_b_gse(2)", "dataset": "iball-mif-hr", "index1": "2", "is_public": "True", "name": "bz", "parameter": "it_b_gse", "start_date": "1995-08-06T05:34:16Z", "stop_date": "2000-10-15T22:12:55Z", "xmlid": "it_b_gse(2)"}, "name": "b_gse", "size": "3", "start_date": "1995-08-06T05:34:16Z", "stop_date": "2000-10-15T22:12:55Z", "ucd": "phys.magField", "units": "nT", "xmlid": "it_b_gse"}, "it_b_gsm": {"__spz_name__": "b_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "it_b_gsm", "dataset": "iball-mif-hr", "description": "Magnetic Field, cartesian GSM", "display_type": "timeseries", "is_public": "True", "it_b_gsm0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "it_b_gsm(0)", "dataset": "iball-mif-hr", "index1": "0", "is_public": "True", "name": "bx", "parameter": "it_b_gsm", "start_date": "1995-08-06T05:34:16Z", "stop_date": "2000-10-15T22:12:55Z", "xmlid": "it_b_gsm(0)"}, "it_b_gsm1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "it_b_gsm(1)", "dataset": "iball-mif-hr", "index1": "1", "is_public": "True", "name": "by", "parameter": "it_b_gsm", "start_date": "1995-08-06T05:34:16Z", "stop_date": "2000-10-15T22:12:55Z", "xmlid": "it_b_gsm(1)"}, "it_b_gsm2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "it_b_gsm(2)", "dataset": "iball-mif-hr", "index1": "2", "is_public": "True", "name": "bz", "parameter": "it_b_gsm", "start_date": "1995-08-06T05:34:16Z", "stop_date": "2000-10-15T22:12:55Z", "xmlid": "it_b_gsm(2)"}, "name": "b_gsm", "size": "3", "start_date": "1995-08-06T05:34:16Z", "stop_date": "2000-10-15T22:12:55Z", "ucd": "phys.magField", "units": "nT", "xmlid": "it_b_gsm"}, "it_b_tot": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "it_b_tot", "dataset": "iball-mif-hr", "is_public": "True", "name": "|b|", "start_date": "1995-08-06T05:34:16Z", "stop_date": "2000-10-15T22:12:55Z", "units": "nT", "xmlid": "it_b_tot"}, "lastModificationDate": "2020-07-10T12:56:48Z", "lastUpdate": "2020-07-10T12:55:42Z", "maxSampling": "4S", "measurement_type": "MagneticField", "name": "high resolution", "processing_level": "Calibrated", "sampling": "0.1S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/INTERBALL-Tail/MIF-FM/iball-mif-hr", "start_date": "1995-08-06T05:34:16Z", "stop_date": "2000-10-15T22:12:55Z", "target": "Earth.Magnetosheath", "xmlid": "iball-mif-hr"}, "intt_fm_kp": {"__spz_name__": "key parameters", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "intt-fm-kp", "att": "auto/intt-fm-kp", "b_it": {"__spz_name__": "b_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_it", "b_it0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_it(0)", "dataset": "intt-fm-kp", "index1": "0", "is_public": "True", "name": "bx", "parameter": "b_it", "start_date": "1995-08-06T05:35:00Z", "stop_date": "2000-10-16T01:17:00Z", "xmlid": "b_it(0)"}, "b_it1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_it(1)", "dataset": "intt-fm-kp", "index1": "1", "is_public": "True", "name": "by", "parameter": "b_it", "start_date": "1995-08-06T05:35:00Z", "stop_date": "2000-10-16T01:17:00Z", "xmlid": "b_it(1)"}, "b_it2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_it(2)", "dataset": "intt-fm-kp", "index1": "2", "is_public": "True", "name": "bz", "parameter": "b_it", "start_date": "1995-08-06T05:35:00Z", "stop_date": "2000-10-16T01:17:00Z", "xmlid": "b_it(2)"}, "dataset": "intt-fm-kp", "description": "Magnetic Field, 120 sec, cartesian GSE", "display_type": "timeseries", "is_public": "True", "name": "b_gse", "size": "3", "start_date": "1995-08-06T05:35:00Z", "stop_date": "2000-10-16T01:17:00Z", "ucd": "phys.magField", "units": "nT", "xmlid": "b_it"}, "b_it_abs": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_it_abs", "dataset": "intt-fm-kp", "description": "TBD", "is_public": "True", "name": "|b|", "start_date": "1995-08-06T05:35:00Z", "stop_date": "2000-10-16T01:17:00Z", "units": "nT", "xmlid": "b_it_abs"}, "b_it_gsm": {"__spz_name__": "b_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_it_gsm", "b_it_gsm0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_it_gsm(0)", "dataset": "intt-fm-kp", "index1": "0", "is_public": "True", "name": "bx", "parameter": "b_it_gsm", "start_date": "1995-08-06T05:35:00Z", "stop_date": "2000-10-16T01:17:00Z", "xmlid": "b_it_gsm(0)"}, "b_it_gsm1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_it_gsm(1)", "dataset": "intt-fm-kp", "index1": "1", "is_public": "True", "name": "by", "parameter": "b_it_gsm", "start_date": "1995-08-06T05:35:00Z", "stop_date": "2000-10-16T01:17:00Z", "xmlid": "b_it_gsm(1)"}, "b_it_gsm2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_it_gsm(2)", "dataset": "intt-fm-kp", "index1": "2", "is_public": "True", "name": "bz", "parameter": "b_it_gsm", "start_date": "1995-08-06T05:35:00Z", "stop_date": "2000-10-16T01:17:00Z", "xmlid": "b_it_gsm(2)"}, "dataset": "intt-fm-kp", "description": "Magnetic Field, 120 sec, cartesian GSM", "display_type": "timeseries", "is_public": "True", "name": "b_gsm", "size": "3", "start_date": "1995-08-06T05:35:00Z", "stop_date": "2000-10-16T01:17:00Z", "ucd": "phys.magField", "units": "nT", "xmlid": "b_it_gsm"}, "dataSource": "CDAWeb", "desc": "
Sampling: 2M
Provider: CDAWeb", "is_public": "True", "lastModificationDate": "2012-03-06T16:38:22Z", "lastUpdate": "2012-03-06T16:38:45Z", "measurement_type": "MagneticField", "name": "key parameters", "processing_level": "Calibrated", "sampling": "2M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/INTERBALL-Tail/MIF-FM/intt-fm-kp", "start_date": "1995-08-06T05:35:00Z", "stop_date": "2000-10-16T01:17:00Z", "target": "Heliosphere.NearEarth", "xmlid": "intt-fm-kp"}, "is_public": "True", "name": "MIF-M", "xmlid": "Interball-Tail_mifm"}, "__spz_name__": "Interball Tail", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Interball-Tail", "att": "auto/Interball-Tail", "desc": "
1995-08-02T23:59:11 - 2000-10-16T00:00:00", "is_public": "True", "name": "Interball Tail", "target": "Earth.Magnetosphere", "xmlid": "Interball-Tail"}, "__spz_name__": "Interball", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Interball", "att": "auto/Interball", "desc": "
1995-08-02T23:59:11 - 2000-10-16T00:00:00", "is_public": "True", "name": "Interball", "rank": "6", "target": "Earth.Magnetosphere", "xmlid": "Interball"}, "JASON3": {"AMBRE": {"__spz_name__": "AMBRE", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "JASON3_ambre", "att": "auto/JASON3_ambre", "desc": "Active Monitor Box of Electrostatic Risks
ElectrostaticAnalyser", "is_public": "True", "jason_amb_ele": {"__spz_name__": "electron counts", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "jason-amb-ele", "att": "auto/jason-amb-ele", "dataSource": "CNES", "desc": "
Sampling: 0.522S
Provider: CNES", "is_public": "True", "jason_amb_ect1": {"__spz_name__": "count rate ELE1", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jason_amb_ect1", "dataset": "jason-amb-ele", "description": "High resolution electron count rate data for ELE1 detection head", "display_type": "spectrogram", "is_public": "True", "name": "count rate ELE1", "start_date": "2016-02-08T10:23:43Z", "stop_date": "2023-06-18T23:16:16Z", "units": "s-1", "xmlid": "jason_amb_ect1"}, "jason_amb_ect1234": {"__spz_name__": "count rate ELE1234", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jason_amb_ect1234", "dataset": "jason-amb-ele", "description": "Mean of electron count rate data for ELE1, ELE2, ELE3 and ELE4 detection heads", "display_type": "spectrogram", "is_public": "True", "name": "count rate ELE1234", "start_date": "2016-02-08T10:23:43Z", "stop_date": "2023-06-18T23:16:16Z", "units": "s-1", "xmlid": "jason_amb_ect1234"}, "jason_amb_ect2": {"__spz_name__": "count rate ELE2", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jason_amb_ect2", "dataset": "jason-amb-ele", "description": "High resolution electron count rate data for ELE2 detection head", "display_type": "spectrogram", "is_public": "True", "name": "count rate ELE2", "start_date": "2016-02-08T10:23:43Z", "stop_date": "2023-06-18T23:16:16Z", "units": "s-1", "xmlid": "jason_amb_ect2"}, "jason_amb_ect3": {"__spz_name__": "count rate ELE3", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jason_amb_ect3", "dataset": "jason-amb-ele", "description": "High resolution electron count rate data for ELE3 detection head", "display_type": "spectrogram", "is_public": "True", "name": "count rate ELE3", "start_date": "2016-02-08T10:23:43Z", "stop_date": "2023-06-18T23:16:16Z", "units": "s-1", "xmlid": "jason_amb_ect3"}, "jason_amb_ect4": {"__spz_name__": "count rate ELE4", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jason_amb_ect4", "dataset": "jason-amb-ele", "description": "High resolution electron count rate data for ELE4 detection head", "display_type": "spectrogram", "is_public": "True", "name": "count rate ELE4", "start_date": "2016-02-08T10:23:43Z", "stop_date": "2023-06-18T23:16:16Z", "units": "s-1", "xmlid": "jason_amb_ect4"}, "jason_amb_epa1": {"__spz_name__": "pa ELE1", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jason_amb_epa1", "dataset": "jason-amb-ele", "description": "pitch angle", "display_type": "timeseries", "is_public": "True", "name": "pa ELE1", "start_date": "2016-02-08T10:23:43Z", "stop_date": "2023-06-18T23:16:16Z", "units": "deg", "xmlid": "jason_amb_epa1"}, "jason_amb_epa2": {"__spz_name__": "pa ELE2", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jason_amb_epa2", "dataset": "jason-amb-ele", "description": "pitch angle", "display_type": "timeseries", "is_public": "True", "name": "pa ELE2", "start_date": "2016-02-08T10:23:43Z", "stop_date": "2023-06-18T23:16:16Z", "units": "deg", "xmlid": "jason_amb_epa2"}, "jason_amb_epa3": {"__spz_name__": "pa ELE3", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jason_amb_epa3", "dataset": "jason-amb-ele", "description": "pitch angle", "display_type": "timeseries", "is_public": "True", "name": "pa ELE3", "start_date": "2016-02-08T10:23:43Z", "stop_date": "2023-06-18T23:16:16Z", "units": "deg", "xmlid": "jason_amb_epa3"}, "jason_amb_epa4": {"__spz_name__": "pa ELE4", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jason_amb_epa4", "dataset": "jason-amb-ele", "description": "pitch angle", "display_type": "timeseries", "is_public": "True", "name": "pa ELE4", "start_date": "2016-02-08T10:23:43Z", "stop_date": "2023-06-18T23:16:16Z", "units": "deg", "xmlid": "jason_amb_epa4"}, "jason_amb_epaeq1": {"__spz_name__": "Eq pa ELE1", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jason_amb_epaeq1", "dataset": "jason-amb-ele", "description": "equatorial pitch angle", "display_type": "timeseries", "is_public": "True", "name": "Eq pa ELE1", "start_date": "2016-02-08T10:23:43Z", "stop_date": "2023-06-18T23:16:16Z", "units": "deg", "xmlid": "jason_amb_epaeq1"}, "jason_amb_epaeq2": {"__spz_name__": "Eq pa ELE2", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jason_amb_epaeq2", "dataset": "jason-amb-ele", "description": "equatorial pitch angle", "display_type": "timeseries", "is_public": "True", "name": "Eq pa ELE2", "start_date": "2016-02-08T10:23:43Z", "stop_date": "2023-06-18T23:16:16Z", "units": "deg", "xmlid": "jason_amb_epaeq2"}, "jason_amb_epaeq3": {"__spz_name__": "Eq pa ELE3", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jason_amb_epaeq3", "dataset": "jason-amb-ele", "description": "equatorial pitch angle", "display_type": "timeseries", "is_public": "True", "name": "Eq pa ELE3", "start_date": "2016-02-08T10:23:43Z", "stop_date": "2023-06-18T23:16:16Z", "units": "deg", "xmlid": "jason_amb_epaeq3"}, "jason_amb_epaeq4": {"__spz_name__": "Eq pa ELE4", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jason_amb_epaeq4", "dataset": "jason-amb-ele", "description": "equatorial pitch angle", "display_type": "timeseries", "is_public": "True", "name": "Eq pa ELE4", "start_date": "2016-02-08T10:23:43Z", "stop_date": "2023-06-18T23:16:16Z", "units": "deg", "xmlid": "jason_amb_epaeq4"}, "lastModificationDate": "2024-10-03T17:07:54Z", "lastUpdate": "2024-10-03T07:08:40Z", "measurement_type": "EnergeticParticles", "name": "electron counts", "processing_level": "Calibrated", "sampling": "0.522S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/JASON3/AMBRE/jason-amb-ele", "start_date": "2016-02-08T10:23:43Z", "stop_date": "2023-06-18T23:16:16Z", "target": "Earth.Magnetosphere", "xmlid": "jason-amb-ele"}, "jason_amb_ion": {"__spz_name__": "ion counts", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "jason-amb-ion", "att": "auto/jason-amb-ion", "dataSource": "CNES", "desc": "
Sampling: 0.522S
Provider: CNES", "is_public": "True", "jason_amb_ict1": {"__spz_name__": "count rate ION1", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jason_amb_ict1", "dataset": "jason-amb-ion", "description": "High resolution ion count rate data for ION1 detection head", "display_type": "spectrogram", "is_public": "True", "name": "count rate ION1", "start_date": "2016-02-08T10:23:43Z", "stop_date": "2023-06-18T23:16:16Z", "units": "s-1", "xmlid": "jason_amb_ict1"}, "jason_amb_ict1234": {"__spz_name__": "count rate ION1234", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jason_amb_ict1234", "dataset": "jason-amb-ion", "description": "Mean of ion count rate data for ION1, ION2, ION3 and ION4 detection heads", "display_type": "spectrogram", "is_public": "True", "name": "count rate ION1234", "start_date": "2016-02-08T10:23:43Z", "stop_date": "2023-06-18T23:16:16Z", "units": "s-1", "xmlid": "jason_amb_ict1234"}, "jason_amb_ict2": {"__spz_name__": "count rate ION2", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jason_amb_ict2", "dataset": "jason-amb-ion", "description": "High resolution ion count rate data for ION2 detection head", "display_type": "spectrogram", "is_public": "True", "name": "count rate ION2", "start_date": "2016-02-08T10:23:43Z", "stop_date": "2023-06-18T23:16:16Z", "units": "s-1", "xmlid": "jason_amb_ict2"}, "jason_amb_ict3": {"__spz_name__": "count rate ION3", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jason_amb_ict3", "dataset": "jason-amb-ion", "description": "High resolution ion count rate data for ION3 detection head", "display_type": "spectrogram", "is_public": "True", "name": "count rate ION3", "start_date": "2016-02-08T10:23:43Z", "stop_date": "2023-06-18T23:16:16Z", "units": "s-1", "xmlid": "jason_amb_ict3"}, "jason_amb_ict4": {"__spz_name__": "count rate ION4", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jason_amb_ict4", "dataset": "jason-amb-ion", "description": "High resolution ion count rate data for ION4 detection head", "display_type": "spectrogram", "is_public": "True", "name": "count rate ION4", "start_date": "2016-02-08T10:23:43Z", "stop_date": "2023-06-18T23:16:16Z", "units": "s-1", "xmlid": "jason_amb_ict4"}, "jason_amb_ipa1": {"__spz_name__": "pa ION1", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jason_amb_ipa1", "dataset": "jason-amb-ion", "description": "pitch angle", "display_type": "timeseries", "is_public": "True", "name": "pa ION1", "start_date": "2016-02-08T10:23:43Z", "stop_date": "2023-06-18T23:16:16Z", "units": "deg", "xmlid": "jason_amb_ipa1"}, "jason_amb_ipa2": {"__spz_name__": "pa ION2", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jason_amb_ipa2", "dataset": "jason-amb-ion", "description": "pitch angle", "display_type": "timeseries", "is_public": "True", "name": "pa ION2", "start_date": "2016-02-08T10:23:43Z", "stop_date": "2023-06-18T23:16:16Z", "units": "deg", "xmlid": "jason_amb_ipa2"}, "jason_amb_ipa3": {"__spz_name__": "pa ION3", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jason_amb_ipa3", "dataset": "jason-amb-ion", "description": "pitch angle", "display_type": "timeseries", "is_public": "True", "name": "pa ION3", "start_date": "2016-02-08T10:23:43Z", "stop_date": "2023-06-18T23:16:16Z", "units": "deg", "xmlid": "jason_amb_ipa3"}, "jason_amb_ipa4": {"__spz_name__": "pa ION4", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jason_amb_ipa4", "dataset": "jason-amb-ion", "description": "pitch angle", "display_type": "timeseries", "is_public": "True", "name": "pa ION4", "start_date": "2016-02-08T10:23:43Z", "stop_date": "2023-06-18T23:16:16Z", "units": "deg", "xmlid": "jason_amb_ipa4"}, "jason_amb_ipaeq1": {"__spz_name__": "Eq pa ION1", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jason_amb_ipaeq1", "dataset": "jason-amb-ion", "description": "equatorial pitch angle", "display_type": "timeseries", "is_public": "True", "name": "Eq pa ION1", "start_date": "2016-02-08T10:23:43Z", "stop_date": "2023-06-18T23:16:16Z", "units": "deg", "xmlid": "jason_amb_ipaeq1"}, "jason_amb_ipaeq2": {"__spz_name__": "Eq pa ION2", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jason_amb_ipaeq2", "dataset": "jason-amb-ion", "description": "equatorial pitch angle", "display_type": "timeseries", "is_public": "True", "name": "Eq pa ION2", "start_date": "2016-02-08T10:23:43Z", "stop_date": "2023-06-18T23:16:16Z", "units": "deg", "xmlid": "jason_amb_ipaeq2"}, "jason_amb_ipaeq3": {"__spz_name__": "Eq pa ION3", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jason_amb_ipaeq3", "dataset": "jason-amb-ion", "description": "equatorial pitch angle", "display_type": "timeseries", "is_public": "True", "name": "Eq pa ION3", "start_date": "2016-02-08T10:23:43Z", "stop_date": "2023-06-18T23:16:16Z", "units": "deg", "xmlid": "jason_amb_ipaeq3"}, "jason_amb_ipaeq4": {"__spz_name__": "Eq pa ION4", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jason_amb_ipaeq4", "dataset": "jason-amb-ion", "description": "equatorial pitch angle", "display_type": "timeseries", "is_public": "True", "name": "Eq pa ION4", "start_date": "2016-02-08T10:23:43Z", "stop_date": "2023-06-18T23:16:16Z", "units": "deg", "xmlid": "jason_amb_ipaeq4"}, "lastModificationDate": "2024-10-06T06:11:22Z", "lastUpdate": "2024-10-06T06:11:21Z", "measurement_type": "EnergeticParticles", "name": "ion counts", "processing_level": "Calibrated", "sampling": "0.522S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/JASON3/AMBRE/jason-amb-ion", "start_date": "2016-02-08T10:23:43Z", "stop_date": "2023-06-18T23:16:16Z", "target": "Earth.Magnetosphere", "xmlid": "jason-amb-ion"}, "jason_amb_mag": {"__spz_name__": "mag", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "jason-amb-mag", "att": "auto/jason-amb-mag", "dataSource": "CNES", "desc": "
Sampling: 0.522S
Provider: CNES", "is_public": "True", "jason_amb_b": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jason_amb_b", "dataset": "jason-amb-mag", "description": "calculated magnetic field strength", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "2016-02-08T10:23:43Z", "stop_date": "2023-06-18T23:16:16Z", "units": "nT", "xmlid": "jason_amb_b"}, "jason_amb_beq": {"__spz_name__": "|b_eq|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jason_amb_beq", "dataset": "jason-amb-mag", "description": "calculated magnetic field strength at magnetic equator", "display_type": "timeseries", "is_public": "True", "name": "|b_eq|", "start_date": "2016-02-08T10:23:43Z", "stop_date": "2023-06-18T23:16:16Z", "units": "nT", "xmlid": "jason_amb_beq"}, "jason_amb_i": {"__spz_name__": "I", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jason_amb_i", "dataset": "jason-amb-mag", "description": "Longitudinal adiabatic invariant", "display_type": "timeseries", "is_public": "True", "name": "I", "start_date": "2016-02-08T10:23:43Z", "stop_date": "2023-06-18T23:16:16Z", "xmlid": "jason_amb_i"}, "lastModificationDate": "2024-10-03T18:11:03Z", "lastUpdate": "2024-10-03T07:08:39Z", "measurement_type": "MagneticField", "name": "mag", "processing_level": "Calibrated", "sampling": "0.522S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/JASON3/AMBRE/jason-amb-mag", "start_date": "2016-02-08T10:23:43Z", "stop_date": "2023-06-18T23:16:16Z", "target": "Earth.Magnetosphere", "xmlid": "jason-amb-mag"}, "name": "AMBRE", "xmlid": "JASON3_ambre"}, "Ephemeris": {"__spz_name__": "Ephemeris", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "JASON3_ephemeris", "att": "auto/JASON3_ephemeris", "desc": "", "is_public": "True", "jason_amb_pos": {"__spz_name__": "orbit", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "jason-amb-pos", "att": "auto/jason-amb-pos", "dataSource": "CNES", "desc": "JASON3 position in GEO coordinates, L and L* parameters
Sampling: 0.522S
Provider: CNES", "is_public": "True", "jason_amb_l": {"__spz_name__": "L", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jason_amb_l", "dataset": "jason-amb-pos", "description": "Calculated McIlwain's L parameter", "display_type": "timeseries", "is_public": "True", "name": "L", "start_date": "2016-02-08T10:23:43Z", "stop_date": "2023-06-18T23:16:16Z", "units": "Re", "xmlid": "jason_amb_l"}, "jason_amb_lstar": {"__spz_name__": "L*", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jason_amb_lstar", "dataset": "jason-amb-pos", "description": "Calculated Roederer's L* parameter", "display_type": "timeseries", "is_public": "True", "name": "L*", "start_date": "2016-02-08T10:23:43Z", "stop_date": "2023-06-18T23:16:16Z", "units": "Re", "xmlid": "jason_amb_lstar"}, "jason_amb_mlt": {"__spz_name__": "mlt", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jason_amb_mlt", "dataset": "jason-amb-pos", "description": "Calculated Magnetic Local Time", "display_type": "timeseries", "is_public": "True", "name": "mlt", "start_date": "2016-02-08T10:23:43Z", "stop_date": "2023-06-18T23:16:16Z", "units": "hours", "xmlid": "jason_amb_mlt"}, "jason_amb_xyz": {"__spz_name__": "xyz_geo", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jason_amb_xyz", "dataset": "jason-amb-pos", "display_type": "timeseries", "is_public": "True", "jason_amb_xyz0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jason_amb_xyz(0)", "dataset": "jason-amb-pos", "index1": "0", "is_public": "True", "name": "x", "parameter": "jason_amb_xyz", "start_date": "2016-02-08T10:23:43Z", "stop_date": "2023-06-18T23:16:16Z", "xmlid": "jason_amb_xyz(0)"}, "jason_amb_xyz1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jason_amb_xyz(1)", "dataset": "jason-amb-pos", "index1": "1", "is_public": "True", "name": "y", "parameter": "jason_amb_xyz", "start_date": "2016-02-08T10:23:43Z", "stop_date": "2023-06-18T23:16:16Z", "xmlid": "jason_amb_xyz(1)"}, "jason_amb_xyz2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jason_amb_xyz(2)", "dataset": "jason-amb-pos", "index1": "2", "is_public": "True", "name": "z", "parameter": "jason_amb_xyz", "start_date": "2016-02-08T10:23:43Z", "stop_date": "2023-06-18T23:16:16Z", "xmlid": "jason_amb_xyz(2)"}, "name": "xyz_geo", "size": "3", "start_date": "2016-02-08T10:23:43Z", "stop_date": "2023-06-18T23:16:16Z", "ucd": "pos.ephem;instr.obsty", "units": "km", "xmlid": "jason_amb_xyz"}, "lastModificationDate": "2024-10-03T18:14:53Z", "lastUpdate": "2024-10-03T07:08:41Z", "measurement_type": "Ephemeris", "name": "orbit", "processing_level": "Calibrated", "sampling": "0.522S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/JASON3/Ephemeris/jason-amb-pos", "start_date": "2016-02-08T10:23:43Z", "stop_date": "2023-06-18T23:16:16Z", "target": "Earth.Magnetosphere", "xmlid": "jason-amb-pos"}, "name": "Ephemeris", "xmlid": "JASON3_ephemeris"}, "__spz_name__": "JASON3", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "JASON3", "att": "auto/JASON3", "desc": "
2016-02-08T00:00:00", "is_public": "True", "name": "JASON3", "rank": "6", "target": "Earth.Magnetosphere", "xmlid": "JASON3"}, "JUICE": {"Ephemeris": {"CReMA_3_0": {"__spz_name__": "CReMA 3.0", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "juice-orb-3.0", "is_public": "True", "juice_callisto_cr30": {"__spz_name__": "flybys callisto", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "juice-callisto-cr30", "att": "auto/juice-callisto-cr30", "dataSource": "", "desc": "
Sampling: 5M", "is_public": "True", "juice_cacr30_lat": {"__spz_name__": "lat_cphio", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_cacr30_lat", "dataset": "juice-callisto-cr30", "is_public": "True", "name": "lat_cphio", "start_date": "2030-09-20T12:00:00Z", "stop_date": "2032-02-01T00:00:00Z", "units": "deg", "xmlid": "juice_cacr30_lat"}, "juice_cacr30_lon": {"__spz_name__": "lon_cphio", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_cacr30_lon", "dataset": "juice-callisto-cr30", "is_public": "True", "name": "lon_cphio", "start_date": "2030-09-20T12:00:00Z", "stop_date": "2032-02-01T00:00:00Z", "units": "deg", "xmlid": "juice_cacr30_lon"}, "juice_cacr30_r": {"__spz_name__": "distance juice-callisto", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_cacr30_r", "dataset": "juice-callisto-cr30", "is_public": "True", "name": "distance juice-callisto", "start_date": "2030-09-20T12:00:00Z", "stop_date": "2032-02-01T00:00:00Z", "units": "km", "xmlid": "juice_cacr30_r"}, "juice_cacr30_xyz": {"__spz_name__": "xyz_cphio", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_cacr30_xyz", "dataset": "juice-callisto-cr30", "is_public": "True", "juice_cacr30_xyz0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_cacr30_xyz(0)", "dataset": "juice-callisto-cr30", "index1": "0", "is_public": "True", "name": "x", "parameter": "juice_cacr30_xyz", "start_date": "2030-09-20T12:00:00Z", "stop_date": "2032-02-01T00:00:00Z", "xmlid": "juice_cacr30_xyz(0)"}, "juice_cacr30_xyz1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_cacr30_xyz(1)", "dataset": "juice-callisto-cr30", "index1": "1", "is_public": "True", "name": "y", "parameter": "juice_cacr30_xyz", "start_date": "2030-09-20T12:00:00Z", "stop_date": "2032-02-01T00:00:00Z", "xmlid": "juice_cacr30_xyz(1)"}, "juice_cacr30_xyz2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_cacr30_xyz(2)", "dataset": "juice-callisto-cr30", "index1": "2", "is_public": "True", "name": "z", "parameter": "juice_cacr30_xyz", "start_date": "2030-09-20T12:00:00Z", "stop_date": "2032-02-01T00:00:00Z", "xmlid": "juice_cacr30_xyz(2)"}, "name": "xyz_cphio", "size": "3", "start_date": "2030-09-20T12:00:00Z", "stop_date": "2032-02-01T00:00:00Z", "units": "km", "xmlid": "juice_cacr30_xyz"}, "lastModificationDate": "2020-06-30T11:59:01Z", "lastUpdate": "2020-07-02T14:02:06Z", "measurement_type": "Ephemeris", "name": "flybys callisto", "processing_level": "Calibrated", "sampling": "5M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Juice/Ephemeris/juice-callisto-cr30", "start_date": "2030-09-20T12:00:00Z", "stop_date": "2032-02-01T00:00:00Z", "target": "Jupiter.Callisto", "xmlid": "juice-callisto-cr30"}, "juice_cruise_cr30": {"__spz_name__": "cruise", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "juice-cruise-cr30", "att": "auto/juice-cruise-cr30", "dataSource": "ESA", "desc": "
Sampling: 1H
Provider: ESA", "is_public": "True", "juice_cr30_lat_hci": {"__spz_name__": "lat_hci", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_cr30_lat_hci", "dataset": "juice-cruise-cr30", "is_public": "True", "name": "lat_hci", "start_date": "2022-05-31T23:59:59Z", "stop_date": "2033-06-04T00:00:00Z", "units": "deg", "xmlid": "juice_cr30_lat_hci"}, "juice_cr30_lat_hee": {"__spz_name__": "lat_hee", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_cr30_lat_hee", "dataset": "juice-cruise-cr30", "is_public": "True", "name": "lat_hee", "start_date": "2022-05-31T23:59:59Z", "stop_date": "2033-06-04T00:00:00Z", "units": "deg", "xmlid": "juice_cr30_lat_hee"}, "juice_cr30_lat_iausun": {"__spz_name__": "lat_iau_sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_cr30_lat_iausun", "dataset": "juice-cruise-cr30", "is_public": "True", "name": "lat_iau_sun", "start_date": "2022-05-31T23:59:59Z", "stop_date": "2033-06-04T00:00:00Z", "units": "deg", "xmlid": "juice_cr30_lat_iausun"}, "juice_cr30_lon_hci": {"__spz_name__": "lon_hci", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_cr30_lon_hci", "dataset": "juice-cruise-cr30", "is_public": "True", "name": "lon_hci", "start_date": "2022-05-31T23:59:59Z", "stop_date": "2033-06-04T00:00:00Z", "units": "deg", "xmlid": "juice_cr30_lon_hci"}, "juice_cr30_lon_hee": {"__spz_name__": "lon_hee", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_cr30_lon_hee", "dataset": "juice-cruise-cr30", "is_public": "True", "name": "lon_hee", "start_date": "2022-05-31T23:59:59Z", "stop_date": "2033-06-04T00:00:00Z", "units": "deg", "xmlid": "juice_cr30_lon_hee"}, "juice_cr30_lon_iausun": {"__spz_name__": "lon_iau_sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_cr30_lon_iausun", "dataset": "juice-cruise-cr30", "is_public": "True", "name": "lon_iau_sun", "start_date": "2022-05-31T23:59:59Z", "stop_date": "2033-06-04T00:00:00Z", "units": "deg", "xmlid": "juice_cr30_lon_iausun"}, "juice_cr30_r": {"__spz_name__": "distance juice-sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_cr30_r", "dataset": "juice-cruise-cr30", "is_public": "True", "name": "distance juice-sun", "start_date": "2022-05-31T23:59:59Z", "stop_date": "2033-06-04T00:00:00Z", "units": "AU", "xmlid": "juice_cr30_r"}, "juice_cr30_xyz_hci": {"__spz_name__": "xyz_hci", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_cr30_xyz_hci", "dataset": "juice-cruise-cr30", "is_public": "True", "juice_cr30_xyz_hci0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_cr30_xyz_hci(0)", "dataset": "juice-cruise-cr30", "index1": "0", "is_public": "True", "name": "x", "parameter": "juice_cr30_xyz_hci", "start_date": "2022-05-31T23:59:59Z", "stop_date": "2033-06-04T00:00:00Z", "xmlid": "juice_cr30_xyz_hci(0)"}, "juice_cr30_xyz_hci1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_cr30_xyz_hci(1)", "dataset": "juice-cruise-cr30", "index1": "1", "is_public": "True", "name": "y", "parameter": "juice_cr30_xyz_hci", "start_date": "2022-05-31T23:59:59Z", "stop_date": "2033-06-04T00:00:00Z", "xmlid": "juice_cr30_xyz_hci(1)"}, "juice_cr30_xyz_hci2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_cr30_xyz_hci(2)", "dataset": "juice-cruise-cr30", "index1": "2", "is_public": "True", "name": "z", "parameter": "juice_cr30_xyz_hci", "start_date": "2022-05-31T23:59:59Z", "stop_date": "2033-06-04T00:00:00Z", "xmlid": "juice_cr30_xyz_hci(2)"}, "name": "xyz_hci", "size": "3", "start_date": "2022-05-31T23:59:59Z", "stop_date": "2033-06-04T00:00:00Z", "units": "AU", "xmlid": "juice_cr30_xyz_hci"}, "juice_cr30_xyz_hee": {"__spz_name__": "xyz_hee", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_cr30_xyz_hee", "dataset": "juice-cruise-cr30", "is_public": "True", "juice_cr30_xyz_hee0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_cr30_xyz_hee(0)", "dataset": "juice-cruise-cr30", "index1": "0", "is_public": "True", "name": "x", "parameter": "juice_cr30_xyz_hee", "start_date": "2022-05-31T23:59:59Z", "stop_date": "2033-06-04T00:00:00Z", "xmlid": "juice_cr30_xyz_hee(0)"}, "juice_cr30_xyz_hee1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_cr30_xyz_hee(1)", "dataset": "juice-cruise-cr30", "index1": "1", "is_public": "True", "name": "y", "parameter": "juice_cr30_xyz_hee", "start_date": "2022-05-31T23:59:59Z", "stop_date": "2033-06-04T00:00:00Z", "xmlid": "juice_cr30_xyz_hee(1)"}, "juice_cr30_xyz_hee2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_cr30_xyz_hee(2)", "dataset": "juice-cruise-cr30", "index1": "2", "is_public": "True", "name": "z", "parameter": "juice_cr30_xyz_hee", "start_date": "2022-05-31T23:59:59Z", "stop_date": "2033-06-04T00:00:00Z", "xmlid": "juice_cr30_xyz_hee(2)"}, "name": "xyz_hee", "size": "3", "start_date": "2022-05-31T23:59:59Z", "stop_date": "2033-06-04T00:00:00Z", "units": "AU", "xmlid": "juice_cr30_xyz_hee"}, "juice_cr30_xyz_iausun": {"__spz_name__": "xyz_iau_sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_cr30_xyz_iausun", "dataset": "juice-cruise-cr30", "is_public": "True", "juice_cr30_xyz_iausun0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_cr30_xyz_iausun(0)", "dataset": "juice-cruise-cr30", "index1": "0", "is_public": "True", "name": "x", "parameter": "juice_cr30_xyz_iausun", "start_date": "2022-05-31T23:59:59Z", "stop_date": "2033-06-04T00:00:00Z", "xmlid": "juice_cr30_xyz_iausun(0)"}, "juice_cr30_xyz_iausun1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_cr30_xyz_iausun(1)", "dataset": "juice-cruise-cr30", "index1": "1", "is_public": "True", "name": "y", "parameter": "juice_cr30_xyz_iausun", "start_date": "2022-05-31T23:59:59Z", "stop_date": "2033-06-04T00:00:00Z", "xmlid": "juice_cr30_xyz_iausun(1)"}, "juice_cr30_xyz_iausun2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_cr30_xyz_iausun(2)", "dataset": "juice-cruise-cr30", "index1": "2", "is_public": "True", "name": "z", "parameter": "juice_cr30_xyz_iausun", "start_date": "2022-05-31T23:59:59Z", "stop_date": "2033-06-04T00:00:00Z", "xmlid": "juice_cr30_xyz_iausun(2)"}, "name": "xyz_iau_sun", "size": "3", "start_date": "2022-05-31T23:59:59Z", "stop_date": "2033-06-04T00:00:00Z", "units": "AU", "xmlid": "juice_cr30_xyz_iausun"}, "lastModificationDate": "2020-06-26T16:39:38Z", "lastUpdate": "2020-06-26T16:15:08Z", "measurement_type": "Ephemeris", "name": "cruise", "processing_level": "Calibrated", "sampling": "1H", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Juice/Ephemeris/juice-cruise-cr30", "start_date": "2022-05-31T23:59:59Z", "stop_date": "2033-06-04T00:00:00Z", "target": "Heliosphere", "xmlid": "juice-cruise-cr30"}, "juice_europa_cr30": {"__spz_name__": "flybys europa", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "juice-europa-cr30", "att": "auto/juice-europa-cr30", "dataSource": "", "desc": "
Sampling: 5M", "is_public": "True", "juice_eucr30_lat": {"__spz_name__": "lat_ephio", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_eucr30_lat", "dataset": "juice-europa-cr30", "is_public": "True", "name": "lat_ephio", "start_date": "2030-09-27T07:00:00Z", "stop_date": "2030-10-20T18:00:00Z", "units": "deg", "xmlid": "juice_eucr30_lat"}, "juice_eucr30_lon": {"__spz_name__": "lon_ephio", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_eucr30_lon", "dataset": "juice-europa-cr30", "is_public": "True", "name": "lon_ephio", "start_date": "2030-09-27T07:00:00Z", "stop_date": "2030-10-20T18:00:00Z", "units": "deg", "xmlid": "juice_eucr30_lon"}, "juice_eucr30_r": {"__spz_name__": "distance juice-europa", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_eucr30_r", "dataset": "juice-europa-cr30", "is_public": "True", "name": "distance juice-europa", "start_date": "2030-09-27T07:00:00Z", "stop_date": "2030-10-20T18:00:00Z", "units": "km", "xmlid": "juice_eucr30_r"}, "juice_eucr30_xyz": {"__spz_name__": "xyz_ephio", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_eucr30_xyz", "dataset": "juice-europa-cr30", "is_public": "True", "juice_eucr30_xyz0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_eucr30_xyz(0)", "dataset": "juice-europa-cr30", "index1": "0", "is_public": "True", "name": "x", "parameter": "juice_eucr30_xyz", "start_date": "2030-09-27T07:00:00Z", "stop_date": "2030-10-20T18:00:00Z", "xmlid": "juice_eucr30_xyz(0)"}, "juice_eucr30_xyz1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_eucr30_xyz(1)", "dataset": "juice-europa-cr30", "index1": "1", "is_public": "True", "name": "y", "parameter": "juice_eucr30_xyz", "start_date": "2030-09-27T07:00:00Z", "stop_date": "2030-10-20T18:00:00Z", "xmlid": "juice_eucr30_xyz(1)"}, "juice_eucr30_xyz2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_eucr30_xyz(2)", "dataset": "juice-europa-cr30", "index1": "2", "is_public": "True", "name": "z", "parameter": "juice_eucr30_xyz", "start_date": "2030-09-27T07:00:00Z", "stop_date": "2030-10-20T18:00:00Z", "xmlid": "juice_eucr30_xyz(2)"}, "name": "xyz_ephio", "size": "3", "start_date": "2030-09-27T07:00:00Z", "stop_date": "2030-10-20T18:00:00Z", "units": "km", "xmlid": "juice_eucr30_xyz"}, "lastModificationDate": "2020-06-30T12:14:04Z", "lastUpdate": "2020-07-02T14:05:08Z", "measurement_type": "Ephemeris", "name": "flybys europa", "processing_level": "Calibrated", "sampling": "5M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Juice/Ephemeris/juice-europa-cr30", "start_date": "2030-09-27T07:00:00Z", "stop_date": "2030-10-20T18:00:00Z", "target": "Jupiter.Europa", "xmlid": "juice-europa-cr30"}, "juice_ganymede_cr30": {"__spz_name__": "orbit ganymede", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "juice-ganymede-cr30", "att": "auto/juice-ganymede-cr30", "dataSource": "", "desc": "
Sampling: 1H", "is_public": "True", "juice_gacr30_lat": {"__spz_name__": "lat_gphio", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_gacr30_lat", "dataset": "juice-ganymede-cr30", "is_public": "True", "name": "lat_gphio", "start_date": "2030-05-01T07:00:00Z", "stop_date": "2033-06-04T00:00:00Z", "units": "deg", "xmlid": "juice_gacr30_lat"}, "juice_gacr30_lon": {"__spz_name__": "lon_gphio", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_gacr30_lon", "dataset": "juice-ganymede-cr30", "is_public": "True", "name": "lon_gphio", "start_date": "2030-05-01T07:00:00Z", "stop_date": "2033-06-04T00:00:00Z", "units": "deg", "xmlid": "juice_gacr30_lon"}, "juice_gacr30_r": {"__spz_name__": "distance juice-ganymede", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_gacr30_r", "dataset": "juice-ganymede-cr30", "is_public": "True", "name": "distance juice-ganymede", "start_date": "2030-05-01T07:00:00Z", "stop_date": "2033-06-04T00:00:00Z", "units": "km", "xmlid": "juice_gacr30_r"}, "juice_gacr30_xyz": {"__spz_name__": "xyz_gphio", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_gacr30_xyz", "dataset": "juice-ganymede-cr30", "is_public": "True", "juice_gacr30_xyz0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_gacr30_xyz(0)", "dataset": "juice-ganymede-cr30", "index1": "0", "is_public": "True", "name": "x", "parameter": "juice_gacr30_xyz", "start_date": "2030-05-01T07:00:00Z", "stop_date": "2033-06-04T00:00:00Z", "xmlid": "juice_gacr30_xyz(0)"}, "juice_gacr30_xyz1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_gacr30_xyz(1)", "dataset": "juice-ganymede-cr30", "index1": "1", "is_public": "True", "name": "y", "parameter": "juice_gacr30_xyz", "start_date": "2030-05-01T07:00:00Z", "stop_date": "2033-06-04T00:00:00Z", "xmlid": "juice_gacr30_xyz(1)"}, "juice_gacr30_xyz2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_gacr30_xyz(2)", "dataset": "juice-ganymede-cr30", "index1": "2", "is_public": "True", "name": "z", "parameter": "juice_gacr30_xyz", "start_date": "2030-05-01T07:00:00Z", "stop_date": "2033-06-04T00:00:00Z", "xmlid": "juice_gacr30_xyz(2)"}, "name": "xyz_gphio", "size": "3", "start_date": "2030-05-01T07:00:00Z", "stop_date": "2033-06-04T00:00:00Z", "units": "km", "xmlid": "juice_gacr30_xyz"}, "lastModificationDate": "2020-06-30T11:28:06Z", "lastUpdate": "2020-06-30T11:27:46Z", "measurement_type": "Ephemeris", "name": "orbit ganymede", "processing_level": "Calibrated", "sampling": "1H", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Juice/Ephemeris/juice-ganymede-cr30", "start_date": "2030-05-01T07:00:00Z", "stop_date": "2033-06-04T00:00:00Z", "target": "Jupiter.Ganymede", "xmlid": "juice-ganymede-cr30"}, "juice_jup_cr30": {"__spz_name__": "orbit jupiter", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "juice-jup-cr30", "att": "auto/juice-jup-cr30", "dataSource": "", "desc": "
Sampling: 1H", "is_public": "True", "juice_jucr30_jsm": {"__spz_name__": "xyz_jsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_jucr30_jsm", "dataset": "juice-jup-cr30", "is_public": "True", "juice_jucr30_jsm0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_jucr30_jsm(0)", "dataset": "juice-jup-cr30", "index1": "0", "is_public": "True", "name": "x", "parameter": "juice_jucr30_jsm", "start_date": "2029-01-01T07:00:00Z", "stop_date": "2033-06-04T00:00:00Z", "xmlid": "juice_jucr30_jsm(0)"}, "juice_jucr30_jsm1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_jucr30_jsm(1)", "dataset": "juice-jup-cr30", "index1": "1", "is_public": "True", "name": "y", "parameter": "juice_jucr30_jsm", "start_date": "2029-01-01T07:00:00Z", "stop_date": "2033-06-04T00:00:00Z", "xmlid": "juice_jucr30_jsm(1)"}, "juice_jucr30_jsm2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_jucr30_jsm(2)", "dataset": "juice-jup-cr30", "index1": "2", "is_public": "True", "name": "z", "parameter": "juice_jucr30_jsm", "start_date": "2029-01-01T07:00:00Z", "stop_date": "2033-06-04T00:00:00Z", "xmlid": "juice_jucr30_jsm(2)"}, "name": "xyz_jsm", "size": "3", "start_date": "2029-01-01T07:00:00Z", "stop_date": "2033-06-04T00:00:00Z", "units": "Rj", "xmlid": "juice_jucr30_jsm"}, "juice_jucr30_jso": {"__spz_name__": "xyz_jso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_jucr30_jso", "dataset": "juice-jup-cr30", "is_public": "True", "juice_jucr30_jso0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_jucr30_jso(0)", "dataset": "juice-jup-cr30", "index1": "0", "is_public": "True", "name": "x", "parameter": "juice_jucr30_jso", "start_date": "2029-01-01T07:00:00Z", "stop_date": "2033-06-04T00:00:00Z", "xmlid": "juice_jucr30_jso(0)"}, "juice_jucr30_jso1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_jucr30_jso(1)", "dataset": "juice-jup-cr30", "index1": "1", "is_public": "True", "name": "y", "parameter": "juice_jucr30_jso", "start_date": "2029-01-01T07:00:00Z", "stop_date": "2033-06-04T00:00:00Z", "xmlid": "juice_jucr30_jso(1)"}, "juice_jucr30_jso2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_jucr30_jso(2)", "dataset": "juice-jup-cr30", "index1": "2", "is_public": "True", "name": "z", "parameter": "juice_jucr30_jso", "start_date": "2029-01-01T07:00:00Z", "stop_date": "2033-06-04T00:00:00Z", "xmlid": "juice_jucr30_jso(2)"}, "name": "xyz_jso", "size": "3", "start_date": "2029-01-01T07:00:00Z", "stop_date": "2033-06-04T00:00:00Z", "units": "Rj", "xmlid": "juice_jucr30_jso"}, "juice_jucr30_lat": {"__spz_name__": "lat_iau_jupiter", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_jucr30_lat", "dataset": "juice-jup-cr30", "is_public": "True", "name": "lat_iau_jupiter", "start_date": "2029-01-01T07:00:00Z", "stop_date": "2033-06-04T00:00:00Z", "units": "deg", "xmlid": "juice_jucr30_lat"}, "juice_jucr30_lon": {"__spz_name__": "lon_iau_jupiter", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_jucr30_lon", "dataset": "juice-jup-cr30", "is_public": "True", "name": "lon_iau_jupiter", "start_date": "2029-01-01T07:00:00Z", "stop_date": "2033-06-04T00:00:00Z", "units": "deg", "xmlid": "juice_jucr30_lon"}, "juice_jucr30_r": {"__spz_name__": "distance juice-jupiter", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_jucr30_r", "dataset": "juice-jup-cr30", "is_public": "True", "name": "distance juice-jupiter", "start_date": "2029-01-01T07:00:00Z", "stop_date": "2033-06-04T00:00:00Z", "units": "Rj", "xmlid": "juice_jucr30_r"}, "juice_jucr30_xyz": {"__spz_name__": "xyz_iau_jupiter", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_jucr30_xyz", "dataset": "juice-jup-cr30", "is_public": "True", "juice_jucr30_xyz0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_jucr30_xyz(0)", "dataset": "juice-jup-cr30", "index1": "0", "is_public": "True", "name": "x", "parameter": "juice_jucr30_xyz", "start_date": "2029-01-01T07:00:00Z", "stop_date": "2033-06-04T00:00:00Z", "xmlid": "juice_jucr30_xyz(0)"}, "juice_jucr30_xyz1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_jucr30_xyz(1)", "dataset": "juice-jup-cr30", "index1": "1", "is_public": "True", "name": "y", "parameter": "juice_jucr30_xyz", "start_date": "2029-01-01T07:00:00Z", "stop_date": "2033-06-04T00:00:00Z", "xmlid": "juice_jucr30_xyz(1)"}, "juice_jucr30_xyz2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_jucr30_xyz(2)", "dataset": "juice-jup-cr30", "index1": "2", "is_public": "True", "name": "z", "parameter": "juice_jucr30_xyz", "start_date": "2029-01-01T07:00:00Z", "stop_date": "2033-06-04T00:00:00Z", "xmlid": "juice_jucr30_xyz(2)"}, "name": "xyz_iau_jupiter", "size": "3", "start_date": "2029-01-01T07:00:00Z", "stop_date": "2033-06-04T00:00:00Z", "units": "Rj", "xmlid": "juice_jucr30_xyz"}, "lastModificationDate": "2020-06-29T16:04:37Z", "lastUpdate": "2020-06-29T15:30:35Z", "measurement_type": "Ephemeris", "name": "orbit jupiter", "processing_level": "Calibrated", "sampling": "1H", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Juice/Ephemeris/juice-jup-cr30", "start_date": "2029-01-01T07:00:00Z", "stop_date": "2033-06-04T00:00:00Z", "target": "Jupiter", "xmlid": "juice-jup-cr30"}, "name": "CReMA 3.0", "xmlid": "juice-orb-3.0"}, "CReMA_3_2": {"__spz_name__": "CReMA 3.2", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "juice-orb-3.2", "is_public": "True", "juice_callisto_cr32": {"__spz_name__": "flybys callisto", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "juice-callisto-cr32", "att": "auto/juice-callisto-cr32", "dataSource": "", "desc": "
Sampling: 5M", "is_public": "True", "juice_cacr32_lat": {"__spz_name__": "lat_cphio", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_cacr32_lat", "dataset": "juice-callisto-cr32", "is_public": "True", "name": "lat_cphio", "start_date": "2030-10-10T01:00:00Z", "stop_date": "2031-11-28T00:00:00Z", "units": "deg", "xmlid": "juice_cacr32_lat"}, "juice_cacr32_lon": {"__spz_name__": "lon_cphio", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_cacr32_lon", "dataset": "juice-callisto-cr32", "is_public": "True", "name": "lon_cphio", "start_date": "2030-10-10T01:00:00Z", "stop_date": "2031-11-28T00:00:00Z", "units": "deg", "xmlid": "juice_cacr32_lon"}, "juice_cacr32_r": {"__spz_name__": "distance juice-callisto", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_cacr32_r", "dataset": "juice-callisto-cr32", "is_public": "True", "name": "distance juice-callisto", "start_date": "2030-10-10T01:00:00Z", "stop_date": "2031-11-28T00:00:00Z", "units": "km", "xmlid": "juice_cacr32_r"}, "juice_cacr32_xyz": {"__spz_name__": "xyz_cphio", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_cacr32_xyz", "dataset": "juice-callisto-cr32", "is_public": "True", "juice_cacr32_xyz0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_cacr32_xyz(0)", "dataset": "juice-callisto-cr32", "index1": "0", "is_public": "True", "name": "x", "parameter": "juice_cacr32_xyz", "start_date": "2030-10-10T01:00:00Z", "stop_date": "2031-11-28T00:00:00Z", "xmlid": "juice_cacr32_xyz(0)"}, "juice_cacr32_xyz1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_cacr32_xyz(1)", "dataset": "juice-callisto-cr32", "index1": "1", "is_public": "True", "name": "y", "parameter": "juice_cacr32_xyz", "start_date": "2030-10-10T01:00:00Z", "stop_date": "2031-11-28T00:00:00Z", "xmlid": "juice_cacr32_xyz(1)"}, "juice_cacr32_xyz2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_cacr32_xyz(2)", "dataset": "juice-callisto-cr32", "index1": "2", "is_public": "True", "name": "z", "parameter": "juice_cacr32_xyz", "start_date": "2030-10-10T01:00:00Z", "stop_date": "2031-11-28T00:00:00Z", "xmlid": "juice_cacr32_xyz(2)"}, "name": "xyz_cphio", "size": "3", "start_date": "2030-10-10T01:00:00Z", "stop_date": "2031-11-28T00:00:00Z", "units": "km", "xmlid": "juice_cacr32_xyz"}, "lastModificationDate": "2020-06-30T11:59:53Z", "lastUpdate": "2020-07-02T14:03:14Z", "measurement_type": "Ephemeris", "name": "flybys callisto", "processing_level": "Calibrated", "sampling": "5M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Juice/Ephemeris/juice-callisto-cr32", "start_date": "2030-10-10T01:00:00Z", "stop_date": "2031-11-28T00:00:00Z", "target": "Jupiter.Callisto", "xmlid": "juice-callisto-cr32"}, "juice_cruise_cr32": {"__spz_name__": "cruise", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "juice-cruise-cr32", "att": "auto/juice-cruise-cr32", "dataSource": "ESA", "desc": "
Sampling: 1H
Provider: ESA", "is_public": "True", "juice_cr32_lat_hci": {"__spz_name__": "lat_hci", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_cr32_lat_hci", "dataset": "juice-cruise-cr32", "is_public": "True", "name": "lat_hci", "start_date": "2022-06-01T00:00:00Z", "stop_date": "2033-06-26T00:00:48Z", "units": "deg", "xmlid": "juice_cr32_lat_hci"}, "juice_cr32_lat_hee": {"__spz_name__": "lat_hee", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_cr32_lat_hee", "dataset": "juice-cruise-cr32", "is_public": "True", "name": "lat_hee", "start_date": "2022-06-01T00:00:00Z", "stop_date": "2033-06-26T00:00:48Z", "units": "deg", "xmlid": "juice_cr32_lat_hee"}, "juice_cr32_lat_iausun": {"__spz_name__": "lat_iau_sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_cr32_lat_iausun", "dataset": "juice-cruise-cr32", "is_public": "True", "name": "lat_iau_sun", "start_date": "2022-06-01T00:00:00Z", "stop_date": "2033-06-26T00:00:48Z", "units": "deg", "xmlid": "juice_cr32_lat_iausun"}, "juice_cr32_lon_hci": {"__spz_name__": "lon_hci", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_cr32_lon_hci", "dataset": "juice-cruise-cr32", "is_public": "True", "name": "lon_hci", "start_date": "2022-06-01T00:00:00Z", "stop_date": "2033-06-26T00:00:48Z", "units": "deg", "xmlid": "juice_cr32_lon_hci"}, "juice_cr32_lon_hee": {"__spz_name__": "lon_hee", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_cr32_lon_hee", "dataset": "juice-cruise-cr32", "is_public": "True", "name": "lon_hee", "start_date": "2022-06-01T00:00:00Z", "stop_date": "2033-06-26T00:00:48Z", "units": "deg", "xmlid": "juice_cr32_lon_hee"}, "juice_cr32_lon_iausun": {"__spz_name__": "lon_iau_sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_cr32_lon_iausun", "dataset": "juice-cruise-cr32", "is_public": "True", "name": "lon_iau_sun", "start_date": "2022-06-01T00:00:00Z", "stop_date": "2033-06-26T00:00:48Z", "units": "deg", "xmlid": "juice_cr32_lon_iausun"}, "juice_cr32_r": {"__spz_name__": "distance juice-sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_cr32_r", "dataset": "juice-cruise-cr32", "is_public": "True", "name": "distance juice-sun", "start_date": "2022-06-01T00:00:00Z", "stop_date": "2033-06-26T00:00:48Z", "units": "AU", "xmlid": "juice_cr32_r"}, "juice_cr32_xyz_hci": {"__spz_name__": "xyz_hci", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_cr32_xyz_hci", "dataset": "juice-cruise-cr32", "is_public": "True", "juice_cr32_xyz_hci0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_cr32_xyz_hci(0)", "dataset": "juice-cruise-cr32", "index1": "0", "is_public": "True", "name": "x", "parameter": "juice_cr32_xyz_hci", "start_date": "2022-06-01T00:00:00Z", "stop_date": "2033-06-26T00:00:48Z", "xmlid": "juice_cr32_xyz_hci(0)"}, "juice_cr32_xyz_hci1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_cr32_xyz_hci(1)", "dataset": "juice-cruise-cr32", "index1": "1", "is_public": "True", "name": "y", "parameter": "juice_cr32_xyz_hci", "start_date": "2022-06-01T00:00:00Z", "stop_date": "2033-06-26T00:00:48Z", "xmlid": "juice_cr32_xyz_hci(1)"}, "juice_cr32_xyz_hci2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_cr32_xyz_hci(2)", "dataset": "juice-cruise-cr32", "index1": "2", "is_public": "True", "name": "z", "parameter": "juice_cr32_xyz_hci", "start_date": "2022-06-01T00:00:00Z", "stop_date": "2033-06-26T00:00:48Z", "xmlid": "juice_cr32_xyz_hci(2)"}, "name": "xyz_hci", "size": "3", "start_date": "2022-06-01T00:00:00Z", "stop_date": "2033-06-26T00:00:48Z", "units": "AU", "xmlid": "juice_cr32_xyz_hci"}, "juice_cr32_xyz_hee": {"__spz_name__": "xyz_hee", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_cr32_xyz_hee", "dataset": "juice-cruise-cr32", "is_public": "True", "juice_cr32_xyz_hee0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_cr32_xyz_hee(0)", "dataset": "juice-cruise-cr32", "index1": "0", "is_public": "True", "name": "x", "parameter": "juice_cr32_xyz_hee", "start_date": "2022-06-01T00:00:00Z", "stop_date": "2033-06-26T00:00:48Z", "xmlid": "juice_cr32_xyz_hee(0)"}, "juice_cr32_xyz_hee1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_cr32_xyz_hee(1)", "dataset": "juice-cruise-cr32", "index1": "1", "is_public": "True", "name": "y", "parameter": "juice_cr32_xyz_hee", "start_date": "2022-06-01T00:00:00Z", "stop_date": "2033-06-26T00:00:48Z", "xmlid": "juice_cr32_xyz_hee(1)"}, "juice_cr32_xyz_hee2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_cr32_xyz_hee(2)", "dataset": "juice-cruise-cr32", "index1": "2", "is_public": "True", "name": "z", "parameter": "juice_cr32_xyz_hee", "start_date": "2022-06-01T00:00:00Z", "stop_date": "2033-06-26T00:00:48Z", "xmlid": "juice_cr32_xyz_hee(2)"}, "name": "xyz_hee", "size": "3", "start_date": "2022-06-01T00:00:00Z", "stop_date": "2033-06-26T00:00:48Z", "units": "AU", "xmlid": "juice_cr32_xyz_hee"}, "juice_cr32_xyz_iausun": {"__spz_name__": "xyz_iau_sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_cr32_xyz_iausun", "dataset": "juice-cruise-cr32", "is_public": "True", "juice_cr32_xyz_iausun0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_cr32_xyz_iausun(0)", "dataset": "juice-cruise-cr32", "index1": "0", "is_public": "True", "name": "x", "parameter": "juice_cr32_xyz_iausun", "start_date": "2022-06-01T00:00:00Z", "stop_date": "2033-06-26T00:00:48Z", "xmlid": "juice_cr32_xyz_iausun(0)"}, "juice_cr32_xyz_iausun1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_cr32_xyz_iausun(1)", "dataset": "juice-cruise-cr32", "index1": "1", "is_public": "True", "name": "y", "parameter": "juice_cr32_xyz_iausun", "start_date": "2022-06-01T00:00:00Z", "stop_date": "2033-06-26T00:00:48Z", "xmlid": "juice_cr32_xyz_iausun(1)"}, "juice_cr32_xyz_iausun2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_cr32_xyz_iausun(2)", "dataset": "juice-cruise-cr32", "index1": "2", "is_public": "True", "name": "z", "parameter": "juice_cr32_xyz_iausun", "start_date": "2022-06-01T00:00:00Z", "stop_date": "2033-06-26T00:00:48Z", "xmlid": "juice_cr32_xyz_iausun(2)"}, "name": "xyz_iau_sun", "size": "3", "start_date": "2022-06-01T00:00:00Z", "stop_date": "2033-06-26T00:00:48Z", "units": "AU", "xmlid": "juice_cr32_xyz_iausun"}, "lastModificationDate": "2020-06-26T16:39:18Z", "lastUpdate": "2020-06-26T16:17:15Z", "measurement_type": "Ephemeris", "name": "cruise", "processing_level": "Calibrated", "sampling": "1H", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Juice/Ephemeris/juice-cruise-cr32", "start_date": "2022-06-01T00:00:00Z", "stop_date": "2033-06-26T00:00:48Z", "target": "Heliosphere", "xmlid": "juice-cruise-cr32"}, "juice_europa_cr32": {"__spz_name__": "flybys europa", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "juice-europa-cr32", "att": "auto/juice-europa-cr32", "dataSource": "", "desc": "
Sampling: 5M", "is_public": "True", "juice_eucr32_lat": {"__spz_name__": "lat_ephio", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_eucr32_lat", "dataset": "juice-europa-cr32", "is_public": "True", "name": "lat_ephio", "start_date": "2030-09-09T07:00:00Z", "stop_date": "2030-10-02T18:00:00Z", "units": "deg", "xmlid": "juice_eucr32_lat"}, "juice_eucr32_lon": {"__spz_name__": "lon_ephio", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_eucr32_lon", "dataset": "juice-europa-cr32", "is_public": "True", "name": "lon_ephio", "start_date": "2030-09-09T07:00:00Z", "stop_date": "2030-10-02T18:00:00Z", "units": "deg", "xmlid": "juice_eucr32_lon"}, "juice_eucr32_r": {"__spz_name__": "distance juice-europa", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_eucr32_r", "dataset": "juice-europa-cr32", "is_public": "True", "name": "distance juice-europa", "start_date": "2030-09-09T07:00:00Z", "stop_date": "2030-10-02T18:00:00Z", "units": "km", "xmlid": "juice_eucr32_r"}, "juice_eucr32_xyz": {"__spz_name__": "xyz_ephio", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_eucr32_xyz", "dataset": "juice-europa-cr32", "is_public": "True", "juice_eucr32_xyz0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_eucr32_xyz(0)", "dataset": "juice-europa-cr32", "index1": "0", "is_public": "True", "name": "x", "parameter": "juice_eucr32_xyz", "start_date": "2030-09-09T07:00:00Z", "stop_date": "2030-10-02T18:00:00Z", "xmlid": "juice_eucr32_xyz(0)"}, "juice_eucr32_xyz1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_eucr32_xyz(1)", "dataset": "juice-europa-cr32", "index1": "1", "is_public": "True", "name": "y", "parameter": "juice_eucr32_xyz", "start_date": "2030-09-09T07:00:00Z", "stop_date": "2030-10-02T18:00:00Z", "xmlid": "juice_eucr32_xyz(1)"}, "juice_eucr32_xyz2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_eucr32_xyz(2)", "dataset": "juice-europa-cr32", "index1": "2", "is_public": "True", "name": "z", "parameter": "juice_eucr32_xyz", "start_date": "2030-09-09T07:00:00Z", "stop_date": "2030-10-02T18:00:00Z", "xmlid": "juice_eucr32_xyz(2)"}, "name": "xyz_ephio", "size": "3", "start_date": "2030-09-09T07:00:00Z", "stop_date": "2030-10-02T18:00:00Z", "units": "km", "xmlid": "juice_eucr32_xyz"}, "lastModificationDate": "2020-06-30T12:12:29Z", "lastUpdate": "2020-07-02T14:05:41Z", "measurement_type": "Ephemeris", "name": "flybys europa", "processing_level": "Calibrated", "sampling": "5M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Juice/Ephemeris/juice-europa-cr32", "start_date": "2030-09-09T07:00:00Z", "stop_date": "2030-10-02T18:00:00Z", "target": "Jupiter.Europa", "xmlid": "juice-europa-cr32"}, "juice_ganymede_cr32": {"__spz_name__": "orbit ganymede", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "juice-ganymede-cr32", "att": "auto/juice-ganymede-cr32", "dataSource": "", "desc": "
Sampling: 1H", "is_public": "True", "juice_gacr32_lat": {"__spz_name__": "lat_gphio", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_gacr32_lat", "dataset": "juice-ganymede-cr32", "is_public": "True", "name": "lat_gphio", "start_date": "2030-09-09T07:00:00Z", "stop_date": "2033-06-24T00:00:00Z", "units": "deg", "xmlid": "juice_gacr32_lat"}, "juice_gacr32_lon": {"__spz_name__": "lon_gphio", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_gacr32_lon", "dataset": "juice-ganymede-cr32", "is_public": "True", "name": "lon_gphio", "start_date": "2030-09-09T07:00:00Z", "stop_date": "2033-06-24T00:00:00Z", "units": "deg", "xmlid": "juice_gacr32_lon"}, "juice_gacr32_r": {"__spz_name__": "distance juice-ganymede", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_gacr32_r", "dataset": "juice-ganymede-cr32", "is_public": "True", "name": "distance juice-ganymede", "start_date": "2030-09-09T07:00:00Z", "stop_date": "2033-06-24T00:00:00Z", "units": "km", "xmlid": "juice_gacr32_r"}, "juice_gacr32_xyz": {"__spz_name__": "xyz_gphio", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_gacr32_xyz", "dataset": "juice-ganymede-cr32", "is_public": "True", "juice_gacr32_xyz0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_gacr32_xyz(0)", "dataset": "juice-ganymede-cr32", "index1": "0", "is_public": "True", "name": "x", "parameter": "juice_gacr32_xyz", "start_date": "2030-09-09T07:00:00Z", "stop_date": "2033-06-24T00:00:00Z", "xmlid": "juice_gacr32_xyz(0)"}, "juice_gacr32_xyz1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_gacr32_xyz(1)", "dataset": "juice-ganymede-cr32", "index1": "1", "is_public": "True", "name": "y", "parameter": "juice_gacr32_xyz", "start_date": "2030-09-09T07:00:00Z", "stop_date": "2033-06-24T00:00:00Z", "xmlid": "juice_gacr32_xyz(1)"}, "juice_gacr32_xyz2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_gacr32_xyz(2)", "dataset": "juice-ganymede-cr32", "index1": "2", "is_public": "True", "name": "z", "parameter": "juice_gacr32_xyz", "start_date": "2030-09-09T07:00:00Z", "stop_date": "2033-06-24T00:00:00Z", "xmlid": "juice_gacr32_xyz(2)"}, "name": "xyz_gphio", "size": "3", "start_date": "2030-09-09T07:00:00Z", "stop_date": "2033-06-24T00:00:00Z", "units": "km", "xmlid": "juice_gacr32_xyz"}, "lastModificationDate": "2020-06-30T11:30:36Z", "lastUpdate": "2020-06-30T11:30:17Z", "measurement_type": "Ephemeris", "name": "orbit ganymede", "processing_level": "Calibrated", "sampling": "1H", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Juice/Ephemeris/juice-ganymede-cr32", "start_date": "2030-09-09T07:00:00Z", "stop_date": "2033-06-24T00:00:00Z", "target": "Jupiter.Ganymede", "xmlid": "juice-ganymede-cr32"}, "juice_jup_cr32": {"__spz_name__": "orbit jupiter", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "juice-jup-cr32", "att": "auto/juice-jup-cr32", "dataSource": "", "desc": "
Sampling: 1H", "is_public": "True", "juice_jucr32_jsm": {"__spz_name__": "xyz_jsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_jucr32_jsm", "dataset": "juice-jup-cr32", "is_public": "True", "juice_jucr32_jsm0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_jucr32_jsm(0)", "dataset": "juice-jup-cr32", "index1": "0", "is_public": "True", "name": "x", "parameter": "juice_jucr32_jsm", "start_date": "2028-01-01T07:00:00Z", "stop_date": "2033-06-24T00:00:00Z", "xmlid": "juice_jucr32_jsm(0)"}, "juice_jucr32_jsm1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_jucr32_jsm(1)", "dataset": "juice-jup-cr32", "index1": "1", "is_public": "True", "name": "y", "parameter": "juice_jucr32_jsm", "start_date": "2028-01-01T07:00:00Z", "stop_date": "2033-06-24T00:00:00Z", "xmlid": "juice_jucr32_jsm(1)"}, "juice_jucr32_jsm2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_jucr32_jsm(2)", "dataset": "juice-jup-cr32", "index1": "2", "is_public": "True", "name": "z", "parameter": "juice_jucr32_jsm", "start_date": "2028-01-01T07:00:00Z", "stop_date": "2033-06-24T00:00:00Z", "xmlid": "juice_jucr32_jsm(2)"}, "name": "xyz_jsm", "size": "3", "start_date": "2028-01-01T07:00:00Z", "stop_date": "2033-06-24T00:00:00Z", "units": "Rj", "xmlid": "juice_jucr32_jsm"}, "juice_jucr32_jso": {"__spz_name__": "xyz_jso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_jucr32_jso", "dataset": "juice-jup-cr32", "is_public": "True", "juice_jucr32_jso0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_jucr32_jso(0)", "dataset": "juice-jup-cr32", "index1": "0", "is_public": "True", "name": "x", "parameter": "juice_jucr32_jso", "start_date": "2028-01-01T07:00:00Z", "stop_date": "2033-06-24T00:00:00Z", "xmlid": "juice_jucr32_jso(0)"}, "juice_jucr32_jso1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_jucr32_jso(1)", "dataset": "juice-jup-cr32", "index1": "1", "is_public": "True", "name": "y", "parameter": "juice_jucr32_jso", "start_date": "2028-01-01T07:00:00Z", "stop_date": "2033-06-24T00:00:00Z", "xmlid": "juice_jucr32_jso(1)"}, "juice_jucr32_jso2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_jucr32_jso(2)", "dataset": "juice-jup-cr32", "index1": "2", "is_public": "True", "name": "z", "parameter": "juice_jucr32_jso", "start_date": "2028-01-01T07:00:00Z", "stop_date": "2033-06-24T00:00:00Z", "xmlid": "juice_jucr32_jso(2)"}, "name": "xyz_jso", "size": "3", "start_date": "2028-01-01T07:00:00Z", "stop_date": "2033-06-24T00:00:00Z", "units": "Rj", "xmlid": "juice_jucr32_jso"}, "juice_jucr32_lat": {"__spz_name__": "lat_iau_jupiter", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_jucr32_lat", "dataset": "juice-jup-cr32", "is_public": "True", "name": "lat_iau_jupiter", "start_date": "2028-01-01T07:00:00Z", "stop_date": "2033-06-24T00:00:00Z", "units": "deg", "xmlid": "juice_jucr32_lat"}, "juice_jucr32_lon": {"__spz_name__": "lon_iau_jupiter", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_jucr32_lon", "dataset": "juice-jup-cr32", "is_public": "True", "name": "lon_iau_jupiter", "start_date": "2028-01-01T07:00:00Z", "stop_date": "2033-06-24T00:00:00Z", "units": "deg", "xmlid": "juice_jucr32_lon"}, "juice_jucr32_r": {"__spz_name__": "distance juice-jupiter", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_jucr32_r", "dataset": "juice-jup-cr32", "is_public": "True", "name": "distance juice-jupiter", "start_date": "2028-01-01T07:00:00Z", "stop_date": "2033-06-24T00:00:00Z", "units": "Rj", "xmlid": "juice_jucr32_r"}, "juice_jucr32_xyz": {"__spz_name__": "xyz_iau_jupiter", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_jucr32_xyz", "dataset": "juice-jup-cr32", "is_public": "True", "juice_jucr32_xyz0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_jucr32_xyz(0)", "dataset": "juice-jup-cr32", "index1": "0", "is_public": "True", "name": "x", "parameter": "juice_jucr32_xyz", "start_date": "2028-01-01T07:00:00Z", "stop_date": "2033-06-24T00:00:00Z", "xmlid": "juice_jucr32_xyz(0)"}, "juice_jucr32_xyz1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_jucr32_xyz(1)", "dataset": "juice-jup-cr32", "index1": "1", "is_public": "True", "name": "y", "parameter": "juice_jucr32_xyz", "start_date": "2028-01-01T07:00:00Z", "stop_date": "2033-06-24T00:00:00Z", "xmlid": "juice_jucr32_xyz(1)"}, "juice_jucr32_xyz2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_jucr32_xyz(2)", "dataset": "juice-jup-cr32", "index1": "2", "is_public": "True", "name": "z", "parameter": "juice_jucr32_xyz", "start_date": "2028-01-01T07:00:00Z", "stop_date": "2033-06-24T00:00:00Z", "xmlid": "juice_jucr32_xyz(2)"}, "name": "xyz_iau_jupiter", "size": "3", "start_date": "2028-01-01T07:00:00Z", "stop_date": "2033-06-24T00:00:00Z", "units": "Rj", "xmlid": "juice_jucr32_xyz"}, "lastModificationDate": "2020-06-29T16:04:16Z", "lastUpdate": "2020-06-29T15:32:20Z", "measurement_type": "Ephemeris", "name": "orbit jupiter", "processing_level": "Calibrated", "sampling": "1H", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Juice/Ephemeris/juice-jup-cr32", "start_date": "2028-01-01T07:00:00Z", "stop_date": "2033-06-24T00:00:00Z", "target": "Jupiter", "xmlid": "juice-jup-cr32"}, "name": "CReMA 3.2", "xmlid": "juice-orb-3.2"}, "CReMA_4_1": {"__spz_name__": "CReMA 4.1", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "juice-orb-4.1", "is_public": "True", "juice_callisto_cr41": {"__spz_name__": "flybys callisto", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "juice-callisto-cr41", "att": "auto/juice-callisto-cr41", "dataSource": "", "desc": "
Sampling: 5M", "is_public": "True", "juice_cacr41_lat": {"__spz_name__": "lat_cphio", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_cacr41_lat", "dataset": "juice-callisto-cr41", "is_public": "True", "name": "lat_cphio", "start_date": "2033-07-27T01:00:00Z", "stop_date": "2035-05-06T00:00:00Z", "units": "deg", "xmlid": "juice_cacr41_lat"}, "juice_cacr41_lon": {"__spz_name__": "lon_cphio", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_cacr41_lon", "dataset": "juice-callisto-cr41", "is_public": "True", "name": "lon_cphio", "start_date": "2033-07-27T01:00:00Z", "stop_date": "2035-05-06T00:00:00Z", "units": "deg", "xmlid": "juice_cacr41_lon"}, "juice_cacr41_r": {"__spz_name__": "distance juice-callisto", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_cacr41_r", "dataset": "juice-callisto-cr41", "is_public": "True", "name": "distance juice-callisto", "start_date": "2033-07-27T01:00:00Z", "stop_date": "2035-05-06T00:00:00Z", "units": "km", "xmlid": "juice_cacr41_r"}, "juice_cacr41_xyz": {"__spz_name__": "xyz_cphio", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_cacr41_xyz", "dataset": "juice-callisto-cr41", "is_public": "True", "juice_cacr41_xyz0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_cacr41_xyz(0)", "dataset": "juice-callisto-cr41", "index1": "0", "is_public": "True", "name": "x", "parameter": "juice_cacr41_xyz", "start_date": "2033-07-27T01:00:00Z", "stop_date": "2035-05-06T00:00:00Z", "xmlid": "juice_cacr41_xyz(0)"}, "juice_cacr41_xyz1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_cacr41_xyz(1)", "dataset": "juice-callisto-cr41", "index1": "1", "is_public": "True", "name": "y", "parameter": "juice_cacr41_xyz", "start_date": "2033-07-27T01:00:00Z", "stop_date": "2035-05-06T00:00:00Z", "xmlid": "juice_cacr41_xyz(1)"}, "juice_cacr41_xyz2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_cacr41_xyz(2)", "dataset": "juice-callisto-cr41", "index1": "2", "is_public": "True", "name": "z", "parameter": "juice_cacr41_xyz", "start_date": "2033-07-27T01:00:00Z", "stop_date": "2035-05-06T00:00:00Z", "xmlid": "juice_cacr41_xyz(2)"}, "name": "xyz_cphio", "size": "3", "start_date": "2033-07-27T01:00:00Z", "stop_date": "2035-05-06T00:00:00Z", "units": "km", "xmlid": "juice_cacr41_xyz"}, "lastModificationDate": "2020-06-30T12:00:27Z", "lastUpdate": "2020-07-02T14:04:14Z", "measurement_type": "Ephemeris", "name": "flybys callisto", "processing_level": "Calibrated", "sampling": "5M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Juice/Ephemeris/juice-callisto-cr41", "start_date": "2033-07-27T01:00:00Z", "stop_date": "2035-05-06T00:00:00Z", "target": "Jupiter.Callisto", "xmlid": "juice-callisto-cr41"}, "juice_cruise_cr41": {"__spz_name__": "cruise", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "juice-cruise-cr41", "att": "auto/juice-cruise-cr41", "dataSource": "ESA", "desc": "
Sampling: 1H
Provider: ESA", "is_public": "True", "juice_cr41_lat_hci": {"__spz_name__": "lat_hci", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_cr41_lat_hci", "dataset": "juice-cruise-cr41", "is_public": "True", "name": "lat_hci", "start_date": "2023-08-09T00:00:00Z", "stop_date": "2033-07-02T00:00:48Z", "units": "deg", "xmlid": "juice_cr41_lat_hci"}, "juice_cr41_lat_hee": {"__spz_name__": "lat_hee", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_cr41_lat_hee", "dataset": "juice-cruise-cr41", "is_public": "True", "name": "lat_hee", "start_date": "2023-08-09T00:00:00Z", "stop_date": "2033-07-02T00:00:48Z", "units": "deg", "xmlid": "juice_cr41_lat_hee"}, "juice_cr41_lat_iausun": {"__spz_name__": "lat_iau_sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_cr41_lat_iausun", "dataset": "juice-cruise-cr41", "is_public": "True", "name": "lat_iau_sun", "start_date": "2023-08-09T00:00:00Z", "stop_date": "2033-07-02T00:00:48Z", "units": "deg", "xmlid": "juice_cr41_lat_iausun"}, "juice_cr41_lon_hci": {"__spz_name__": "lon_hci", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_cr41_lon_hci", "dataset": "juice-cruise-cr41", "is_public": "True", "name": "lon_hci", "start_date": "2023-08-09T00:00:00Z", "stop_date": "2033-07-02T00:00:48Z", "units": "deg", "xmlid": "juice_cr41_lon_hci"}, "juice_cr41_lon_hee": {"__spz_name__": "lon_hee", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_cr41_lon_hee", "dataset": "juice-cruise-cr41", "is_public": "True", "name": "lon_hee", "start_date": "2023-08-09T00:00:00Z", "stop_date": "2033-07-02T00:00:48Z", "units": "deg", "xmlid": "juice_cr41_lon_hee"}, "juice_cr41_lon_iausun": {"__spz_name__": "lon_iau_sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_cr41_lon_iausun", "dataset": "juice-cruise-cr41", "is_public": "True", "name": "lon_iau_sun", "start_date": "2023-08-09T00:00:00Z", "stop_date": "2033-07-02T00:00:48Z", "units": "deg", "xmlid": "juice_cr41_lon_iausun"}, "juice_cr41_r": {"__spz_name__": "distance juice-sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_cr41_r", "dataset": "juice-cruise-cr41", "is_public": "True", "name": "distance juice-sun", "start_date": "2023-08-09T00:00:00Z", "stop_date": "2033-07-02T00:00:48Z", "units": "AU", "xmlid": "juice_cr41_r"}, "juice_cr41_xyz_hci": {"__spz_name__": "xyz_hci", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_cr41_xyz_hci", "dataset": "juice-cruise-cr41", "is_public": "True", "juice_cr41_xyz_hci0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_cr41_xyz_hci(0)", "dataset": "juice-cruise-cr41", "index1": "0", "is_public": "True", "name": "x", "parameter": "juice_cr41_xyz_hci", "start_date": "2023-08-09T00:00:00Z", "stop_date": "2033-07-02T00:00:48Z", "xmlid": "juice_cr41_xyz_hci(0)"}, "juice_cr41_xyz_hci1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_cr41_xyz_hci(1)", "dataset": "juice-cruise-cr41", "index1": "1", "is_public": "True", "name": "y", "parameter": "juice_cr41_xyz_hci", "start_date": "2023-08-09T00:00:00Z", "stop_date": "2033-07-02T00:00:48Z", "xmlid": "juice_cr41_xyz_hci(1)"}, "juice_cr41_xyz_hci2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_cr41_xyz_hci(2)", "dataset": "juice-cruise-cr41", "index1": "2", "is_public": "True", "name": "z", "parameter": "juice_cr41_xyz_hci", "start_date": "2023-08-09T00:00:00Z", "stop_date": "2033-07-02T00:00:48Z", "xmlid": "juice_cr41_xyz_hci(2)"}, "name": "xyz_hci", "size": "3", "start_date": "2023-08-09T00:00:00Z", "stop_date": "2033-07-02T00:00:48Z", "units": "AU", "xmlid": "juice_cr41_xyz_hci"}, "juice_cr41_xyz_hee": {"__spz_name__": "xyz_hee", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_cr41_xyz_hee", "dataset": "juice-cruise-cr41", "is_public": "True", "juice_cr41_xyz_hee0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_cr41_xyz_hee(0)", "dataset": "juice-cruise-cr41", "index1": "0", "is_public": "True", "name": "x", "parameter": "juice_cr41_xyz_hee", "start_date": "2023-08-09T00:00:00Z", "stop_date": "2033-07-02T00:00:48Z", "xmlid": "juice_cr41_xyz_hee(0)"}, "juice_cr41_xyz_hee1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_cr41_xyz_hee(1)", "dataset": "juice-cruise-cr41", "index1": "1", "is_public": "True", "name": "y", "parameter": "juice_cr41_xyz_hee", "start_date": "2023-08-09T00:00:00Z", "stop_date": "2033-07-02T00:00:48Z", "xmlid": "juice_cr41_xyz_hee(1)"}, "juice_cr41_xyz_hee2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_cr41_xyz_hee(2)", "dataset": "juice-cruise-cr41", "index1": "2", "is_public": "True", "name": "z", "parameter": "juice_cr41_xyz_hee", "start_date": "2023-08-09T00:00:00Z", "stop_date": "2033-07-02T00:00:48Z", "xmlid": "juice_cr41_xyz_hee(2)"}, "name": "xyz_hee", "size": "3", "start_date": "2023-08-09T00:00:00Z", "stop_date": "2033-07-02T00:00:48Z", "units": "AU", "xmlid": "juice_cr41_xyz_hee"}, "juice_cr41_xyz_iausun": {"__spz_name__": "xyz_iau_sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_cr41_xyz_iausun", "dataset": "juice-cruise-cr41", "is_public": "True", "juice_cr41_xyz_iausun0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_cr41_xyz_iausun(0)", "dataset": "juice-cruise-cr41", "index1": "0", "is_public": "True", "name": "x", "parameter": "juice_cr41_xyz_iausun", "start_date": "2023-08-09T00:00:00Z", "stop_date": "2033-07-02T00:00:48Z", "xmlid": "juice_cr41_xyz_iausun(0)"}, "juice_cr41_xyz_iausun1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_cr41_xyz_iausun(1)", "dataset": "juice-cruise-cr41", "index1": "1", "is_public": "True", "name": "y", "parameter": "juice_cr41_xyz_iausun", "start_date": "2023-08-09T00:00:00Z", "stop_date": "2033-07-02T00:00:48Z", "xmlid": "juice_cr41_xyz_iausun(1)"}, "juice_cr41_xyz_iausun2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_cr41_xyz_iausun(2)", "dataset": "juice-cruise-cr41", "index1": "2", "is_public": "True", "name": "z", "parameter": "juice_cr41_xyz_iausun", "start_date": "2023-08-09T00:00:00Z", "stop_date": "2033-07-02T00:00:48Z", "xmlid": "juice_cr41_xyz_iausun(2)"}, "name": "xyz_iau_sun", "size": "3", "start_date": "2023-08-09T00:00:00Z", "stop_date": "2033-07-02T00:00:48Z", "units": "AU", "xmlid": "juice_cr41_xyz_iausun"}, "lastModificationDate": "2020-06-26T16:38:40Z", "lastUpdate": "2020-06-26T16:19:19Z", "measurement_type": "Ephemeris", "name": "cruise", "processing_level": "Calibrated", "sampling": "1H", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Juice/Ephemeris/juice-cruise-cr41", "start_date": "2023-08-09T00:00:00Z", "stop_date": "2033-07-02T00:00:48Z", "target": "Heliosphere", "xmlid": "juice-cruise-cr41"}, "juice_europa_cr41": {"__spz_name__": "flybys europa", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "juice-europa-cr41", "att": "auto/juice-europa-cr41", "dataSource": "", "desc": "
Sampling: 5M", "is_public": "True", "juice_eucr41_lat": {"__spz_name__": "lat_ephio", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_eucr41_lat", "dataset": "juice-europa-cr41", "is_public": "True", "name": "lat_ephio", "start_date": "2034-07-14T07:00:00Z", "stop_date": "2034-08-11T00:00:00Z", "units": "deg", "xmlid": "juice_eucr41_lat"}, "juice_eucr41_lon": {"__spz_name__": "lon_ephio", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_eucr41_lon", "dataset": "juice-europa-cr41", "is_public": "True", "name": "lon_ephio", "start_date": "2034-07-14T07:00:00Z", "stop_date": "2034-08-11T00:00:00Z", "units": "deg", "xmlid": "juice_eucr41_lon"}, "juice_eucr41_r": {"__spz_name__": "distance juice-europa", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_eucr41_r", "dataset": "juice-europa-cr41", "is_public": "True", "name": "distance juice-europa", "start_date": "2034-07-14T07:00:00Z", "stop_date": "2034-08-11T00:00:00Z", "units": "km", "xmlid": "juice_eucr41_r"}, "juice_eucr41_xyz": {"__spz_name__": "xyz_ephio", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_eucr41_xyz", "dataset": "juice-europa-cr41", "is_public": "True", "juice_eucr41_xyz0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_eucr41_xyz(0)", "dataset": "juice-europa-cr41", "index1": "0", "is_public": "True", "name": "x", "parameter": "juice_eucr41_xyz", "start_date": "2034-07-14T07:00:00Z", "stop_date": "2034-08-11T00:00:00Z", "xmlid": "juice_eucr41_xyz(0)"}, "juice_eucr41_xyz1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_eucr41_xyz(1)", "dataset": "juice-europa-cr41", "index1": "1", "is_public": "True", "name": "y", "parameter": "juice_eucr41_xyz", "start_date": "2034-07-14T07:00:00Z", "stop_date": "2034-08-11T00:00:00Z", "xmlid": "juice_eucr41_xyz(1)"}, "juice_eucr41_xyz2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_eucr41_xyz(2)", "dataset": "juice-europa-cr41", "index1": "2", "is_public": "True", "name": "z", "parameter": "juice_eucr41_xyz", "start_date": "2034-07-14T07:00:00Z", "stop_date": "2034-08-11T00:00:00Z", "xmlid": "juice_eucr41_xyz(2)"}, "name": "xyz_ephio", "size": "3", "start_date": "2034-07-14T07:00:00Z", "stop_date": "2034-08-11T00:00:00Z", "units": "km", "xmlid": "juice_eucr41_xyz"}, "lastModificationDate": "2020-06-30T12:15:20Z", "lastUpdate": "2020-07-02T14:06:07Z", "measurement_type": "Ephemeris", "name": "flybys europa", "processing_level": "Calibrated", "sampling": "5M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Juice/Ephemeris/juice-europa-cr41", "start_date": "2034-07-14T07:00:00Z", "stop_date": "2034-08-11T00:00:00Z", "target": "Jupiter.Europa", "xmlid": "juice-europa-cr41"}, "juice_ganymede_cr41": {"__spz_name__": "orbit ganymede", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "juice-ganymede-cr41", "att": "auto/juice-ganymede-cr41", "dataSource": "", "desc": "
Sampling: 1H", "is_public": "True", "juice_gacr41_lat": {"__spz_name__": "lat_gphio", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_gacr41_lat", "dataset": "juice-ganymede-cr41", "is_public": "True", "name": "lat_gphio", "start_date": "2032-10-01T07:00:00Z", "stop_date": "2036-08-20T00:00:00Z", "units": "deg", "xmlid": "juice_gacr41_lat"}, "juice_gacr41_lon": {"__spz_name__": "lon_gphio", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_gacr41_lon", "dataset": "juice-ganymede-cr41", "is_public": "True", "name": "lon_gphio", "start_date": "2032-10-01T07:00:00Z", "stop_date": "2036-08-20T00:00:00Z", "units": "deg", "xmlid": "juice_gacr41_lon"}, "juice_gacr41_r": {"__spz_name__": "distance juice-ganymede", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_gacr41_r", "dataset": "juice-ganymede-cr41", "is_public": "True", "name": "distance juice-ganymede", "start_date": "2032-10-01T07:00:00Z", "stop_date": "2036-08-20T00:00:00Z", "units": "km", "xmlid": "juice_gacr41_r"}, "juice_gacr41_xyz": {"__spz_name__": "xyz_gphio", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_gacr41_xyz", "dataset": "juice-ganymede-cr41", "is_public": "True", "juice_gacr41_xyz0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_gacr41_xyz(0)", "dataset": "juice-ganymede-cr41", "index1": "0", "is_public": "True", "name": "x", "parameter": "juice_gacr41_xyz", "start_date": "2032-10-01T07:00:00Z", "stop_date": "2036-08-20T00:00:00Z", "xmlid": "juice_gacr41_xyz(0)"}, "juice_gacr41_xyz1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_gacr41_xyz(1)", "dataset": "juice-ganymede-cr41", "index1": "1", "is_public": "True", "name": "y", "parameter": "juice_gacr41_xyz", "start_date": "2032-10-01T07:00:00Z", "stop_date": "2036-08-20T00:00:00Z", "xmlid": "juice_gacr41_xyz(1)"}, "juice_gacr41_xyz2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_gacr41_xyz(2)", "dataset": "juice-ganymede-cr41", "index1": "2", "is_public": "True", "name": "z", "parameter": "juice_gacr41_xyz", "start_date": "2032-10-01T07:00:00Z", "stop_date": "2036-08-20T00:00:00Z", "xmlid": "juice_gacr41_xyz(2)"}, "name": "xyz_gphio", "size": "3", "start_date": "2032-10-01T07:00:00Z", "stop_date": "2036-08-20T00:00:00Z", "units": "km", "xmlid": "juice_gacr41_xyz"}, "lastModificationDate": "2020-06-30T11:32:28Z", "lastUpdate": "2020-06-30T11:32:08Z", "measurement_type": "Ephemeris", "name": "orbit ganymede", "processing_level": "Calibrated", "sampling": "1H", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Juice/Ephemeris/juice-ganymede-cr41", "start_date": "2032-10-01T07:00:00Z", "stop_date": "2036-08-20T00:00:00Z", "target": "Jupiter.Ganymede", "xmlid": "juice-ganymede-cr41"}, "juice_jup_cr41": {"__spz_name__": "orbit jupiter", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "juice-jup-cr41", "att": "auto/juice-jup-cr41", "dataSource": "", "desc": "
Sampling: 1H", "is_public": "True", "juice_jucr41_jsm": {"__spz_name__": "xyz_jsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_jucr41_jsm", "dataset": "juice-jup-cr41", "is_public": "True", "juice_jucr41_jsm0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_jucr41_jsm(0)", "dataset": "juice-jup-cr41", "index1": "0", "is_public": "True", "name": "x", "parameter": "juice_jucr41_jsm", "start_date": "2030-06-01T07:00:00Z", "stop_date": "2036-08-20T00:00:00Z", "xmlid": "juice_jucr41_jsm(0)"}, "juice_jucr41_jsm1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_jucr41_jsm(1)", "dataset": "juice-jup-cr41", "index1": "1", "is_public": "True", "name": "y", "parameter": "juice_jucr41_jsm", "start_date": "2030-06-01T07:00:00Z", "stop_date": "2036-08-20T00:00:00Z", "xmlid": "juice_jucr41_jsm(1)"}, "juice_jucr41_jsm2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_jucr41_jsm(2)", "dataset": "juice-jup-cr41", "index1": "2", "is_public": "True", "name": "z", "parameter": "juice_jucr41_jsm", "start_date": "2030-06-01T07:00:00Z", "stop_date": "2036-08-20T00:00:00Z", "xmlid": "juice_jucr41_jsm(2)"}, "name": "xyz_jsm", "size": "3", "start_date": "2030-06-01T07:00:00Z", "stop_date": "2036-08-20T00:00:00Z", "units": "Rj", "xmlid": "juice_jucr41_jsm"}, "juice_jucr41_jso": {"__spz_name__": "xyz_jso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_jucr41_jso", "dataset": "juice-jup-cr41", "is_public": "True", "juice_jucr41_jso0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_jucr41_jso(0)", "dataset": "juice-jup-cr41", "index1": "0", "is_public": "True", "name": "x", "parameter": "juice_jucr41_jso", "start_date": "2030-06-01T07:00:00Z", "stop_date": "2036-08-20T00:00:00Z", "xmlid": "juice_jucr41_jso(0)"}, "juice_jucr41_jso1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_jucr41_jso(1)", "dataset": "juice-jup-cr41", "index1": "1", "is_public": "True", "name": "y", "parameter": "juice_jucr41_jso", "start_date": "2030-06-01T07:00:00Z", "stop_date": "2036-08-20T00:00:00Z", "xmlid": "juice_jucr41_jso(1)"}, "juice_jucr41_jso2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_jucr41_jso(2)", "dataset": "juice-jup-cr41", "index1": "2", "is_public": "True", "name": "z", "parameter": "juice_jucr41_jso", "start_date": "2030-06-01T07:00:00Z", "stop_date": "2036-08-20T00:00:00Z", "xmlid": "juice_jucr41_jso(2)"}, "name": "xyz_jso", "size": "3", "start_date": "2030-06-01T07:00:00Z", "stop_date": "2036-08-20T00:00:00Z", "units": "Rj", "xmlid": "juice_jucr41_jso"}, "juice_jucr41_lat": {"__spz_name__": "lat_iau_jupiter", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_jucr41_lat", "dataset": "juice-jup-cr41", "is_public": "True", "name": "lat_iau_jupiter", "start_date": "2030-06-01T07:00:00Z", "stop_date": "2036-08-20T00:00:00Z", "units": "deg", "xmlid": "juice_jucr41_lat"}, "juice_jucr41_lon": {"__spz_name__": "lon_iau_jupiter", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_jucr41_lon", "dataset": "juice-jup-cr41", "is_public": "True", "name": "lon_iau_jupiter", "start_date": "2030-06-01T07:00:00Z", "stop_date": "2036-08-20T00:00:00Z", "units": "deg", "xmlid": "juice_jucr41_lon"}, "juice_jucr41_r": {"__spz_name__": "distance juice-jupiter", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_jucr41_r", "dataset": "juice-jup-cr41", "is_public": "True", "name": "distance juice-jupiter", "start_date": "2030-06-01T07:00:00Z", "stop_date": "2036-08-20T00:00:00Z", "units": "Rj", "xmlid": "juice_jucr41_r"}, "juice_jucr41_xyz": {"__spz_name__": "xyz_iau_jupiter", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_jucr41_xyz", "dataset": "juice-jup-cr41", "is_public": "True", "juice_jucr41_xyz0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_jucr41_xyz(0)", "dataset": "juice-jup-cr41", "index1": "0", "is_public": "True", "name": "x", "parameter": "juice_jucr41_xyz", "start_date": "2030-06-01T07:00:00Z", "stop_date": "2036-08-20T00:00:00Z", "xmlid": "juice_jucr41_xyz(0)"}, "juice_jucr41_xyz1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_jucr41_xyz(1)", "dataset": "juice-jup-cr41", "index1": "1", "is_public": "True", "name": "y", "parameter": "juice_jucr41_xyz", "start_date": "2030-06-01T07:00:00Z", "stop_date": "2036-08-20T00:00:00Z", "xmlid": "juice_jucr41_xyz(1)"}, "juice_jucr41_xyz2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_jucr41_xyz(2)", "dataset": "juice-jup-cr41", "index1": "2", "is_public": "True", "name": "z", "parameter": "juice_jucr41_xyz", "start_date": "2030-06-01T07:00:00Z", "stop_date": "2036-08-20T00:00:00Z", "xmlid": "juice_jucr41_xyz(2)"}, "name": "xyz_iau_jupiter", "size": "3", "start_date": "2030-06-01T07:00:00Z", "stop_date": "2036-08-20T00:00:00Z", "units": "Rj", "xmlid": "juice_jucr41_xyz"}, "lastModificationDate": "2020-06-29T16:03:51Z", "lastUpdate": "2020-06-29T15:34:03Z", "measurement_type": "Ephemeris", "name": "orbit jupiter", "processing_level": "Calibrated", "sampling": "1H", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Juice/Ephemeris/juice-jup-cr41", "start_date": "2030-06-01T07:00:00Z", "stop_date": "2036-08-20T00:00:00Z", "target": "Jupiter", "xmlid": "juice-jup-cr41"}, "name": "CReMA 4.1", "xmlid": "juice-orb-4.1"}, "CReMA_5_1": {"__spz_name__": "CReMA 5.1", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "juice-orb-5.1", "is_public": "True", "juice_cruise_cr51": {"__spz_name__": "cruise", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "juice-cruise-cr51", "att": "auto/juice-cruise-cr51", "dataSource": "ESA", "desc": "
Sampling: 1H
Provider: ESA", "is_public": "True", "juice_cr51_lat_hci": {"__spz_name__": "lat_hci", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_cr51_lat_hci", "dataset": "juice-cruise-cr51", "is_public": "True", "name": "lat_hci", "start_date": "2023-04-14T12:43:00Z", "stop_date": "2031-01-19T22:43:00Z", "units": "deg", "xmlid": "juice_cr51_lat_hci"}, "juice_cr51_lat_hee": {"__spz_name__": "lat_hee", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_cr51_lat_hee", "dataset": "juice-cruise-cr51", "is_public": "True", "name": "lat_hee", "start_date": "2023-04-14T12:43:00Z", "stop_date": "2031-01-19T22:43:00Z", "units": "deg", "xmlid": "juice_cr51_lat_hee"}, "juice_cr51_lat_iausun": {"__spz_name__": "lat_iau_sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_cr51_lat_iausun", "dataset": "juice-cruise-cr51", "is_public": "True", "name": "lat_iau_sun", "start_date": "2023-04-14T12:43:00Z", "stop_date": "2031-01-19T22:43:00Z", "units": "deg", "xmlid": "juice_cr51_lat_iausun"}, "juice_cr51_lon_hci": {"__spz_name__": "lon_hci", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_cr51_lon_hci", "dataset": "juice-cruise-cr51", "is_public": "True", "name": "lon_hci", "start_date": "2023-04-14T12:43:00Z", "stop_date": "2031-01-19T22:43:00Z", "units": "deg", "xmlid": "juice_cr51_lon_hci"}, "juice_cr51_lon_hee": {"__spz_name__": "lon_hee", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_cr51_lon_hee", "dataset": "juice-cruise-cr51", "is_public": "True", "name": "lon_hee", "start_date": "2023-04-14T12:43:00Z", "stop_date": "2031-01-19T22:43:00Z", "units": "deg", "xmlid": "juice_cr51_lon_hee"}, "juice_cr51_lon_iausun": {"__spz_name__": "lon_iau_sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_cr51_lon_iausun", "dataset": "juice-cruise-cr51", "is_public": "True", "name": "lon_iau_sun", "start_date": "2023-04-14T12:43:00Z", "stop_date": "2031-01-19T22:43:00Z", "units": "deg", "xmlid": "juice_cr51_lon_iausun"}, "juice_cr51_r": {"__spz_name__": "distance juice-sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_cr51_r", "dataset": "juice-cruise-cr51", "is_public": "True", "name": "distance juice-sun", "start_date": "2023-04-14T12:43:00Z", "stop_date": "2031-01-19T22:43:00Z", "units": "AU", "xmlid": "juice_cr51_r"}, "juice_cr51_xyz_hci": {"__spz_name__": "xyz_hci", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_cr51_xyz_hci", "dataset": "juice-cruise-cr51", "is_public": "True", "juice_cr51_xyz_hci0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_cr51_xyz_hci(0)", "dataset": "juice-cruise-cr51", "index1": "0", "is_public": "True", "name": "x", "parameter": "juice_cr51_xyz_hci", "start_date": "2023-04-14T12:43:00Z", "stop_date": "2031-01-19T22:43:00Z", "xmlid": "juice_cr51_xyz_hci(0)"}, "juice_cr51_xyz_hci1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_cr51_xyz_hci(1)", "dataset": "juice-cruise-cr51", "index1": "1", "is_public": "True", "name": "y", "parameter": "juice_cr51_xyz_hci", "start_date": "2023-04-14T12:43:00Z", "stop_date": "2031-01-19T22:43:00Z", "xmlid": "juice_cr51_xyz_hci(1)"}, "juice_cr51_xyz_hci2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_cr51_xyz_hci(2)", "dataset": "juice-cruise-cr51", "index1": "2", "is_public": "True", "name": "z", "parameter": "juice_cr51_xyz_hci", "start_date": "2023-04-14T12:43:00Z", "stop_date": "2031-01-19T22:43:00Z", "xmlid": "juice_cr51_xyz_hci(2)"}, "name": "xyz_hci", "size": "3", "start_date": "2023-04-14T12:43:00Z", "stop_date": "2031-01-19T22:43:00Z", "units": "AU", "xmlid": "juice_cr51_xyz_hci"}, "juice_cr51_xyz_hee": {"__spz_name__": "xyz_hee", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_cr51_xyz_hee", "dataset": "juice-cruise-cr51", "is_public": "True", "juice_cr51_xyz_hee0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_cr51_xyz_hee(0)", "dataset": "juice-cruise-cr51", "index1": "0", "is_public": "True", "name": "x", "parameter": "juice_cr51_xyz_hee", "start_date": "2023-04-14T12:43:00Z", "stop_date": "2031-01-19T22:43:00Z", "xmlid": "juice_cr51_xyz_hee(0)"}, "juice_cr51_xyz_hee1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_cr51_xyz_hee(1)", "dataset": "juice-cruise-cr51", "index1": "1", "is_public": "True", "name": "y", "parameter": "juice_cr51_xyz_hee", "start_date": "2023-04-14T12:43:00Z", "stop_date": "2031-01-19T22:43:00Z", "xmlid": "juice_cr51_xyz_hee(1)"}, "juice_cr51_xyz_hee2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_cr51_xyz_hee(2)", "dataset": "juice-cruise-cr51", "index1": "2", "is_public": "True", "name": "z", "parameter": "juice_cr51_xyz_hee", "start_date": "2023-04-14T12:43:00Z", "stop_date": "2031-01-19T22:43:00Z", "xmlid": "juice_cr51_xyz_hee(2)"}, "name": "xyz_hee", "size": "3", "start_date": "2023-04-14T12:43:00Z", "stop_date": "2031-01-19T22:43:00Z", "units": "AU", "xmlid": "juice_cr51_xyz_hee"}, "juice_cr51_xyz_iausun": {"__spz_name__": "xyz_iau_sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_cr51_xyz_iausun", "dataset": "juice-cruise-cr51", "is_public": "True", "juice_cr51_xyz_iausun0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_cr51_xyz_iausun(0)", "dataset": "juice-cruise-cr51", "index1": "0", "is_public": "True", "name": "x", "parameter": "juice_cr51_xyz_iausun", "start_date": "2023-04-14T12:43:00Z", "stop_date": "2031-01-19T22:43:00Z", "xmlid": "juice_cr51_xyz_iausun(0)"}, "juice_cr51_xyz_iausun1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_cr51_xyz_iausun(1)", "dataset": "juice-cruise-cr51", "index1": "1", "is_public": "True", "name": "y", "parameter": "juice_cr51_xyz_iausun", "start_date": "2023-04-14T12:43:00Z", "stop_date": "2031-01-19T22:43:00Z", "xmlid": "juice_cr51_xyz_iausun(1)"}, "juice_cr51_xyz_iausun2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_cr51_xyz_iausun(2)", "dataset": "juice-cruise-cr51", "index1": "2", "is_public": "True", "name": "z", "parameter": "juice_cr51_xyz_iausun", "start_date": "2023-04-14T12:43:00Z", "stop_date": "2031-01-19T22:43:00Z", "xmlid": "juice_cr51_xyz_iausun(2)"}, "name": "xyz_iau_sun", "size": "3", "start_date": "2023-04-14T12:43:00Z", "stop_date": "2031-01-19T22:43:00Z", "units": "AU", "xmlid": "juice_cr51_xyz_iausun"}, "lastModificationDate": "2024-06-07T10:09:45Z", "lastUpdate": "2024-06-07T10:09:25Z", "measurement_type": "Ephemeris", "name": "cruise", "processing_level": "Calibrated", "sampling": "1H", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Juice/Ephemeris/juice-cruise-cr51", "start_date": "2023-04-14T12:43:00Z", "stop_date": "2031-01-19T22:43:00Z", "target": "Heliosphere", "xmlid": "juice-cruise-cr51"}, "juice_jup_cr51": {"__spz_name__": "orbit jupiter", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "juice-jup-cr51", "att": "auto/juice-jup-cr51", "dataSource": "", "desc": "
Sampling: 5M", "is_public": "True", "juice_jucr51_jsm": {"__spz_name__": "xyz_jsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_jucr51_jsm", "dataset": "juice-jup-cr51", "is_public": "True", "juice_jucr51_jsm0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_jucr51_jsm(0)", "dataset": "juice-jup-cr51", "index1": "0", "is_public": "True", "name": "x", "parameter": "juice_jucr51_jsm", "start_date": "2031-01-20T00:00:00Z", "stop_date": "2035-10-05T01:50:00Z", "xmlid": "juice_jucr51_jsm(0)"}, "juice_jucr51_jsm1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_jucr51_jsm(1)", "dataset": "juice-jup-cr51", "index1": "1", "is_public": "True", "name": "y", "parameter": "juice_jucr51_jsm", "start_date": "2031-01-20T00:00:00Z", "stop_date": "2035-10-05T01:50:00Z", "xmlid": "juice_jucr51_jsm(1)"}, "juice_jucr51_jsm2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_jucr51_jsm(2)", "dataset": "juice-jup-cr51", "index1": "2", "is_public": "True", "name": "z", "parameter": "juice_jucr51_jsm", "start_date": "2031-01-20T00:00:00Z", "stop_date": "2035-10-05T01:50:00Z", "xmlid": "juice_jucr51_jsm(2)"}, "name": "xyz_jsm", "size": "3", "start_date": "2031-01-20T00:00:00Z", "stop_date": "2035-10-05T01:50:00Z", "units": "Rj", "xmlid": "juice_jucr51_jsm"}, "juice_jucr51_jso": {"__spz_name__": "xyz_jso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_jucr51_jso", "dataset": "juice-jup-cr51", "is_public": "True", "juice_jucr51_jso0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_jucr51_jso(0)", "dataset": "juice-jup-cr51", "index1": "0", "is_public": "True", "name": "x", "parameter": "juice_jucr51_jso", "start_date": "2031-01-20T00:00:00Z", "stop_date": "2035-10-05T01:50:00Z", "xmlid": "juice_jucr51_jso(0)"}, "juice_jucr51_jso1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_jucr51_jso(1)", "dataset": "juice-jup-cr51", "index1": "1", "is_public": "True", "name": "y", "parameter": "juice_jucr51_jso", "start_date": "2031-01-20T00:00:00Z", "stop_date": "2035-10-05T01:50:00Z", "xmlid": "juice_jucr51_jso(1)"}, "juice_jucr51_jso2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_jucr51_jso(2)", "dataset": "juice-jup-cr51", "index1": "2", "is_public": "True", "name": "z", "parameter": "juice_jucr51_jso", "start_date": "2031-01-20T00:00:00Z", "stop_date": "2035-10-05T01:50:00Z", "xmlid": "juice_jucr51_jso(2)"}, "name": "xyz_jso", "size": "3", "start_date": "2031-01-20T00:00:00Z", "stop_date": "2035-10-05T01:50:00Z", "units": "Rj", "xmlid": "juice_jucr51_jso"}, "juice_jucr51_lat": {"__spz_name__": "lat_iau_jupiter", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_jucr51_lat", "dataset": "juice-jup-cr51", "is_public": "True", "name": "lat_iau_jupiter", "start_date": "2031-01-20T00:00:00Z", "stop_date": "2035-10-05T01:50:00Z", "units": "deg", "xmlid": "juice_jucr51_lat"}, "juice_jucr51_lon": {"__spz_name__": "lon_iau_jupiter", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_jucr51_lon", "dataset": "juice-jup-cr51", "is_public": "True", "name": "lon_iau_jupiter", "start_date": "2031-01-20T00:00:00Z", "stop_date": "2035-10-05T01:50:00Z", "units": "deg", "xmlid": "juice_jucr51_lon"}, "juice_jucr51_r": {"__spz_name__": "distance juice-jupiter", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_jucr51_r", "dataset": "juice-jup-cr51", "is_public": "True", "name": "distance juice-jupiter", "start_date": "2031-01-20T00:00:00Z", "stop_date": "2035-10-05T01:50:00Z", "units": "Rj", "xmlid": "juice_jucr51_r"}, "juice_jucr51_xyz": {"__spz_name__": "xyz_iau_jupiter", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_jucr51_xyz", "dataset": "juice-jup-cr51", "is_public": "True", "juice_jucr51_xyz0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_jucr51_xyz(0)", "dataset": "juice-jup-cr51", "index1": "0", "is_public": "True", "name": "x", "parameter": "juice_jucr51_xyz", "start_date": "2031-01-20T00:00:00Z", "stop_date": "2035-10-05T01:50:00Z", "xmlid": "juice_jucr51_xyz(0)"}, "juice_jucr51_xyz1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_jucr51_xyz(1)", "dataset": "juice-jup-cr51", "index1": "1", "is_public": "True", "name": "y", "parameter": "juice_jucr51_xyz", "start_date": "2031-01-20T00:00:00Z", "stop_date": "2035-10-05T01:50:00Z", "xmlid": "juice_jucr51_xyz(1)"}, "juice_jucr51_xyz2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_jucr51_xyz(2)", "dataset": "juice-jup-cr51", "index1": "2", "is_public": "True", "name": "z", "parameter": "juice_jucr51_xyz", "start_date": "2031-01-20T00:00:00Z", "stop_date": "2035-10-05T01:50:00Z", "xmlid": "juice_jucr51_xyz(2)"}, "name": "xyz_iau_jupiter", "size": "3", "start_date": "2031-01-20T00:00:00Z", "stop_date": "2035-10-05T01:50:00Z", "units": "Rj", "xmlid": "juice_jucr51_xyz"}, "lastModificationDate": "2024-06-07T10:11:14Z", "lastUpdate": "2024-06-07T10:10:43Z", "measurement_type": "Ephemeris", "name": "orbit jupiter", "processing_level": "Calibrated", "sampling": "5M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Juice/Ephemeris/juice-jup-cr51", "start_date": "2031-01-20T00:00:00Z", "stop_date": "2035-10-05T01:50:00Z", "target": "Jupiter", "xmlid": "juice-jup-cr51"}, "name": "CReMA 5.1", "xmlid": "juice-orb-5.1"}, "__spz_name__": "Ephemeris", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Juice_ephemeris", "att": "auto/Juice_ephemeris", "desc": "", "is_public": "True", "juice_orb_earth1": {"__spz_name__": "Earth/Moon flyby", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "juice-orb-earth1", "att": "auto/juice-orb-earth1", "dataSource": "", "desc": "
Sampling: 5M", "is_public": "True", "juice_earth1xyz_gse": {"__spz_name__": "xyz_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_earth1xyz_gse", "dataset": "juice-orb-earth1", "display_type": "timeseries", "is_public": "True", "juice_earth1xyz_gse0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_earth1xyz_gse(0)", "dataset": "juice-orb-earth1", "index1": "0", "is_public": "True", "name": "x", "parameter": "juice_earth1xyz_gse", "start_date": "2024-08-18T00:00:00Z", "stop_date": "2024-08-23T23:50:00Z", "xmlid": "juice_earth1xyz_gse(0)"}, "juice_earth1xyz_gse1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_earth1xyz_gse(1)", "dataset": "juice-orb-earth1", "index1": "1", "is_public": "True", "name": "y", "parameter": "juice_earth1xyz_gse", "start_date": "2024-08-18T00:00:00Z", "stop_date": "2024-08-23T23:50:00Z", "xmlid": "juice_earth1xyz_gse(1)"}, "juice_earth1xyz_gse2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_earth1xyz_gse(2)", "dataset": "juice-orb-earth1", "index1": "2", "is_public": "True", "name": "z", "parameter": "juice_earth1xyz_gse", "start_date": "2024-08-18T00:00:00Z", "stop_date": "2024-08-23T23:50:00Z", "xmlid": "juice_earth1xyz_gse(2)"}, "name": "xyz_gse", "size": "3", "start_date": "2024-08-18T00:00:00Z", "stop_date": "2024-08-23T23:50:00Z", "ucd": "pos.bodyrc;instr.obsty", "units": "Re", "xmlid": "juice_earth1xyz_gse"}, "juice_earth1xyz_gsm": {"__spz_name__": "xyz_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_earth1xyz_gsm", "dataset": "juice-orb-earth1", "display_type": "timeseries", "is_public": "True", "juice_earth1xyz_gsm0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_earth1xyz_gsm(0)", "dataset": "juice-orb-earth1", "index1": "0", "is_public": "True", "name": "x", "parameter": "juice_earth1xyz_gsm", "start_date": "2024-08-18T00:00:00Z", "stop_date": "2024-08-23T23:50:00Z", "xmlid": "juice_earth1xyz_gsm(0)"}, "juice_earth1xyz_gsm1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_earth1xyz_gsm(1)", "dataset": "juice-orb-earth1", "index1": "1", "is_public": "True", "name": "y", "parameter": "juice_earth1xyz_gsm", "start_date": "2024-08-18T00:00:00Z", "stop_date": "2024-08-23T23:50:00Z", "xmlid": "juice_earth1xyz_gsm(1)"}, "juice_earth1xyz_gsm2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_earth1xyz_gsm(2)", "dataset": "juice-orb-earth1", "index1": "2", "is_public": "True", "name": "z", "parameter": "juice_earth1xyz_gsm", "start_date": "2024-08-18T00:00:00Z", "stop_date": "2024-08-23T23:50:00Z", "xmlid": "juice_earth1xyz_gsm(2)"}, "name": "xyz_gsm", "size": "3", "start_date": "2024-08-18T00:00:00Z", "stop_date": "2024-08-23T23:50:00Z", "ucd": "pos.bodyrc;instr.obsty", "units": "Re", "xmlid": "juice_earth1xyz_gsm"}, "juice_earth1xyz_lse": {"__spz_name__": "xyz_lse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_earth1xyz_lse", "dataset": "juice-orb-earth1", "description": "position in LSE coordinates", "display_type": "timeseries", "is_public": "True", "juice_earth1xyz_lse0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_earth1xyz_lse(0)", "dataset": "juice-orb-earth1", "index1": "0", "is_public": "True", "name": "x", "parameter": "juice_earth1xyz_lse", "start_date": "2024-08-18T00:00:00Z", "stop_date": "2024-08-23T23:50:00Z", "xmlid": "juice_earth1xyz_lse(0)"}, "juice_earth1xyz_lse1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_earth1xyz_lse(1)", "dataset": "juice-orb-earth1", "index1": "1", "is_public": "True", "name": "y", "parameter": "juice_earth1xyz_lse", "start_date": "2024-08-18T00:00:00Z", "stop_date": "2024-08-23T23:50:00Z", "xmlid": "juice_earth1xyz_lse(1)"}, "juice_earth1xyz_lse2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juice_earth1xyz_lse(2)", "dataset": "juice-orb-earth1", "index1": "2", "is_public": "True", "name": "z", "parameter": "juice_earth1xyz_lse", "start_date": "2024-08-18T00:00:00Z", "stop_date": "2024-08-23T23:50:00Z", "xmlid": "juice_earth1xyz_lse(2)"}, "name": "xyz_lse", "size": "3", "start_date": "2024-08-18T00:00:00Z", "stop_date": "2024-08-23T23:50:00Z", "ucd": "pos.earth;instr.obsty", "units": "Rmo", "xmlid": "juice_earth1xyz_lse"}, "juice_r_earth1": {"__spz_name__": "distance juice-earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_r_earth1", "dataset": "juice-orb-earth1", "display_type": "timeseries", "is_public": "True", "name": "distance juice-earth", "start_date": "2024-08-18T00:00:00Z", "stop_date": "2024-08-23T23:50:00Z", "ucd": "pos.distance;instr.obsty", "units": "Re", "xmlid": "juice_r_earth1"}, "juice_r_moon1": {"__spz_name__": "distance juice-moon", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juice_r_moon1", "dataset": "juice-orb-earth1", "display_type": "timeseries", "is_public": "True", "name": "distance juice-moon", "start_date": "2024-08-18T00:00:00Z", "stop_date": "2024-08-23T23:50:00Z", "ucd": "pos.distance", "units": "Rmo", "xmlid": "juice_r_moon1"}, "lastModificationDate": "2024-08-27T15:58:06Z", "lastUpdate": "2024-08-27T15:57:48Z", "measurement_type": "Ephemeris", "name": "Earth/Moon flyby", "processing_level": "Calibrated", "sampling": "5M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Juice/Ephemeris/juice-orb-earth1", "start_date": "2024-08-18T00:00:00Z", "stop_date": "2024-08-23T23:50:00Z", "target": "Earth.Magnetosphere", "xmlid": "juice-orb-earth1"}, "name": "Ephemeris", "xmlid": "Juice_ephemeris"}, "Jovian_Magnetic_Field_Models": {"JRM09_+_CAN_field_model": {"__spz_name__": "JRM09 + CAN field model", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "juice-jrm09-model", "is_public": "True", "juice30_jrm09_model": {"PriorID": "juice-jup-cr30", "__spz_name__": "CReMA 3.0", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "juice30-jrm09-model", "att": "auto/juice30-jrm09-model", "b_jrm09_can_60_1_juice_jucr30_xyz": {"__spz_name__": "b_iau_jup", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_jrm09_can_60_1_juice_jucr30_xyz", "b_jrm09_can_60_1_juice_jucr30_xyz0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_jrm09_can_60_1_juice_jucr30_xyz(0)", "dataset": "juice30-jrm09-model", "index1": "0", "is_public": "True", "name": "bx", "parameter": "b_jrm09_can_60_1_juice_jucr30_xyz", "start_date": "2029-01-01T07:00:00Z", "stop_date": "2033-06-04T00:00:00Z", "xmlid": "b_jrm09_can_60_1_juice_jucr30_xyz(0)"}, "b_jrm09_can_60_1_juice_jucr30_xyz1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_jrm09_can_60_1_juice_jucr30_xyz(1)", "dataset": "juice30-jrm09-model", "index1": "1", "is_public": "True", "name": "by", "parameter": "b_jrm09_can_60_1_juice_jucr30_xyz", "start_date": "2029-01-01T07:00:00Z", "stop_date": "2033-06-04T00:00:00Z", "xmlid": "b_jrm09_can_60_1_juice_jucr30_xyz(1)"}, "b_jrm09_can_60_1_juice_jucr30_xyz2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_jrm09_can_60_1_juice_jucr30_xyz(2)", "dataset": "juice30-jrm09-model", "index1": "2", "is_public": "True", "name": "bz", "parameter": "b_jrm09_can_60_1_juice_jucr30_xyz", "start_date": "2029-01-01T07:00:00Z", "stop_date": "2033-06-04T00:00:00Z", "xmlid": "b_jrm09_can_60_1_juice_jucr30_xyz(2)"}, "dataset": "juice30-jrm09-model", "is_public": "True", "name": "b_iau_jup", "predefined": "1", "size": "3", "start_date": "2029-01-01T07:00:00Z", "stop_date": "2033-06-04T00:00:00Z", "template": "b_jrm09_can_##sampling##_##can##_##orbit##", "units": "nT", "xmlid": "b_jrm09_can_60_1_juice_jucr30_xyz"}, "b_jrm09_can_tot_60_1_juice_jucr30_xyz": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_jrm09_can_tot_60_1_juice_jucr30_xyz", "dataset": "juice30-jrm09-model", "is_public": "True", "name": "|b|", "predefined": "1", "start_date": "2029-01-01T07:00:00Z", "stop_date": "2033-06-04T00:00:00Z", "template": "b_jrm09_can_tot_##sampling##_##can##_##orbit##", "units": "nT", "xmlid": "b_jrm09_can_tot_60_1_juice_jucr30_xyz"}, "dataSource": "IRAP", "desc": "JRM09 + CAN jovian magnetic field model
Sampling: 1M
Provider: IRAP", "is_public": "True", "lastModificationDate": "2020-06-29T16:04:37Z", "lastUpdate": "2020-06-29T15:30:35Z", "measurement_type": "MagneticField", "name": "CReMA 3.0", "processing_level": "Calibrated", "sampling": "1M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Juice/Models/juice30-jrm09-model", "start_date": "2029-01-01T07:00:00Z", "stop_date": "2033-06-04T00:00:00Z", "target": "Jupiter", "xmlid": "juice30-jrm09-model"}, "juice32_jrm09_model": {"PriorID": "juice-jup-cr32", "__spz_name__": "CReMA 3.2", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "juice32-jrm09-model", "att": "auto/juice32-jrm09-model", "b_jrm09_can_60_1_juice_jucr32_xyz": {"__spz_name__": "b_iau_jup", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_jrm09_can_60_1_juice_jucr32_xyz", "b_jrm09_can_60_1_juice_jucr32_xyz0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_jrm09_can_60_1_juice_jucr32_xyz(0)", "dataset": "juice32-jrm09-model", "index1": "0", "is_public": "True", "name": "bx", "parameter": "b_jrm09_can_60_1_juice_jucr32_xyz", "start_date": "2028-01-01T07:00:00Z", "stop_date": "2033-06-24T00:00:00Z", "xmlid": "b_jrm09_can_60_1_juice_jucr32_xyz(0)"}, "b_jrm09_can_60_1_juice_jucr32_xyz1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_jrm09_can_60_1_juice_jucr32_xyz(1)", "dataset": "juice32-jrm09-model", "index1": "1", "is_public": "True", "name": "by", "parameter": "b_jrm09_can_60_1_juice_jucr32_xyz", "start_date": "2028-01-01T07:00:00Z", "stop_date": "2033-06-24T00:00:00Z", "xmlid": "b_jrm09_can_60_1_juice_jucr32_xyz(1)"}, "b_jrm09_can_60_1_juice_jucr32_xyz2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_jrm09_can_60_1_juice_jucr32_xyz(2)", "dataset": "juice32-jrm09-model", "index1": "2", "is_public": "True", "name": "bz", "parameter": "b_jrm09_can_60_1_juice_jucr32_xyz", "start_date": "2028-01-01T07:00:00Z", "stop_date": "2033-06-24T00:00:00Z", "xmlid": "b_jrm09_can_60_1_juice_jucr32_xyz(2)"}, "dataset": "juice32-jrm09-model", "is_public": "True", "name": "b_iau_jup", "predefined": "1", "size": "3", "start_date": "2028-01-01T07:00:00Z", "stop_date": "2033-06-24T00:00:00Z", "template": "b_jrm09_can_##sampling##_##can##_##orbit##", "units": "nT", "xmlid": "b_jrm09_can_60_1_juice_jucr32_xyz"}, "b_jrm09_can_tot_60_1_juice_jucr32_xyz": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_jrm09_can_tot_60_1_juice_jucr32_xyz", "dataset": "juice32-jrm09-model", "is_public": "True", "name": "|b|", "predefined": "1", "start_date": "2028-01-01T07:00:00Z", "stop_date": "2033-06-24T00:00:00Z", "template": "b_jrm09_can_tot_##sampling##_##can##_##orbit##", "units": "nT", "xmlid": "b_jrm09_can_tot_60_1_juice_jucr32_xyz"}, "dataSource": "IRAP", "desc": "JRM09 + CAN jovian magnetic field model
Sampling: 1M
Provider: IRAP", "is_public": "True", "lastModificationDate": "2020-06-29T16:04:16Z", "lastUpdate": "2020-06-29T15:32:20Z", "measurement_type": "MagneticField", "name": "CReMA 3.2", "processing_level": "Calibrated", "sampling": "1M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Juice/Models/juice32-jrm09-model", "start_date": "2028-01-01T07:00:00Z", "stop_date": "2033-06-24T00:00:00Z", "target": "Jupiter", "xmlid": "juice32-jrm09-model"}, "juice41_jrm09_model": {"PriorID": "juice-jup-cr41", "__spz_name__": "CReMa 4.1", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "juice41-jrm09-model", "att": "auto/juice41-jrm09-model", "b_jrm09_can_60_1_juice_jucr41_xyz": {"__spz_name__": "b_iau_jup", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_jrm09_can_60_1_juice_jucr41_xyz", "b_jrm09_can_60_1_juice_jucr41_xyz0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_jrm09_can_60_1_juice_jucr41_xyz(0)", "dataset": "juice41-jrm09-model", "index1": "0", "is_public": "True", "name": "bx", "parameter": "b_jrm09_can_60_1_juice_jucr41_xyz", "start_date": "2030-06-01T07:00:00Z", "stop_date": "2036-08-20T00:00:00Z", "xmlid": "b_jrm09_can_60_1_juice_jucr41_xyz(0)"}, "b_jrm09_can_60_1_juice_jucr41_xyz1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_jrm09_can_60_1_juice_jucr41_xyz(1)", "dataset": "juice41-jrm09-model", "index1": "1", "is_public": "True", "name": "by", "parameter": "b_jrm09_can_60_1_juice_jucr41_xyz", "start_date": "2030-06-01T07:00:00Z", "stop_date": "2036-08-20T00:00:00Z", "xmlid": "b_jrm09_can_60_1_juice_jucr41_xyz(1)"}, "b_jrm09_can_60_1_juice_jucr41_xyz2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_jrm09_can_60_1_juice_jucr41_xyz(2)", "dataset": "juice41-jrm09-model", "index1": "2", "is_public": "True", "name": "bz", "parameter": "b_jrm09_can_60_1_juice_jucr41_xyz", "start_date": "2030-06-01T07:00:00Z", "stop_date": "2036-08-20T00:00:00Z", "xmlid": "b_jrm09_can_60_1_juice_jucr41_xyz(2)"}, "dataset": "juice41-jrm09-model", "is_public": "True", "name": "b_iau_jup", "predefined": "1", "size": "3", "start_date": "2030-06-01T07:00:00Z", "stop_date": "2036-08-20T00:00:00Z", "template": "b_jrm09_can_##sampling##_##can##_##orbit##", "units": "nT", "xmlid": "b_jrm09_can_60_1_juice_jucr41_xyz"}, "b_jrm09_can_tot_60_1_juice_jucr41_xyz": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_jrm09_can_tot_60_1_juice_jucr41_xyz", "dataset": "juice41-jrm09-model", "is_public": "True", "name": "|b|", "predefined": "1", "start_date": "2030-06-01T07:00:00Z", "stop_date": "2036-08-20T00:00:00Z", "template": "b_jrm09_can_tot_##sampling##_##can##_##orbit##", "units": "nT", "xmlid": "b_jrm09_can_tot_60_1_juice_jucr41_xyz"}, "dataSource": "IRAP", "desc": "JRM09 + CAN jovian magnetic field model
Sampling: 1M
Provider: IRAP", "is_public": "True", "lastModificationDate": "2020-06-29T16:03:51Z", "lastUpdate": "2020-06-29T15:34:03Z", "measurement_type": "MagneticField", "name": "CReMa 4.1", "processing_level": "Calibrated", "sampling": "1M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Juice/Models/juice41-jrm09-model", "start_date": "2030-06-01T07:00:00Z", "stop_date": "2036-08-20T00:00:00Z", "target": "Jupiter", "xmlid": "juice41-jrm09-model"}, "juice51_jrm09_model": {"PriorID": "juice-jup-cr51", "__spz_name__": "CReMa 5.1", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "juice51-jrm09-model", "att": "auto/juice51-jrm09-model", "b_jrm09_can_60_1_juice_jucr51_xyz": {"__spz_name__": "b_iau_jup", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_jrm09_can_60_1_juice_jucr51_xyz", "b_jrm09_can_60_1_juice_jucr51_xyz0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_jrm09_can_60_1_juice_jucr51_xyz(0)", "dataset": "juice51-jrm09-model", "index1": "0", "is_public": "True", "name": "bx", "parameter": "b_jrm09_can_60_1_juice_jucr51_xyz", "start_date": "2031-01-20T00:00:00Z", "stop_date": "2035-10-05T01:50:00Z", "xmlid": "b_jrm09_can_60_1_juice_jucr51_xyz(0)"}, "b_jrm09_can_60_1_juice_jucr51_xyz1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_jrm09_can_60_1_juice_jucr51_xyz(1)", "dataset": "juice51-jrm09-model", "index1": "1", "is_public": "True", "name": "by", "parameter": "b_jrm09_can_60_1_juice_jucr51_xyz", "start_date": "2031-01-20T00:00:00Z", "stop_date": "2035-10-05T01:50:00Z", "xmlid": "b_jrm09_can_60_1_juice_jucr51_xyz(1)"}, "b_jrm09_can_60_1_juice_jucr51_xyz2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_jrm09_can_60_1_juice_jucr51_xyz(2)", "dataset": "juice51-jrm09-model", "index1": "2", "is_public": "True", "name": "bz", "parameter": "b_jrm09_can_60_1_juice_jucr51_xyz", "start_date": "2031-01-20T00:00:00Z", "stop_date": "2035-10-05T01:50:00Z", "xmlid": "b_jrm09_can_60_1_juice_jucr51_xyz(2)"}, "dataset": "juice51-jrm09-model", "is_public": "True", "name": "b_iau_jup", "predefined": "1", "size": "3", "start_date": "2031-01-20T00:00:00Z", "stop_date": "2035-10-05T01:50:00Z", "template": "b_jrm09_can_##sampling##_##can##_##orbit##", "units": "nT", "xmlid": "b_jrm09_can_60_1_juice_jucr51_xyz"}, "b_jrm09_can_tot_60_1_juice_jucr51_xyz": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_jrm09_can_tot_60_1_juice_jucr51_xyz", "dataset": "juice51-jrm09-model", "is_public": "True", "name": "|b|", "predefined": "1", "start_date": "2031-01-20T00:00:00Z", "stop_date": "2035-10-05T01:50:00Z", "template": "b_jrm09_can_tot_##sampling##_##can##_##orbit##", "units": "nT", "xmlid": "b_jrm09_can_tot_60_1_juice_jucr51_xyz"}, "dataSource": "IRAP", "desc": "JRM09 + CAN jovian magnetic field model
Sampling: 1M
Provider: IRAP", "is_public": "True", "lastModificationDate": "2024-06-07T10:11:14Z", "lastUpdate": "2024-06-07T10:10:43Z", "measurement_type": "MagneticField", "name": "CReMa 5.1", "processing_level": "Calibrated", "sampling": "1M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Juice/Models/juice51-jrm09-model", "start_date": "2031-01-20T00:00:00Z", "stop_date": "2035-10-05T01:50:00Z", "target": "Jupiter", "xmlid": "juice51-jrm09-model"}, "name": "JRM09 + CAN field model", "xmlid": "juice-jrm09-model"}, "JRM33_+_Con2020_M_Shell": {"__spz_name__": "JRM33 + Con2020 M-Shell", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "juice-jrm33-mshell", "is_public": "True", "juice51_jrm33_mshell": {"__spz_name__": "CReMa 5.1", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "juice51-jrm33-mshell", "att": "auto/juice51-jrm33-mshell", "dataSource": "IRAP", "desc": "JRM33 + Con2020 M-Shell
Sampling: 5M
Provider: IRAP", "is_public": "True", "lastModificationDate": "2024-02-21T10:46:46Z", "lastUpdate": "2024-02-21T10:46:44Z", "measurement_type": "MagneticField", "mshell_juice51_m": {"__spz_name__": "M-Shell", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mshell_juice51_m", "dataset": "juice51-jrm33-mshell", "description": "M-Shell - Radial distance of the intersection between the magnetic field line and themagnetic equator", "is_public": "True", "name": "M-Shell", "start_date": "2031-07-19T03:10:00Z", "stop_date": "2034-12-31T23:55:00Z", "xmlid": "mshell_juice51_m"}, "mshell_juice51_p": {"__spz_name__": "M-Shell longitude", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mshell_juice51_p", "dataset": "juice51-jrm33-mshell", "description": "Longitude (S3RH) of the intersection between the magnetic field line and themagnetic equator", "is_public": "True", "name": "M-Shell longitude", "start_date": "2031-07-19T03:10:00Z", "stop_date": "2034-12-31T23:55:00Z", "units": "deg", "xmlid": "mshell_juice51_p"}, "mshell_juice51_s": {"__spz_name__": "curvilinear distance s", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mshell_juice51_s", "dataset": "juice51-jrm33-mshell", "description": "Curvilinear distance along the magnetic field line between the magnetic equator and the spacecraft", "is_public": "True", "name": "curvilinear distance s", "start_date": "2031-07-19T03:10:00Z", "stop_date": "2034-12-31T23:55:00Z", "units": "Rj", "xmlid": "mshell_juice51_s"}, "mshell_juice51_t": {"__spz_name__": "M-Shell colatitude", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mshell_juice51_t", "dataset": "juice51-jrm33-mshell", "description": "Colatitude (S3RH) of the intersection between the magnetic field line and themagnetic equator", "is_public": "True", "name": "M-Shell colatitude", "start_date": "2031-07-19T03:10:00Z", "stop_date": "2034-12-31T23:55:00Z", "units": "deg", "xmlid": "mshell_juice51_t"}, "name": "CReMa 5.1", "processing_level": "Calibrated", "sampling": "5M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Juice/Models/juice51-jrm33-mshell", "start_date": "2031-07-19T03:10:00Z", "stop_date": "2034-12-31T23:55:00Z", "target": "Jupiter", "xmlid": "juice51-jrm33-mshell"}, "name": "JRM33 + Con2020 M-Shell", "xmlid": "juice-jrm33-mshell"}, "JRM33_+_Con2020_field_model": {"__spz_name__": "JRM33 + Con2020 field model", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "juice-jrm33-model", "is_public": "True", "juice30_jrm33_model": {"PriorID": "juice-jup-cr30", "__spz_name__": "CReMA 3.0", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "juice30-jrm33-model", "att": "auto/juice30-jrm33-model", "b_jrm33_con_60_1_juice_jucr30_xyz": {"__spz_name__": "b_iau_jup", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_jrm33_con_60_1_juice_jucr30_xyz", "b_jrm33_con_60_1_juice_jucr30_xyz0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_jrm33_con_60_1_juice_jucr30_xyz(0)", "dataset": "juice30-jrm33-model", "index1": "0", "is_public": "True", "name": "bx", "parameter": "b_jrm33_con_60_1_juice_jucr30_xyz", "start_date": "2029-01-01T07:00:00Z", "stop_date": "2033-06-04T00:00:00Z", "xmlid": "b_jrm33_con_60_1_juice_jucr30_xyz(0)"}, "b_jrm33_con_60_1_juice_jucr30_xyz1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_jrm33_con_60_1_juice_jucr30_xyz(1)", "dataset": "juice30-jrm33-model", "index1": "1", "is_public": "True", "name": "by", "parameter": "b_jrm33_con_60_1_juice_jucr30_xyz", "start_date": "2029-01-01T07:00:00Z", "stop_date": "2033-06-04T00:00:00Z", "xmlid": "b_jrm33_con_60_1_juice_jucr30_xyz(1)"}, "b_jrm33_con_60_1_juice_jucr30_xyz2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_jrm33_con_60_1_juice_jucr30_xyz(2)", "dataset": "juice30-jrm33-model", "index1": "2", "is_public": "True", "name": "bz", "parameter": "b_jrm33_con_60_1_juice_jucr30_xyz", "start_date": "2029-01-01T07:00:00Z", "stop_date": "2033-06-04T00:00:00Z", "xmlid": "b_jrm33_con_60_1_juice_jucr30_xyz(2)"}, "dataset": "juice30-jrm33-model", "is_public": "True", "name": "b_iau_jup", "predefined": "1", "size": "3", "start_date": "2029-01-01T07:00:00Z", "stop_date": "2033-06-04T00:00:00Z", "template": "b_jrm33_con_##sampling##_##con##_##orbit##", "units": "nT", "xmlid": "b_jrm33_con_60_1_juice_jucr30_xyz"}, "b_jrm33_con_tot_60_1_juice_jucr30_xyz": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_jrm33_con_tot_60_1_juice_jucr30_xyz", "dataset": "juice30-jrm33-model", "is_public": "True", "name": "|b|", "predefined": "1", "start_date": "2029-01-01T07:00:00Z", "stop_date": "2033-06-04T00:00:00Z", "template": "b_jrm33_con_tot_##sampling##_##con##_##orbit##", "units": "nT", "xmlid": "b_jrm33_con_tot_60_1_juice_jucr30_xyz"}, "dataSource": "IRAP", "desc": "JRM33 + Con2020 jovian magnetic field model
Sampling: 1M
Provider: IRAP", "is_public": "True", "lastModificationDate": "2020-06-29T16:04:37Z", "lastUpdate": "2020-06-29T15:30:35Z", "measurement_type": "MagneticField", "name": "CReMA 3.0", "processing_level": "Calibrated", "sampling": "1M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Juice/Models/juice30-jrm33-model", "start_date": "2029-01-01T07:00:00Z", "stop_date": "2033-06-04T00:00:00Z", "target": "Jupiter", "xmlid": "juice30-jrm33-model"}, "juice32_jrm33_model": {"PriorID": "juice-jup-cr32", "__spz_name__": "CReMA 3.2", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "juice32-jrm33-model", "att": "auto/juice32-jrm33-model", "b_jrm33_con_60_1_juice_jucr32_xyz": {"__spz_name__": "b_iau_jup", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_jrm33_con_60_1_juice_jucr32_xyz", "b_jrm33_con_60_1_juice_jucr32_xyz0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_jrm33_con_60_1_juice_jucr32_xyz(0)", "dataset": "juice32-jrm33-model", "index1": "0", "is_public": "True", "name": "bx", "parameter": "b_jrm33_con_60_1_juice_jucr32_xyz", "start_date": "2028-01-01T07:00:00Z", "stop_date": "2033-06-24T00:00:00Z", "xmlid": "b_jrm33_con_60_1_juice_jucr32_xyz(0)"}, "b_jrm33_con_60_1_juice_jucr32_xyz1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_jrm33_con_60_1_juice_jucr32_xyz(1)", "dataset": "juice32-jrm33-model", "index1": "1", "is_public": "True", "name": "by", "parameter": "b_jrm33_con_60_1_juice_jucr32_xyz", "start_date": "2028-01-01T07:00:00Z", "stop_date": "2033-06-24T00:00:00Z", "xmlid": "b_jrm33_con_60_1_juice_jucr32_xyz(1)"}, "b_jrm33_con_60_1_juice_jucr32_xyz2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_jrm33_con_60_1_juice_jucr32_xyz(2)", "dataset": "juice32-jrm33-model", "index1": "2", "is_public": "True", "name": "bz", "parameter": "b_jrm33_con_60_1_juice_jucr32_xyz", "start_date": "2028-01-01T07:00:00Z", "stop_date": "2033-06-24T00:00:00Z", "xmlid": "b_jrm33_con_60_1_juice_jucr32_xyz(2)"}, "dataset": "juice32-jrm33-model", "is_public": "True", "name": "b_iau_jup", "predefined": "1", "size": "3", "start_date": "2028-01-01T07:00:00Z", "stop_date": "2033-06-24T00:00:00Z", "template": "b_jrm33_con_##sampling##_##con##_##orbit##", "units": "nT", "xmlid": "b_jrm33_con_60_1_juice_jucr32_xyz"}, "b_jrm33_con_tot_60_1_juice_jucr32_xyz": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_jrm33_con_tot_60_1_juice_jucr32_xyz", "dataset": "juice32-jrm33-model", "is_public": "True", "name": "|b|", "predefined": "1", "start_date": "2028-01-01T07:00:00Z", "stop_date": "2033-06-24T00:00:00Z", "template": "b_jrm33_con_tot_##sampling##_##con##_##orbit##", "units": "nT", "xmlid": "b_jrm33_con_tot_60_1_juice_jucr32_xyz"}, "dataSource": "IRAP", "desc": "JRM33 + Con2020 jovian magnetic field model
Sampling: 1M
Provider: IRAP", "is_public": "True", "lastModificationDate": "2020-06-29T16:04:16Z", "lastUpdate": "2020-06-29T15:32:20Z", "measurement_type": "MagneticField", "name": "CReMA 3.2", "processing_level": "Calibrated", "sampling": "1M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Juice/Models/juice32-jrm33-model", "start_date": "2028-01-01T07:00:00Z", "stop_date": "2033-06-24T00:00:00Z", "target": "Jupiter", "xmlid": "juice32-jrm33-model"}, "juice41_jrm33_model": {"PriorID": "juice-jup-cr41", "__spz_name__": "CReMa 4.1", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "juice41-jrm33-model", "att": "auto/juice41-jrm33-model", "b_jrm33_con_60_1_juice_jucr41_xyz": {"__spz_name__": "b_iau_jup", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_jrm33_con_60_1_juice_jucr41_xyz", "b_jrm33_con_60_1_juice_jucr41_xyz0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_jrm33_con_60_1_juice_jucr41_xyz(0)", "dataset": "juice41-jrm33-model", "index1": "0", "is_public": "True", "name": "bx", "parameter": "b_jrm33_con_60_1_juice_jucr41_xyz", "start_date": "2030-06-01T07:00:00Z", "stop_date": "2036-08-20T00:00:00Z", "xmlid": "b_jrm33_con_60_1_juice_jucr41_xyz(0)"}, "b_jrm33_con_60_1_juice_jucr41_xyz1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_jrm33_con_60_1_juice_jucr41_xyz(1)", "dataset": "juice41-jrm33-model", "index1": "1", "is_public": "True", "name": "by", "parameter": "b_jrm33_con_60_1_juice_jucr41_xyz", "start_date": "2030-06-01T07:00:00Z", "stop_date": "2036-08-20T00:00:00Z", "xmlid": "b_jrm33_con_60_1_juice_jucr41_xyz(1)"}, "b_jrm33_con_60_1_juice_jucr41_xyz2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_jrm33_con_60_1_juice_jucr41_xyz(2)", "dataset": "juice41-jrm33-model", "index1": "2", "is_public": "True", "name": "bz", "parameter": "b_jrm33_con_60_1_juice_jucr41_xyz", "start_date": "2030-06-01T07:00:00Z", "stop_date": "2036-08-20T00:00:00Z", "xmlid": "b_jrm33_con_60_1_juice_jucr41_xyz(2)"}, "dataset": "juice41-jrm33-model", "is_public": "True", "name": "b_iau_jup", "predefined": "1", "size": "3", "start_date": "2030-06-01T07:00:00Z", "stop_date": "2036-08-20T00:00:00Z", "template": "b_jrm33_con_##sampling##_##con##_##orbit##", "units": "nT", "xmlid": "b_jrm33_con_60_1_juice_jucr41_xyz"}, "b_jrm33_con_tot_60_1_juice_jucr41_xyz": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_jrm33_con_tot_60_1_juice_jucr41_xyz", "dataset": "juice41-jrm33-model", "is_public": "True", "name": "|b|", "predefined": "1", "start_date": "2030-06-01T07:00:00Z", "stop_date": "2036-08-20T00:00:00Z", "template": "b_jrm33_con_tot_##sampling##_##con##_##orbit##", "units": "nT", "xmlid": "b_jrm33_con_tot_60_1_juice_jucr41_xyz"}, "dataSource": "IRAP", "desc": "JRM33 + Con2020 jovian magnetic field model
Sampling: 1M
Provider: IRAP", "is_public": "True", "lastModificationDate": "2020-06-29T16:03:51Z", "lastUpdate": "2020-06-29T15:34:03Z", "measurement_type": "MagneticField", "name": "CReMa 4.1", "processing_level": "Calibrated", "sampling": "1M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Juice/Models/juice41-jrm33-model", "start_date": "2030-06-01T07:00:00Z", "stop_date": "2036-08-20T00:00:00Z", "target": "Jupiter", "xmlid": "juice41-jrm33-model"}, "juice51_jrm33_model": {"PriorID": "juice-jup-cr51", "__spz_name__": "CReMa 5.1", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "juice51-jrm33-model", "att": "auto/juice51-jrm33-model", "b_jrm33_con_60_1_juice_jucr51_xyz": {"__spz_name__": "b_iau_jup", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_jrm33_con_60_1_juice_jucr51_xyz", "b_jrm33_con_60_1_juice_jucr51_xyz0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_jrm33_con_60_1_juice_jucr51_xyz(0)", "dataset": "juice51-jrm33-model", "index1": "0", "is_public": "True", "name": "bx", "parameter": "b_jrm33_con_60_1_juice_jucr51_xyz", "start_date": "2031-01-20T00:00:00Z", "stop_date": "2035-10-05T01:50:00Z", "xmlid": "b_jrm33_con_60_1_juice_jucr51_xyz(0)"}, "b_jrm33_con_60_1_juice_jucr51_xyz1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_jrm33_con_60_1_juice_jucr51_xyz(1)", "dataset": "juice51-jrm33-model", "index1": "1", "is_public": "True", "name": "by", "parameter": "b_jrm33_con_60_1_juice_jucr51_xyz", "start_date": "2031-01-20T00:00:00Z", "stop_date": "2035-10-05T01:50:00Z", "xmlid": "b_jrm33_con_60_1_juice_jucr51_xyz(1)"}, "b_jrm33_con_60_1_juice_jucr51_xyz2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_jrm33_con_60_1_juice_jucr51_xyz(2)", "dataset": "juice51-jrm33-model", "index1": "2", "is_public": "True", "name": "bz", "parameter": "b_jrm33_con_60_1_juice_jucr51_xyz", "start_date": "2031-01-20T00:00:00Z", "stop_date": "2035-10-05T01:50:00Z", "xmlid": "b_jrm33_con_60_1_juice_jucr51_xyz(2)"}, "dataset": "juice51-jrm33-model", "is_public": "True", "name": "b_iau_jup", "predefined": "1", "size": "3", "start_date": "2031-01-20T00:00:00Z", "stop_date": "2035-10-05T01:50:00Z", "template": "b_jrm33_con_##sampling##_##con##_##orbit##", "units": "nT", "xmlid": "b_jrm33_con_60_1_juice_jucr51_xyz"}, "b_jrm33_con_tot_60_1_juice_jucr51_xyz": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_jrm33_con_tot_60_1_juice_jucr51_xyz", "dataset": "juice51-jrm33-model", "is_public": "True", "name": "|b|", "predefined": "1", "start_date": "2031-01-20T00:00:00Z", "stop_date": "2035-10-05T01:50:00Z", "template": "b_jrm33_con_tot_##sampling##_##con##_##orbit##", "units": "nT", "xmlid": "b_jrm33_con_tot_60_1_juice_jucr51_xyz"}, "dataSource": "IRAP", "desc": "JRM33 + Con2020 jovian magnetic field model
Sampling: 1M
Provider: IRAP", "is_public": "True", "lastModificationDate": "2024-06-07T10:11:14Z", "lastUpdate": "2024-06-07T10:10:43Z", "measurement_type": "MagneticField", "name": "CReMa 5.1", "processing_level": "Calibrated", "sampling": "1M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Juice/Models/juice51-jrm33-model", "start_date": "2031-01-20T00:00:00Z", "stop_date": "2035-10-05T01:50:00Z", "target": "Jupiter", "xmlid": "juice51-jrm33-model"}, "name": "JRM33 + Con2020 field model", "xmlid": "juice-jrm33-model"}, "__spz_name__": "Jovian Magnetic Field Models", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Juice_models", "att": "auto/Juice_models", "desc": "", "is_public": "True", "name": "Jovian Magnetic Field Models", "xmlid": "Juice_models"}, "__spz_name__": "JUICE", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Juice", "att": "auto/Juice", "desc": "JUpiter ICy moons Explorer
2023-04-14T00:00:00
Jupiter arrival : 2031-07-xx", "is_public": "True", "name": "JUICE", "rank": "9", "target": "Jupiter", "xmlid": "Juice"}, "Juno": {"Ephemeris": {"__spz_name__": "Ephemeris", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Juno_ephemeris", "att": "auto/Juno_ephemeris", "desc": "", "is_public": "True", "juno_cruise_all": {"__spz_name__": "cruise", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "juno-cruise-all", "att": "auto/juno-cruise-all", "dataSource": "IRAP", "desc": "
Sampling: 1H
Provider: IRAP", "is_public": "True", "juno_cruise_lat": {"__spz_name__": "lat_iau_sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juno_cruise_lat", "dataset": "juno-cruise-all", "is_public": "True", "name": "lat_iau_sun", "start_date": "2011-09-01T00:00:00Z", "stop_date": "2016-11-02T22:00:00Z", "units": "deg", "xmlid": "juno_cruise_lat"}, "juno_cruise_lon": {"__spz_name__": "lon_iau_sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juno_cruise_lon", "dataset": "juno-cruise-all", "is_public": "True", "name": "lon_iau_sun", "start_date": "2011-09-01T00:00:00Z", "stop_date": "2016-11-02T22:00:00Z", "units": "deg", "xmlid": "juno_cruise_lon"}, "juno_cruise_r": {"__spz_name__": "distance juno-sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juno_cruise_r", "dataset": "juno-cruise-all", "is_public": "True", "name": "distance juno-sun", "start_date": "2011-09-01T00:00:00Z", "stop_date": "2016-11-02T22:00:00Z", "units": "AU", "xmlid": "juno_cruise_r"}, "juno_cruise_xyz": {"__spz_name__": "xyz_iau_sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juno_cruise_xyz", "dataset": "juno-cruise-all", "is_public": "True", "juno_cruise_xyz0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juno_cruise_xyz(0)", "dataset": "juno-cruise-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "juno_cruise_xyz", "start_date": "2011-09-01T00:00:00Z", "stop_date": "2016-11-02T22:00:00Z", "xmlid": "juno_cruise_xyz(0)"}, "juno_cruise_xyz1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juno_cruise_xyz(1)", "dataset": "juno-cruise-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "juno_cruise_xyz", "start_date": "2011-09-01T00:00:00Z", "stop_date": "2016-11-02T22:00:00Z", "xmlid": "juno_cruise_xyz(1)"}, "juno_cruise_xyz2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juno_cruise_xyz(2)", "dataset": "juno-cruise-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "juno_cruise_xyz", "start_date": "2011-09-01T00:00:00Z", "stop_date": "2016-11-02T22:00:00Z", "xmlid": "juno_cruise_xyz(2)"}, "name": "xyz_iau_sun", "size": "3", "start_date": "2011-09-01T00:00:00Z", "stop_date": "2016-11-02T22:00:00Z", "units": "AU", "xmlid": "juno_cruise_xyz"}, "lastModificationDate": "2023-03-10T08:32:23Z", "lastUpdate": "2023-03-10T08:32:00Z", "measurement_type": "Ephemeris", "name": "cruise", "processing_level": "Calibrated", "sampling": "1H", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Juno/Ephemeris/juno-cruise-all", "start_date": "2011-09-01T00:00:00Z", "stop_date": "2016-11-02T22:00:00Z", "target": "Heliosphere", "xmlid": "juno-cruise-all"}, "name": "Ephemeris", "orbit_jupiter": {"__spz_name__": "orbit jupiter", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "juno-jupiter-orb", "is_public": "True", "juno_ephem_orb1": {"__spz_name__": "1 sec@PDS", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "juno-ephem-orb1", "att": "auto/juno-ephem-orb1", "dataSource": "PDS", "desc": "
Sampling: 1S
Provider: PDS", "is_public": "True", "juno_eph_orb_jso": {"__spz_name__": "xyz_jso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juno_eph_orb_jso", "dataset": "juno-ephem-orb1", "description": "Juno position in JSO (ss) coordinates", "is_public": "True", "juno_eph_orb_jso0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juno_eph_orb_jso(0)", "dataset": "juno-ephem-orb1", "index1": "0", "is_public": "True", "name": "x", "parameter": "juno_eph_orb_jso", "start_date": "2016-07-07T00:00:00Z", "stop_date": "2023-11-24T00:00:00Z", "xmlid": "juno_eph_orb_jso(0)"}, "juno_eph_orb_jso1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juno_eph_orb_jso(1)", "dataset": "juno-ephem-orb1", "index1": "1", "is_public": "True", "name": "y", "parameter": "juno_eph_orb_jso", "start_date": "2016-07-07T00:00:00Z", "stop_date": "2023-11-24T00:00:00Z", "xmlid": "juno_eph_orb_jso(1)"}, "juno_eph_orb_jso2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juno_eph_orb_jso(2)", "dataset": "juno-ephem-orb1", "index1": "2", "is_public": "True", "name": "z", "parameter": "juno_eph_orb_jso", "start_date": "2016-07-07T00:00:00Z", "stop_date": "2023-11-24T00:00:00Z", "xmlid": "juno_eph_orb_jso(2)"}, "name": "xyz_jso", "size": "3", "start_date": "2016-07-07T00:00:00Z", "stop_date": "2023-11-24T00:00:00Z", "units": "Rj", "xmlid": "juno_eph_orb_jso"}, "juno_eph_orb_r": {"__spz_name__": "distance juno-jup", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juno_eph_orb_r", "dataset": "juno-ephem-orb1", "is_public": "True", "name": "distance juno-jup", "start_date": "2016-07-07T00:00:00Z", "stop_date": "2023-11-24T00:00:00Z", "units": "Rj", "xmlid": "juno_eph_orb_r"}, "juno_eph_orb_xyz": {"__spz_name__": "xyz_iau_jupiter", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juno_eph_orb_xyz", "dataset": "juno-ephem-orb1", "description": "Juno position in IAU Jupiter (pc) coordinates", "is_public": "True", "juno_eph_orb_xyz0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juno_eph_orb_xyz(0)", "dataset": "juno-ephem-orb1", "index1": "0", "is_public": "True", "name": "x", "parameter": "juno_eph_orb_xyz", "start_date": "2016-07-07T00:00:00Z", "stop_date": "2023-11-24T00:00:00Z", "xmlid": "juno_eph_orb_xyz(0)"}, "juno_eph_orb_xyz1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juno_eph_orb_xyz(1)", "dataset": "juno-ephem-orb1", "index1": "1", "is_public": "True", "name": "y", "parameter": "juno_eph_orb_xyz", "start_date": "2016-07-07T00:00:00Z", "stop_date": "2023-11-24T00:00:00Z", "xmlid": "juno_eph_orb_xyz(1)"}, "juno_eph_orb_xyz2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juno_eph_orb_xyz(2)", "dataset": "juno-ephem-orb1", "index1": "2", "is_public": "True", "name": "z", "parameter": "juno_eph_orb_xyz", "start_date": "2016-07-07T00:00:00Z", "stop_date": "2023-11-24T00:00:00Z", "xmlid": "juno_eph_orb_xyz(2)"}, "name": "xyz_iau_jupiter", "size": "3", "start_date": "2016-07-07T00:00:00Z", "stop_date": "2023-11-24T00:00:00Z", "units": "Rj", "xmlid": "juno_eph_orb_xyz"}, "lastModificationDate": "2024-07-07T07:16:03Z", "lastUpdate": "2024-07-07T02:02:59Z", "measurement_type": "Ephemeris", "name": "1 sec@PDS", "processing_level": "Calibrated", "sampling": "1S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Juno/Ephemeris/juno-ephem-orb1", "start_date": "2016-07-07T00:00:00Z", "stop_date": "2023-11-24T00:00:00Z", "target": "Jupiter", "xmlid": "juno-ephem-orb1"}, "juno_jupiter_all": {"__spz_name__": "5 min@NAIF", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "juno-jupiter-all", "att": "auto/juno-jupiter-all", "dataSource": "IRAP", "desc": "
Sampling: 300S
Provider: IRAP", "is_public": "True", "juno_jup_jsm": {"__spz_name__": "xyz_jsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juno_jup_jsm", "dataset": "juno-jupiter-all", "is_public": "True", "juno_jup_jsm0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juno_jup_jsm(0)", "dataset": "juno-jupiter-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "juno_jup_jsm", "start_date": "2016-06-01T00:00:00Z", "stop_date": "2025-10-19T23:55:00Z", "xmlid": "juno_jup_jsm(0)"}, "juno_jup_jsm1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juno_jup_jsm(1)", "dataset": "juno-jupiter-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "juno_jup_jsm", "start_date": "2016-06-01T00:00:00Z", "stop_date": "2025-10-19T23:55:00Z", "xmlid": "juno_jup_jsm(1)"}, "juno_jup_jsm2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juno_jup_jsm(2)", "dataset": "juno-jupiter-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "juno_jup_jsm", "start_date": "2016-06-01T00:00:00Z", "stop_date": "2025-10-19T23:55:00Z", "xmlid": "juno_jup_jsm(2)"}, "name": "xyz_jsm", "size": "3", "start_date": "2016-06-01T00:00:00Z", "stop_date": "2025-10-19T23:55:00Z", "units": "Rj", "xmlid": "juno_jup_jsm"}, "juno_jup_jso": {"__spz_name__": "xyz_jso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juno_jup_jso", "dataset": "juno-jupiter-all", "is_public": "True", "juno_jup_jso0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juno_jup_jso(0)", "dataset": "juno-jupiter-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "juno_jup_jso", "start_date": "2016-06-01T00:00:00Z", "stop_date": "2025-10-19T23:55:00Z", "xmlid": "juno_jup_jso(0)"}, "juno_jup_jso1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juno_jup_jso(1)", "dataset": "juno-jupiter-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "juno_jup_jso", "start_date": "2016-06-01T00:00:00Z", "stop_date": "2025-10-19T23:55:00Z", "xmlid": "juno_jup_jso(1)"}, "juno_jup_jso2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juno_jup_jso(2)", "dataset": "juno-jupiter-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "juno_jup_jso", "start_date": "2016-06-01T00:00:00Z", "stop_date": "2025-10-19T23:55:00Z", "xmlid": "juno_jup_jso(2)"}, "name": "xyz_jso", "size": "3", "start_date": "2016-06-01T00:00:00Z", "stop_date": "2025-10-19T23:55:00Z", "units": "Rj", "xmlid": "juno_jup_jso"}, "juno_jup_lat": {"__spz_name__": "lat_iau_jupiter", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juno_jup_lat", "dataset": "juno-jupiter-all", "is_public": "True", "name": "lat_iau_jupiter", "start_date": "2016-06-01T00:00:00Z", "stop_date": "2025-10-19T23:55:00Z", "units": "deg", "xmlid": "juno_jup_lat"}, "juno_jup_lon": {"__spz_name__": "lon_iau_jupiter", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juno_jup_lon", "dataset": "juno-jupiter-all", "is_public": "True", "name": "lon_iau_jupiter", "start_date": "2016-06-01T00:00:00Z", "stop_date": "2025-10-19T23:55:00Z", "units": "deg", "xmlid": "juno_jup_lon"}, "juno_jup_mlat": {"__spz_name__": "mlat", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juno_jup_mlat", "dataset": "juno-jupiter-all", "description": "mlat=10.31\u00b0xcos(196.61\u00b0-lon_iau_west)+lat_iau", "is_public": "True", "name": "mlat", "start_date": "2016-06-01T00:00:00Z", "stop_date": "2025-10-19T23:55:00Z", "units": "deg", "xmlid": "juno_jup_mlat"}, "juno_jup_r": {"__spz_name__": "distance juno-jup", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juno_jup_r", "dataset": "juno-jupiter-all", "is_public": "True", "name": "distance juno-jup", "start_date": "2016-06-01T00:00:00Z", "stop_date": "2025-10-19T23:55:00Z", "units": "Rj", "xmlid": "juno_jup_r"}, "juno_jup_xyz": {"__spz_name__": "xyz_iau_jupiter", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juno_jup_xyz", "dataset": "juno-jupiter-all", "is_public": "True", "juno_jup_xyz0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juno_jup_xyz(0)", "dataset": "juno-jupiter-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "juno_jup_xyz", "start_date": "2016-06-01T00:00:00Z", "stop_date": "2025-10-19T23:55:00Z", "xmlid": "juno_jup_xyz(0)"}, "juno_jup_xyz1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juno_jup_xyz(1)", "dataset": "juno-jupiter-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "juno_jup_xyz", "start_date": "2016-06-01T00:00:00Z", "stop_date": "2025-10-19T23:55:00Z", "xmlid": "juno_jup_xyz(1)"}, "juno_jup_xyz2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juno_jup_xyz(2)", "dataset": "juno-jupiter-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "juno_jup_xyz", "start_date": "2016-06-01T00:00:00Z", "stop_date": "2025-10-19T23:55:00Z", "xmlid": "juno_jup_xyz(2)"}, "name": "xyz_iau_jupiter", "size": "3", "start_date": "2016-06-01T00:00:00Z", "stop_date": "2025-10-19T23:55:00Z", "units": "Rj", "xmlid": "juno_jup_xyz"}, "juno_orb_num": {"__spz_name__": "juno_orbit_num", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juno_orb_num", "dataset": "juno-jupiter-all", "display_type": "timeseries", "is_public": "True", "name": "juno_orbit_num", "start_date": "2016-06-01T00:00:00Z", "stop_date": "2025-10-19T23:55:00Z", "xmlid": "juno_orb_num"}, "lastModificationDate": "2024-03-21T15:56:24Z", "lastUpdate": "2024-03-21T15:56:24Z", "measurement_type": "Ephemeris", "name": "5 min@NAIF", "processing_level": "Calibrated", "sampling": "300S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Juno/Ephemeris/juno-jupiter-all", "start_date": "2016-06-01T00:00:00Z", "stop_date": "2025-10-19T23:55:00Z", "target": "Jupiter", "xmlid": "juno-jupiter-all"}, "juno_jupiter_all1s": {"__spz_name__": "1 sec@NAIF", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "juno-jupiter-all1s", "att": "auto/juno-jupiter-all1s", "dataSource": "IRAP", "desc": "
Sampling: 1S
Provider: IRAP", "is_public": "True", "juno_jup_jsm1s": {"__spz_name__": "xyz_jsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juno_jup_jsm1s", "dataset": "juno-jupiter-all1s", "is_public": "True", "juno_jup_jsm1s0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juno_jup_jsm1s(0)", "dataset": "juno-jupiter-all1s", "index1": "0", "is_public": "True", "name": "x", "parameter": "juno_jup_jsm1s", "start_date": "2016-07-06T00:00:00Z", "stop_date": "2025-10-20T00:00:00Z", "xmlid": "juno_jup_jsm1s(0)"}, "juno_jup_jsm1s1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juno_jup_jsm1s(1)", "dataset": "juno-jupiter-all1s", "index1": "1", "is_public": "True", "name": "y", "parameter": "juno_jup_jsm1s", "start_date": "2016-07-06T00:00:00Z", "stop_date": "2025-10-20T00:00:00Z", "xmlid": "juno_jup_jsm1s(1)"}, "juno_jup_jsm1s2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juno_jup_jsm1s(2)", "dataset": "juno-jupiter-all1s", "index1": "2", "is_public": "True", "name": "z", "parameter": "juno_jup_jsm1s", "start_date": "2016-07-06T00:00:00Z", "stop_date": "2025-10-20T00:00:00Z", "xmlid": "juno_jup_jsm1s(2)"}, "name": "xyz_jsm", "size": "3", "start_date": "2016-07-06T00:00:00Z", "stop_date": "2025-10-20T00:00:00Z", "units": "Rj", "xmlid": "juno_jup_jsm1s"}, "juno_jup_jso1s": {"__spz_name__": "xyz_jso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juno_jup_jso1s", "dataset": "juno-jupiter-all1s", "is_public": "True", "juno_jup_jso1s0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juno_jup_jso1s(0)", "dataset": "juno-jupiter-all1s", "index1": "0", "is_public": "True", "name": "x", "parameter": "juno_jup_jso1s", "start_date": "2016-07-06T00:00:00Z", "stop_date": "2025-10-20T00:00:00Z", "xmlid": "juno_jup_jso1s(0)"}, "juno_jup_jso1s1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juno_jup_jso1s(1)", "dataset": "juno-jupiter-all1s", "index1": "1", "is_public": "True", "name": "y", "parameter": "juno_jup_jso1s", "start_date": "2016-07-06T00:00:00Z", "stop_date": "2025-10-20T00:00:00Z", "xmlid": "juno_jup_jso1s(1)"}, "juno_jup_jso1s2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juno_jup_jso1s(2)", "dataset": "juno-jupiter-all1s", "index1": "2", "is_public": "True", "name": "z", "parameter": "juno_jup_jso1s", "start_date": "2016-07-06T00:00:00Z", "stop_date": "2025-10-20T00:00:00Z", "xmlid": "juno_jup_jso1s(2)"}, "name": "xyz_jso", "size": "3", "start_date": "2016-07-06T00:00:00Z", "stop_date": "2025-10-20T00:00:00Z", "units": "Rj", "xmlid": "juno_jup_jso1s"}, "juno_jup_lat1s": {"__spz_name__": "lat_iau_jupiter", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juno_jup_lat1s", "dataset": "juno-jupiter-all1s", "is_public": "True", "name": "lat_iau_jupiter", "start_date": "2016-07-06T00:00:00Z", "stop_date": "2025-10-20T00:00:00Z", "units": "deg", "xmlid": "juno_jup_lat1s"}, "juno_jup_lon1s": {"__spz_name__": "lon_iau_jupiter", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juno_jup_lon1s", "dataset": "juno-jupiter-all1s", "is_public": "True", "name": "lon_iau_jupiter", "start_date": "2016-07-06T00:00:00Z", "stop_date": "2025-10-20T00:00:00Z", "units": "deg", "xmlid": "juno_jup_lon1s"}, "juno_jup_mlat1s": {"__spz_name__": "mlat", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juno_jup_mlat1s", "dataset": "juno-jupiter-all1s", "description": "mlat=10.31\u00b0xcos(196.61\u00b0-lon_iau_west)+lat_iau", "is_public": "True", "name": "mlat", "start_date": "2016-07-06T00:00:00Z", "stop_date": "2025-10-20T00:00:00Z", "units": "deg", "xmlid": "juno_jup_mlat1s"}, "juno_jup_r1s": {"__spz_name__": "distance juno-jup", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juno_jup_r1s", "dataset": "juno-jupiter-all1s", "is_public": "True", "name": "distance juno-jup", "start_date": "2016-07-06T00:00:00Z", "stop_date": "2025-10-20T00:00:00Z", "units": "Rj", "xmlid": "juno_jup_r1s"}, "juno_jup_xyz1s": {"__spz_name__": "xyz_iau_jupiter", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juno_jup_xyz1s", "dataset": "juno-jupiter-all1s", "is_public": "True", "juno_jup_xyz1s0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juno_jup_xyz1s(0)", "dataset": "juno-jupiter-all1s", "index1": "0", "is_public": "True", "name": "x", "parameter": "juno_jup_xyz1s", "start_date": "2016-07-06T00:00:00Z", "stop_date": "2025-10-20T00:00:00Z", "xmlid": "juno_jup_xyz1s(0)"}, "juno_jup_xyz1s1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juno_jup_xyz1s(1)", "dataset": "juno-jupiter-all1s", "index1": "1", "is_public": "True", "name": "y", "parameter": "juno_jup_xyz1s", "start_date": "2016-07-06T00:00:00Z", "stop_date": "2025-10-20T00:00:00Z", "xmlid": "juno_jup_xyz1s(1)"}, "juno_jup_xyz1s2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juno_jup_xyz1s(2)", "dataset": "juno-jupiter-all1s", "index1": "2", "is_public": "True", "name": "z", "parameter": "juno_jup_xyz1s", "start_date": "2016-07-06T00:00:00Z", "stop_date": "2025-10-20T00:00:00Z", "xmlid": "juno_jup_xyz1s(2)"}, "name": "xyz_iau_jupiter", "size": "3", "start_date": "2016-07-06T00:00:00Z", "stop_date": "2025-10-20T00:00:00Z", "units": "Rj", "xmlid": "juno_jup_xyz1s"}, "lastModificationDate": "2024-05-29T02:01:28Z", "lastUpdate": "2024-05-29T02:01:27Z", "measurement_type": "Ephemeris", "name": "1 sec@NAIF", "processing_level": "Calibrated", "sampling": "1S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Juno/Ephemeris/juno-jupiter-all1s", "start_date": "2016-07-06T00:00:00Z", "stop_date": "2025-10-20T00:00:00Z", "target": "Jupiter", "xmlid": "juno-jupiter-all1s"}, "name": "orbit jupiter", "xmlid": "juno-jupiter-orb"}, "xmlid": "Juno_ephemeris"}, "FGM": {"__spz_name__": "FGM", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Juno_fgm", "att": "auto/Juno_fgm", "cruise": {"__spz_name__": "cruise", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "juno-fgm-cruise", "is_public": "True", "juno_fgm_cruise60": {"__spz_name__": "1 min", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "juno-fgm-cruise60", "att": "auto/juno-fgm-cruise60", "dataSource": "PDS", "desc": "One minute averaged magnetic field
Sampling: 60S
Provider: PDS", "is_public": "True", "juno_fgm_cruise60_mag": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juno_fgm_cruise60_mag", "dataset": "juno-fgm-cruise60", "description": "Scalar magnitude of the magnetic field in nT", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "2011-08-25T15:19:56Z", "stop_date": "2016-06-29T23:54:31Z", "ucd": "phys.magField", "units": "nT", "xmlid": "juno_fgm_cruise60_mag"}, "juno_fgm_cruise60_rtn": {"__spz_name__": "b_rtn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juno_fgm_cruise60_rtn", "dataset": "juno-fgm-cruise60", "description": "Magnetic field vector components in RTN (se) coordinates", "display_type": "timeseries", "is_public": "True", "juno_fgm_cruise60_rtn0": {"__spz_name__": "br", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juno_fgm_cruise60_rtn(0)", "dataset": "juno-fgm-cruise60", "index1": "0", "is_public": "True", "name": "br", "parameter": "juno_fgm_cruise60_rtn", "start_date": "2011-08-25T15:19:56Z", "stop_date": "2016-06-29T23:54:31Z", "xmlid": "juno_fgm_cruise60_rtn(0)"}, "juno_fgm_cruise60_rtn1": {"__spz_name__": "bt", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juno_fgm_cruise60_rtn(1)", "dataset": "juno-fgm-cruise60", "index1": "1", "is_public": "True", "name": "bt", "parameter": "juno_fgm_cruise60_rtn", "start_date": "2011-08-25T15:19:56Z", "stop_date": "2016-06-29T23:54:31Z", "xmlid": "juno_fgm_cruise60_rtn(1)"}, "juno_fgm_cruise60_rtn2": {"__spz_name__": "bn", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juno_fgm_cruise60_rtn(2)", "dataset": "juno-fgm-cruise60", "index1": "2", "is_public": "True", "name": "bn", "parameter": "juno_fgm_cruise60_rtn", "start_date": "2011-08-25T15:19:56Z", "stop_date": "2016-06-29T23:54:31Z", "xmlid": "juno_fgm_cruise60_rtn(2)"}, "name": "b_rtn", "size": "3", "start_date": "2011-08-25T15:19:56Z", "stop_date": "2016-06-29T23:54:31Z", "ucd": "phys.magField", "units": "nT", "xmlid": "juno_fgm_cruise60_rtn"}, "lastModificationDate": "2023-03-09T17:07:50Z", "lastUpdate": "2023-03-09T17:03:53Z", "measurement_type": "MagneticField", "name": "1 min", "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Juno/FGM/juno-fgm-cruise60", "start_date": "2011-08-25T15:19:56Z", "stop_date": "2016-06-29T23:54:31Z", "target": "Heliosphere", "xmlid": "juno-fgm-cruise60"}, "name": "cruise", "xmlid": "juno-fgm-cruise"}, "desc": "Fluxgate Magnetometer
Magnetometer", "is_public": "True", "name": "FGM", "orbit_jupiter": {"__spz_name__": "orbit jupiter", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "juno-fgm-orb", "is_public": "True", "juno_fgm_orb1": {"__spz_name__": "1 sec", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "juno-fgm-orb1", "att": "auto/juno-fgm-orb1", "dataSource": "PDS", "desc": "One second averaged magnetic field
Sampling: 1S
Provider: PDS", "is_public": "True", "juno_fgm_orb1_iau": {"__spz_name__": "b_iau_jupiter", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juno_fgm_orb1_iau", "dataset": "juno-fgm-orb1", "description": "Magnetic field vector components in IAU Jupiter (pc) coordinates", "display_type": "timeseries", "is_public": "True", "juno_fgm_orb1_iau0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juno_fgm_orb1_iau(0)", "dataset": "juno-fgm-orb1", "index1": "0", "is_public": "True", "name": "bx", "parameter": "juno_fgm_orb1_iau", "start_date": "2016-07-07T00:00:00Z", "stop_date": "2023-11-24T00:00:00Z", "xmlid": "juno_fgm_orb1_iau(0)"}, "juno_fgm_orb1_iau1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juno_fgm_orb1_iau(1)", "dataset": "juno-fgm-orb1", "index1": "1", "is_public": "True", "name": "by", "parameter": "juno_fgm_orb1_iau", "start_date": "2016-07-07T00:00:00Z", "stop_date": "2023-11-24T00:00:00Z", "xmlid": "juno_fgm_orb1_iau(1)"}, "juno_fgm_orb1_iau2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juno_fgm_orb1_iau(2)", "dataset": "juno-fgm-orb1", "index1": "2", "is_public": "True", "name": "bz", "parameter": "juno_fgm_orb1_iau", "start_date": "2016-07-07T00:00:00Z", "stop_date": "2023-11-24T00:00:00Z", "xmlid": "juno_fgm_orb1_iau(2)"}, "name": "b_iau_jupiter", "size": "3", "start_date": "2016-07-07T00:00:00Z", "stop_date": "2023-11-24T00:00:00Z", "ucd": "phys.magField", "units": "nT", "xmlid": "juno_fgm_orb1_iau"}, "juno_fgm_orb1_jso": {"__spz_name__": "b_jso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juno_fgm_orb1_jso", "dataset": "juno-fgm-orb1", "description": "Magnetic field vector components in JSO (ss) coordinates", "display_type": "timeseries", "is_public": "True", "juno_fgm_orb1_jso0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juno_fgm_orb1_jso(0)", "dataset": "juno-fgm-orb1", "index1": "0", "is_public": "True", "name": "bx", "parameter": "juno_fgm_orb1_jso", "start_date": "2016-07-07T00:00:00Z", "stop_date": "2023-11-24T00:00:00Z", "xmlid": "juno_fgm_orb1_jso(0)"}, "juno_fgm_orb1_jso1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juno_fgm_orb1_jso(1)", "dataset": "juno-fgm-orb1", "index1": "1", "is_public": "True", "name": "by", "parameter": "juno_fgm_orb1_jso", "start_date": "2016-07-07T00:00:00Z", "stop_date": "2023-11-24T00:00:00Z", "xmlid": "juno_fgm_orb1_jso(1)"}, "juno_fgm_orb1_jso2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juno_fgm_orb1_jso(2)", "dataset": "juno-fgm-orb1", "index1": "2", "is_public": "True", "name": "bz", "parameter": "juno_fgm_orb1_jso", "start_date": "2016-07-07T00:00:00Z", "stop_date": "2023-11-24T00:00:00Z", "xmlid": "juno_fgm_orb1_jso(2)"}, "name": "b_jso", "size": "3", "start_date": "2016-07-07T00:00:00Z", "stop_date": "2023-11-24T00:00:00Z", "ucd": "phys.magField", "units": "nT", "xmlid": "juno_fgm_orb1_jso"}, "juno_fgm_orb1_mag": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juno_fgm_orb1_mag", "dataset": "juno-fgm-orb1", "description": "Scalar magnitude of the magnetic field in nT", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "2016-07-07T00:00:00Z", "stop_date": "2023-11-24T00:00:00Z", "ucd": "phys.magField", "units": "nT", "xmlid": "juno_fgm_orb1_mag"}, "juno_fgm_orb1_pl": {"__spz_name__": "b_pl", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juno_fgm_orb1_pl", "dataset": "juno-fgm-orb1", "description": "Magnetic field vector components in pl coordinates", "display_type": "timeseries", "is_public": "True", "juno_fgm_orb1_pl0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juno_fgm_orb1_pl(0)", "dataset": "juno-fgm-orb1", "index1": "0", "is_public": "True", "name": "bx", "parameter": "juno_fgm_orb1_pl", "start_date": "2016-07-07T00:00:00Z", "stop_date": "2023-11-24T00:00:00Z", "xmlid": "juno_fgm_orb1_pl(0)"}, "juno_fgm_orb1_pl1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juno_fgm_orb1_pl(1)", "dataset": "juno-fgm-orb1", "index1": "1", "is_public": "True", "name": "by", "parameter": "juno_fgm_orb1_pl", "start_date": "2016-07-07T00:00:00Z", "stop_date": "2023-11-24T00:00:00Z", "xmlid": "juno_fgm_orb1_pl(1)"}, "juno_fgm_orb1_pl2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juno_fgm_orb1_pl(2)", "dataset": "juno-fgm-orb1", "index1": "2", "is_public": "True", "name": "bz", "parameter": "juno_fgm_orb1_pl", "start_date": "2016-07-07T00:00:00Z", "stop_date": "2023-11-24T00:00:00Z", "xmlid": "juno_fgm_orb1_pl(2)"}, "name": "b_pl", "size": "3", "start_date": "2016-07-07T00:00:00Z", "stop_date": "2023-11-24T00:00:00Z", "ucd": "phys.magField", "units": "nT", "xmlid": "juno_fgm_orb1_pl"}, "lastModificationDate": "2024-07-07T07:25:12Z", "lastUpdate": "2024-07-07T07:24:24Z", "measurement_type": "MagneticField", "name": "1 sec", "processing_level": "Calibrated", "sampling": "1S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Juno/FGM/juno-fgm-orb1", "start_date": "2016-07-07T00:00:00Z", "stop_date": "2023-11-24T00:00:00Z", "target": "Jupiter", "xmlid": "juno-fgm-orb1"}, "juno_fgm_orb60": {"__spz_name__": "1 min", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "juno-fgm-orb60", "att": "auto/juno-fgm-orb60", "dataSource": "PDS", "desc": "One minute averaged magnetic field
Sampling: 60S
Provider: PDS", "is_public": "True", "juno_fgm_orb60_iau": {"__spz_name__": "b_iau_jupiter", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juno_fgm_orb60_iau", "dataset": "juno-fgm-orb60", "description": "Magnetic field vector components in IAU Jupiter (pc) coordinates", "display_type": "timeseries", "is_public": "True", "juno_fgm_orb60_iau0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juno_fgm_orb60_iau(0)", "dataset": "juno-fgm-orb60", "index1": "0", "is_public": "True", "name": "bx", "parameter": "juno_fgm_orb60_iau", "start_date": "2016-07-07T00:00:30Z", "stop_date": "2023-11-23T23:58:32Z", "xmlid": "juno_fgm_orb60_iau(0)"}, "juno_fgm_orb60_iau1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juno_fgm_orb60_iau(1)", "dataset": "juno-fgm-orb60", "index1": "1", "is_public": "True", "name": "by", "parameter": "juno_fgm_orb60_iau", "start_date": "2016-07-07T00:00:30Z", "stop_date": "2023-11-23T23:58:32Z", "xmlid": "juno_fgm_orb60_iau(1)"}, "juno_fgm_orb60_iau2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juno_fgm_orb60_iau(2)", "dataset": "juno-fgm-orb60", "index1": "2", "is_public": "True", "name": "bz", "parameter": "juno_fgm_orb60_iau", "start_date": "2016-07-07T00:00:30Z", "stop_date": "2023-11-23T23:58:32Z", "xmlid": "juno_fgm_orb60_iau(2)"}, "name": "b_iau_jupiter", "size": "3", "start_date": "2016-07-07T00:00:30Z", "stop_date": "2023-11-23T23:58:32Z", "ucd": "phys.magField", "units": "nT", "xmlid": "juno_fgm_orb60_iau"}, "juno_fgm_orb60_jso": {"__spz_name__": "b_jso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juno_fgm_orb60_jso", "dataset": "juno-fgm-orb60", "description": "Magnetic field vector components in JSO (ss) coordinates", "display_type": "timeseries", "is_public": "True", "juno_fgm_orb60_jso0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juno_fgm_orb60_jso(0)", "dataset": "juno-fgm-orb60", "index1": "0", "is_public": "True", "name": "bx", "parameter": "juno_fgm_orb60_jso", "start_date": "2016-07-07T00:00:30Z", "stop_date": "2023-11-23T23:58:32Z", "xmlid": "juno_fgm_orb60_jso(0)"}, "juno_fgm_orb60_jso1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juno_fgm_orb60_jso(1)", "dataset": "juno-fgm-orb60", "index1": "1", "is_public": "True", "name": "by", "parameter": "juno_fgm_orb60_jso", "start_date": "2016-07-07T00:00:30Z", "stop_date": "2023-11-23T23:58:32Z", "xmlid": "juno_fgm_orb60_jso(1)"}, "juno_fgm_orb60_jso2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juno_fgm_orb60_jso(2)", "dataset": "juno-fgm-orb60", "index1": "2", "is_public": "True", "name": "bz", "parameter": "juno_fgm_orb60_jso", "start_date": "2016-07-07T00:00:30Z", "stop_date": "2023-11-23T23:58:32Z", "xmlid": "juno_fgm_orb60_jso(2)"}, "name": "b_jso", "size": "3", "start_date": "2016-07-07T00:00:30Z", "stop_date": "2023-11-23T23:58:32Z", "ucd": "phys.magField", "units": "nT", "xmlid": "juno_fgm_orb60_jso"}, "juno_fgm_orb60_mag": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juno_fgm_orb60_mag", "dataset": "juno-fgm-orb60", "description": "Scalar magnitude of the magnetic field in nT", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "2016-07-07T00:00:30Z", "stop_date": "2023-11-23T23:58:32Z", "ucd": "phys.magField", "units": "nT", "xmlid": "juno_fgm_orb60_mag"}, "lastModificationDate": "2024-07-07T07:25:20Z", "lastUpdate": "2024-07-07T07:25:18Z", "measurement_type": "MagneticField", "name": "1 min", "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Juno/FGM/juno-fgm-orb60", "start_date": "2016-07-07T00:00:30Z", "stop_date": "2023-11-23T23:58:32Z", "target": "Jupiter", "xmlid": "juno-fgm-orb60"}, "juno_fgm_orbfull": {"__spz_name__": "full", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "juno-fgm-orbfull", "att": "auto/juno-fgm-orbfull", "dataSource": "PDS", "desc": "High resolution magnetic field
Sampling: 0.015S
Provider: PDS", "is_public": "True", "juno_fgm_orbfull_iau": {"__spz_name__": "b_iau_jupiter", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juno_fgm_orbfull_iau", "dataset": "juno-fgm-orbfull", "description": "Magnetic field vector components in IAU Jupiter (pc) coordinates", "display_type": "timeseries", "is_public": "True", "juno_fgm_orbfull_iau0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juno_fgm_orbfull_iau(0)", "dataset": "juno-fgm-orbfull", "index1": "0", "is_public": "True", "name": "bx", "parameter": "juno_fgm_orbfull_iau", "start_date": "2016-07-07T00:00:00Z", "stop_date": "2023-11-24T00:00:01Z", "xmlid": "juno_fgm_orbfull_iau(0)"}, "juno_fgm_orbfull_iau1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juno_fgm_orbfull_iau(1)", "dataset": "juno-fgm-orbfull", "index1": "1", "is_public": "True", "name": "by", "parameter": "juno_fgm_orbfull_iau", "start_date": "2016-07-07T00:00:00Z", "stop_date": "2023-11-24T00:00:01Z", "xmlid": "juno_fgm_orbfull_iau(1)"}, "juno_fgm_orbfull_iau2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juno_fgm_orbfull_iau(2)", "dataset": "juno-fgm-orbfull", "index1": "2", "is_public": "True", "name": "bz", "parameter": "juno_fgm_orbfull_iau", "start_date": "2016-07-07T00:00:00Z", "stop_date": "2023-11-24T00:00:01Z", "xmlid": "juno_fgm_orbfull_iau(2)"}, "name": "b_iau_jupiter", "size": "3", "start_date": "2016-07-07T00:00:00Z", "stop_date": "2023-11-24T00:00:01Z", "ucd": "phys.magField", "units": "nT", "xmlid": "juno_fgm_orbfull_iau"}, "juno_fgm_orbfull_jso": {"__spz_name__": "b_jso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juno_fgm_orbfull_jso", "dataset": "juno-fgm-orbfull", "description": "Magnetic field vector components in JSO (ss) coordinates", "display_type": "timeseries", "is_public": "True", "juno_fgm_orbfull_jso0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juno_fgm_orbfull_jso(0)", "dataset": "juno-fgm-orbfull", "index1": "0", "is_public": "True", "name": "bx", "parameter": "juno_fgm_orbfull_jso", "start_date": "2016-07-07T00:00:00Z", "stop_date": "2023-11-24T00:00:01Z", "xmlid": "juno_fgm_orbfull_jso(0)"}, "juno_fgm_orbfull_jso1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juno_fgm_orbfull_jso(1)", "dataset": "juno-fgm-orbfull", "index1": "1", "is_public": "True", "name": "by", "parameter": "juno_fgm_orbfull_jso", "start_date": "2016-07-07T00:00:00Z", "stop_date": "2023-11-24T00:00:01Z", "xmlid": "juno_fgm_orbfull_jso(1)"}, "juno_fgm_orbfull_jso2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juno_fgm_orbfull_jso(2)", "dataset": "juno-fgm-orbfull", "index1": "2", "is_public": "True", "name": "bz", "parameter": "juno_fgm_orbfull_jso", "start_date": "2016-07-07T00:00:00Z", "stop_date": "2023-11-24T00:00:01Z", "xmlid": "juno_fgm_orbfull_jso(2)"}, "name": "b_jso", "size": "3", "start_date": "2016-07-07T00:00:00Z", "stop_date": "2023-11-24T00:00:01Z", "ucd": "phys.magField", "units": "nT", "xmlid": "juno_fgm_orbfull_jso"}, "juno_fgm_orbfull_mag": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juno_fgm_orbfull_mag", "dataset": "juno-fgm-orbfull", "description": "Scalar magnitude of the magnetic field in nT", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "2016-07-07T00:00:00Z", "stop_date": "2023-11-24T00:00:01Z", "ucd": "phys.magField", "units": "nT", "xmlid": "juno_fgm_orbfull_mag"}, "juno_fgm_orbfull_pl": {"__spz_name__": "b_pl", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juno_fgm_orbfull_pl", "dataset": "juno-fgm-orbfull", "description": "Magnetic field vector components in pl coordinates", "display_type": "timeseries", "is_public": "True", "juno_fgm_orbfull_pl0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juno_fgm_orbfull_pl(0)", "dataset": "juno-fgm-orbfull", "index1": "0", "is_public": "True", "name": "bx", "parameter": "juno_fgm_orbfull_pl", "start_date": "2016-07-07T00:00:00Z", "stop_date": "2023-11-24T00:00:01Z", "xmlid": "juno_fgm_orbfull_pl(0)"}, "juno_fgm_orbfull_pl1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juno_fgm_orbfull_pl(1)", "dataset": "juno-fgm-orbfull", "index1": "1", "is_public": "True", "name": "by", "parameter": "juno_fgm_orbfull_pl", "start_date": "2016-07-07T00:00:00Z", "stop_date": "2023-11-24T00:00:01Z", "xmlid": "juno_fgm_orbfull_pl(1)"}, "juno_fgm_orbfull_pl2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juno_fgm_orbfull_pl(2)", "dataset": "juno-fgm-orbfull", "index1": "2", "is_public": "True", "name": "bz", "parameter": "juno_fgm_orbfull_pl", "start_date": "2016-07-07T00:00:00Z", "stop_date": "2023-11-24T00:00:01Z", "xmlid": "juno_fgm_orbfull_pl(2)"}, "name": "b_pl", "size": "3", "start_date": "2016-07-07T00:00:00Z", "stop_date": "2023-11-24T00:00:01Z", "ucd": "phys.magField", "units": "nT", "xmlid": "juno_fgm_orbfull_pl"}, "lastModificationDate": "2024-07-07T12:28:36Z", "lastUpdate": "2024-07-07T12:01:17Z", "measurement_type": "MagneticField", "name": "full", "processing_level": "Calibrated", "sampling": "0.015S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Juno/FGM/juno-fgm-orbfull", "start_date": "2016-07-07T00:00:00Z", "stop_date": "2023-11-24T00:00:01Z", "target": "Jupiter", "xmlid": "juno-fgm-orbfull"}, "name": "orbit jupiter", "xmlid": "juno-fgm-orb"}, "xmlid": "Juno_fgm"}, "JADE": {"L3___electrons": {"__spz_name__": "L3 : electrons", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "juno-jade-e", "is_public": "True", "juno_jade_e060": {"__spz_name__": "instrument-60", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "juno-jade-e060", "att": "auto/juno-jade-e060", "dataSource": "PDS", "desc": "
MinSampling: 1S; MaxSampling: 4S
Provider: PDS", "is_public": "True", "jade_e60_bkgd": {"__spz_name__": "background counts/sec", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_e60_bkgd", "dataset": "juno-jade-e060", "display_type": "spectrogram", "is_public": "True", "name": "background counts/sec", "start_date": "2015-03-31T00:02:56Z", "stop_date": "2023-11-23T23:59:55Z", "template": "jade_e60_bkgd_##lookdir##", "units": "counts per sec", "xmlid": "jade_e60_bkgd"}, "jade_e60_bkgd_sum": {"__spz_name__": "background counts/sec - Sum", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_e60_bkgd_sum", "dataset": "juno-jade-e060", "display_type": "spectrogram", "is_public": "True", "name": "background counts/sec - Sum", "start_date": "2015-03-31T00:02:56Z", "stop_date": "2023-11-23T23:59:55Z", "units": "counts per sec", "xmlid": "jade_e60_bkgd_sum"}, "jade_e60_cps": {"__spz_name__": "counts/sec", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_e60_cps", "dataset": "juno-jade-e060", "display_type": "spectrogram", "is_public": "True", "name": "counts/sec", "start_date": "2015-03-31T00:02:56Z", "stop_date": "2023-11-23T23:59:55Z", "template": "jade_e60_cps_##lookdir##", "units": "counts per sec", "xmlid": "jade_e60_cps"}, "jade_e60_cps_sum": {"__spz_name__": "counts/sec - Sum", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_e60_cps_sum", "dataset": "juno-jade-e060", "display_type": "spectrogram", "is_public": "True", "name": "counts/sec - Sum", "start_date": "2015-03-31T00:02:56Z", "stop_date": "2023-11-23T23:59:55Z", "units": "counts per sec", "xmlid": "jade_e60_cps_sum"}, "jade_e60_mode": {"__spz_name__": "mode", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_e60_mode", "dataset": "juno-jade-e060", "display_type": "timeseries", "is_public": "True", "name": "mode", "start_date": "2015-03-31T00:02:56Z", "stop_date": "2023-11-23T23:59:55Z", "xmlid": "jade_e60_mode"}, "jade_e60_srcbkgd": {"__spz_name__": "background source", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_e60_srcbkgd", "dataset": "juno-jade-e060", "description": "0 = None; 1 = Background anode (electron sensors only); 2 = Background anode (JADE-I only); \n 3 = Derived from Background anode : Method 1: Background coefficients are time independent; \n 4 = Derived from Background anode : Method 2: Background coefficients are per orbit.", "display_type": "timeseries", "is_public": "True", "name": "background source", "start_date": "2015-03-31T00:02:56Z", "stop_date": "2023-11-23T23:59:55Z", "xmlid": "jade_e60_srcbkgd"}, "lastModificationDate": "2024-07-09T14:15:21Z", "lastUpdate": "2024-07-09T10:47:55Z", "maxSampling": "4S", "measurement_type": "EnergeticParticles", "name": "instrument-60", "processing_level": "Calibrated", "sampling": "1S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Juno/JADE/juno-jade-e060", "start_date": "2015-03-31T00:02:56Z", "stop_date": "2023-11-23T23:59:55Z", "target": "Jupiter", "xmlid": "juno-jade-e060"}, "juno_jade_e180": {"__spz_name__": "instrument-180", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "juno-jade-e180", "att": "auto/juno-jade-e180", "dataSource": "PDS", "desc": "
MinSampling: 1S; MaxSampling: 4S
Provider: PDS", "is_public": "True", "jade_e180_bkgd": {"__spz_name__": "background counts/sec", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_e180_bkgd", "dataset": "juno-jade-e180", "display_type": "spectrogram", "is_public": "True", "name": "background counts/sec", "start_date": "2015-03-31T00:02:56Z", "stop_date": "2023-11-23T02:00:05Z", "template": "jade_e180_bkgd_##lookdir##", "units": "counts per sec", "xmlid": "jade_e180_bkgd"}, "jade_e180_bkgd_sum": {"__spz_name__": "background counts/sec - Sum", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_e180_bkgd_sum", "dataset": "juno-jade-e180", "display_type": "spectrogram", "is_public": "True", "name": "background counts/sec - Sum", "start_date": "2015-03-31T00:02:56Z", "stop_date": "2023-11-23T02:00:05Z", "units": "counts per sec", "xmlid": "jade_e180_bkgd_sum"}, "jade_e180_cps": {"__spz_name__": "counts/sec", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_e180_cps", "dataset": "juno-jade-e180", "display_type": "spectrogram", "is_public": "True", "name": "counts/sec", "start_date": "2015-03-31T00:02:56Z", "stop_date": "2023-11-23T02:00:05Z", "template": "jade_e180_cps_##lookdir##", "units": "counts per sec", "xmlid": "jade_e180_cps"}, "jade_e180_cps_sum": {"__spz_name__": "counts/sec - Sum", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_e180_cps_sum", "dataset": "juno-jade-e180", "display_type": "spectrogram", "is_public": "True", "name": "counts/sec - Sum", "start_date": "2015-03-31T00:02:56Z", "stop_date": "2023-11-23T02:00:05Z", "units": "counts per sec", "xmlid": "jade_e180_cps_sum"}, "jade_e180_mode": {"__spz_name__": "mode", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_e180_mode", "dataset": "juno-jade-e180", "display_type": "timeseries", "is_public": "True", "name": "mode", "start_date": "2015-03-31T00:02:56Z", "stop_date": "2023-11-23T02:00:05Z", "xmlid": "jade_e180_mode"}, "jade_e180_srcbkgd": {"__spz_name__": "background source", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_e180_srcbkgd", "dataset": "juno-jade-e180", "description": "0 = None; 1 = Background anode (electron sensors only); 2 = Background anode (JADE-I only); \n 3 = Derived from Background anode : Method 1: Background coefficients are time independent; \n 4 = Derived from Background anode : Method 2: Background coefficients are per orbit.", "display_type": "timeseries", "is_public": "True", "name": "background source", "start_date": "2015-03-31T00:02:56Z", "stop_date": "2023-11-23T02:00:05Z", "xmlid": "jade_e180_srcbkgd"}, "lastModificationDate": "2024-07-09T14:15:51Z", "lastUpdate": "2024-07-09T10:24:01Z", "maxSampling": "4S", "measurement_type": "EnergeticParticles", "name": "instrument-180", "processing_level": "Calibrated", "sampling": "1S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Juno/JADE/juno-jade-e180", "start_date": "2015-03-31T00:02:56Z", "stop_date": "2023-11-23T02:00:05Z", "target": "Jupiter", "xmlid": "juno-jade-e180"}, "juno_jade_e300": {"__spz_name__": "instrument-300", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "juno-jade-e300", "att": "auto/juno-jade-e300", "dataSource": "PDS", "desc": "
MinSampling: 1S; MaxSampling: 4S
Provider: PDS", "is_public": "True", "jade_e300_bkgd": {"__spz_name__": "background counts/sec", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_e300_bkgd", "dataset": "juno-jade-e300", "display_type": "spectrogram", "is_public": "True", "name": "background counts/sec", "start_date": "2015-03-31T00:02:56Z", "stop_date": "2023-11-23T02:00:05Z", "template": "jade_e300_bkgd_##lookdir##", "units": "counts per sec", "xmlid": "jade_e300_bkgd"}, "jade_e300_bkgd_sum": {"__spz_name__": "background counts/sec - Sum", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_e300_bkgd_sum", "dataset": "juno-jade-e300", "display_type": "spectrogram", "is_public": "True", "name": "background counts/sec - Sum", "start_date": "2015-03-31T00:02:56Z", "stop_date": "2023-11-23T02:00:05Z", "units": "counts per sec", "xmlid": "jade_e300_bkgd_sum"}, "jade_e300_cps": {"__spz_name__": "counts/sec", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_e300_cps", "dataset": "juno-jade-e300", "display_type": "spectrogram", "is_public": "True", "name": "counts/sec", "start_date": "2015-03-31T00:02:56Z", "stop_date": "2023-11-23T02:00:05Z", "template": "jade_e300_cps_##lookdir##", "units": "counts per sec", "xmlid": "jade_e300_cps"}, "jade_e300_cps_sum": {"__spz_name__": "counts/sec - Sum", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_e300_cps_sum", "dataset": "juno-jade-e300", "display_type": "spectrogram", "is_public": "True", "name": "counts/sec - Sum", "start_date": "2015-03-31T00:02:56Z", "stop_date": "2023-11-23T02:00:05Z", "units": "counts per sec", "xmlid": "jade_e300_cps_sum"}, "jade_e300_mode": {"__spz_name__": "mode", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_e300_mode", "dataset": "juno-jade-e300", "display_type": "timeseries", "is_public": "True", "name": "mode", "start_date": "2015-03-31T00:02:56Z", "stop_date": "2023-11-23T02:00:05Z", "xmlid": "jade_e300_mode"}, "jade_e300_srcbkgd": {"__spz_name__": "background source", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_e300_srcbkgd", "dataset": "juno-jade-e300", "description": "0 = None; 1 = Background anode (electron sensors only); 2 = Background anode (JADE-I only); \n 3 = Derived from Background anode : Method 1: Background coefficients are time independent; \n 4 = Derived from Background anode : Method 2: Background coefficients are per orbit.", "display_type": "timeseries", "is_public": "True", "name": "background source", "start_date": "2015-03-31T00:02:56Z", "stop_date": "2023-11-23T02:00:05Z", "xmlid": "jade_e300_srcbkgd"}, "lastModificationDate": "2024-07-09T14:16:05Z", "lastUpdate": "2024-07-09T10:24:01Z", "maxSampling": "4S", "measurement_type": "EnergeticParticles", "name": "instrument-300", "processing_level": "Calibrated", "sampling": "1S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Juno/JADE/juno-jade-e300", "start_date": "2015-03-31T00:02:56Z", "stop_date": "2023-11-23T02:00:05Z", "target": "Jupiter", "xmlid": "juno-jade-e300"}, "name": "L3 : electrons", "xmlid": "juno-jade-e"}, "L3___ions": {"__spz_name__": "L3 : ions", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "juno-jade-i", "is_public": "True", "juno_jade_ions": {"__spz_name__": "species", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "juno-jade-ions", "att": "auto/juno-jade-ions", "dataSource": "PDS", "desc": "
MinSampling: 1S; MaxSampling: 4S
Provider: PDS", "is_public": "True", "jade_ispec_bkgd": {"__spz_name__": "background counts/sec", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_ispec_bkgd", "dataset": "juno-jade-ions", "display_type": "spectrogram", "is_public": "True", "name": "background counts/sec", "start_date": "2015-03-31T00:02:56Z", "stop_date": "2023-11-22T13:04:24Z", "template": "jade_ispec_bkgd_##species##_##lookdir##", "units": "counts per sec", "xmlid": "jade_ispec_bkgd"}, "jade_ispec_bkgd_sum": {"__spz_name__": "background counts/sec - Sum", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_ispec_bkgd_sum", "dataset": "juno-jade-ions", "display_type": "spectrogram", "is_public": "True", "name": "background counts/sec - Sum", "start_date": "2015-03-31T00:02:56Z", "stop_date": "2023-11-22T13:04:24Z", "template": "jade_ispec_bkgd_sum_##species##", "units": "counts per sec", "xmlid": "jade_ispec_bkgd_sum"}, "jade_ispec_cps": {"__spz_name__": "counts/sec", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_ispec_cps", "dataset": "juno-jade-ions", "display_type": "spectrogram", "is_public": "True", "name": "counts/sec", "start_date": "2015-03-31T00:02:56Z", "stop_date": "2023-11-22T13:04:24Z", "template": "jade_ispec_cps_##species##_##lookdir##", "units": "counts per sec", "xmlid": "jade_ispec_cps"}, "jade_ispec_cps_sum": {"__spz_name__": "counts/sec - Sum", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_ispec_cps_sum", "dataset": "juno-jade-ions", "display_type": "spectrogram", "is_public": "True", "name": "counts/sec - Sum", "start_date": "2015-03-31T00:02:56Z", "stop_date": "2023-11-22T13:04:24Z", "template": "jade_ispec_cps_sum_##species##", "units": "counts per sec", "xmlid": "jade_ispec_cps_sum"}, "jade_ispec_mode": {"__spz_name__": "mode", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_ispec_mode", "dataset": "juno-jade-ions", "display_type": "timeseries", "is_public": "True", "name": "mode", "start_date": "2015-03-31T00:02:56Z", "stop_date": "2023-11-22T13:04:24Z", "xmlid": "jade_ispec_mode"}, "jade_ispec_srcbkgd": {"__spz_name__": "background source", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_ispec_srcbkgd", "dataset": "juno-jade-ions", "description": "0 = None; 1 = Background anode (electron sensors only); 2 = Background anode (JADE-I only); \n 3 = Derived from Background anode : Method 1: Background coefficients are time independent; \n 4 = Derived from Background anode : Method 2: Background coefficients are per orbit.", "display_type": "timeseries", "is_public": "True", "name": "background source", "start_date": "2015-03-31T00:02:56Z", "stop_date": "2023-11-22T13:04:24Z", "xmlid": "jade_ispec_srcbkgd"}, "lastModificationDate": "2024-07-09T14:19:48Z", "lastUpdate": "2024-07-09T10:23:55Z", "maxSampling": "4S", "measurement_type": "EnergeticParticles", "name": "species", "processing_level": "Calibrated", "sampling": "1S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Juno/JADE/juno-jade-ions", "start_date": "2015-03-31T00:02:56Z", "stop_date": "2023-11-22T13:04:24Z", "target": "Jupiter", "xmlid": "juno-jade-ions"}, "name": "L3 : ions", "xmlid": "juno-jade-i"}, "L5___electrons": {"__spz_name__": "L5 : electrons", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "juno-jadel5-e", "is_public": "True", "juno_jadel5_e060": {"__spz_name__": "instrument-60", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "juno-jadel5-e060", "att": "auto/juno-jadel5-e060", "dataSource": "PDS", "desc": "
MinSampling: 1S; MaxSampling: 4S
Provider: PDS", "is_public": "True", "jade_l5e60_bkgd": {"__spz_name__": "background diff flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_l5e60_bkgd", "dataset": "juno-jadel5-e060", "display_type": "spectrogram", "is_public": "True", "name": "background diff flux", "start_date": "2015-03-31T00:02:56Z", "stop_date": "2021-09-03T00:30:04Z", "template": "jade_l5e60_bkgd_##lookdir##", "units": "1/(m\u00b2 sr s)", "xmlid": "jade_l5e60_bkgd"}, "jade_l5e60_bkgd_pad": {"__spz_name__": "background diff flux - PAD", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_l5e60_bkgd_pad", "dataset": "juno-jadel5-e060", "display_type": "spectrogram", "is_public": "True", "name": "background diff flux - PAD", "start_date": "2015-03-31T00:02:56Z", "stop_date": "2021-09-03T00:30:04Z", "units": "1/(m\u00b2 sr s)", "xmlid": "jade_l5e60_bkgd_pad"}, "jade_l5e60_bkgd_sum": {"__spz_name__": "background diff flux - Sum", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_l5e60_bkgd_sum", "dataset": "juno-jadel5-e060", "display_type": "spectrogram", "is_public": "True", "name": "background diff flux - Sum", "start_date": "2015-03-31T00:02:56Z", "stop_date": "2021-09-03T00:30:04Z", "units": "1/(m\u00b2 sr s)", "xmlid": "jade_l5e60_bkgd_sum"}, "jade_l5e60_def": {"__spz_name__": "diff flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_l5e60_def", "dataset": "juno-jadel5-e060", "display_type": "spectrogram", "is_public": "True", "name": "diff flux", "start_date": "2015-03-31T00:02:56Z", "stop_date": "2021-09-03T00:30:04Z", "template": "jade_l5e60_def_##lookdir##", "units": "1/(m\u00b2 sr s)", "xmlid": "jade_l5e60_def"}, "jade_l5e60_def_pad": {"__spz_name__": "diff flux - PAD", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_l5e60_def_pad", "dataset": "juno-jadel5-e060", "display_type": "spectrogram", "is_public": "True", "name": "diff flux - PAD", "start_date": "2015-03-31T00:02:56Z", "stop_date": "2021-09-03T00:30:04Z", "units": "1/(m\u00b2 sr s)", "xmlid": "jade_l5e60_def_pad"}, "jade_l5e60_def_sum": {"__spz_name__": "diff flux - Sum", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_l5e60_def_sum", "dataset": "juno-jadel5-e060", "display_type": "spectrogram", "is_public": "True", "name": "diff flux - Sum", "start_date": "2015-03-31T00:02:56Z", "stop_date": "2021-09-03T00:30:04Z", "units": "1/(m\u00b2 sr s)", "xmlid": "jade_l5e60_def_sum"}, "jade_l5e60_mode": {"__spz_name__": "mode", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_l5e60_mode", "dataset": "juno-jadel5-e060", "display_type": "timeseries", "is_public": "True", "name": "mode", "start_date": "2015-03-31T00:02:56Z", "stop_date": "2021-09-03T00:30:04Z", "xmlid": "jade_l5e60_mode"}, "jade_l5e60_pa": {"__spz_name__": "pitch angle", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_l5e60_pa", "dataset": "juno-jadel5-e060", "display_type": "timeseries", "is_public": "True", "name": "pitch angle", "start_date": "2015-03-31T00:02:56Z", "stop_date": "2021-09-03T00:30:04Z", "units": "deg", "xmlid": "jade_l5e60_pa"}, "jade_l5e60_srcbkgd": {"__spz_name__": "background source", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_l5e60_srcbkgd", "dataset": "juno-jadel5-e060", "description": "0 = None; 1 = Background anode (electron sensors only); 2 = Background anode (JADE-I only); \n 3 = Derived from Background anode : Method 1: Background coefficients are time independent; \n 4 = Derived from Background anode : Method 2: Background coefficients are per orbit.", "display_type": "timeseries", "is_public": "True", "name": "background source", "start_date": "2015-03-31T00:02:56Z", "stop_date": "2021-09-03T00:30:04Z", "xmlid": "jade_l5e60_srcbkgd"}, "lastModificationDate": "2024-06-04T10:47:47Z", "lastUpdate": "2024-06-04T10:36:38Z", "maxSampling": "4S", "measurement_type": "EnergeticParticles", "name": "instrument-60", "processing_level": "ValueAdded", "sampling": "1S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Juno/JADE/juno-jadel5-e060", "start_date": "2015-03-31T00:02:56Z", "stop_date": "2021-09-03T00:30:04Z", "target": "Jupiter", "xmlid": "juno-jadel5-e060"}, "juno_jadel5_e180": {"__spz_name__": "instrument-180", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "juno-jadel5-e180", "att": "auto/juno-jadel5-e180", "dataSource": "PDS", "desc": "
MinSampling: 1S; MaxSampling: 4S
Provider: PDS", "is_public": "True", "jade_l5e180_bkgd": {"__spz_name__": "background diff flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_l5e180_bkgd", "dataset": "juno-jadel5-e180", "display_type": "spectrogram", "is_public": "True", "name": "background diff flux", "start_date": "2015-03-31T00:02:56Z", "stop_date": "2021-09-03T23:59:38Z", "template": "jade_l5e180_bkgd_##lookdir##", "units": "1/(m\u00b2 sr s)", "xmlid": "jade_l5e180_bkgd"}, "jade_l5e180_bkgd_pad": {"__spz_name__": "background diff flux - PAD", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_l5e180_bkgd_pad", "dataset": "juno-jadel5-e180", "display_type": "spectrogram", "is_public": "True", "name": "background diff flux - PAD", "start_date": "2015-03-31T00:02:56Z", "stop_date": "2021-09-03T23:59:38Z", "units": "1/(m\u00b2 sr s)", "xmlid": "jade_l5e180_bkgd_pad"}, "jade_l5e180_bkgd_sum": {"__spz_name__": "background diff flux - Sum", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_l5e180_bkgd_sum", "dataset": "juno-jadel5-e180", "display_type": "spectrogram", "is_public": "True", "name": "background diff flux - Sum", "start_date": "2015-03-31T00:02:56Z", "stop_date": "2021-09-03T23:59:38Z", "units": "1/(m\u00b2 sr s)", "xmlid": "jade_l5e180_bkgd_sum"}, "jade_l5e180_def": {"__spz_name__": "diff flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_l5e180_def", "dataset": "juno-jadel5-e180", "display_type": "spectrogram", "is_public": "True", "name": "diff flux", "start_date": "2015-03-31T00:02:56Z", "stop_date": "2021-09-03T23:59:38Z", "template": "jade_l5e180_def_##lookdir##", "units": "1/(m\u00b2 sr s)", "xmlid": "jade_l5e180_def"}, "jade_l5e180_def_pad": {"__spz_name__": "diff flux - PAD", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_l5e180_def_pad", "dataset": "juno-jadel5-e180", "display_type": "spectrogram", "is_public": "True", "name": "diff flux - PAD", "start_date": "2015-03-31T00:02:56Z", "stop_date": "2021-09-03T23:59:38Z", "units": "1/(m\u00b2 sr s)", "xmlid": "jade_l5e180_def_pad"}, "jade_l5e180_def_sum": {"__spz_name__": "diff flux - Sum", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_l5e180_def_sum", "dataset": "juno-jadel5-e180", "display_type": "spectrogram", "is_public": "True", "name": "diff flux - Sum", "start_date": "2015-03-31T00:02:56Z", "stop_date": "2021-09-03T23:59:38Z", "units": "1/(m\u00b2 sr s)", "xmlid": "jade_l5e180_def_sum"}, "jade_l5e180_mode": {"__spz_name__": "mode", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_l5e180_mode", "dataset": "juno-jadel5-e180", "display_type": "timeseries", "is_public": "True", "name": "mode", "start_date": "2015-03-31T00:02:56Z", "stop_date": "2021-09-03T23:59:38Z", "xmlid": "jade_l5e180_mode"}, "jade_l5e180_pa": {"__spz_name__": "pitch angle", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_l5e180_pa", "dataset": "juno-jadel5-e180", "display_type": "timeseries", "is_public": "True", "name": "pitch angle", "start_date": "2015-03-31T00:02:56Z", "stop_date": "2021-09-03T23:59:38Z", "units": "deg", "xmlid": "jade_l5e180_pa"}, "jade_l5e180_srcbkgd": {"__spz_name__": "background source", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_l5e180_srcbkgd", "dataset": "juno-jadel5-e180", "description": "0 = None; 1 = Background anode (electron sensors only); 2 = Background anode (JADE-I only); \n 3 = Derived from Background anode : Method 1: Background coefficients are time independent; \n 4 = Derived from Background anode : Method 2: Background coefficients are per orbit.", "display_type": "timeseries", "is_public": "True", "name": "background source", "start_date": "2015-03-31T00:02:56Z", "stop_date": "2021-09-03T23:59:38Z", "xmlid": "jade_l5e180_srcbkgd"}, "lastModificationDate": "2024-06-04T10:51:56Z", "lastUpdate": "2024-06-04T10:34:53Z", "maxSampling": "4S", "measurement_type": "EnergeticParticles", "name": "instrument-180", "processing_level": "ValueAdded", "sampling": "1S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Juno/JADE/juno-jadel5-e180", "start_date": "2015-03-31T00:02:56Z", "stop_date": "2021-09-03T23:59:38Z", "target": "Jupiter", "xmlid": "juno-jadel5-e180"}, "juno_jadel5_e300": {"__spz_name__": "instrument-300", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "juno-jadel5-e300", "att": "auto/juno-jadel5-e300", "dataSource": "PDS", "desc": "
MinSampling: 1S; MaxSampling: 4S
Provider: PDS", "is_public": "True", "jade_l5e300_bkgd": {"__spz_name__": "background diff flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_l5e300_bkgd", "dataset": "juno-jadel5-e300", "display_type": "spectrogram", "is_public": "True", "name": "background diff flux", "start_date": "2015-03-31T00:02:56Z", "stop_date": "2021-09-03T00:30:04Z", "template": "jade_l5e300_bkgd_##lookdir##", "units": "1/(m\u00b2 sr s)", "xmlid": "jade_l5e300_bkgd"}, "jade_l5e300_bkgd_pad": {"__spz_name__": "background diff flux - PAD", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_l5e300_bkgd_pad", "dataset": "juno-jadel5-e300", "display_type": "spectrogram", "is_public": "True", "name": "background diff flux - PAD", "start_date": "2015-03-31T00:02:56Z", "stop_date": "2021-09-03T00:30:04Z", "units": "1/(m\u00b2 sr s)", "xmlid": "jade_l5e300_bkgd_pad"}, "jade_l5e300_bkgd_sum": {"__spz_name__": "background diff flux - Sum", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_l5e300_bkgd_sum", "dataset": "juno-jadel5-e300", "display_type": "spectrogram", "is_public": "True", "name": "background diff flux - Sum", "start_date": "2015-03-31T00:02:56Z", "stop_date": "2021-09-03T00:30:04Z", "units": "1/(m\u00b2 sr s)", "xmlid": "jade_l5e300_bkgd_sum"}, "jade_l5e300_def": {"__spz_name__": "diff flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_l5e300_def", "dataset": "juno-jadel5-e300", "display_type": "spectrogram", "is_public": "True", "name": "diff flux", "start_date": "2015-03-31T00:02:56Z", "stop_date": "2021-09-03T00:30:04Z", "template": "jade_l5e300_def_##lookdir##", "units": "1/(m\u00b2 sr s)", "xmlid": "jade_l5e300_def"}, "jade_l5e300_def_pad": {"__spz_name__": "diff flux - PAD", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_l5e300_def_pad", "dataset": "juno-jadel5-e300", "display_type": "spectrogram", "is_public": "True", "name": "diff flux - PAD", "start_date": "2015-03-31T00:02:56Z", "stop_date": "2021-09-03T00:30:04Z", "units": "1/(m\u00b2 sr s)", "xmlid": "jade_l5e300_def_pad"}, "jade_l5e300_def_sum": {"__spz_name__": "diff flux - Sum", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_l5e300_def_sum", "dataset": "juno-jadel5-e300", "display_type": "spectrogram", "is_public": "True", "name": "diff flux - Sum", "start_date": "2015-03-31T00:02:56Z", "stop_date": "2021-09-03T00:30:04Z", "units": "1/(m\u00b2 sr s)", "xmlid": "jade_l5e300_def_sum"}, "jade_l5e300_mode": {"__spz_name__": "mode", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_l5e300_mode", "dataset": "juno-jadel5-e300", "display_type": "timeseries", "is_public": "True", "name": "mode", "start_date": "2015-03-31T00:02:56Z", "stop_date": "2021-09-03T00:30:04Z", "xmlid": "jade_l5e300_mode"}, "jade_l5e300_pa": {"__spz_name__": "pitch angle", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_l5e300_pa", "dataset": "juno-jadel5-e300", "display_type": "timeseries", "is_public": "True", "name": "pitch angle", "start_date": "2015-03-31T00:02:56Z", "stop_date": "2021-09-03T00:30:04Z", "units": "deg", "xmlid": "jade_l5e300_pa"}, "jade_l5e300_srcbkgd": {"__spz_name__": "background source", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_l5e300_srcbkgd", "dataset": "juno-jadel5-e300", "description": "0 = None; 1 = Background anode (electron sensors only); 2 = Background anode (JADE-I only); \n 3 = Derived from Background anode : Method 1: Background coefficients are time independent; \n 4 = Derived from Background anode : Method 2: Background coefficients are per orbit.", "display_type": "timeseries", "is_public": "True", "name": "background source", "start_date": "2015-03-31T00:02:56Z", "stop_date": "2021-09-03T00:30:04Z", "xmlid": "jade_l5e300_srcbkgd"}, "lastModificationDate": "2024-06-04T10:53:38Z", "lastUpdate": "2024-06-04T10:34:56Z", "maxSampling": "4S", "measurement_type": "EnergeticParticles", "name": "instrument-300", "processing_level": "ValueAdded", "sampling": "1S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Juno/JADE/juno-jadel5-e300", "start_date": "2015-03-31T00:02:56Z", "stop_date": "2021-09-03T00:30:04Z", "target": "Jupiter", "xmlid": "juno-jadel5-e300"}, "juno_jadel5_elecmom": {"__spz_name__": "electrons moments", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "juno-jadel5-elecmom", "att": "auto/juno-jadel5-elecmom", "dataSource": "PDS", "desc": "
MinSampling: 1S; MaxSampling: 10M
Provider: PDS", "is_public": "True", "jade_elecmom_lt": {"__spz_name__": "local time", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_elecmom_lt", "dataset": "juno-jadel5-elecmom", "description": "Juno's (jovian) Local Time at time UTC", "is_public": "True", "name": "local time", "start_date": "2016-06-25T21:33:40Z", "stop_date": "2021-09-03T23:39:38Z", "units": "hours", "xmlid": "jade_elecmom_lt"}, "jade_elecmom_n": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_elecmom_n", "dataset": "juno-jadel5-elecmom", "description": "Number Density", "is_public": "True", "name": "density", "start_date": "2016-06-25T21:33:40Z", "stop_date": "2021-09-03T23:39:38Z", "units": "cm\u207b\u00b3", "xmlid": "jade_elecmom_n"}, "jade_elecmom_nsigma": {"__spz_name__": "density uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_elecmom_nsigma", "dataset": "juno-jadel5-elecmom", "description": "Number Density Uncertainty", "is_public": "True", "name": "density uncertainty", "start_date": "2016-06-25T21:33:40Z", "stop_date": "2021-09-03T23:39:38Z", "units": "cm\u207b\u00b3", "xmlid": "jade_elecmom_nsigma"}, "jade_elecmom_p": {"__spz_name__": "pressure", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_elecmom_p", "dataset": "juno-jadel5-elecmom", "description": "Isotropic pressure", "is_public": "True", "name": "pressure", "start_date": "2016-06-25T21:33:40Z", "stop_date": "2021-09-03T23:39:38Z", "units": "Pa", "xmlid": "jade_elecmom_p"}, "jade_elecmom_psigma": {"__spz_name__": "pressure uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_elecmom_psigma", "dataset": "juno-jadel5-elecmom", "description": "Isotropic pressure uncertainty", "is_public": "True", "name": "pressure uncertainty", "start_date": "2016-06-25T21:33:40Z", "stop_date": "2021-09-03T23:39:38Z", "units": "Pa", "xmlid": "jade_elecmom_psigma"}, "jade_elecmom_t": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_elecmom_t", "dataset": "juno-jadel5-elecmom", "description": "Isotropic temperature", "is_public": "True", "name": "temperature", "start_date": "2016-06-25T21:33:40Z", "stop_date": "2021-09-03T23:39:38Z", "units": "eV", "xmlid": "jade_elecmom_t"}, "jade_elecmom_tsigma": {"__spz_name__": "temperature uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_elecmom_tsigma", "dataset": "juno-jadel5-elecmom", "description": "Isotropic temperature", "is_public": "True", "name": "temperature uncertainty", "start_date": "2016-06-25T21:33:40Z", "stop_date": "2021-09-03T23:39:38Z", "units": "eV", "xmlid": "jade_elecmom_tsigma"}, "lastModificationDate": "2024-06-03T09:57:46Z", "lastUpdate": "2024-06-03T09:56:54Z", "maxSampling": "10M", "measurement_type": "EnergeticParticles", "name": "electrons moments", "processing_level": "ValueAdded", "sampling": "1S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Juno/JADE/juno-jadel5-elecmom", "start_date": "2016-06-25T21:33:40Z", "stop_date": "2021-09-03T23:39:38Z", "target": "Jupiter", "xmlid": "juno-jadel5-elecmom"}, "name": "L5 : electrons", "xmlid": "juno-jadel5-e"}, "L5___ions": {"__spz_name__": "L5 : ions", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "juno-jadel5-i", "is_public": "True", "juno_jadel5_heavmom": {"__spz_name__": "heavies moments", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "juno-jadel5-heavmom", "att": "auto/juno-jadel5-heavmom", "dataSource": "PDS", "desc": "
MinSampling: 30S; MaxSampling: 10M
Provider: PDS", "is_public": "True", "jade_heavmom_lt": {"__spz_name__": "local time", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_heavmom_lt", "dataset": "juno-jadel5-heavmom", "description": "Juno's (jovian) Local Time at time UTC", "is_public": "True", "name": "local time", "start_date": "2017-03-23T14:32:32Z", "stop_date": "2020-04-10T05:29:55Z", "units": "hours", "xmlid": "jade_heavmom_lt"}, "jade_heavmom_n": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_heavmom_n", "dataset": "juno-jadel5-heavmom", "description": "Number Density", "is_public": "True", "name": "density", "start_date": "2017-03-23T14:32:32Z", "stop_date": "2020-04-10T05:29:55Z", "units": "cm\u207b\u00b3", "xmlid": "jade_heavmom_n"}, "jade_heavmom_nsigma": {"__spz_name__": "density uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_heavmom_nsigma", "dataset": "juno-jadel5-heavmom", "description": "Number Density Uncertainty", "is_public": "True", "name": "density uncertainty", "start_date": "2017-03-23T14:32:32Z", "stop_date": "2020-04-10T05:29:55Z", "units": "cm\u207b\u00b3", "xmlid": "jade_heavmom_nsigma"}, "jade_heavmom_p": {"__spz_name__": "pressure", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_heavmom_p", "dataset": "juno-jadel5-heavmom", "description": "Isotropic pressure", "is_public": "True", "name": "pressure", "start_date": "2017-03-23T14:32:32Z", "stop_date": "2020-04-10T05:29:55Z", "units": "Pa", "xmlid": "jade_heavmom_p"}, "jade_heavmom_psigma": {"__spz_name__": "pressure uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_heavmom_psigma", "dataset": "juno-jadel5-heavmom", "description": "Isotropic pressure uncertainty", "is_public": "True", "name": "pressure uncertainty", "start_date": "2017-03-23T14:32:32Z", "stop_date": "2020-04-10T05:29:55Z", "units": "Pa", "xmlid": "jade_heavmom_psigma"}, "jade_heavmom_t": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_heavmom_t", "dataset": "juno-jadel5-heavmom", "description": "Isotropic temperature", "is_public": "True", "name": "temperature", "start_date": "2017-03-23T14:32:32Z", "stop_date": "2020-04-10T05:29:55Z", "units": "eV", "xmlid": "jade_heavmom_t"}, "jade_heavmom_tsigma": {"__spz_name__": "temperature uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_heavmom_tsigma", "dataset": "juno-jadel5-heavmom", "description": "Isotropic temperature uncertainty", "is_public": "True", "name": "temperature uncertainty", "start_date": "2017-03-23T14:32:32Z", "stop_date": "2020-04-10T05:29:55Z", "units": "eV", "xmlid": "jade_heavmom_tsigma"}, "jade_heavmom_vrtp": {"__spz_name__": "v_jss_rtp", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_heavmom_vrtp", "dataset": "juno-jadel5-heavmom", "description": "Velocity Vector in the spherical JUNO_JSS (Jupiter-deSpun-Sun) frame", "display_type": "timeseries", "is_public": "True", "jade_heavmom_vrtp0": {"__spz_name__": "v_r", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jade_heavmom_vrtp(0)", "dataset": "juno-jadel5-heavmom", "index1": "0", "is_public": "True", "name": "v_r", "parameter": "jade_heavmom_vrtp", "start_date": "2017-03-23T14:32:32Z", "stop_date": "2020-04-10T05:29:55Z", "xmlid": "jade_heavmom_vrtp(0)"}, "jade_heavmom_vrtp1": {"__spz_name__": "v_theta", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jade_heavmom_vrtp(1)", "dataset": "juno-jadel5-heavmom", "index1": "1", "is_public": "True", "name": "v_theta", "parameter": "jade_heavmom_vrtp", "start_date": "2017-03-23T14:32:32Z", "stop_date": "2020-04-10T05:29:55Z", "xmlid": "jade_heavmom_vrtp(1)"}, "jade_heavmom_vrtp2": {"__spz_name__": "v_phi", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jade_heavmom_vrtp(2)", "dataset": "juno-jadel5-heavmom", "index1": "2", "is_public": "True", "name": "v_phi", "parameter": "jade_heavmom_vrtp", "start_date": "2017-03-23T14:32:32Z", "stop_date": "2020-04-10T05:29:55Z", "xmlid": "jade_heavmom_vrtp(2)"}, "name": "v_jss_rtp", "size": "3", "start_date": "2017-03-23T14:32:32Z", "stop_date": "2020-04-10T05:29:55Z", "units": "km/s", "xmlid": "jade_heavmom_vrtp"}, "jade_heavmom_vrtpsigma": {"__spz_name__": "v_jss_rtp uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_heavmom_vrtpsigma", "dataset": "juno-jadel5-heavmom", "description": "Velocity Vector uncertainty in the spherical JUNO_JSS (Jupiter-deSpun-Sun) frame", "display_type": "timeseries", "is_public": "True", "jade_heavmom_vrtpsigma0": {"__spz_name__": "v_r", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jade_heavmom_vrtpsigma(0)", "dataset": "juno-jadel5-heavmom", "index1": "0", "is_public": "True", "name": "v_r", "parameter": "jade_heavmom_vrtpsigma", "start_date": "2017-03-23T14:32:32Z", "stop_date": "2020-04-10T05:29:55Z", "xmlid": "jade_heavmom_vrtpsigma(0)"}, "jade_heavmom_vrtpsigma1": {"__spz_name__": "v_theta", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jade_heavmom_vrtpsigma(1)", "dataset": "juno-jadel5-heavmom", "index1": "1", "is_public": "True", "name": "v_theta", "parameter": "jade_heavmom_vrtpsigma", "start_date": "2017-03-23T14:32:32Z", "stop_date": "2020-04-10T05:29:55Z", "xmlid": "jade_heavmom_vrtpsigma(1)"}, "jade_heavmom_vrtpsigma2": {"__spz_name__": "v_phi", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jade_heavmom_vrtpsigma(2)", "dataset": "juno-jadel5-heavmom", "index1": "2", "is_public": "True", "name": "v_phi", "parameter": "jade_heavmom_vrtpsigma", "start_date": "2017-03-23T14:32:32Z", "stop_date": "2020-04-10T05:29:55Z", "xmlid": "jade_heavmom_vrtpsigma(2)"}, "name": "v_jss_rtp uncertainty", "size": "3", "start_date": "2017-03-23T14:32:32Z", "stop_date": "2020-04-10T05:29:55Z", "units": "km/s", "xmlid": "jade_heavmom_vrtpsigma"}, "jade_heavmom_vxyz": {"__spz_name__": "v_jss_xyz", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_heavmom_vxyz", "dataset": "juno-jadel5-heavmom", "description": "Velocity Vector in the Cartesian JUNO_JSS (Jupiter-deSpun-Sun) frame", "display_type": "timeseries", "is_public": "True", "jade_heavmom_vxyz0": {"__spz_name__": "v_x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jade_heavmom_vxyz(0)", "dataset": "juno-jadel5-heavmom", "index1": "0", "is_public": "True", "name": "v_x", "parameter": "jade_heavmom_vxyz", "start_date": "2017-03-23T14:32:32Z", "stop_date": "2020-04-10T05:29:55Z", "xmlid": "jade_heavmom_vxyz(0)"}, "jade_heavmom_vxyz1": {"__spz_name__": "v_y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jade_heavmom_vxyz(1)", "dataset": "juno-jadel5-heavmom", "index1": "1", "is_public": "True", "name": "v_y", "parameter": "jade_heavmom_vxyz", "start_date": "2017-03-23T14:32:32Z", "stop_date": "2020-04-10T05:29:55Z", "xmlid": "jade_heavmom_vxyz(1)"}, "jade_heavmom_vxyz2": {"__spz_name__": "v_z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jade_heavmom_vxyz(2)", "dataset": "juno-jadel5-heavmom", "index1": "2", "is_public": "True", "name": "v_z", "parameter": "jade_heavmom_vxyz", "start_date": "2017-03-23T14:32:32Z", "stop_date": "2020-04-10T05:29:55Z", "xmlid": "jade_heavmom_vxyz(2)"}, "name": "v_jss_xyz", "size": "3", "start_date": "2017-03-23T14:32:32Z", "stop_date": "2020-04-10T05:29:55Z", "units": "km/s", "xmlid": "jade_heavmom_vxyz"}, "jade_heavmom_vxyzsigma": {"__spz_name__": "v_jss_xyz uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_heavmom_vxyzsigma", "dataset": "juno-jadel5-heavmom", "description": "Velocity Vector uncertainty in the Cartesian JUNO_JSS (Jupiter-deSpun-Sun) frame", "display_type": "timeseries", "is_public": "True", "jade_heavmom_vxyzsigma0": {"__spz_name__": "v_x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jade_heavmom_vxyzsigma(0)", "dataset": "juno-jadel5-heavmom", "index1": "0", "is_public": "True", "name": "v_x", "parameter": "jade_heavmom_vxyzsigma", "start_date": "2017-03-23T14:32:32Z", "stop_date": "2020-04-10T05:29:55Z", "xmlid": "jade_heavmom_vxyzsigma(0)"}, "jade_heavmom_vxyzsigma1": {"__spz_name__": "v_y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jade_heavmom_vxyzsigma(1)", "dataset": "juno-jadel5-heavmom", "index1": "1", "is_public": "True", "name": "v_y", "parameter": "jade_heavmom_vxyzsigma", "start_date": "2017-03-23T14:32:32Z", "stop_date": "2020-04-10T05:29:55Z", "xmlid": "jade_heavmom_vxyzsigma(1)"}, "jade_heavmom_vxyzsigma2": {"__spz_name__": "v_z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jade_heavmom_vxyzsigma(2)", "dataset": "juno-jadel5-heavmom", "index1": "2", "is_public": "True", "name": "v_z", "parameter": "jade_heavmom_vxyzsigma", "start_date": "2017-03-23T14:32:32Z", "stop_date": "2020-04-10T05:29:55Z", "xmlid": "jade_heavmom_vxyzsigma(2)"}, "name": "v_jss_xyz uncertainty", "size": "3", "start_date": "2017-03-23T14:32:32Z", "stop_date": "2020-04-10T05:29:55Z", "units": "km/s", "xmlid": "jade_heavmom_vxyzsigma"}, "lastModificationDate": "2024-06-03T09:57:04Z", "lastUpdate": "2024-06-03T09:18:10Z", "maxSampling": "10M", "measurement_type": "EnergeticParticles", "name": "heavies moments", "processing_level": "ValueAdded", "sampling": "30S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Juno/JADE/juno-jadel5-heavmom", "start_date": "2017-03-23T14:32:32Z", "stop_date": "2020-04-10T05:29:55Z", "target": "Jupiter", "xmlid": "juno-jadel5-heavmom"}, "juno_jadel5_ions": {"__spz_name__": "species", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "juno-jadel5-ions", "att": "auto/juno-jadel5-ions", "dataSource": "PDS", "desc": "
MinSampling: 1S; MaxSampling: 4S
Provider: PDS", "is_public": "True", "jade_l5ispec_bkgd": {"__spz_name__": "background diff E flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_l5ispec_bkgd", "dataset": "juno-jadel5-ions", "display_type": "spectrogram", "is_public": "True", "name": "background diff E flux", "start_date": "2015-03-31T00:02:56Z", "stop_date": "2021-09-03T23:59:32Z", "template": "jade_l5ispec_bkgd_##species##_##lookdir##", "units": "1/(m\u00b2 sr s)", "xmlid": "jade_l5ispec_bkgd"}, "jade_l5ispec_bkgd_sum": {"__spz_name__": "background diff E flux - Sum", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_l5ispec_bkgd_sum", "dataset": "juno-jadel5-ions", "display_type": "spectrogram", "is_public": "True", "name": "background diff E flux - Sum", "start_date": "2015-03-31T00:02:56Z", "stop_date": "2021-09-03T23:59:32Z", "template": "jade_l5ispec_bkgd_sum_##species##", "units": "1/(m\u00b2 sr s)", "xmlid": "jade_l5ispec_bkgd_sum"}, "jade_l5ispec_def": {"__spz_name__": "diff E flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_l5ispec_def", "dataset": "juno-jadel5-ions", "display_type": "spectrogram", "is_public": "True", "name": "diff E flux", "start_date": "2015-03-31T00:02:56Z", "stop_date": "2021-09-03T23:59:32Z", "template": "jade_l5ispec_def_##species##_##lookdir##", "units": "1/(m\u00b2 sr s)", "xmlid": "jade_l5ispec_def"}, "jade_l5ispec_def_sum": {"__spz_name__": "diff E flux - Sum", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_l5ispec_def_sum", "dataset": "juno-jadel5-ions", "display_type": "spectrogram", "is_public": "True", "name": "diff E flux - Sum", "start_date": "2015-03-31T00:02:56Z", "stop_date": "2021-09-03T23:59:32Z", "template": "jade_l5ispec_def_sum_##species##", "units": "1/(m\u00b2 sr s)", "xmlid": "jade_l5ispec_def_sum"}, "jade_l5ispec_mode": {"__spz_name__": "mode", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_l5ispec_mode", "dataset": "juno-jadel5-ions", "display_type": "timeseries", "is_public": "True", "name": "mode", "start_date": "2015-03-31T00:02:56Z", "stop_date": "2021-09-03T23:59:32Z", "xmlid": "jade_l5ispec_mode"}, "jade_l5ispec_srcbkgd": {"__spz_name__": "background source", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_l5ispec_srcbkgd", "dataset": "juno-jadel5-ions", "description": "0 = None; 1 = Background anode (electron sensors only); 2 = Background anode (JADE-I only); \n 3 = Derived from Background anode : Method 1: Background coefficients are time independent; \n 4 = Derived from Background anode : Method 2: Background coefficients are per orbit.", "display_type": "timeseries", "is_public": "True", "name": "background source", "start_date": "2015-03-31T00:02:56Z", "stop_date": "2021-09-03T23:59:32Z", "xmlid": "jade_l5ispec_srcbkgd"}, "lastModificationDate": "2024-06-04T11:15:04Z", "lastUpdate": "2024-06-04T10:36:39Z", "maxSampling": "4S", "measurement_type": "EnergeticParticles", "name": "species", "processing_level": "ValueAdded", "sampling": "1S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Juno/JADE/juno-jadel5-ions", "start_date": "2015-03-31T00:02:56Z", "stop_date": "2021-09-03T23:59:32Z", "target": "Jupiter", "xmlid": "juno-jadel5-ions"}, "juno_jadel5_protmom": {"__spz_name__": "protons moments", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "juno-jadel5-protmom", "att": "auto/juno-jadel5-protmom", "dataSource": "PDS", "desc": "
MinSampling: 30S; MaxSampling: 10M
Provider: PDS", "is_public": "True", "jade_protmom_lt": {"__spz_name__": "local time", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_protmom_lt", "dataset": "juno-jadel5-protmom", "description": "Juno's (jovian) Local Time at time UTC", "is_public": "True", "name": "local time", "start_date": "2016-06-24T08:17:26Z", "stop_date": "2020-04-10T05:29:55Z", "units": "hours", "xmlid": "jade_protmom_lt"}, "jade_protmom_n": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_protmom_n", "dataset": "juno-jadel5-protmom", "description": "Number Density", "is_public": "True", "name": "density", "start_date": "2016-06-24T08:17:26Z", "stop_date": "2020-04-10T05:29:55Z", "units": "cm\u207b\u00b3", "xmlid": "jade_protmom_n"}, "jade_protmom_nsigma": {"__spz_name__": "density uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_protmom_nsigma", "dataset": "juno-jadel5-protmom", "description": "Number Density Uncertainty", "is_public": "True", "name": "density uncertainty", "start_date": "2016-06-24T08:17:26Z", "stop_date": "2020-04-10T05:29:55Z", "units": "cm\u207b\u00b3", "xmlid": "jade_protmom_nsigma"}, "jade_protmom_p": {"__spz_name__": "pressure", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_protmom_p", "dataset": "juno-jadel5-protmom", "description": "Isotropic pressure", "is_public": "True", "name": "pressure", "start_date": "2016-06-24T08:17:26Z", "stop_date": "2020-04-10T05:29:55Z", "units": "Pa", "xmlid": "jade_protmom_p"}, "jade_protmom_psigma": {"__spz_name__": "pressure uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_protmom_psigma", "dataset": "juno-jadel5-protmom", "description": "Isotropic pressure uncertainty", "is_public": "True", "name": "pressure uncertainty", "start_date": "2016-06-24T08:17:26Z", "stop_date": "2020-04-10T05:29:55Z", "units": "Pa", "xmlid": "jade_protmom_psigma"}, "jade_protmom_t": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_protmom_t", "dataset": "juno-jadel5-protmom", "description": "Isotropic temperature", "is_public": "True", "name": "temperature", "start_date": "2016-06-24T08:17:26Z", "stop_date": "2020-04-10T05:29:55Z", "units": "eV", "xmlid": "jade_protmom_t"}, "jade_protmom_tsigma": {"__spz_name__": "temperature uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_protmom_tsigma", "dataset": "juno-jadel5-protmom", "description": "Isotropic temperature uncertainty", "is_public": "True", "name": "temperature uncertainty", "start_date": "2016-06-24T08:17:26Z", "stop_date": "2020-04-10T05:29:55Z", "units": "eV", "xmlid": "jade_protmom_tsigma"}, "jade_protmom_vrtp": {"__spz_name__": "v_jss_rtp", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_protmom_vrtp", "dataset": "juno-jadel5-protmom", "description": "Velocity Vector in the spherical JUNO_JSS (Jupiter-deSpun-Sun) frame", "display_type": "timeseries", "is_public": "True", "jade_protmom_vrtp0": {"__spz_name__": "v_r", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jade_protmom_vrtp(0)", "dataset": "juno-jadel5-protmom", "index1": "0", "is_public": "True", "name": "v_r", "parameter": "jade_protmom_vrtp", "start_date": "2016-06-24T08:17:26Z", "stop_date": "2020-04-10T05:29:55Z", "xmlid": "jade_protmom_vrtp(0)"}, "jade_protmom_vrtp1": {"__spz_name__": "v_theta", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jade_protmom_vrtp(1)", "dataset": "juno-jadel5-protmom", "index1": "1", "is_public": "True", "name": "v_theta", "parameter": "jade_protmom_vrtp", "start_date": "2016-06-24T08:17:26Z", "stop_date": "2020-04-10T05:29:55Z", "xmlid": "jade_protmom_vrtp(1)"}, "jade_protmom_vrtp2": {"__spz_name__": "v_phi", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jade_protmom_vrtp(2)", "dataset": "juno-jadel5-protmom", "index1": "2", "is_public": "True", "name": "v_phi", "parameter": "jade_protmom_vrtp", "start_date": "2016-06-24T08:17:26Z", "stop_date": "2020-04-10T05:29:55Z", "xmlid": "jade_protmom_vrtp(2)"}, "name": "v_jss_rtp", "size": "3", "start_date": "2016-06-24T08:17:26Z", "stop_date": "2020-04-10T05:29:55Z", "units": "km/s", "xmlid": "jade_protmom_vrtp"}, "jade_protmom_vrtpsigma": {"__spz_name__": "v_jss_rtp uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_protmom_vrtpsigma", "dataset": "juno-jadel5-protmom", "description": "Velocity Vector uncertainty in the spherical JUNO_JSS (Jupiter-deSpun-Sun) frame", "display_type": "timeseries", "is_public": "True", "jade_protmom_vrtpsigma0": {"__spz_name__": "v_r", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jade_protmom_vrtpsigma(0)", "dataset": "juno-jadel5-protmom", "index1": "0", "is_public": "True", "name": "v_r", "parameter": "jade_protmom_vrtpsigma", "start_date": "2016-06-24T08:17:26Z", "stop_date": "2020-04-10T05:29:55Z", "xmlid": "jade_protmom_vrtpsigma(0)"}, "jade_protmom_vrtpsigma1": {"__spz_name__": "v_theta", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jade_protmom_vrtpsigma(1)", "dataset": "juno-jadel5-protmom", "index1": "1", "is_public": "True", "name": "v_theta", "parameter": "jade_protmom_vrtpsigma", "start_date": "2016-06-24T08:17:26Z", "stop_date": "2020-04-10T05:29:55Z", "xmlid": "jade_protmom_vrtpsigma(1)"}, "jade_protmom_vrtpsigma2": {"__spz_name__": "v_phi", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jade_protmom_vrtpsigma(2)", "dataset": "juno-jadel5-protmom", "index1": "2", "is_public": "True", "name": "v_phi", "parameter": "jade_protmom_vrtpsigma", "start_date": "2016-06-24T08:17:26Z", "stop_date": "2020-04-10T05:29:55Z", "xmlid": "jade_protmom_vrtpsigma(2)"}, "name": "v_jss_rtp uncertainty", "size": "3", "start_date": "2016-06-24T08:17:26Z", "stop_date": "2020-04-10T05:29:55Z", "units": "km/s", "xmlid": "jade_protmom_vrtpsigma"}, "jade_protmom_vxyz": {"__spz_name__": "v_jss_xyz", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_protmom_vxyz", "dataset": "juno-jadel5-protmom", "description": "Velocity Vector in the Cartesian JUNO_JSS (Jupiter-deSpun-Sun) frame", "display_type": "timeseries", "is_public": "True", "jade_protmom_vxyz0": {"__spz_name__": "v_x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jade_protmom_vxyz(0)", "dataset": "juno-jadel5-protmom", "index1": "0", "is_public": "True", "name": "v_x", "parameter": "jade_protmom_vxyz", "start_date": "2016-06-24T08:17:26Z", "stop_date": "2020-04-10T05:29:55Z", "xmlid": "jade_protmom_vxyz(0)"}, "jade_protmom_vxyz1": {"__spz_name__": "v_y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jade_protmom_vxyz(1)", "dataset": "juno-jadel5-protmom", "index1": "1", "is_public": "True", "name": "v_y", "parameter": "jade_protmom_vxyz", "start_date": "2016-06-24T08:17:26Z", "stop_date": "2020-04-10T05:29:55Z", "xmlid": "jade_protmom_vxyz(1)"}, "jade_protmom_vxyz2": {"__spz_name__": "v_z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jade_protmom_vxyz(2)", "dataset": "juno-jadel5-protmom", "index1": "2", "is_public": "True", "name": "v_z", "parameter": "jade_protmom_vxyz", "start_date": "2016-06-24T08:17:26Z", "stop_date": "2020-04-10T05:29:55Z", "xmlid": "jade_protmom_vxyz(2)"}, "name": "v_jss_xyz", "size": "3", "start_date": "2016-06-24T08:17:26Z", "stop_date": "2020-04-10T05:29:55Z", "units": "km/s", "xmlid": "jade_protmom_vxyz"}, "jade_protmom_vxyzsigma": {"__spz_name__": "v_jss_xyz uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jade_protmom_vxyzsigma", "dataset": "juno-jadel5-protmom", "description": "Velocity Vector uncertainty in the Cartesian JUNO_JSS (Jupiter-deSpun-Sun) frame", "display_type": "timeseries", "is_public": "True", "jade_protmom_vxyzsigma0": {"__spz_name__": "v_x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jade_protmom_vxyzsigma(0)", "dataset": "juno-jadel5-protmom", "index1": "0", "is_public": "True", "name": "v_x", "parameter": "jade_protmom_vxyzsigma", "start_date": "2016-06-24T08:17:26Z", "stop_date": "2020-04-10T05:29:55Z", "xmlid": "jade_protmom_vxyzsigma(0)"}, "jade_protmom_vxyzsigma1": {"__spz_name__": "v_y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jade_protmom_vxyzsigma(1)", "dataset": "juno-jadel5-protmom", "index1": "1", "is_public": "True", "name": "v_y", "parameter": "jade_protmom_vxyzsigma", "start_date": "2016-06-24T08:17:26Z", "stop_date": "2020-04-10T05:29:55Z", "xmlid": "jade_protmom_vxyzsigma(1)"}, "jade_protmom_vxyzsigma2": {"__spz_name__": "v_z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jade_protmom_vxyzsigma(2)", "dataset": "juno-jadel5-protmom", "index1": "2", "is_public": "True", "name": "v_z", "parameter": "jade_protmom_vxyzsigma", "start_date": "2016-06-24T08:17:26Z", "stop_date": "2020-04-10T05:29:55Z", "xmlid": "jade_protmom_vxyzsigma(2)"}, "name": "v_jss_xyz uncertainty", "size": "3", "start_date": "2016-06-24T08:17:26Z", "stop_date": "2020-04-10T05:29:55Z", "units": "km/s", "xmlid": "jade_protmom_vxyzsigma"}, "lastModificationDate": "2024-06-03T09:57:00Z", "lastUpdate": "2024-06-03T09:01:26Z", "maxSampling": "10M", "measurement_type": "EnergeticParticles", "name": "protons moments", "processing_level": "ValueAdded", "sampling": "30S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Juno/JADE/juno-jadel5-protmom", "start_date": "2016-06-24T08:17:26Z", "stop_date": "2020-04-10T05:29:55Z", "target": "Jupiter", "xmlid": "juno-jadel5-protmom"}, "name": "L5 : ions", "xmlid": "juno-jadel5-i"}, "__spz_name__": "JADE", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Juno_jade", "att": "auto/Juno_jade", "desc": "Jovian Auroral Distributions Experiment
EnergeticParticleInstrument", "is_public": "True", "name": "JADE", "xmlid": "Juno_jade"}, "JEDI": {"__spz_name__": "JEDI", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Juno_jedi", "att": "auto/Juno_jedi", "desc": "Jupiter Energetic Particle Detector Instrument
EnergeticParticleInstrument", "electrons": {"__spz_name__": "electrons", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "juno-jedi-e", "is_public": "True", "juno_jedi_e090": {"__spz_name__": "instrument-90", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "juno-jedi-e090", "att": "auto/juno-jedi-e090", "dataSource": "PDS", "desc": "
MinSampling: 0.5S; MaxSampling: 3S
Provider: PDS", "is_public": "True", "jedi_e90_counts": {"__spz_name__": "counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jedi_e90_counts", "dataset": "juno-jedi-e090", "display_type": "spectrogram", "is_public": "True", "name": "counts", "start_date": "2016-08-27T07:53:28Z", "stop_date": "2023-11-23T23:59:58Z", "template": "jedi_e90_counts_##lookdir##", "units": "counts", "xmlid": "jedi_e90_counts"}, "jedi_e90_countspad": {"__spz_name__": "counts - PAD", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jedi_e90_countspad", "dataset": "juno-jedi-e090", "description": "Pitch Angle Distribution", "display_type": "spectrogram", "is_public": "True", "name": "counts - PAD", "start_date": "2016-08-27T07:53:28Z", "stop_date": "2023-11-23T23:59:58Z", "units": "counts", "xmlid": "jedi_e90_countspad"}, "jedi_e90_cps": {"__spz_name__": "counts/sec", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jedi_e90_cps", "dataset": "juno-jedi-e090", "display_type": "spectrogram", "is_public": "True", "name": "counts/sec", "start_date": "2016-08-27T07:53:28Z", "stop_date": "2023-11-23T23:59:58Z", "template": "jedi_e90_cps_##lookdir##", "units": "counts per sec", "xmlid": "jedi_e90_cps"}, "jedi_e90_cpspad": {"__spz_name__": "counts/sec - PAD", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jedi_e90_cpspad", "dataset": "juno-jedi-e090", "description": "Pitch Angle Distribution", "display_type": "spectrogram", "is_public": "True", "name": "counts/sec - PAD", "start_date": "2016-08-27T07:53:28Z", "stop_date": "2023-11-23T23:59:58Z", "units": "counts per sec", "xmlid": "jedi_e90_cpspad"}, "jedi_e90_flux": {"__spz_name__": "diff flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jedi_e90_flux", "dataset": "juno-jedi-e090", "display_type": "spectrogram", "is_public": "True", "name": "diff flux", "start_date": "2016-08-27T07:53:28Z", "stop_date": "2023-11-23T23:59:58Z", "template": "jedi_e90_flux_##lookdir##", "units": "counts per sec cm\u00b2 ster keV", "xmlid": "jedi_e90_flux"}, "jedi_e90_fluxpad": {"__spz_name__": "diff flux - PAD", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jedi_e90_fluxpad", "dataset": "juno-jedi-e090", "description": "Pitch Angle Distribution", "display_type": "spectrogram", "is_public": "True", "name": "diff flux - PAD", "start_date": "2016-08-27T07:53:28Z", "stop_date": "2023-11-23T23:59:58Z", "units": "counts per sec cm\u00b2 ster keV", "xmlid": "jedi_e90_fluxpad"}, "jedi_e90_mode": {"__spz_name__": "mode", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jedi_e90_mode", "dataset": "juno-jedi-e090", "display_type": "timeseries", "is_public": "True", "name": "mode", "start_date": "2016-08-27T07:53:28Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_e90_mode"}, "jedi_e90_pa": {"__spz_name__": "pitch angle", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jedi_e90_pa", "dataset": "juno-jedi-e090", "display_type": "timeseries", "is_public": "True", "jedi_e90_pa0": {"__spz_name__": "Look Dir. 0", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jedi_e90_pa(0)", "dataset": "juno-jedi-e090", "index1": "0", "is_public": "True", "name": "Look Dir. 0", "parameter": "jedi_e90_pa", "start_date": "2016-08-27T07:53:28Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_e90_pa(0)"}, "jedi_e90_pa1": {"__spz_name__": "Look Dir. 1", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jedi_e90_pa(1)", "dataset": "juno-jedi-e090", "index1": "1", "is_public": "True", "name": "Look Dir. 1", "parameter": "jedi_e90_pa", "start_date": "2016-08-27T07:53:28Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_e90_pa(1)"}, "jedi_e90_pa2": {"__spz_name__": "Look Dir. 2", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jedi_e90_pa(2)", "dataset": "juno-jedi-e090", "index1": "2", "is_public": "True", "name": "Look Dir. 2", "parameter": "jedi_e90_pa", "start_date": "2016-08-27T07:53:28Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_e90_pa(2)"}, "jedi_e90_pa3": {"__spz_name__": "Look Dir. 3", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jedi_e90_pa(3)", "dataset": "juno-jedi-e090", "index1": "3", "is_public": "True", "name": "Look Dir. 3", "parameter": "jedi_e90_pa", "start_date": "2016-08-27T07:53:28Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_e90_pa(3)"}, "jedi_e90_pa4": {"__spz_name__": "Look Dir. 4", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jedi_e90_pa(4)", "dataset": "juno-jedi-e090", "index1": "4", "is_public": "True", "name": "Look Dir. 4", "parameter": "jedi_e90_pa", "start_date": "2016-08-27T07:53:28Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_e90_pa(4)"}, "jedi_e90_pa5": {"__spz_name__": "Look Dir. 5", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jedi_e90_pa(5)", "dataset": "juno-jedi-e090", "index1": "5", "is_public": "True", "name": "Look Dir. 5", "parameter": "jedi_e90_pa", "start_date": "2016-08-27T07:53:28Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_e90_pa(5)"}, "name": "pitch angle", "size": "6", "start_date": "2016-08-27T07:53:28Z", "stop_date": "2023-11-23T23:59:58Z", "units": "deg", "xmlid": "jedi_e90_pa"}, "jedi_e90_ssd": {"__spz_name__": "counts SSD", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jedi_e90_ssd", "dataset": "juno-jedi-e090", "display_type": "timeseries", "is_public": "True", "jedi_e90_ssd0": {"__spz_name__": "Look Dir. 0", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jedi_e90_ssd(0)", "dataset": "juno-jedi-e090", "index1": "0", "is_public": "True", "name": "Look Dir. 0", "parameter": "jedi_e90_ssd", "start_date": "2016-08-27T07:53:28Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_e90_ssd(0)"}, "jedi_e90_ssd1": {"__spz_name__": "Look Dir. 1", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jedi_e90_ssd(1)", "dataset": "juno-jedi-e090", "index1": "1", "is_public": "True", "name": "Look Dir. 1", "parameter": "jedi_e90_ssd", "start_date": "2016-08-27T07:53:28Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_e90_ssd(1)"}, "jedi_e90_ssd2": {"__spz_name__": "Look Dir. 2", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jedi_e90_ssd(2)", "dataset": "juno-jedi-e090", "index1": "2", "is_public": "True", "name": "Look Dir. 2", "parameter": "jedi_e90_ssd", "start_date": "2016-08-27T07:53:28Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_e90_ssd(2)"}, "jedi_e90_ssd3": {"__spz_name__": "Look Dir. 3", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jedi_e90_ssd(3)", "dataset": "juno-jedi-e090", "index1": "3", "is_public": "True", "name": "Look Dir. 3", "parameter": "jedi_e90_ssd", "start_date": "2016-08-27T07:53:28Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_e90_ssd(3)"}, "jedi_e90_ssd4": {"__spz_name__": "Look Dir. 4", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jedi_e90_ssd(4)", "dataset": "juno-jedi-e090", "index1": "4", "is_public": "True", "name": "Look Dir. 4", "parameter": "jedi_e90_ssd", "start_date": "2016-08-27T07:53:28Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_e90_ssd(4)"}, "jedi_e90_ssd5": {"__spz_name__": "Look Dir. 5", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jedi_e90_ssd(5)", "dataset": "juno-jedi-e090", "index1": "5", "is_public": "True", "name": "Look Dir. 5", "parameter": "jedi_e90_ssd", "start_date": "2016-08-27T07:53:28Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_e90_ssd(5)"}, "name": "counts SSD", "size": "6", "start_date": "2016-08-27T07:53:28Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_e90_ssd"}, "lastModificationDate": "2024-10-01T11:00:02Z", "lastUpdate": "2024-07-10T21:24:45Z", "maxSampling": "3S", "measurement_type": "EnergeticParticles", "name": "instrument-90", "processing_level": "Calibrated", "sampling": "0.5S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Juno/JEDI/juno-jedi-e090", "start_date": "2016-08-27T07:53:28Z", "stop_date": "2023-11-23T23:59:58Z", "target": "Jupiter", "xmlid": "juno-jedi-e090"}, "juno_jedi_e180": {"__spz_name__": "instrument-180", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "juno-jedi-e180", "att": "auto/juno-jedi-e180", "dataSource": "PDS", "desc": "
MinSampling: 0.5S; MaxSampling: 3S
Provider: PDS", "is_public": "True", "jedi_e180_counts": {"__spz_name__": "counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jedi_e180_counts", "dataset": "juno-jedi-e180", "display_type": "spectrogram", "is_public": "True", "name": "counts", "start_date": "2016-07-06T22:04:14Z", "stop_date": "2023-11-23T23:59:58Z", "template": "jedi_e180_counts_##lookdir##", "units": "counts", "xmlid": "jedi_e180_counts"}, "jedi_e180_countspad": {"__spz_name__": "counts - PAD", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jedi_e180_countspad", "dataset": "juno-jedi-e180", "description": "Pitch Angle Distribution", "display_type": "spectrogram", "is_public": "True", "name": "counts - PAD", "start_date": "2016-07-06T22:04:14Z", "stop_date": "2023-11-23T23:59:58Z", "units": "counts", "xmlid": "jedi_e180_countspad"}, "jedi_e180_cps": {"__spz_name__": "counts/sec", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jedi_e180_cps", "dataset": "juno-jedi-e180", "display_type": "spectrogram", "is_public": "True", "name": "counts/sec", "start_date": "2016-07-06T22:04:14Z", "stop_date": "2023-11-23T23:59:58Z", "template": "jedi_e180_cps_##lookdir##", "units": "counts per sec", "xmlid": "jedi_e180_cps"}, "jedi_e180_cpspad": {"__spz_name__": "counts/sec - PAD", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jedi_e180_cpspad", "dataset": "juno-jedi-e180", "description": "Pitch Angle Distribution", "display_type": "spectrogram", "is_public": "True", "name": "counts/sec - PAD", "start_date": "2016-07-06T22:04:14Z", "stop_date": "2023-11-23T23:59:58Z", "units": "counts per sec", "xmlid": "jedi_e180_cpspad"}, "jedi_e180_flux": {"__spz_name__": "diff flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jedi_e180_flux", "dataset": "juno-jedi-e180", "display_type": "spectrogram", "is_public": "True", "name": "diff flux", "start_date": "2016-07-06T22:04:14Z", "stop_date": "2023-11-23T23:59:58Z", "template": "jedi_e180_flux_##lookdir##", "units": "counts per sec cm\u00b2 ster keV", "xmlid": "jedi_e180_flux"}, "jedi_e180_fluxpad": {"__spz_name__": "diff flux - PAD", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jedi_e180_fluxpad", "dataset": "juno-jedi-e180", "description": "Pitch Angle Distribution", "display_type": "spectrogram", "is_public": "True", "name": "diff flux - PAD", "start_date": "2016-07-06T22:04:14Z", "stop_date": "2023-11-23T23:59:58Z", "units": "counts per sec cm\u00b2 ster keV", "xmlid": "jedi_e180_fluxpad"}, "jedi_e180_mode": {"__spz_name__": "mode", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jedi_e180_mode", "dataset": "juno-jedi-e180", "display_type": "timeseries", "is_public": "True", "name": "mode", "start_date": "2016-07-06T22:04:14Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_e180_mode"}, "jedi_e180_pa": {"__spz_name__": "pitch angle", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jedi_e180_pa", "dataset": "juno-jedi-e180", "display_type": "timeseries", "is_public": "True", "jedi_e180_pa0": {"__spz_name__": "Look Dir. 0", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jedi_e180_pa(0)", "dataset": "juno-jedi-e180", "index1": "0", "is_public": "True", "name": "Look Dir. 0", "parameter": "jedi_e180_pa", "start_date": "2016-07-06T22:04:14Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_e180_pa(0)"}, "jedi_e180_pa1": {"__spz_name__": "Look Dir. 1", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jedi_e180_pa(1)", "dataset": "juno-jedi-e180", "index1": "1", "is_public": "True", "name": "Look Dir. 1", "parameter": "jedi_e180_pa", "start_date": "2016-07-06T22:04:14Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_e180_pa(1)"}, "jedi_e180_pa2": {"__spz_name__": "Look Dir. 2", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jedi_e180_pa(2)", "dataset": "juno-jedi-e180", "index1": "2", "is_public": "True", "name": "Look Dir. 2", "parameter": "jedi_e180_pa", "start_date": "2016-07-06T22:04:14Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_e180_pa(2)"}, "jedi_e180_pa3": {"__spz_name__": "Look Dir. 3", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jedi_e180_pa(3)", "dataset": "juno-jedi-e180", "index1": "3", "is_public": "True", "name": "Look Dir. 3", "parameter": "jedi_e180_pa", "start_date": "2016-07-06T22:04:14Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_e180_pa(3)"}, "jedi_e180_pa4": {"__spz_name__": "Look Dir. 4", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jedi_e180_pa(4)", "dataset": "juno-jedi-e180", "index1": "4", "is_public": "True", "name": "Look Dir. 4", "parameter": "jedi_e180_pa", "start_date": "2016-07-06T22:04:14Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_e180_pa(4)"}, "jedi_e180_pa5": {"__spz_name__": "Look Dir. 5", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jedi_e180_pa(5)", "dataset": "juno-jedi-e180", "index1": "5", "is_public": "True", "name": "Look Dir. 5", "parameter": "jedi_e180_pa", "start_date": "2016-07-06T22:04:14Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_e180_pa(5)"}, "name": "pitch angle", "size": "6", "start_date": "2016-07-06T22:04:14Z", "stop_date": "2023-11-23T23:59:58Z", "units": "deg", "xmlid": "jedi_e180_pa"}, "jedi_e180_ssd": {"__spz_name__": "counts SSD", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jedi_e180_ssd", "dataset": "juno-jedi-e180", "display_type": "timeseries", "is_public": "True", "jedi_e180_ssd0": {"__spz_name__": "Look Dir. 0", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jedi_e180_ssd(0)", "dataset": "juno-jedi-e180", "index1": "0", "is_public": "True", "name": "Look Dir. 0", "parameter": "jedi_e180_ssd", "start_date": "2016-07-06T22:04:14Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_e180_ssd(0)"}, "jedi_e180_ssd1": {"__spz_name__": "Look Dir. 1", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jedi_e180_ssd(1)", "dataset": "juno-jedi-e180", "index1": "1", "is_public": "True", "name": "Look Dir. 1", "parameter": "jedi_e180_ssd", "start_date": "2016-07-06T22:04:14Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_e180_ssd(1)"}, "jedi_e180_ssd2": {"__spz_name__": "Look Dir. 2", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jedi_e180_ssd(2)", "dataset": "juno-jedi-e180", "index1": "2", "is_public": "True", "name": "Look Dir. 2", "parameter": "jedi_e180_ssd", "start_date": "2016-07-06T22:04:14Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_e180_ssd(2)"}, "jedi_e180_ssd3": {"__spz_name__": "Look Dir. 3", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jedi_e180_ssd(3)", "dataset": "juno-jedi-e180", "index1": "3", "is_public": "True", "name": "Look Dir. 3", "parameter": "jedi_e180_ssd", "start_date": "2016-07-06T22:04:14Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_e180_ssd(3)"}, "jedi_e180_ssd4": {"__spz_name__": "Look Dir. 4", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jedi_e180_ssd(4)", "dataset": "juno-jedi-e180", "index1": "4", "is_public": "True", "name": "Look Dir. 4", "parameter": "jedi_e180_ssd", "start_date": "2016-07-06T22:04:14Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_e180_ssd(4)"}, "jedi_e180_ssd5": {"__spz_name__": "Look Dir. 5", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jedi_e180_ssd(5)", "dataset": "juno-jedi-e180", "index1": "5", "is_public": "True", "name": "Look Dir. 5", "parameter": "jedi_e180_ssd", "start_date": "2016-07-06T22:04:14Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_e180_ssd(5)"}, "name": "counts SSD", "size": "6", "start_date": "2016-07-06T22:04:14Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_e180_ssd"}, "lastModificationDate": "2024-10-01T11:00:02Z", "lastUpdate": "2024-07-10T21:24:47Z", "maxSampling": "3S", "measurement_type": "EnergeticParticles", "name": "instrument-180", "processing_level": "Calibrated", "sampling": "0.5S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Juno/JEDI/juno-jedi-e180", "start_date": "2016-07-06T22:04:14Z", "stop_date": "2023-11-23T23:59:58Z", "target": "Jupiter", "xmlid": "juno-jedi-e180"}, "juno_jedi_e270": {"__spz_name__": "instrument-270", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "juno-jedi-e270", "att": "auto/juno-jedi-e270", "dataSource": "PDS", "desc": "
MinSampling: 0.5S; MaxSampling: 3S
Provider: PDS", "is_public": "True", "jedi_e270_counts": {"__spz_name__": "counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jedi_e270_counts", "dataset": "juno-jedi-e270", "display_type": "spectrogram", "is_public": "True", "name": "counts", "start_date": "2016-08-27T07:52:57Z", "stop_date": "2023-11-23T23:59:58Z", "template": "jedi_e270_counts_##lookdir##", "units": "counts", "xmlid": "jedi_e270_counts"}, "jedi_e270_countspad": {"__spz_name__": "counts - PAD", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jedi_e270_countspad", "dataset": "juno-jedi-e270", "description": "Pitch Angle Distribution", "display_type": "spectrogram", "is_public": "True", "name": "counts - PAD", "start_date": "2016-08-27T07:52:57Z", "stop_date": "2023-11-23T23:59:58Z", "units": "counts", "xmlid": "jedi_e270_countspad"}, "jedi_e270_cps": {"__spz_name__": "counts/sec", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jedi_e270_cps", "dataset": "juno-jedi-e270", "display_type": "spectrogram", "is_public": "True", "name": "counts/sec", "start_date": "2016-08-27T07:52:57Z", "stop_date": "2023-11-23T23:59:58Z", "template": "jedi_e270_cps_##lookdir##", "units": "counts per sec", "xmlid": "jedi_e270_cps"}, "jedi_e270_cpspad": {"__spz_name__": "counts/sec - PAD", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jedi_e270_cpspad", "dataset": "juno-jedi-e270", "description": "Pitch Angle Distribution", "display_type": "spectrogram", "is_public": "True", "name": "counts/sec - PAD", "start_date": "2016-08-27T07:52:57Z", "stop_date": "2023-11-23T23:59:58Z", "units": "counts per sec", "xmlid": "jedi_e270_cpspad"}, "jedi_e270_flux": {"__spz_name__": "diff flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jedi_e270_flux", "dataset": "juno-jedi-e270", "display_type": "spectrogram", "is_public": "True", "name": "diff flux", "start_date": "2016-08-27T07:52:57Z", "stop_date": "2023-11-23T23:59:58Z", "template": "jedi_e270_flux_##lookdir##", "units": "counts per sec cm\u00b2 ster keV", "xmlid": "jedi_e270_flux"}, "jedi_e270_fluxpad": {"__spz_name__": "diff flux - PAD", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jedi_e270_fluxpad", "dataset": "juno-jedi-e270", "description": "Pitch Angle Distribution", "display_type": "spectrogram", "is_public": "True", "name": "diff flux - PAD", "start_date": "2016-08-27T07:52:57Z", "stop_date": "2023-11-23T23:59:58Z", "units": "counts per sec cm\u00b2 ster keV", "xmlid": "jedi_e270_fluxpad"}, "jedi_e270_mode": {"__spz_name__": "mode", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jedi_e270_mode", "dataset": "juno-jedi-e270", "display_type": "timeseries", "is_public": "True", "name": "mode", "start_date": "2016-08-27T07:52:57Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_e270_mode"}, "jedi_e270_pa": {"__spz_name__": "pitch angle", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jedi_e270_pa", "dataset": "juno-jedi-e270", "display_type": "timeseries", "is_public": "True", "jedi_e270_pa0": {"__spz_name__": "Look Dir. 0", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jedi_e270_pa(0)", "dataset": "juno-jedi-e270", "index1": "0", "is_public": "True", "name": "Look Dir. 0", "parameter": "jedi_e270_pa", "start_date": "2016-08-27T07:52:57Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_e270_pa(0)"}, "jedi_e270_pa1": {"__spz_name__": "Look Dir. 1", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jedi_e270_pa(1)", "dataset": "juno-jedi-e270", "index1": "1", "is_public": "True", "name": "Look Dir. 1", "parameter": "jedi_e270_pa", "start_date": "2016-08-27T07:52:57Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_e270_pa(1)"}, "jedi_e270_pa2": {"__spz_name__": "Look Dir. 2", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jedi_e270_pa(2)", "dataset": "juno-jedi-e270", "index1": "2", "is_public": "True", "name": "Look Dir. 2", "parameter": "jedi_e270_pa", "start_date": "2016-08-27T07:52:57Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_e270_pa(2)"}, "jedi_e270_pa3": {"__spz_name__": "Look Dir. 3", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jedi_e270_pa(3)", "dataset": "juno-jedi-e270", "index1": "3", "is_public": "True", "name": "Look Dir. 3", "parameter": "jedi_e270_pa", "start_date": "2016-08-27T07:52:57Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_e270_pa(3)"}, "jedi_e270_pa4": {"__spz_name__": "Look Dir. 4", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jedi_e270_pa(4)", "dataset": "juno-jedi-e270", "index1": "4", "is_public": "True", "name": "Look Dir. 4", "parameter": "jedi_e270_pa", "start_date": "2016-08-27T07:52:57Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_e270_pa(4)"}, "jedi_e270_pa5": {"__spz_name__": "Look Dir. 5", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jedi_e270_pa(5)", "dataset": "juno-jedi-e270", "index1": "5", "is_public": "True", "name": "Look Dir. 5", "parameter": "jedi_e270_pa", "start_date": "2016-08-27T07:52:57Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_e270_pa(5)"}, "name": "pitch angle", "size": "6", "start_date": "2016-08-27T07:52:57Z", "stop_date": "2023-11-23T23:59:58Z", "units": "deg", "xmlid": "jedi_e270_pa"}, "jedi_e270_ssd": {"__spz_name__": "counts SSD", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jedi_e270_ssd", "dataset": "juno-jedi-e270", "display_type": "timeseries", "is_public": "True", "jedi_e270_ssd0": {"__spz_name__": "Look Dir. 0", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jedi_e270_ssd(0)", "dataset": "juno-jedi-e270", "index1": "0", "is_public": "True", "name": "Look Dir. 0", "parameter": "jedi_e270_ssd", "start_date": "2016-08-27T07:52:57Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_e270_ssd(0)"}, "jedi_e270_ssd1": {"__spz_name__": "Look Dir. 1", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jedi_e270_ssd(1)", "dataset": "juno-jedi-e270", "index1": "1", "is_public": "True", "name": "Look Dir. 1", "parameter": "jedi_e270_ssd", "start_date": "2016-08-27T07:52:57Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_e270_ssd(1)"}, "jedi_e270_ssd2": {"__spz_name__": "Look Dir. 2", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jedi_e270_ssd(2)", "dataset": "juno-jedi-e270", "index1": "2", "is_public": "True", "name": "Look Dir. 2", "parameter": "jedi_e270_ssd", "start_date": "2016-08-27T07:52:57Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_e270_ssd(2)"}, "jedi_e270_ssd3": {"__spz_name__": "Look Dir. 3", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jedi_e270_ssd(3)", "dataset": "juno-jedi-e270", "index1": "3", "is_public": "True", "name": "Look Dir. 3", "parameter": "jedi_e270_ssd", "start_date": "2016-08-27T07:52:57Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_e270_ssd(3)"}, "jedi_e270_ssd4": {"__spz_name__": "Look Dir. 4", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jedi_e270_ssd(4)", "dataset": "juno-jedi-e270", "index1": "4", "is_public": "True", "name": "Look Dir. 4", "parameter": "jedi_e270_ssd", "start_date": "2016-08-27T07:52:57Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_e270_ssd(4)"}, "jedi_e270_ssd5": {"__spz_name__": "Look Dir. 5", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jedi_e270_ssd(5)", "dataset": "juno-jedi-e270", "index1": "5", "is_public": "True", "name": "Look Dir. 5", "parameter": "jedi_e270_ssd", "start_date": "2016-08-27T07:52:57Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_e270_ssd(5)"}, "name": "counts SSD", "size": "6", "start_date": "2016-08-27T07:52:57Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_e270_ssd"}, "lastModificationDate": "2024-10-01T11:00:02Z", "lastUpdate": "2024-07-10T21:24:48Z", "maxSampling": "3S", "measurement_type": "EnergeticParticles", "name": "instrument-270", "processing_level": "Calibrated", "sampling": "0.5S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Juno/JEDI/juno-jedi-e270", "start_date": "2016-08-27T07:52:57Z", "stop_date": "2023-11-23T23:59:58Z", "target": "Jupiter", "xmlid": "juno-jedi-e270"}, "name": "electrons", "xmlid": "juno-jedi-e"}, "ions": {"__spz_name__": "ions", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "juno-jedi-i", "is_public": "True", "juno_jedi_i090": {"__spz_name__": "instrument-90", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "juno-jedi-i090", "att": "auto/juno-jedi-i090", "dataSource": "PDS", "desc": "
MinSampling: 0.5S; MaxSampling: 3S
Provider: PDS", "is_public": "True", "jedi_i90_counts": {"__spz_name__": "counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jedi_i90_counts", "dataset": "juno-jedi-i090", "display_type": "spectrogram", "is_public": "True", "name": "counts", "start_date": "2016-08-26T12:07:59Z", "stop_date": "2023-11-23T23:59:58Z", "template": "jedi_i90_counts_##lookdir##", "units": "counts", "xmlid": "jedi_i90_counts"}, "jedi_i90_countspad": {"__spz_name__": "counts - PAD", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jedi_i90_countspad", "dataset": "juno-jedi-i090", "description": "Pitch Angle Distribution", "display_type": "spectrogram", "is_public": "True", "name": "counts - PAD", "start_date": "2016-08-26T12:07:59Z", "stop_date": "2023-11-23T23:59:58Z", "units": "counts", "xmlid": "jedi_i90_countspad"}, "jedi_i90_cps": {"__spz_name__": "counts/sec", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jedi_i90_cps", "dataset": "juno-jedi-i090", "display_type": "spectrogram", "is_public": "True", "name": "counts/sec", "start_date": "2016-08-26T12:07:59Z", "stop_date": "2023-11-23T23:59:58Z", "template": "jedi_i90_cps_##lookdir##", "units": "counts per sec", "xmlid": "jedi_i90_cps"}, "jedi_i90_cpspad": {"__spz_name__": "counts/sec - PAD", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jedi_i90_cpspad", "dataset": "juno-jedi-i090", "description": "Pitch Angle Distribution", "display_type": "spectrogram", "is_public": "True", "name": "counts/sec - PAD", "start_date": "2016-08-26T12:07:59Z", "stop_date": "2023-11-23T23:59:58Z", "units": "counts per sec", "xmlid": "jedi_i90_cpspad"}, "jedi_i90_flux": {"__spz_name__": "diff flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jedi_i90_flux", "dataset": "juno-jedi-i090", "display_type": "spectrogram", "is_public": "True", "name": "diff flux", "start_date": "2016-08-26T12:07:59Z", "stop_date": "2023-11-23T23:59:58Z", "template": "jedi_i90_flux_##lookdir##", "units": "counts per sec cm\u00b2 ster keV", "xmlid": "jedi_i90_flux"}, "jedi_i90_fluxpad": {"__spz_name__": "diff flux - PAD", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jedi_i90_fluxpad", "dataset": "juno-jedi-i090", "description": "Pitch Angle Distribution", "display_type": "spectrogram", "is_public": "True", "name": "diff flux - PAD", "start_date": "2016-08-26T12:07:59Z", "stop_date": "2023-11-23T23:59:58Z", "units": "counts per sec cm\u00b2 ster keV", "xmlid": "jedi_i90_fluxpad"}, "jedi_i90_mode": {"__spz_name__": "mode", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jedi_i90_mode", "dataset": "juno-jedi-i090", "display_type": "timeseries", "is_public": "True", "name": "mode", "start_date": "2016-08-26T12:07:59Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_i90_mode"}, "jedi_i90_pa": {"__spz_name__": "pitch angle", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jedi_i90_pa", "dataset": "juno-jedi-i090", "display_type": "timeseries", "is_public": "True", "jedi_i90_pa0": {"__spz_name__": "Look Dir. 0", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jedi_i90_pa(0)", "dataset": "juno-jedi-i090", "index1": "0", "is_public": "True", "name": "Look Dir. 0", "parameter": "jedi_i90_pa", "start_date": "2016-08-26T12:07:59Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_i90_pa(0)"}, "jedi_i90_pa1": {"__spz_name__": "Look Dir. 1", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jedi_i90_pa(1)", "dataset": "juno-jedi-i090", "index1": "1", "is_public": "True", "name": "Look Dir. 1", "parameter": "jedi_i90_pa", "start_date": "2016-08-26T12:07:59Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_i90_pa(1)"}, "jedi_i90_pa2": {"__spz_name__": "Look Dir. 2", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jedi_i90_pa(2)", "dataset": "juno-jedi-i090", "index1": "2", "is_public": "True", "name": "Look Dir. 2", "parameter": "jedi_i90_pa", "start_date": "2016-08-26T12:07:59Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_i90_pa(2)"}, "jedi_i90_pa3": {"__spz_name__": "Look Dir. 3", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jedi_i90_pa(3)", "dataset": "juno-jedi-i090", "index1": "3", "is_public": "True", "name": "Look Dir. 3", "parameter": "jedi_i90_pa", "start_date": "2016-08-26T12:07:59Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_i90_pa(3)"}, "jedi_i90_pa4": {"__spz_name__": "Look Dir. 4", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jedi_i90_pa(4)", "dataset": "juno-jedi-i090", "index1": "4", "is_public": "True", "name": "Look Dir. 4", "parameter": "jedi_i90_pa", "start_date": "2016-08-26T12:07:59Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_i90_pa(4)"}, "jedi_i90_pa5": {"__spz_name__": "Look Dir. 5", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jedi_i90_pa(5)", "dataset": "juno-jedi-i090", "index1": "5", "is_public": "True", "name": "Look Dir. 5", "parameter": "jedi_i90_pa", "start_date": "2016-08-26T12:07:59Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_i90_pa(5)"}, "name": "pitch angle", "size": "6", "start_date": "2016-08-26T12:07:59Z", "stop_date": "2023-11-23T23:59:58Z", "units": "deg", "xmlid": "jedi_i90_pa"}, "jedi_i90_ssd": {"__spz_name__": "counts SSD", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jedi_i90_ssd", "dataset": "juno-jedi-i090", "display_type": "timeseries", "is_public": "True", "jedi_i90_ssd0": {"__spz_name__": "Look Dir. 0", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jedi_i90_ssd(0)", "dataset": "juno-jedi-i090", "index1": "0", "is_public": "True", "name": "Look Dir. 0", "parameter": "jedi_i90_ssd", "start_date": "2016-08-26T12:07:59Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_i90_ssd(0)"}, "jedi_i90_ssd1": {"__spz_name__": "Look Dir. 1", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jedi_i90_ssd(1)", "dataset": "juno-jedi-i090", "index1": "1", "is_public": "True", "name": "Look Dir. 1", "parameter": "jedi_i90_ssd", "start_date": "2016-08-26T12:07:59Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_i90_ssd(1)"}, "jedi_i90_ssd2": {"__spz_name__": "Look Dir. 2", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jedi_i90_ssd(2)", "dataset": "juno-jedi-i090", "index1": "2", "is_public": "True", "name": "Look Dir. 2", "parameter": "jedi_i90_ssd", "start_date": "2016-08-26T12:07:59Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_i90_ssd(2)"}, "jedi_i90_ssd3": {"__spz_name__": "Look Dir. 3", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jedi_i90_ssd(3)", "dataset": "juno-jedi-i090", "index1": "3", "is_public": "True", "name": "Look Dir. 3", "parameter": "jedi_i90_ssd", "start_date": "2016-08-26T12:07:59Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_i90_ssd(3)"}, "jedi_i90_ssd4": {"__spz_name__": "Look Dir. 4", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jedi_i90_ssd(4)", "dataset": "juno-jedi-i090", "index1": "4", "is_public": "True", "name": "Look Dir. 4", "parameter": "jedi_i90_ssd", "start_date": "2016-08-26T12:07:59Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_i90_ssd(4)"}, "jedi_i90_ssd5": {"__spz_name__": "Look Dir. 5", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jedi_i90_ssd(5)", "dataset": "juno-jedi-i090", "index1": "5", "is_public": "True", "name": "Look Dir. 5", "parameter": "jedi_i90_ssd", "start_date": "2016-08-26T12:07:59Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_i90_ssd(5)"}, "name": "counts SSD", "size": "6", "start_date": "2016-08-26T12:07:59Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_i90_ssd"}, "lastModificationDate": "2024-10-01T11:00:02Z", "lastUpdate": "2024-07-10T21:24:41Z", "maxSampling": "3S", "measurement_type": "EnergeticParticles", "name": "instrument-90", "processing_level": "Calibrated", "sampling": "0.5S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Juno/JEDI/juno-jedi-i090", "start_date": "2016-08-26T12:07:59Z", "stop_date": "2023-11-23T23:59:58Z", "target": "Jupiter", "xmlid": "juno-jedi-i090"}, "juno_jedi_i180": {"__spz_name__": "instrument-180", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "juno-jedi-i180", "att": "auto/juno-jedi-i180", "dataSource": "PDS", "desc": "
MinSampling: 0.5S; MaxSampling: 3S
Provider: PDS", "is_public": "True", "jedi_i180_counts": {"__spz_name__": "counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jedi_i180_counts", "dataset": "juno-jedi-i180", "display_type": "spectrogram", "is_public": "True", "name": "counts", "start_date": "2016-07-06T22:04:14Z", "stop_date": "2023-11-23T23:59:58Z", "template": "jedi_i180_counts_##lookdir##", "units": "counts", "xmlid": "jedi_i180_counts"}, "jedi_i180_countspad": {"__spz_name__": "counts - PAD", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jedi_i180_countspad", "dataset": "juno-jedi-i180", "description": "Pitch Angle Distribution", "display_type": "spectrogram", "is_public": "True", "name": "counts - PAD", "start_date": "2016-07-06T22:04:14Z", "stop_date": "2023-11-23T23:59:58Z", "units": "counts", "xmlid": "jedi_i180_countspad"}, "jedi_i180_cps": {"__spz_name__": "counts/sec", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jedi_i180_cps", "dataset": "juno-jedi-i180", "display_type": "spectrogram", "is_public": "True", "name": "counts/sec", "start_date": "2016-07-06T22:04:14Z", "stop_date": "2023-11-23T23:59:58Z", "template": "jedi_i180_cps_##lookdir##", "units": "counts per sec", "xmlid": "jedi_i180_cps"}, "jedi_i180_cpspad": {"__spz_name__": "counts/sec - PAD", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jedi_i180_cpspad", "dataset": "juno-jedi-i180", "description": "Pitch Angle Distribution", "display_type": "spectrogram", "is_public": "True", "name": "counts/sec - PAD", "start_date": "2016-07-06T22:04:14Z", "stop_date": "2023-11-23T23:59:58Z", "units": "counts per sec", "xmlid": "jedi_i180_cpspad"}, "jedi_i180_flux": {"__spz_name__": "diff flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jedi_i180_flux", "dataset": "juno-jedi-i180", "display_type": "spectrogram", "is_public": "True", "name": "diff flux", "start_date": "2016-07-06T22:04:14Z", "stop_date": "2023-11-23T23:59:58Z", "template": "jedi_i180_flux_##lookdir##", "units": "counts per sec cm\u00b2 ster keV", "xmlid": "jedi_i180_flux"}, "jedi_i180_fluxpad": {"__spz_name__": "diff flux - PAD", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jedi_i180_fluxpad", "dataset": "juno-jedi-i180", "description": "Pitch Angle Distribution", "display_type": "spectrogram", "is_public": "True", "name": "diff flux - PAD", "start_date": "2016-07-06T22:04:14Z", "stop_date": "2023-11-23T23:59:58Z", "units": "counts per sec cm\u00b2 ster keV", "xmlid": "jedi_i180_fluxpad"}, "jedi_i180_mode": {"__spz_name__": "mode", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jedi_i180_mode", "dataset": "juno-jedi-i180", "display_type": "timeseries", "is_public": "True", "name": "mode", "start_date": "2016-07-06T22:04:14Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_i180_mode"}, "jedi_i180_pa": {"__spz_name__": "pitch angle", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jedi_i180_pa", "dataset": "juno-jedi-i180", "display_type": "timeseries", "is_public": "True", "jedi_i180_pa0": {"__spz_name__": "Look Dir. 0", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jedi_i180_pa(0)", "dataset": "juno-jedi-i180", "index1": "0", "is_public": "True", "name": "Look Dir. 0", "parameter": "jedi_i180_pa", "start_date": "2016-07-06T22:04:14Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_i180_pa(0)"}, "jedi_i180_pa1": {"__spz_name__": "Look Dir. 1", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jedi_i180_pa(1)", "dataset": "juno-jedi-i180", "index1": "1", "is_public": "True", "name": "Look Dir. 1", "parameter": "jedi_i180_pa", "start_date": "2016-07-06T22:04:14Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_i180_pa(1)"}, "jedi_i180_pa2": {"__spz_name__": "Look Dir. 2", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jedi_i180_pa(2)", "dataset": "juno-jedi-i180", "index1": "2", "is_public": "True", "name": "Look Dir. 2", "parameter": "jedi_i180_pa", "start_date": "2016-07-06T22:04:14Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_i180_pa(2)"}, "jedi_i180_pa3": {"__spz_name__": "Look Dir. 3", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jedi_i180_pa(3)", "dataset": "juno-jedi-i180", "index1": "3", "is_public": "True", "name": "Look Dir. 3", "parameter": "jedi_i180_pa", "start_date": "2016-07-06T22:04:14Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_i180_pa(3)"}, "jedi_i180_pa4": {"__spz_name__": "Look Dir. 4", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jedi_i180_pa(4)", "dataset": "juno-jedi-i180", "index1": "4", "is_public": "True", "name": "Look Dir. 4", "parameter": "jedi_i180_pa", "start_date": "2016-07-06T22:04:14Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_i180_pa(4)"}, "jedi_i180_pa5": {"__spz_name__": "Look Dir. 5", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jedi_i180_pa(5)", "dataset": "juno-jedi-i180", "index1": "5", "is_public": "True", "name": "Look Dir. 5", "parameter": "jedi_i180_pa", "start_date": "2016-07-06T22:04:14Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_i180_pa(5)"}, "name": "pitch angle", "size": "6", "start_date": "2016-07-06T22:04:14Z", "stop_date": "2023-11-23T23:59:58Z", "units": "deg", "xmlid": "jedi_i180_pa"}, "jedi_i180_ssd": {"__spz_name__": "counts SSD", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jedi_i180_ssd", "dataset": "juno-jedi-i180", "display_type": "timeseries", "is_public": "True", "jedi_i180_ssd0": {"__spz_name__": "Look Dir. 0", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jedi_i180_ssd(0)", "dataset": "juno-jedi-i180", "index1": "0", "is_public": "True", "name": "Look Dir. 0", "parameter": "jedi_i180_ssd", "start_date": "2016-07-06T22:04:14Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_i180_ssd(0)"}, "jedi_i180_ssd1": {"__spz_name__": "Look Dir. 1", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jedi_i180_ssd(1)", "dataset": "juno-jedi-i180", "index1": "1", "is_public": "True", "name": "Look Dir. 1", "parameter": "jedi_i180_ssd", "start_date": "2016-07-06T22:04:14Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_i180_ssd(1)"}, "jedi_i180_ssd2": {"__spz_name__": "Look Dir. 2", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jedi_i180_ssd(2)", "dataset": "juno-jedi-i180", "index1": "2", "is_public": "True", "name": "Look Dir. 2", "parameter": "jedi_i180_ssd", "start_date": "2016-07-06T22:04:14Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_i180_ssd(2)"}, "jedi_i180_ssd3": {"__spz_name__": "Look Dir. 3", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jedi_i180_ssd(3)", "dataset": "juno-jedi-i180", "index1": "3", "is_public": "True", "name": "Look Dir. 3", "parameter": "jedi_i180_ssd", "start_date": "2016-07-06T22:04:14Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_i180_ssd(3)"}, "jedi_i180_ssd4": {"__spz_name__": "Look Dir. 4", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jedi_i180_ssd(4)", "dataset": "juno-jedi-i180", "index1": "4", "is_public": "True", "name": "Look Dir. 4", "parameter": "jedi_i180_ssd", "start_date": "2016-07-06T22:04:14Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_i180_ssd(4)"}, "jedi_i180_ssd5": {"__spz_name__": "Look Dir. 5", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jedi_i180_ssd(5)", "dataset": "juno-jedi-i180", "index1": "5", "is_public": "True", "name": "Look Dir. 5", "parameter": "jedi_i180_ssd", "start_date": "2016-07-06T22:04:14Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_i180_ssd(5)"}, "name": "counts SSD", "size": "6", "start_date": "2016-07-06T22:04:14Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_i180_ssd"}, "lastModificationDate": "2024-10-01T11:00:03Z", "lastUpdate": "2024-07-10T21:24:42Z", "maxSampling": "3S", "measurement_type": "EnergeticParticles", "name": "instrument-180", "processing_level": "Calibrated", "sampling": "0.5S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Juno/JEDI/juno-jedi-i180", "start_date": "2016-07-06T22:04:14Z", "stop_date": "2023-11-23T23:59:58Z", "target": "Jupiter", "xmlid": "juno-jedi-i180"}, "juno_jedi_i270": {"__spz_name__": "instrument-270", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "juno-jedi-i270", "att": "auto/juno-jedi-i270", "dataSource": "PDS", "desc": "
MinSampling: 0.5S; MaxSampling: 3S
Provider: PDS", "is_public": "True", "jedi_i270_counts": {"__spz_name__": "counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jedi_i270_counts", "dataset": "juno-jedi-i270", "display_type": "spectrogram", "is_public": "True", "name": "counts", "start_date": "2016-08-26T12:07:29Z", "stop_date": "2023-11-23T23:59:58Z", "template": "jedi_i270_counts_##lookdir##", "units": "counts", "xmlid": "jedi_i270_counts"}, "jedi_i270_countspad": {"__spz_name__": "counts - PAD", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jedi_i270_countspad", "dataset": "juno-jedi-i270", "description": "Pitch Angle Distribution", "display_type": "spectrogram", "is_public": "True", "name": "counts - PAD", "start_date": "2016-08-26T12:07:29Z", "stop_date": "2023-11-23T23:59:58Z", "units": "counts", "xmlid": "jedi_i270_countspad"}, "jedi_i270_cps": {"__spz_name__": "counts/sec", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jedi_i270_cps", "dataset": "juno-jedi-i270", "display_type": "spectrogram", "is_public": "True", "name": "counts/sec", "start_date": "2016-08-26T12:07:29Z", "stop_date": "2023-11-23T23:59:58Z", "template": "jedi_i270_cps_##lookdir##", "units": "counts per sec", "xmlid": "jedi_i270_cps"}, "jedi_i270_cpspad": {"__spz_name__": "counts/sec - PAD", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jedi_i270_cpspad", "dataset": "juno-jedi-i270", "description": "Pitch Angle Distribution", "display_type": "spectrogram", "is_public": "True", "name": "counts/sec - PAD", "start_date": "2016-08-26T12:07:29Z", "stop_date": "2023-11-23T23:59:58Z", "units": "counts per sec", "xmlid": "jedi_i270_cpspad"}, "jedi_i270_flux": {"__spz_name__": "diff flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jedi_i270_flux", "dataset": "juno-jedi-i270", "display_type": "spectrogram", "is_public": "True", "name": "diff flux", "start_date": "2016-08-26T12:07:29Z", "stop_date": "2023-11-23T23:59:58Z", "template": "jedi_i270_flux_##lookdir##", "units": "counts per sec cm\u00b2 ster keV", "xmlid": "jedi_i270_flux"}, "jedi_i270_fluxpad": {"__spz_name__": "diff flux - PAD", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jedi_i270_fluxpad", "dataset": "juno-jedi-i270", "description": "Pitch Angle Distribution", "display_type": "spectrogram", "is_public": "True", "name": "diff flux - PAD", "start_date": "2016-08-26T12:07:29Z", "stop_date": "2023-11-23T23:59:58Z", "units": "counts per sec cm\u00b2 ster keV", "xmlid": "jedi_i270_fluxpad"}, "jedi_i270_mode": {"__spz_name__": "mode", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jedi_i270_mode", "dataset": "juno-jedi-i270", "display_type": "timeseries", "is_public": "True", "name": "mode", "start_date": "2016-08-26T12:07:29Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_i270_mode"}, "jedi_i270_pa": {"__spz_name__": "pitch angle", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jedi_i270_pa", "dataset": "juno-jedi-i270", "display_type": "timeseries", "is_public": "True", "jedi_i270_pa0": {"__spz_name__": "Look Dir. 0", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jedi_i270_pa(0)", "dataset": "juno-jedi-i270", "index1": "0", "is_public": "True", "name": "Look Dir. 0", "parameter": "jedi_i270_pa", "start_date": "2016-08-26T12:07:29Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_i270_pa(0)"}, "jedi_i270_pa1": {"__spz_name__": "Look Dir. 1", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jedi_i270_pa(1)", "dataset": "juno-jedi-i270", "index1": "1", "is_public": "True", "name": "Look Dir. 1", "parameter": "jedi_i270_pa", "start_date": "2016-08-26T12:07:29Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_i270_pa(1)"}, "jedi_i270_pa2": {"__spz_name__": "Look Dir. 2", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jedi_i270_pa(2)", "dataset": "juno-jedi-i270", "index1": "2", "is_public": "True", "name": "Look Dir. 2", "parameter": "jedi_i270_pa", "start_date": "2016-08-26T12:07:29Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_i270_pa(2)"}, "jedi_i270_pa3": {"__spz_name__": "Look Dir. 3", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jedi_i270_pa(3)", "dataset": "juno-jedi-i270", "index1": "3", "is_public": "True", "name": "Look Dir. 3", "parameter": "jedi_i270_pa", "start_date": "2016-08-26T12:07:29Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_i270_pa(3)"}, "jedi_i270_pa4": {"__spz_name__": "Look Dir. 4", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jedi_i270_pa(4)", "dataset": "juno-jedi-i270", "index1": "4", "is_public": "True", "name": "Look Dir. 4", "parameter": "jedi_i270_pa", "start_date": "2016-08-26T12:07:29Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_i270_pa(4)"}, "jedi_i270_pa5": {"__spz_name__": "Look Dir. 5", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jedi_i270_pa(5)", "dataset": "juno-jedi-i270", "index1": "5", "is_public": "True", "name": "Look Dir. 5", "parameter": "jedi_i270_pa", "start_date": "2016-08-26T12:07:29Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_i270_pa(5)"}, "name": "pitch angle", "size": "6", "start_date": "2016-08-26T12:07:29Z", "stop_date": "2023-11-23T23:59:58Z", "units": "deg", "xmlid": "jedi_i270_pa"}, "jedi_i270_ssd": {"__spz_name__": "counts SSD", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jedi_i270_ssd", "dataset": "juno-jedi-i270", "display_type": "timeseries", "is_public": "True", "jedi_i270_ssd0": {"__spz_name__": "Look Dir. 0", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jedi_i270_ssd(0)", "dataset": "juno-jedi-i270", "index1": "0", "is_public": "True", "name": "Look Dir. 0", "parameter": "jedi_i270_ssd", "start_date": "2016-08-26T12:07:29Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_i270_ssd(0)"}, "jedi_i270_ssd1": {"__spz_name__": "Look Dir. 1", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jedi_i270_ssd(1)", "dataset": "juno-jedi-i270", "index1": "1", "is_public": "True", "name": "Look Dir. 1", "parameter": "jedi_i270_ssd", "start_date": "2016-08-26T12:07:29Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_i270_ssd(1)"}, "jedi_i270_ssd2": {"__spz_name__": "Look Dir. 2", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jedi_i270_ssd(2)", "dataset": "juno-jedi-i270", "index1": "2", "is_public": "True", "name": "Look Dir. 2", "parameter": "jedi_i270_ssd", "start_date": "2016-08-26T12:07:29Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_i270_ssd(2)"}, "jedi_i270_ssd3": {"__spz_name__": "Look Dir. 3", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jedi_i270_ssd(3)", "dataset": "juno-jedi-i270", "index1": "3", "is_public": "True", "name": "Look Dir. 3", "parameter": "jedi_i270_ssd", "start_date": "2016-08-26T12:07:29Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_i270_ssd(3)"}, "jedi_i270_ssd4": {"__spz_name__": "Look Dir. 4", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jedi_i270_ssd(4)", "dataset": "juno-jedi-i270", "index1": "4", "is_public": "True", "name": "Look Dir. 4", "parameter": "jedi_i270_ssd", "start_date": "2016-08-26T12:07:29Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_i270_ssd(4)"}, "jedi_i270_ssd5": {"__spz_name__": "Look Dir. 5", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jedi_i270_ssd(5)", "dataset": "juno-jedi-i270", "index1": "5", "is_public": "True", "name": "Look Dir. 5", "parameter": "jedi_i270_ssd", "start_date": "2016-08-26T12:07:29Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_i270_ssd(5)"}, "name": "counts SSD", "size": "6", "start_date": "2016-08-26T12:07:29Z", "stop_date": "2023-11-23T23:59:58Z", "xmlid": "jedi_i270_ssd"}, "lastModificationDate": "2024-10-01T11:00:03Z", "lastUpdate": "2024-07-10T21:24:44Z", "maxSampling": "3S", "measurement_type": "EnergeticParticles", "name": "instrument-270", "processing_level": "Calibrated", "sampling": "0.5S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Juno/JEDI/juno-jedi-i270", "start_date": "2016-08-26T12:07:29Z", "stop_date": "2023-11-23T23:59:58Z", "target": "Jupiter", "xmlid": "juno-jedi-i270"}, "name": "ions", "xmlid": "juno-jedi-i"}, "is_public": "True", "name": "JEDI", "xmlid": "Juno_jedi"}, "Jovian_Magnetic_Field_Models": {"__spz_name__": "Jovian Magnetic Field Models", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Juno_models", "att": "auto/Juno_models", "desc": "", "is_public": "True", "jun_jrm09_model": {"PriorID": "juno-jupiter-all", "__spz_name__": "JRM09 + CAN field model", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "jun-jrm09-model", "att": "auto/jun-jrm09-model", "b_jrm09_can_60_1_juno_jup_xyz": {"__spz_name__": "b_iau_jup", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_jrm09_can_60_1_juno_jup_xyz", "b_jrm09_can_60_1_juno_jup_xyz0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_jrm09_can_60_1_juno_jup_xyz(0)", "dataset": "jun-jrm09-model", "index1": "0", "is_public": "True", "name": "bx", "parameter": "b_jrm09_can_60_1_juno_jup_xyz", "start_date": "2016-06-01T00:00:00Z", "stop_date": "2025-10-19T23:55:00Z", "xmlid": "b_jrm09_can_60_1_juno_jup_xyz(0)"}, "b_jrm09_can_60_1_juno_jup_xyz1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_jrm09_can_60_1_juno_jup_xyz(1)", "dataset": "jun-jrm09-model", "index1": "1", "is_public": "True", "name": "by", "parameter": "b_jrm09_can_60_1_juno_jup_xyz", "start_date": "2016-06-01T00:00:00Z", "stop_date": "2025-10-19T23:55:00Z", "xmlid": "b_jrm09_can_60_1_juno_jup_xyz(1)"}, "b_jrm09_can_60_1_juno_jup_xyz2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_jrm09_can_60_1_juno_jup_xyz(2)", "dataset": "jun-jrm09-model", "index1": "2", "is_public": "True", "name": "bz", "parameter": "b_jrm09_can_60_1_juno_jup_xyz", "start_date": "2016-06-01T00:00:00Z", "stop_date": "2025-10-19T23:55:00Z", "xmlid": "b_jrm09_can_60_1_juno_jup_xyz(2)"}, "dataset": "jun-jrm09-model", "is_public": "True", "name": "b_iau_jup", "predefined": "1", "size": "3", "start_date": "2016-06-01T00:00:00Z", "stop_date": "2025-10-19T23:55:00Z", "template": "b_jrm09_can_##sampling##_##can##_##orbit##", "units": "nT", "xmlid": "b_jrm09_can_60_1_juno_jup_xyz"}, "b_jrm09_can_tot_60_1_juno_jup_xyz": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_jrm09_can_tot_60_1_juno_jup_xyz", "dataset": "jun-jrm09-model", "is_public": "True", "name": "|b|", "predefined": "1", "start_date": "2016-06-01T00:00:00Z", "stop_date": "2025-10-19T23:55:00Z", "template": "b_jrm09_can_tot_##sampling##_##can##_##orbit##", "units": "nT", "xmlid": "b_jrm09_can_tot_60_1_juno_jup_xyz"}, "dataSource": "IRAP", "desc": "JRM09 + CAN jovian magnetic field model
Sampling: 1M
Provider: IRAP", "is_public": "True", "lastModificationDate": "2024-03-21T15:56:24Z", "lastUpdate": "2024-03-21T15:56:24Z", "measurement_type": "MagneticField", "name": "JRM09 + CAN field model", "processing_level": "Calibrated", "sampling": "1M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Juno/Models/jun-jrm09-model", "start_date": "2016-06-01T00:00:00Z", "stop_date": "2025-10-19T23:55:00Z", "target": "Jupiter", "xmlid": "jun-jrm09-model"}, "jun_jrm33_model": {"PriorID": "juno-jupiter-all", "__spz_name__": "JRM33 + Con2020 field model", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "jun-jrm33-model", "att": "auto/jun-jrm33-model", "b_jrm33_con_60_1_juno_jup_xyz": {"__spz_name__": "b_iau_jup", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_jrm33_con_60_1_juno_jup_xyz", "b_jrm33_con_60_1_juno_jup_xyz0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_jrm33_con_60_1_juno_jup_xyz(0)", "dataset": "jun-jrm33-model", "index1": "0", "is_public": "True", "name": "bx", "parameter": "b_jrm33_con_60_1_juno_jup_xyz", "start_date": "2016-06-01T00:00:00Z", "stop_date": "2025-10-19T23:55:00Z", "xmlid": "b_jrm33_con_60_1_juno_jup_xyz(0)"}, "b_jrm33_con_60_1_juno_jup_xyz1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_jrm33_con_60_1_juno_jup_xyz(1)", "dataset": "jun-jrm33-model", "index1": "1", "is_public": "True", "name": "by", "parameter": "b_jrm33_con_60_1_juno_jup_xyz", "start_date": "2016-06-01T00:00:00Z", "stop_date": "2025-10-19T23:55:00Z", "xmlid": "b_jrm33_con_60_1_juno_jup_xyz(1)"}, "b_jrm33_con_60_1_juno_jup_xyz2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_jrm33_con_60_1_juno_jup_xyz(2)", "dataset": "jun-jrm33-model", "index1": "2", "is_public": "True", "name": "bz", "parameter": "b_jrm33_con_60_1_juno_jup_xyz", "start_date": "2016-06-01T00:00:00Z", "stop_date": "2025-10-19T23:55:00Z", "xmlid": "b_jrm33_con_60_1_juno_jup_xyz(2)"}, "dataset": "jun-jrm33-model", "is_public": "True", "name": "b_iau_jup", "predefined": "1", "size": "3", "start_date": "2016-06-01T00:00:00Z", "stop_date": "2025-10-19T23:55:00Z", "template": "b_jrm33_con_##sampling##_##con##_##orbit##", "units": "nT", "xmlid": "b_jrm33_con_60_1_juno_jup_xyz"}, "b_jrm33_con_tot_60_1_juno_jup_xyz": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_jrm33_con_tot_60_1_juno_jup_xyz", "dataset": "jun-jrm33-model", "is_public": "True", "name": "|b|", "predefined": "1", "start_date": "2016-06-01T00:00:00Z", "stop_date": "2025-10-19T23:55:00Z", "template": "b_jrm33_con_tot_##sampling##_##con##_##orbit##", "units": "nT", "xmlid": "b_jrm33_con_tot_60_1_juno_jup_xyz"}, "dataSource": "IRAP", "desc": "JRM33 + Con2020 jovian magnetic field model
Sampling: 1M
Provider: IRAP", "is_public": "True", "lastModificationDate": "2024-03-21T15:56:24Z", "lastUpdate": "2024-03-21T15:56:24Z", "measurement_type": "MagneticField", "name": "JRM33 + Con2020 field model", "processing_level": "Calibrated", "sampling": "1M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Juno/Models/jun-jrm33-model", "start_date": "2016-06-01T00:00:00Z", "stop_date": "2025-10-19T23:55:00Z", "target": "Jupiter", "xmlid": "jun-jrm33-model"}, "jun_jrm33_mshell": {"__spz_name__": "JRM33 + Con2020 M-Shell", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "jun-jrm33-mshell", "att": "auto/jun-jrm33-mshell", "dataSource": "IRAP", "desc": "JRM33 + Con2020 M-Shell
Sampling: 1S
Provider: IRAP", "is_public": "True", "lastUpdate": "2024-02-15T01:01:36Z", "measurement_type": "MagneticField", "mshell_juno_m": {"__spz_name__": "M-Shell", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mshell_juno_m", "dataset": "jun-jrm33-mshell", "description": "M-Shell - Radial distance of the intersection between the magnetic field line and themagnetic equator", "is_public": "True", "name": "M-Shell", "start_date": "2016-08-27T00:00:00Z", "stop_date": "2023-11-22T00:00:00Z", "xmlid": "mshell_juno_m"}, "mshell_juno_p": {"__spz_name__": "M-Shell longitude", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mshell_juno_p", "dataset": "jun-jrm33-mshell", "description": "Longitude (S3RH) of the intersection between the magnetic field line and themagnetic equator", "is_public": "True", "name": "M-Shell longitude", "start_date": "2016-08-27T00:00:00Z", "stop_date": "2023-11-22T00:00:00Z", "units": "deg", "xmlid": "mshell_juno_p"}, "mshell_juno_s": {"__spz_name__": "curvilinear distance s", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mshell_juno_s", "dataset": "jun-jrm33-mshell", "description": "Curvilinear distance along the magnetic field line between the magnetic equator and the spacecraft", "is_public": "True", "name": "curvilinear distance s", "start_date": "2016-08-27T00:00:00Z", "stop_date": "2023-11-22T00:00:00Z", "units": "Rj", "xmlid": "mshell_juno_s"}, "mshell_juno_t": {"__spz_name__": "M-Shell colatitude", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mshell_juno_t", "dataset": "jun-jrm33-mshell", "description": "Colatitude (S3RH) of the intersection between the magnetic field line and themagnetic equator", "is_public": "True", "name": "M-Shell colatitude", "start_date": "2016-08-27T00:00:00Z", "stop_date": "2023-11-22T00:00:00Z", "units": "deg", "xmlid": "mshell_juno_t"}, "name": "JRM33 + Con2020 M-Shell", "processing_level": "Calibrated", "sampling": "1S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Juno/Models/jun-jrm33-mshell", "start_date": "2016-08-27T00:00:00Z", "stop_date": "2023-11-22T00:00:00Z", "target": "Jupiter", "xmlid": "jun-jrm33-mshell"}, "name": "Jovian Magnetic Field Models", "xmlid": "Juno_models"}, "WAVES": {"__spz_name__": "WAVES", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Juno_waves", "att": "auto/Juno_waves", "cruise": {"__spz_name__": "cruise", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "juno-wav-cru", "is_public": "True", "juno_wav_crub": {"__spz_name__": "Magnetic Field", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "juno-wav-crub", "att": "auto/juno-wav-crub", "dataSource": "PDS", "desc": "
MinSampling: 1S; MaxSampling: 10S
Provider: PDS", "is_public": "True", "juno_wav_b_cru_lfrlo": {"__spz_name__": "b_lfrlo", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juno_wav_b_cru_lfrlo", "dataset": "juno-wav-crub", "display_type": "spectrogram", "is_public": "True", "name": "b_lfrlo", "start_date": "2011-08-09T16:31:18Z", "stop_date": "2016-06-29T23:54:59Z", "units": "(nT\u00b2)/Hz", "xmlid": "juno_wav_b_cru_lfrlo"}, "lastModificationDate": "2023-03-16T11:01:41Z", "lastUpdate": "2023-03-16T10:55:11Z", "maxSampling": "10S", "measurement_type": "Waves", "name": "Magnetic Field", "processing_level": "Calibrated", "sampling": "1S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Juno/WAVES/juno-wav-crub", "start_date": "2011-08-09T16:31:18Z", "stop_date": "2016-06-29T23:54:59Z", "target": "Jupiter", "xmlid": "juno-wav-crub"}, "juno_wav_crue": {"__spz_name__": "Electric Field", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "juno-wav-crue", "att": "auto/juno-wav-crue", "dataSource": "PDS", "desc": "
MinSampling: 1S; MaxSampling: 10S
Provider: PDS", "is_public": "True", "juno_wav_e_cru_hfrhi": {"__spz_name__": "e_hfrhi", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juno_wav_e_cru_hfrhi", "dataset": "juno-wav-crue", "display_type": "spectrogram", "is_public": "True", "name": "e_hfrhi", "start_date": "2011-08-09T16:31:18Z", "stop_date": "2016-06-29T23:54:59Z", "units": "(V\u00b2/m\u00b2)/Hz", "xmlid": "juno_wav_e_cru_hfrhi"}, "juno_wav_e_cru_hfrlo": {"__spz_name__": "e_hfrlo", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juno_wav_e_cru_hfrlo", "dataset": "juno-wav-crue", "display_type": "spectrogram", "is_public": "True", "name": "e_hfrlo", "start_date": "2011-08-09T16:31:18Z", "stop_date": "2016-06-29T23:54:59Z", "units": "(V\u00b2/m\u00b2)/Hz", "xmlid": "juno_wav_e_cru_hfrlo"}, "juno_wav_e_cru_lfrhi": {"__spz_name__": "e_lfrhi", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juno_wav_e_cru_lfrhi", "dataset": "juno-wav-crue", "display_type": "spectrogram", "is_public": "True", "name": "e_lfrhi", "start_date": "2011-08-09T16:31:18Z", "stop_date": "2016-06-29T23:54:59Z", "units": "(V\u00b2/m\u00b2)/Hz", "xmlid": "juno_wav_e_cru_lfrhi"}, "juno_wav_e_cru_lfrlo": {"__spz_name__": "e_lfrlo", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juno_wav_e_cru_lfrlo", "dataset": "juno-wav-crue", "display_type": "spectrogram", "is_public": "True", "name": "e_lfrlo", "start_date": "2011-08-09T16:31:18Z", "stop_date": "2016-06-29T23:54:59Z", "units": "(V\u00b2/m\u00b2)/Hz", "xmlid": "juno_wav_e_cru_lfrlo"}, "lastModificationDate": "2023-03-16T10:50:45Z", "lastUpdate": "2023-03-16T10:44:39Z", "maxSampling": "10S", "measurement_type": "Waves", "name": "Electric Field", "processing_level": "Calibrated", "sampling": "1S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Juno/WAVES/juno-wav-crue", "start_date": "2011-08-09T16:31:18Z", "stop_date": "2016-06-29T23:54:59Z", "target": "Jupiter", "xmlid": "juno-wav-crue"}, "name": "cruise", "xmlid": "juno-wav-cru"}, "desc": "Juno Waves
WaveformReceiver", "is_public": "True", "name": "WAVES", "orbit_jupiter": {"__spz_name__": "orbit jupiter", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "juno-wav-orb", "is_public": "True", "juno_wav_l3f": {"__spz_name__": "calibrated electric flux density", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "juno-wav-l3f", "att": "auto/juno-wav-l3f", "dataSource": "PADC/MASER", "desc": "
Sampling: 1S
Provider: PADC/MASER", "is_public": "True", "juno_wav_l3f": {"__spz_name__": "density_flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juno_wav_l3f", "dataset": "juno-wav-l3f", "display_type": "spectrogram", "is_public": "True", "name": "density_flux", "start_date": "2016-04-09T00:00:00Z", "stop_date": "2022-12-12T23:59:59Z", "units": "(V\u00b2/m\u00b2)/Hz", "xmlid": "juno_wav_l3f"}, "lastModificationDate": "2023-09-12T09:10:25Z", "lastUpdate": "2023-09-11T23:27:34Z", "measurement_type": "Waves", "name": "calibrated electric flux density", "processing_level": "Calibrated", "sampling": "1S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Juno/WAVES/juno-wav-l3f", "start_date": "2016-04-09T00:00:00Z", "stop_date": "2022-12-12T23:59:59Z", "target": "Jupiter", "xmlid": "juno-wav-l3f"}, "juno_wav_orbb": {"__spz_name__": "b spectral density", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "juno-wav-orbb", "att": "auto/juno-wav-orbb", "dataSource": "PDS", "desc": "
MinSampling: 1S; MaxSampling: 10S
Provider: PDS", "is_public": "True", "juno_wav_b_orb_lfrlo": {"__spz_name__": "b_lfrlo", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juno_wav_b_orb_lfrlo", "dataset": "juno-wav-orbb", "display_type": "spectrogram", "is_public": "True", "name": "b_lfrlo", "start_date": "2016-07-06T20:56:08Z", "stop_date": "2023-12-11T12:20:07Z", "units": "(nT\u00b2)/Hz", "xmlid": "juno_wav_b_orb_lfrlo"}, "lastModificationDate": "2024-07-07T08:16:09Z", "lastUpdate": "2024-07-07T08:14:42Z", "maxSampling": "10S", "measurement_type": "Waves", "name": "b spectral density", "processing_level": "Calibrated", "sampling": "1S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Juno/WAVES/juno-wav-orbb", "start_date": "2016-07-06T20:56:08Z", "stop_date": "2023-12-11T12:20:07Z", "target": "Jupiter", "xmlid": "juno-wav-orbb"}, "juno_wav_orbe": {"__spz_name__": "e spectral density", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "juno-wav-orbe", "att": "auto/juno-wav-orbe", "dataSource": "PDS", "desc": "
MinSampling: 1S; MaxSampling: 10S
Provider: PDS", "is_public": "True", "juno_wav_e_orb_hfrhi": {"__spz_name__": "e_hfrhi", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juno_wav_e_orb_hfrhi", "dataset": "juno-wav-orbe", "display_type": "spectrogram", "is_public": "True", "name": "e_hfrhi", "start_date": "2016-07-06T20:56:08Z", "stop_date": "2023-12-11T12:20:07Z", "units": "(V\u00b2/m\u00b2)/Hz", "xmlid": "juno_wav_e_orb_hfrhi"}, "juno_wav_e_orb_hfrlo": {"__spz_name__": "e_hfrlo", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juno_wav_e_orb_hfrlo", "dataset": "juno-wav-orbe", "display_type": "spectrogram", "is_public": "True", "name": "e_hfrlo", "start_date": "2016-07-06T20:56:08Z", "stop_date": "2023-12-11T12:20:07Z", "units": "(V\u00b2/m\u00b2)/Hz", "xmlid": "juno_wav_e_orb_hfrlo"}, "juno_wav_e_orb_lfrhi": {"__spz_name__": "e_lfrhi", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juno_wav_e_orb_lfrhi", "dataset": "juno-wav-orbe", "display_type": "spectrogram", "is_public": "True", "name": "e_lfrhi", "start_date": "2016-07-06T20:56:08Z", "stop_date": "2023-12-11T12:20:07Z", "units": "(V\u00b2/m\u00b2)/Hz", "xmlid": "juno_wav_e_orb_lfrhi"}, "juno_wav_e_orb_lfrlo": {"__spz_name__": "e_lfrlo", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juno_wav_e_orb_lfrlo", "dataset": "juno-wav-orbe", "display_type": "spectrogram", "is_public": "True", "name": "e_lfrlo", "start_date": "2016-07-06T20:56:08Z", "stop_date": "2023-12-11T12:20:07Z", "units": "(V\u00b2/m\u00b2)/Hz", "xmlid": "juno_wav_e_orb_lfrlo"}, "lastModificationDate": "2024-07-07T08:16:16Z", "lastUpdate": "2024-07-07T08:15:52Z", "maxSampling": "10S", "measurement_type": "Waves", "name": "e spectral density", "processing_level": "Calibrated", "sampling": "1S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Juno/WAVES/juno-wav-orbe", "start_date": "2016-07-06T20:56:08Z", "stop_date": "2023-12-11T12:20:07Z", "target": "Jupiter", "xmlid": "juno-wav-orbe"}, "name": "orbit jupiter", "xmlid": "juno-wav-orb"}, "xmlid": "Juno_waves"}, "__spz_name__": "Juno", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Juno", "att": "auto/Juno", "desc": "Juno
2011-08-05T00:00:00
Jupiter arrival : 2016-07-04", "is_public": "True", "name": "Juno", "rank": "9", "target": "Jupiter", "xmlid": "Juno"}, "MAVEN": {"Analytical_Models": {"__spz_name__": "Analytical Models", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "MAVEN_models", "att": "auto/MAVEN_models", "desc": "", "is_public": "True", "mav_morsch_model": {"PriorID": "maven-orb-marsobs", "__spz_name__": "Morschhauser field model", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mav-morsch-model", "att": "auto/mav-morsch-model", "bmorsch_mso_60_mav_xyz_mso": {"__spz_name__": "b_mso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "bmorsch_mso_60_mav_xyz_mso", "bmorsch_mso_60_mav_xyz_mso0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "bmorsch_mso_60_mav_xyz_mso(0)", "dataset": "mav-morsch-model", "index1": "0", "is_public": "True", "name": "bx", "parameter": "bmorsch_mso_60_mav_xyz_mso", "start_date": "2014-09-22T00:00:00Z", "stop_date": "2024-08-13T14:52:00Z", "xmlid": "bmorsch_mso_60_mav_xyz_mso(0)"}, "bmorsch_mso_60_mav_xyz_mso1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "bmorsch_mso_60_mav_xyz_mso(1)", "dataset": "mav-morsch-model", "index1": "1", "is_public": "True", "name": "by", "parameter": "bmorsch_mso_60_mav_xyz_mso", "start_date": "2014-09-22T00:00:00Z", "stop_date": "2024-08-13T14:52:00Z", "xmlid": "bmorsch_mso_60_mav_xyz_mso(1)"}, "bmorsch_mso_60_mav_xyz_mso2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "bmorsch_mso_60_mav_xyz_mso(2)", "dataset": "mav-morsch-model", "index1": "2", "is_public": "True", "name": "bz", "parameter": "bmorsch_mso_60_mav_xyz_mso", "start_date": "2014-09-22T00:00:00Z", "stop_date": "2024-08-13T14:52:00Z", "xmlid": "bmorsch_mso_60_mav_xyz_mso(2)"}, "dataset": "mav-morsch-model", "is_public": "True", "name": "b_mso", "predefined": "1", "size": "3", "start_date": "2014-09-22T00:00:00Z", "stop_date": "2024-08-13T14:52:00Z", "template": "bmorsch_mso_##sampling##_##orbit##", "units": "nT", "xmlid": "bmorsch_mso_60_mav_xyz_mso"}, "bmorsch_tot_60_mav_xyz_mso": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "bmorsch_tot_60_mav_xyz_mso", "dataset": "mav-morsch-model", "is_public": "True", "name": "|b|", "predefined": "1", "start_date": "2014-09-22T00:00:00Z", "stop_date": "2024-08-13T14:52:00Z", "template": "bmorsch_tot_##sampling##_##orbit##", "units": "nT", "xmlid": "bmorsch_tot_60_mav_xyz_mso"}, "dataSource": "IRAP", "desc": "Morschhauser model martian crustal magnetic field
Sampling: 1M
Provider: IRAP", "is_public": "True", "lastModificationDate": "2024-08-20T13:00:38Z", "lastUpdate": "2024-08-20T13:00:25Z", "measurement_type": "MagneticField", "name": "Morschhauser field model", "processing_level": "Calibrated", "sampling": "1M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MAVEN/Models/mav-morsch-model", "start_date": "2014-09-22T00:00:00Z", "stop_date": "2024-08-13T14:52:00Z", "target": "Mars", "xmlid": "mav-morsch-model"}, "name": "Analytical Models", "xmlid": "MAVEN_models"}, "EUV": {"__spz_name__": "EUV", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "MAVEN_euv", "att": "auto/MAVEN_euv", "desc": "Extreme UltraViolet Monitor
Photometer", "is_public": "True", "mvn_euv_clb": {"__spz_name__": "measured EUV flux", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mvn-euv-clb", "att": "auto/mvn-euv-clb", "dataSource": "PDS", "desc": "Extreme Ultraviolet monitor calibrated irradiances
Sampling: 60S
Provider: PDS", "is_public": "True", "lastModificationDate": "2024-09-02T01:40:18Z", "lastUpdate": "2024-09-02T01:40:18Z", "mav_euv_deltac": {"__spz_name__": "measurement uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_euv_deltac", "dataset": "mvn-euv-clb", "is_public": "True", "mav_euv_deltac0": {"__spz_name__": "A: 17-22 nm", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_euv_deltac(0)", "dataset": "mvn-euv-clb", "index1": "0", "is_public": "True", "name": "A: 17-22 nm", "parameter": "mav_euv_deltac", "start_date": "2014-10-18T00:00:16Z", "stop_date": "2024-05-14T23:59:57Z", "xmlid": "mav_euv_deltac(0)"}, "mav_euv_deltac1": {"__spz_name__": "B: 0-7 nm", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_euv_deltac(1)", "dataset": "mvn-euv-clb", "index1": "1", "is_public": "True", "name": "B: 0-7 nm", "parameter": "mav_euv_deltac", "start_date": "2014-10-18T00:00:16Z", "stop_date": "2024-05-14T23:59:57Z", "xmlid": "mav_euv_deltac(1)"}, "mav_euv_deltac2": {"__spz_name__": "C: 121-122 nm", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_euv_deltac(2)", "dataset": "mvn-euv-clb", "index1": "2", "is_public": "True", "name": "C: 121-122 nm", "parameter": "mav_euv_deltac", "start_date": "2014-10-18T00:00:16Z", "stop_date": "2024-05-14T23:59:57Z", "xmlid": "mav_euv_deltac(2)"}, "name": "measurement uncertainty", "size": "3", "start_date": "2014-10-18T00:00:16Z", "stop_date": "2024-05-14T23:59:57Z", "units": "%", "xmlid": "mav_euv_deltac"}, "mav_euv_deltatot": {"__spz_name__": "total uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_euv_deltatot", "dataset": "mvn-euv-clb", "is_public": "True", "mav_euv_deltatot0": {"__spz_name__": "A: 17-22 nm", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_euv_deltatot(0)", "dataset": "mvn-euv-clb", "index1": "0", "is_public": "True", "name": "A: 17-22 nm", "parameter": "mav_euv_deltatot", "start_date": "2014-10-18T00:00:16Z", "stop_date": "2024-05-14T23:59:57Z", "xmlid": "mav_euv_deltatot(0)"}, "mav_euv_deltatot1": {"__spz_name__": "B: 0-7 nm", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_euv_deltatot(1)", "dataset": "mvn-euv-clb", "index1": "1", "is_public": "True", "name": "B: 0-7 nm", "parameter": "mav_euv_deltatot", "start_date": "2014-10-18T00:00:16Z", "stop_date": "2024-05-14T23:59:57Z", "xmlid": "mav_euv_deltatot(1)"}, "mav_euv_deltatot2": {"__spz_name__": "C: 121-122 nm", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_euv_deltatot(2)", "dataset": "mvn-euv-clb", "index1": "2", "is_public": "True", "name": "C: 121-122 nm", "parameter": "mav_euv_deltatot", "start_date": "2014-10-18T00:00:16Z", "stop_date": "2024-05-14T23:59:57Z", "xmlid": "mav_euv_deltatot(2)"}, "name": "total uncertainty", "size": "3", "start_date": "2014-10-18T00:00:16Z", "stop_date": "2024-05-14T23:59:57Z", "units": "%", "xmlid": "mav_euv_deltatot"}, "mav_euv_flagc": {"__spz_name__": "quality flag", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_euv_flagc", "dataset": "mvn-euv-clb", "display_type": "timeseries", "is_public": "True", "name": "quality flag", "start_date": "2014-10-18T00:00:16Z", "stop_date": "2024-05-14T23:59:57Z", "xmlid": "mav_euv_flagc"}, "mav_euv_fluxc": {"__spz_name__": "energy flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_euv_fluxc", "dataset": "mvn-euv-clb", "is_public": "True", "mav_euv_fluxc0": {"__spz_name__": "A: 17-22 nm", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_euv_fluxc(0)", "dataset": "mvn-euv-clb", "index1": "0", "is_public": "True", "name": "A: 17-22 nm", "parameter": "mav_euv_fluxc", "start_date": "2014-10-18T00:00:16Z", "stop_date": "2024-05-14T23:59:57Z", "xmlid": "mav_euv_fluxc(0)"}, "mav_euv_fluxc1": {"__spz_name__": "B: 0-7 nm", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_euv_fluxc(1)", "dataset": "mvn-euv-clb", "index1": "1", "is_public": "True", "name": "B: 0-7 nm", "parameter": "mav_euv_fluxc", "start_date": "2014-10-18T00:00:16Z", "stop_date": "2024-05-14T23:59:57Z", "xmlid": "mav_euv_fluxc(1)"}, "mav_euv_fluxc2": {"__spz_name__": "C: 121-122 nm", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_euv_fluxc(2)", "dataset": "mvn-euv-clb", "index1": "2", "is_public": "True", "name": "C: 121-122 nm", "parameter": "mav_euv_fluxc", "start_date": "2014-10-18T00:00:16Z", "stop_date": "2024-05-14T23:59:57Z", "xmlid": "mav_euv_fluxc(2)"}, "name": "energy flux", "size": "3", "start_date": "2014-10-18T00:00:16Z", "stop_date": "2024-05-14T23:59:57Z", "units": "Watts/m\u00b2", "xmlid": "mav_euv_fluxc"}, "measurement_type": "ThermalPlasma", "name": "measured EUV flux", "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MAVEN/EUV/mvn-euv-clb", "start_date": "2014-10-18T00:00:16Z", "stop_date": "2024-05-14T23:59:57Z", "target": "Mars", "xmlid": "mvn-euv-clb"}, "mvn_euv_mod": {"__spz_name__": "modelled EUV flux", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mvn-euv-mod", "att": "auto/mvn-euv-mod", "dataSource": "PDS", "desc": "
Sampling: 60S
Provider: PDS", "is_public": "True", "lastModificationDate": "2024-09-02T02:32:53Z", "lastUpdate": "2024-09-02T02:32:53Z", "mav_euv_deltam": {"__spz_name__": "irradiance flux uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_euv_deltam", "dataset": "mvn-euv-mod", "display_type": "spectrogram", "is_public": "True", "name": "irradiance flux uncertainty", "start_date": "2014-10-19T00:00:00Z", "stop_date": "2024-05-14T23:58:58Z", "units": "%", "xmlid": "mav_euv_deltam"}, "mav_euv_flagm": {"__spz_name__": "quality flag", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_euv_flagm", "dataset": "mvn-euv-mod", "display_type": "timeseries", "is_public": "True", "name": "quality flag", "start_date": "2014-10-19T00:00:00Z", "stop_date": "2024-05-14T23:58:58Z", "xmlid": "mav_euv_flagm"}, "mav_euv_fluxm": {"__spz_name__": "irradiance flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_euv_fluxm", "dataset": "mvn-euv-mod", "display_type": "spectrogram", "is_public": "True", "name": "irradiance flux", "start_date": "2014-10-19T00:00:00Z", "stop_date": "2024-05-14T23:58:58Z", "units": "Watts/m\u00b2/nm", "xmlid": "mav_euv_fluxm"}, "measurement_type": "ThermalPlasma", "name": "modelled EUV flux", "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MAVEN/EUV/mvn-euv-mod", "start_date": "2014-10-19T00:00:00Z", "stop_date": "2024-05-14T23:58:58Z", "target": "Mars", "xmlid": "mvn-euv-mod"}, "name": "EUV", "xmlid": "MAVEN_euv"}, "Ephemeris": {"__spz_name__": "Ephemeris", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "MAVEN_ephemeris", "att": "auto/MAVEN_ephemeris", "desc": "", "is_public": "True", "maven_orb_cruise": {"__spz_name__": "cruise", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "maven-orb-cruise", "att": "auto/maven-orb-cruise", "dataSource": "SPICE/NAIF", "desc": "MAVEN cruise phase
Sampling: 1H
Provider: SPICE/NAIF", "is_public": "True", "lastModificationDate": "2015-11-27T15:23:58Z", "lastUpdate": "2015-11-27T15:23:41Z", "mav_lat_iausun": {"__spz_name__": "lat_iau_sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_lat_iausun", "dataset": "maven-orb-cruise", "display_type": "timeseries", "is_public": "True", "name": "lat_iau_sun", "start_date": "2013-11-18T19:21:49Z", "stop_date": "2014-09-21T22:21:49Z", "units": "degrees", "xmlid": "mav_lat_iausun"}, "mav_lon_iausun": {"__spz_name__": "lon_iau_sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_lon_iausun", "dataset": "maven-orb-cruise", "display_type": "timeseries", "is_public": "True", "name": "lon_iau_sun", "start_date": "2013-11-18T19:21:49Z", "stop_date": "2014-09-21T22:21:49Z", "units": "degrees", "xmlid": "mav_lon_iausun"}, "mav_sun_r": {"__spz_name__": "distance maven-sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_sun_r", "dataset": "maven-orb-cruise", "display_type": "timeseries", "is_public": "True", "name": "distance maven-sun", "start_date": "2013-11-18T19:21:49Z", "stop_date": "2014-09-21T22:21:49Z", "units": "AU", "xmlid": "mav_sun_r"}, "mav_xyz_hee": {"__spz_name__": "xyz_hee", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_xyz_hee", "dataset": "maven-orb-cruise", "display_type": "timeseries", "is_public": "True", "mav_xyz_hee0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_xyz_hee(0)", "dataset": "maven-orb-cruise", "index1": "0", "is_public": "True", "name": "x", "parameter": "mav_xyz_hee", "start_date": "2013-11-18T19:21:49Z", "stop_date": "2014-09-21T22:21:49Z", "xmlid": "mav_xyz_hee(0)"}, "mav_xyz_hee1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_xyz_hee(1)", "dataset": "maven-orb-cruise", "index1": "1", "is_public": "True", "name": "y", "parameter": "mav_xyz_hee", "start_date": "2013-11-18T19:21:49Z", "stop_date": "2014-09-21T22:21:49Z", "xmlid": "mav_xyz_hee(1)"}, "mav_xyz_hee2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_xyz_hee(2)", "dataset": "maven-orb-cruise", "index1": "2", "is_public": "True", "name": "z", "parameter": "mav_xyz_hee", "start_date": "2013-11-18T19:21:49Z", "stop_date": "2014-09-21T22:21:49Z", "xmlid": "mav_xyz_hee(2)"}, "name": "xyz_hee", "size": "3", "start_date": "2013-11-18T19:21:49Z", "stop_date": "2014-09-21T22:21:49Z", "units": "AU", "xmlid": "mav_xyz_hee"}, "mav_xyz_heeq": {"__spz_name__": "xyz_heeq", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_xyz_heeq", "dataset": "maven-orb-cruise", "display_type": "timeseries", "is_public": "True", "mav_xyz_heeq0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_xyz_heeq(0)", "dataset": "maven-orb-cruise", "index1": "0", "is_public": "True", "name": "x", "parameter": "mav_xyz_heeq", "start_date": "2013-11-18T19:21:49Z", "stop_date": "2014-09-21T22:21:49Z", "xmlid": "mav_xyz_heeq(0)"}, "mav_xyz_heeq1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_xyz_heeq(1)", "dataset": "maven-orb-cruise", "index1": "1", "is_public": "True", "name": "y", "parameter": "mav_xyz_heeq", "start_date": "2013-11-18T19:21:49Z", "stop_date": "2014-09-21T22:21:49Z", "xmlid": "mav_xyz_heeq(1)"}, "mav_xyz_heeq2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_xyz_heeq(2)", "dataset": "maven-orb-cruise", "index1": "2", "is_public": "True", "name": "z", "parameter": "mav_xyz_heeq", "start_date": "2013-11-18T19:21:49Z", "stop_date": "2014-09-21T22:21:49Z", "xmlid": "mav_xyz_heeq(2)"}, "name": "xyz_heeq", "size": "3", "start_date": "2013-11-18T19:21:49Z", "stop_date": "2014-09-21T22:21:49Z", "units": "AU", "xmlid": "mav_xyz_heeq"}, "mav_xyz_iausun": {"__spz_name__": "xyz_iau_sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_xyz_iausun", "dataset": "maven-orb-cruise", "display_type": "timeseries", "is_public": "True", "mav_xyz_iausun0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_xyz_iausun(0)", "dataset": "maven-orb-cruise", "index1": "0", "is_public": "True", "name": "x", "parameter": "mav_xyz_iausun", "start_date": "2013-11-18T19:21:49Z", "stop_date": "2014-09-21T22:21:49Z", "xmlid": "mav_xyz_iausun(0)"}, "mav_xyz_iausun1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_xyz_iausun(1)", "dataset": "maven-orb-cruise", "index1": "1", "is_public": "True", "name": "y", "parameter": "mav_xyz_iausun", "start_date": "2013-11-18T19:21:49Z", "stop_date": "2014-09-21T22:21:49Z", "xmlid": "mav_xyz_iausun(1)"}, "mav_xyz_iausun2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_xyz_iausun(2)", "dataset": "maven-orb-cruise", "index1": "2", "is_public": "True", "name": "z", "parameter": "mav_xyz_iausun", "start_date": "2013-11-18T19:21:49Z", "stop_date": "2014-09-21T22:21:49Z", "xmlid": "mav_xyz_iausun(2)"}, "name": "xyz_iau_sun", "size": "3", "start_date": "2013-11-18T19:21:49Z", "stop_date": "2014-09-21T22:21:49Z", "units": "AU", "xmlid": "mav_xyz_iausun"}, "measurement_type": "Ephemeris", "name": "cruise", "processing_level": "Calibrated", "sampling": "1H", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MAVEN/Ephemeris/maven-orb-cruise", "start_date": "2013-11-18T19:21:49Z", "stop_date": "2014-09-21T22:21:49Z", "target": "Heliosphere", "xmlid": "maven-orb-cruise"}, "maven_orb_marsobs": {"__spz_name__": "orbit mars - 1 min", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "maven-orb-marsobs", "att": "auto/maven-orb-marsobs", "dataSource": "SPICE/NAIF", "desc": "MAVEN orbital phase
Sampling: 1M
Provider: SPICE/NAIF", "is_public": "True", "lastModificationDate": "2024-08-20T13:00:38Z", "lastUpdate": "2024-08-20T13:00:25Z", "mav_lat_iaumars": {"__spz_name__": "lat_iau_mars", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_lat_iaumars", "dataset": "maven-orb-marsobs", "display_type": "timeseries", "is_public": "True", "name": "lat_iau_mars", "start_date": "2014-09-22T00:00:00Z", "stop_date": "2024-08-13T14:52:00Z", "units": "degrees", "xmlid": "mav_lat_iaumars"}, "mav_lon_iaumars": {"__spz_name__": "lon_iau_mars", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_lon_iaumars", "dataset": "maven-orb-marsobs", "display_type": "timeseries", "is_public": "True", "name": "lon_iau_mars", "start_date": "2014-09-22T00:00:00Z", "stop_date": "2024-08-13T14:52:00Z", "units": "degrees", "xmlid": "mav_lon_iaumars"}, "mav_mars_r": {"__spz_name__": "distance maven-mars", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_mars_r", "dataset": "maven-orb-marsobs", "display_type": "timeseries", "is_public": "True", "name": "distance maven-mars", "start_date": "2014-09-22T00:00:00Z", "stop_date": "2024-08-13T14:52:00Z", "units": "Rma", "xmlid": "mav_mars_r"}, "mav_orb_num": {"__spz_name__": "mav_orbit_num", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_orb_num", "dataset": "maven-orb-marsobs", "display_type": "timeseries", "is_public": "True", "name": "mav_orbit_num", "start_date": "2014-09-22T00:00:00Z", "stop_date": "2024-08-13T14:52:00Z", "xmlid": "mav_orb_num"}, "mav_xyz_iaumars": {"__spz_name__": "xyz_iau_mars", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_xyz_iaumars", "dataset": "maven-orb-marsobs", "display_type": "timeseries", "is_public": "True", "mav_xyz_iaumars0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_xyz_iaumars(0)", "dataset": "maven-orb-marsobs", "index1": "0", "is_public": "True", "name": "x", "parameter": "mav_xyz_iaumars", "start_date": "2014-09-22T00:00:00Z", "stop_date": "2024-08-13T14:52:00Z", "xmlid": "mav_xyz_iaumars(0)"}, "mav_xyz_iaumars1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_xyz_iaumars(1)", "dataset": "maven-orb-marsobs", "index1": "1", "is_public": "True", "name": "y", "parameter": "mav_xyz_iaumars", "start_date": "2014-09-22T00:00:00Z", "stop_date": "2024-08-13T14:52:00Z", "xmlid": "mav_xyz_iaumars(1)"}, "mav_xyz_iaumars2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_xyz_iaumars(2)", "dataset": "maven-orb-marsobs", "index1": "2", "is_public": "True", "name": "z", "parameter": "mav_xyz_iaumars", "start_date": "2014-09-22T00:00:00Z", "stop_date": "2024-08-13T14:52:00Z", "xmlid": "mav_xyz_iaumars(2)"}, "name": "xyz_iau_mars", "size": "3", "start_date": "2014-09-22T00:00:00Z", "stop_date": "2024-08-13T14:52:00Z", "units": "Rma", "xmlid": "mav_xyz_iaumars"}, "mav_xyz_mso": {"__spz_name__": "xyz_mso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_xyz_mso", "dataset": "maven-orb-marsobs", "display_type": "timeseries", "is_public": "True", "mav_xyz_mso0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_xyz_mso(0)", "dataset": "maven-orb-marsobs", "index1": "0", "is_public": "True", "name": "x", "parameter": "mav_xyz_mso", "start_date": "2014-09-22T00:00:00Z", "stop_date": "2024-08-13T14:52:00Z", "xmlid": "mav_xyz_mso(0)"}, "mav_xyz_mso1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_xyz_mso(1)", "dataset": "maven-orb-marsobs", "index1": "1", "is_public": "True", "name": "y", "parameter": "mav_xyz_mso", "start_date": "2014-09-22T00:00:00Z", "stop_date": "2024-08-13T14:52:00Z", "xmlid": "mav_xyz_mso(1)"}, "mav_xyz_mso2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_xyz_mso(2)", "dataset": "maven-orb-marsobs", "index1": "2", "is_public": "True", "name": "z", "parameter": "mav_xyz_mso", "start_date": "2014-09-22T00:00:00Z", "stop_date": "2024-08-13T14:52:00Z", "xmlid": "mav_xyz_mso(2)"}, "name": "xyz_mso", "size": "3", "start_date": "2014-09-22T00:00:00Z", "stop_date": "2024-08-13T14:52:00Z", "units": "Rma", "xmlid": "mav_xyz_mso"}, "measurement_type": "Ephemeris", "name": "orbit mars - 1 min", "processing_level": "Calibrated", "sampling": "1M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MAVEN/Ephemeris/maven-orb-marsobs", "start_date": "2014-09-22T00:00:00Z", "stop_date": "2024-08-13T14:52:00Z", "target": "Mars", "xmlid": "maven-orb-marsobs"}, "maven_orb_marsobs1s": {"__spz_name__": "orbit mars - 1 sec", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "maven-orb-marsobs1s", "att": "auto/maven-orb-marsobs1s", "dataSource": "SPICE/NAIF", "desc": "MAVEN orbital phase
Sampling: 1S
Provider: SPICE/NAIF", "is_public": "True", "lastModificationDate": "2024-08-20T13:07:00Z", "lastUpdate": "2024-08-20T13:03:17Z", "mav_lat_iaumars1s": {"__spz_name__": "lat_iau_mars", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_lat_iaumars1s", "dataset": "maven-orb-marsobs1s", "display_type": "timeseries", "is_public": "True", "name": "lat_iau_mars", "start_date": "2014-09-22T00:00:00Z", "stop_date": "2024-08-13T14:53:49Z", "units": "degrees", "xmlid": "mav_lat_iaumars1s"}, "mav_lon_iaumars1s": {"__spz_name__": "lon_iau_mars", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_lon_iaumars1s", "dataset": "maven-orb-marsobs1s", "display_type": "timeseries", "is_public": "True", "name": "lon_iau_mars", "start_date": "2014-09-22T00:00:00Z", "stop_date": "2024-08-13T14:53:49Z", "units": "degrees", "xmlid": "mav_lon_iaumars1s"}, "mav_mars_r1s": {"__spz_name__": "distance maven-mars", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_mars_r1s", "dataset": "maven-orb-marsobs1s", "display_type": "timeseries", "is_public": "True", "name": "distance maven-mars", "start_date": "2014-09-22T00:00:00Z", "stop_date": "2024-08-13T14:53:49Z", "units": "Rma", "xmlid": "mav_mars_r1s"}, "mav_orb_num1s": {"__spz_name__": "mav_orbit_num", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_orb_num1s", "dataset": "maven-orb-marsobs1s", "display_type": "timeseries", "is_public": "True", "name": "mav_orbit_num", "start_date": "2014-09-22T00:00:00Z", "stop_date": "2024-08-13T14:53:49Z", "xmlid": "mav_orb_num1s"}, "mav_xyz_iaumars1s": {"__spz_name__": "xyz_iau_mars", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_xyz_iaumars1s", "dataset": "maven-orb-marsobs1s", "display_type": "timeseries", "is_public": "True", "mav_xyz_iaumars1s0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_xyz_iaumars1s(0)", "dataset": "maven-orb-marsobs1s", "index1": "0", "is_public": "True", "name": "x", "parameter": "mav_xyz_iaumars1s", "start_date": "2014-09-22T00:00:00Z", "stop_date": "2024-08-13T14:53:49Z", "xmlid": "mav_xyz_iaumars1s(0)"}, "mav_xyz_iaumars1s1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_xyz_iaumars1s(1)", "dataset": "maven-orb-marsobs1s", "index1": "1", "is_public": "True", "name": "y", "parameter": "mav_xyz_iaumars1s", "start_date": "2014-09-22T00:00:00Z", "stop_date": "2024-08-13T14:53:49Z", "xmlid": "mav_xyz_iaumars1s(1)"}, "mav_xyz_iaumars1s2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_xyz_iaumars1s(2)", "dataset": "maven-orb-marsobs1s", "index1": "2", "is_public": "True", "name": "z", "parameter": "mav_xyz_iaumars1s", "start_date": "2014-09-22T00:00:00Z", "stop_date": "2024-08-13T14:53:49Z", "xmlid": "mav_xyz_iaumars1s(2)"}, "name": "xyz_iau_mars", "size": "3", "start_date": "2014-09-22T00:00:00Z", "stop_date": "2024-08-13T14:53:49Z", "units": "Rma", "xmlid": "mav_xyz_iaumars1s"}, "mav_xyz_mso1s": {"__spz_name__": "xyz_mso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_xyz_mso1s", "dataset": "maven-orb-marsobs1s", "display_type": "timeseries", "is_public": "True", "mav_xyz_mso1s0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_xyz_mso1s(0)", "dataset": "maven-orb-marsobs1s", "index1": "0", "is_public": "True", "name": "x", "parameter": "mav_xyz_mso1s", "start_date": "2014-09-22T00:00:00Z", "stop_date": "2024-08-13T14:53:49Z", "xmlid": "mav_xyz_mso1s(0)"}, "mav_xyz_mso1s1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_xyz_mso1s(1)", "dataset": "maven-orb-marsobs1s", "index1": "1", "is_public": "True", "name": "y", "parameter": "mav_xyz_mso1s", "start_date": "2014-09-22T00:00:00Z", "stop_date": "2024-08-13T14:53:49Z", "xmlid": "mav_xyz_mso1s(1)"}, "mav_xyz_mso1s2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_xyz_mso1s(2)", "dataset": "maven-orb-marsobs1s", "index1": "2", "is_public": "True", "name": "z", "parameter": "mav_xyz_mso1s", "start_date": "2014-09-22T00:00:00Z", "stop_date": "2024-08-13T14:53:49Z", "xmlid": "mav_xyz_mso1s(2)"}, "name": "xyz_mso", "size": "3", "start_date": "2014-09-22T00:00:00Z", "stop_date": "2024-08-13T14:53:49Z", "units": "Rma", "xmlid": "mav_xyz_mso1s"}, "measurement_type": "Ephemeris", "name": "orbit mars - 1 sec", "processing_level": "Calibrated", "sampling": "1S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MAVEN/Ephemeris/maven-orb-marsobs1s", "start_date": "2014-09-22T00:00:00Z", "stop_date": "2024-08-13T14:53:49Z", "target": "Mars", "xmlid": "maven-orb-marsobs1s"}, "name": "Ephemeris", "xmlid": "MAVEN_ephemeris"}, "LPW": {"__spz_name__": "LPW", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "MAVEN_lpw", "att": "auto/MAVEN_lpw", "desc": "Langmuir Probe and Waves Instrument
LangmuirProbe", "is_public": "True", "mav_lpw_kp": {"__spz_name__": "key parameters", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mav-lpw-kp", "att": "auto/mav-lpw-kp", "dataSource": "PDS", "desc": "LPW : key parameters
MinSampling: 4S; MaxSampling: 8S
Provider: PDS", "is_public": "True", "lastModificationDate": "2024-09-02T00:39:44Z", "lastUpdate": "2024-08-02T11:44:49Z", "mav_lpwkp_ef1": {"__spz_name__": "E-field power : 002-100Hz", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_lpwkp_ef1", "dataset": "mav-lpw-kp", "description": "Integrated wave power from the onboard calculated FFT, frequencies important for wave heating", "is_public": "True", "name": "E-field power : 002-100Hz", "start_date": "2014-10-11T00:00:08Z", "stop_date": "2024-02-14T23:59:52Z", "units": "(V/m)\u00b2/Hz", "xmlid": "mav_lpwkp_ef1"}, "mav_lpwkp_ef1_qual": {"__spz_name__": "E-field power : 002-100Hz : quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_lpwkp_ef1_qual", "dataset": "mav-lpw-kp", "description": "Range: 0-100, where 100 is the highest confidence level, use data with quality flag of 50 or above", "is_public": "True", "name": "E-field power : 002-100Hz : quality", "start_date": "2014-10-11T00:00:08Z", "stop_date": "2024-02-14T23:59:52Z", "xmlid": "mav_lpwkp_ef1_qual"}, "mav_lpwkp_ef2": {"__spz_name__": "E-field power : 100-800Hz", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_lpwkp_ef2", "dataset": "mav-lpw-kp", "description": "Integrated wave power from the onboard calculated FFT, frequencies important for wave heating", "is_public": "True", "name": "E-field power : 100-800Hz", "start_date": "2014-10-11T00:00:08Z", "stop_date": "2024-02-14T23:59:52Z", "units": "(V/m)\u00b2/Hz", "xmlid": "mav_lpwkp_ef2"}, "mav_lpwkp_ef2_qual": {"__spz_name__": "E-field power : 100-800Hz : quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_lpwkp_ef2_qual", "dataset": "mav-lpw-kp", "description": "Range: 0-100, where 100 is the highest confidence level, use data with quality flag of 50 or above", "is_public": "True", "name": "E-field power : 100-800Hz : quality", "start_date": "2014-10-11T00:00:08Z", "stop_date": "2024-02-14T23:59:52Z", "xmlid": "mav_lpwkp_ef2_qual"}, "mav_lpwkp_ef3": {"__spz_name__": "E-field power : 800-1000Hz", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_lpwkp_ef3", "dataset": "mav-lpw-kp", "description": "Integrated wave power from the onboard calculated FFT, frequencies important for wave heating", "is_public": "True", "name": "E-field power : 800-1000Hz", "start_date": "2014-10-11T00:00:08Z", "stop_date": "2024-02-14T23:59:52Z", "units": "(V/m)\u00b2/Hz", "xmlid": "mav_lpwkp_ef3"}, "mav_lpwkp_ef3_qual": {"__spz_name__": "E-field power : 800-1000Hz : quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_lpwkp_ef3_qual", "dataset": "mav-lpw-kp", "description": "Range: 0-100, where 100 is the highest confidence level, use data with quality flag of 50 or above", "is_public": "True", "name": "E-field power : 800-1000Hz : quality", "start_date": "2014-10-11T00:00:08Z", "stop_date": "2024-02-14T23:59:52Z", "xmlid": "mav_lpwkp_ef3_qual"}, "mav_lpwkp_n": {"__spz_name__": "e- density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_lpwkp_n", "dataset": "mav-lpw-kp", "description": "Electron density derived from the LP sweep and when available from the plasma line", "is_public": "True", "name": "e- density", "start_date": "2014-10-11T00:00:08Z", "stop_date": "2024-02-14T23:59:52Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm-3", "xmlid": "mav_lpwkp_n"}, "mav_lpwkp_nmax": {"__spz_name__": "e- density error : max", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_lpwkp_nmax", "dataset": "mav-lpw-kp", "description": "Electron density maximal value", "is_public": "True", "name": "e- density error : max", "start_date": "2014-10-11T00:00:08Z", "stop_date": "2024-02-14T23:59:52Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm-3", "xmlid": "mav_lpwkp_nmax"}, "mav_lpwkp_nmin": {"__spz_name__": "e- density error : min", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_lpwkp_nmin", "dataset": "mav-lpw-kp", "description": "Electron density minimal value", "is_public": "True", "name": "e- density error : min", "start_date": "2014-10-11T00:00:08Z", "stop_date": "2024-02-14T23:59:52Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm-3", "xmlid": "mav_lpwkp_nmin"}, "mav_lpwkp_pot": {"__spz_name__": "s/c pot", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_lpwkp_pot", "dataset": "mav-lpw-kp", "description": "Measured from the probe potentials", "is_public": "True", "name": "s/c pot", "start_date": "2014-10-11T00:00:08Z", "stop_date": "2024-02-14T23:59:52Z", "units": "V", "xmlid": "mav_lpwkp_pot"}, "mav_lpwkp_potmax": {"__spz_name__": "s/c pot error : max", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_lpwkp_potmax", "dataset": "mav-lpw-kp", "description": "S/c potential maximal value", "is_public": "True", "name": "s/c pot error : max", "start_date": "2014-10-11T00:00:08Z", "stop_date": "2024-02-14T23:59:52Z", "units": "V", "xmlid": "mav_lpwkp_potmax"}, "mav_lpwkp_potmin": {"__spz_name__": "s/c pot error : min", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_lpwkp_potmin", "dataset": "mav-lpw-kp", "description": "S/c potential minimal value", "is_public": "True", "name": "s/c pot error : min", "start_date": "2014-10-11T00:00:08Z", "stop_date": "2024-02-14T23:59:52Z", "units": "V", "xmlid": "mav_lpwkp_potmin"}, "mav_lpwkp_t": {"__spz_name__": "e- temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_lpwkp_t", "dataset": "mav-lpw-kp", "description": "Electron temperature derived from the LP sweep and when available from the plasma line", "is_public": "True", "name": "e- temperature", "start_date": "2014-10-11T00:00:08Z", "stop_date": "2024-02-14T23:59:52Z", "units": "K", "xmlid": "mav_lpwkp_t"}, "mav_lpwkp_tmax": {"__spz_name__": "e- temperature error : max", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_lpwkp_tmax", "dataset": "mav-lpw-kp", "description": "Electron temperature maximal value", "is_public": "True", "name": "e- temperature error : max", "start_date": "2014-10-11T00:00:08Z", "stop_date": "2024-02-14T23:59:52Z", "units": "K", "xmlid": "mav_lpwkp_tmax"}, "mav_lpwkp_tmin": {"__spz_name__": "e- temperature error : min", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_lpwkp_tmin", "dataset": "mav-lpw-kp", "description": "Electron temperature minimal value", "is_public": "True", "name": "e- temperature error : min", "start_date": "2014-10-11T00:00:08Z", "stop_date": "2024-02-14T23:59:52Z", "units": "K", "xmlid": "mav_lpwkp_tmin"}, "maxSampling": "8S", "measurement_type": "Waves", "name": "key parameters", "processing_level": "Calibrated", "sampling": "4S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MAVEN/LPW/mav-lpw-kp", "start_date": "2014-10-11T00:00:08Z", "stop_date": "2024-02-14T23:59:52Z", "target": "Mars", "xmlid": "mav-lpw-kp"}, "mvn_lpw_scpot": {"__spz_name__": "merged s/c potential", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mvn-lpw-scpot", "att": "auto/mvn-lpw-scpot", "dataSource": "PDS", "desc": "
MinSampling: 2S; MaxSampling: 4S
Provider: PDS", "is_public": "True", "lastModificationDate": "2024-09-02T03:16:11Z", "lastUpdate": "2021-03-07T06:45:57Z", "mav_lpw_flag": {"__spz_name__": "s/c pot quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_lpw_flag", "dataset": "mvn-lpw-scpot", "description": "Quality of Potential.The uncertainty of the\n values with a scale of 0-100. 100 is the best quality. Use data with flag value\n above 50", "is_public": "True", "name": "s/c pot quality", "start_date": "2014-10-08T00:00:01Z", "stop_date": "2020-11-10T00:00:00Z", "xmlid": "mav_lpw_flag"}, "mav_lpw_pot": {"__spz_name__": "s/c pot", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_lpw_pot", "dataset": "mvn-lpw-scpot", "description": "spacecraft potential", "is_public": "True", "name": "s/c pot", "start_date": "2014-10-08T00:00:01Z", "stop_date": "2020-11-10T00:00:00Z", "ucd": "phys.electField", "units": "V", "xmlid": "mav_lpw_pot"}, "maxSampling": "4S", "measurement_type": "Waves", "name": "merged s/c potential", "processing_level": "Calibrated", "sampling": "2S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MAVEN/LPW/mvn-lpw-scpot", "start_date": "2014-10-08T00:00:01Z", "stop_date": "2020-11-10T00:00:00Z", "target": "Mars", "xmlid": "mvn-lpw-scpot"}, "mvn_lpw_wn": {"__spz_name__": "electron density from Langmuir line", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mvn-lpw-wn", "att": "auto/mvn-lpw-wn", "dataSource": "PDS", "desc": "
MinSampling: 2S; MaxSampling: 4S
Provider: PDS", "is_public": "True", "lastModificationDate": "2024-09-02T03:15:55Z", "lastUpdate": "2024-09-02T03:15:55Z", "mav_lpw_edens": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_lpw_edens", "dataset": "mvn-lpw-wn", "description": "This bundle contains data which have been derived from other data products or determined by fits to other data. \n These are science quality data produced by the LPW instrument. The data include density", "is_public": "True", "name": "density", "start_date": "2014-10-06T19:40:30Z", "stop_date": "2024-04-30T22:44:38Z", "ucd": "phys.density", "units": "cm-3", "xmlid": "mav_lpw_edens"}, "mav_lpw_eflag": {"__spz_name__": "density quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_lpw_eflag", "dataset": "mvn-lpw-wn", "description": "Quality of Electron Density.The uncertainty of the\n values with a scale of 0-100. 100 is the best quality. Use data with flag value\n above 50", "is_public": "True", "name": "density quality", "start_date": "2014-10-06T19:40:30Z", "stop_date": "2024-04-30T22:44:38Z", "xmlid": "mav_lpw_eflag"}, "maxSampling": "4S", "measurement_type": "Waves", "name": "electron density from Langmuir line", "processing_level": "Calibrated", "sampling": "2S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MAVEN/LPW/mvn-lpw-wn", "start_date": "2014-10-06T19:40:30Z", "stop_date": "2024-04-30T22:44:38Z", "target": "Mars", "xmlid": "mvn-lpw-wn"}, "name": "LPW", "xmlid": "MAVEN_lpw"}, "MAG": {"__spz_name__": "MAG", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "MAVEN_mag", "att": "auto/MAVEN_mag", "desc": "Fluxgate magnetometer
Magnetometer", "is_public": "True", "mav_mag_all": {"__spz_name__": "1 sec", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mav-mag-all", "att": "auto/mav-mag-all", "dataSource": "PDS", "desc": "
Sampling: 1S
Provider: PDS", "is_public": "True", "lastModificationDate": "2024-09-02T02:53:12Z", "lastUpdate": "2024-09-02T02:53:11Z", "mav_b_iau": {"__spz_name__": "b_iau_mars", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_b_iau", "dataset": "mav-mag-all", "is_public": "True", "mav_b_iau0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_b_iau(0)", "dataset": "mav-mag-all", "index1": "0", "is_public": "True", "name": "bx", "parameter": "mav_b_iau", "start_date": "2014-10-10T00:00:00Z", "stop_date": "2024-05-01T00:00:01Z", "xmlid": "mav_b_iau(0)"}, "mav_b_iau1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_b_iau(1)", "dataset": "mav-mag-all", "index1": "1", "is_public": "True", "name": "by", "parameter": "mav_b_iau", "start_date": "2014-10-10T00:00:00Z", "stop_date": "2024-05-01T00:00:01Z", "xmlid": "mav_b_iau(1)"}, "mav_b_iau2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_b_iau(2)", "dataset": "mav-mag-all", "index1": "2", "is_public": "True", "name": "bz", "parameter": "mav_b_iau", "start_date": "2014-10-10T00:00:00Z", "stop_date": "2024-05-01T00:00:01Z", "xmlid": "mav_b_iau(2)"}, "name": "b_iau_mars", "size": "3", "start_date": "2014-10-10T00:00:00Z", "stop_date": "2024-05-01T00:00:01Z", "ucd": "phys.magField", "units": "nT", "xmlid": "mav_b_iau"}, "mav_b_mso": {"__spz_name__": "b_mso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_b_mso", "dataset": "mav-mag-all", "is_public": "True", "mav_b_mso0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_b_mso(0)", "dataset": "mav-mag-all", "index1": "0", "is_public": "True", "name": "bx", "parameter": "mav_b_mso", "start_date": "2014-10-10T00:00:00Z", "stop_date": "2024-05-01T00:00:01Z", "xmlid": "mav_b_mso(0)"}, "mav_b_mso1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_b_mso(1)", "dataset": "mav-mag-all", "index1": "1", "is_public": "True", "name": "by", "parameter": "mav_b_mso", "start_date": "2014-10-10T00:00:00Z", "stop_date": "2024-05-01T00:00:01Z", "xmlid": "mav_b_mso(1)"}, "mav_b_mso2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_b_mso(2)", "dataset": "mav-mag-all", "index1": "2", "is_public": "True", "name": "bz", "parameter": "mav_b_mso", "start_date": "2014-10-10T00:00:00Z", "stop_date": "2024-05-01T00:00:01Z", "xmlid": "mav_b_mso(2)"}, "name": "b_mso", "size": "3", "start_date": "2014-10-10T00:00:00Z", "stop_date": "2024-05-01T00:00:01Z", "ucd": "phys.magField", "units": "nT", "xmlid": "mav_b_mso"}, "mav_b_tot": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_b_tot", "dataset": "mav-mag-all", "is_public": "True", "name": "|b|", "start_date": "2014-10-10T00:00:00Z", "stop_date": "2024-05-01T00:00:01Z", "ucd": "phys.magField", "units": "nT", "xmlid": "mav_b_tot"}, "measurement_type": "MagneticField", "name": "1 sec", "processing_level": "Calibrated", "sampling": "1S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MAVEN/MAG/mav-mag-all", "start_date": "2014-10-10T00:00:00Z", "stop_date": "2024-05-01T00:00:01Z", "target": "Mars", "xmlid": "mav-mag-all"}, "mav_mag_kp": {"__spz_name__": "4s", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mav-mag-kp", "att": "auto/mav-mag-kp", "dataSource": "PDS", "desc": "key parameters : 4/8 s
MinSampling: 4S; MaxSampling: 8S
Provider: PDS", "is_public": "True", "lastModificationDate": "2024-09-02T00:39:43Z", "lastUpdate": "2024-08-02T11:44:46Z", "mav_bkp_iau": {"__spz_name__": "b_iau_mars", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_bkp_iau", "dataset": "mav-mag-kp", "is_public": "True", "mav_bkp_iau0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_bkp_iau(0)", "dataset": "mav-mag-kp", "index1": "0", "is_public": "True", "name": "bx", "parameter": "mav_bkp_iau", "start_date": "2014-10-10T00:00:08Z", "stop_date": "2024-02-14T23:59:52Z", "xmlid": "mav_bkp_iau(0)"}, "mav_bkp_iau1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_bkp_iau(1)", "dataset": "mav-mag-kp", "index1": "1", "is_public": "True", "name": "by", "parameter": "mav_bkp_iau", "start_date": "2014-10-10T00:00:08Z", "stop_date": "2024-02-14T23:59:52Z", "xmlid": "mav_bkp_iau(1)"}, "mav_bkp_iau2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_bkp_iau(2)", "dataset": "mav-mag-kp", "index1": "2", "is_public": "True", "name": "bz", "parameter": "mav_bkp_iau", "start_date": "2014-10-10T00:00:08Z", "stop_date": "2024-02-14T23:59:52Z", "xmlid": "mav_bkp_iau(2)"}, "name": "b_iau_mars", "size": "3", "start_date": "2014-10-10T00:00:08Z", "stop_date": "2024-02-14T23:59:52Z", "ucd": "phys.magField", "units": "nT", "xmlid": "mav_bkp_iau"}, "mav_bkp_mso": {"__spz_name__": "b_mso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_bkp_mso", "dataset": "mav-mag-kp", "is_public": "True", "mav_bkp_mso0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_bkp_mso(0)", "dataset": "mav-mag-kp", "index1": "0", "is_public": "True", "name": "bx", "parameter": "mav_bkp_mso", "start_date": "2014-10-10T00:00:08Z", "stop_date": "2024-02-14T23:59:52Z", "xmlid": "mav_bkp_mso(0)"}, "mav_bkp_mso1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_bkp_mso(1)", "dataset": "mav-mag-kp", "index1": "1", "is_public": "True", "name": "by", "parameter": "mav_bkp_mso", "start_date": "2014-10-10T00:00:08Z", "stop_date": "2024-02-14T23:59:52Z", "xmlid": "mav_bkp_mso(1)"}, "mav_bkp_mso2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_bkp_mso(2)", "dataset": "mav-mag-kp", "index1": "2", "is_public": "True", "name": "bz", "parameter": "mav_bkp_mso", "start_date": "2014-10-10T00:00:08Z", "stop_date": "2024-02-14T23:59:52Z", "xmlid": "mav_bkp_mso(2)"}, "name": "b_mso", "size": "3", "start_date": "2014-10-10T00:00:08Z", "stop_date": "2024-02-14T23:59:52Z", "ucd": "phys.magField", "units": "nT", "xmlid": "mav_bkp_mso"}, "mav_bkp_rms": {"__spz_name__": "b_rms", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_bkp_rms", "dataset": "mav-mag-kp", "description": "Deviations from the mean magnitude of the magnetic field", "is_public": "True", "name": "b_rms", "start_date": "2014-10-10T00:00:08Z", "stop_date": "2024-02-14T23:59:52Z", "ucd": "phys.magField", "units": "nT", "xmlid": "mav_bkp_rms"}, "mav_bkp_tot": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_bkp_tot", "dataset": "mav-mag-kp", "is_public": "True", "name": "|b|", "start_date": "2014-10-10T00:00:08Z", "stop_date": "2024-02-14T23:59:52Z", "ucd": "phys.magField", "units": "nT", "xmlid": "mav_bkp_tot"}, "maxSampling": "8S", "measurement_type": "MagneticField", "name": "4s", "processing_level": "Calibrated", "sampling": "4S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MAVEN/MAG/mav-mag-kp", "start_date": "2014-10-10T00:00:08Z", "stop_date": "2024-02-14T23:59:52Z", "target": "Mars", "xmlid": "mav-mag-kp"}, "mav_mag_pds": {"__spz_name__": "0.03 sec", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mav-mag-pds", "att": "auto/mav-mag-pds", "dataSource": "PDS", "desc": "
Sampling: 0.031S
Provider: PDS", "is_public": "True", "lastModificationDate": "2024-09-02T02:58:25Z", "lastUpdate": "2024-08-19T14:49:09Z", "mavb_iau": {"__spz_name__": "b_iau_mars", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mavb_iau", "dataset": "mav-mag-pds", "is_public": "True", "mavb_iau0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mavb_iau(0)", "dataset": "mav-mag-pds", "index1": "0", "is_public": "True", "name": "bx", "parameter": "mavb_iau", "start_date": "2014-10-10T00:00:00Z", "stop_date": "2024-05-01T00:00:02Z", "xmlid": "mavb_iau(0)"}, "mavb_iau1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mavb_iau(1)", "dataset": "mav-mag-pds", "index1": "1", "is_public": "True", "name": "by", "parameter": "mavb_iau", "start_date": "2014-10-10T00:00:00Z", "stop_date": "2024-05-01T00:00:02Z", "xmlid": "mavb_iau(1)"}, "mavb_iau2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mavb_iau(2)", "dataset": "mav-mag-pds", "index1": "2", "is_public": "True", "name": "bz", "parameter": "mavb_iau", "start_date": "2014-10-10T00:00:00Z", "stop_date": "2024-05-01T00:00:02Z", "xmlid": "mavb_iau(2)"}, "name": "b_iau_mars", "size": "3", "start_date": "2014-10-10T00:00:00Z", "stop_date": "2024-05-01T00:00:02Z", "ucd": "phys.magField", "units": "nT", "xmlid": "mavb_iau"}, "mavb_mso": {"__spz_name__": "b_mso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mavb_mso", "dataset": "mav-mag-pds", "is_public": "True", "mavb_mso0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mavb_mso(0)", "dataset": "mav-mag-pds", "index1": "0", "is_public": "True", "name": "bx", "parameter": "mavb_mso", "start_date": "2014-10-10T00:00:00Z", "stop_date": "2024-05-01T00:00:02Z", "xmlid": "mavb_mso(0)"}, "mavb_mso1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mavb_mso(1)", "dataset": "mav-mag-pds", "index1": "1", "is_public": "True", "name": "by", "parameter": "mavb_mso", "start_date": "2014-10-10T00:00:00Z", "stop_date": "2024-05-01T00:00:02Z", "xmlid": "mavb_mso(1)"}, "mavb_mso2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mavb_mso(2)", "dataset": "mav-mag-pds", "index1": "2", "is_public": "True", "name": "bz", "parameter": "mavb_mso", "start_date": "2014-10-10T00:00:00Z", "stop_date": "2024-05-01T00:00:02Z", "xmlid": "mavb_mso(2)"}, "name": "b_mso", "size": "3", "start_date": "2014-10-10T00:00:00Z", "stop_date": "2024-05-01T00:00:02Z", "ucd": "phys.magField", "units": "nT", "xmlid": "mavb_mso"}, "mavb_tot": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mavb_tot", "dataset": "mav-mag-pds", "is_public": "True", "name": "|b|", "start_date": "2014-10-10T00:00:00Z", "stop_date": "2024-05-01T00:00:02Z", "ucd": "phys.magField", "units": "nT", "xmlid": "mavb_tot"}, "measurement_type": "MagneticField", "name": "0.03 sec", "processing_level": "Calibrated", "sampling": "0.031S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MAVEN/MAG/mav-mag-pds", "start_date": "2014-10-10T00:00:00Z", "stop_date": "2024-05-01T00:00:02Z", "target": "Mars", "xmlid": "mav-mag-pds"}, "name": "MAG", "xmlid": "MAVEN_mag"}, "NGIMS": {"__spz_name__": "NGIMS", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "MAVEN_ngims", "att": "auto/MAVEN_ngims", "desc": "Neutral Gas and Ion Mass Spectrometer
MassSpectrometer", "is_public": "True", "mav_ngims_kp": {"__spz_name__": "key parameters", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mav-ngims-kp", "att": "auto/mav-ngims-kp", "dataSource": "PDS", "desc": "NGIMS : key parameters
MinSampling: 4S; MaxSampling: 8S
Provider: PDS", "is_public": "True", "lastModificationDate": "2024-09-02T00:39:44Z", "lastUpdate": "2024-08-02T11:44:50Z", "mav_ngimskp_amu12": {"__spz_name__": "n_amu12+", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_ngimskp_amu12", "dataset": "mav-ngims-kp", "description": "Abundance or upper limit", "is_public": "True", "name": "n_amu12+", "start_date": "2014-10-18T00:00:08Z", "stop_date": "2024-02-14T23:59:52Z", "ucd": "phys.density", "units": "cm-3", "xmlid": "mav_ngimskp_amu12"}, "mav_ngimskp_amu12_err": {"__spz_name__": "n_amu12+ error", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_ngimskp_amu12_err", "dataset": "mav-ngims-kp", "description": "% Error (1 sigma), if -1, the value is an upper limit", "is_public": "True", "name": "n_amu12+ error", "start_date": "2014-10-18T00:00:08Z", "stop_date": "2024-02-14T23:59:52Z", "xmlid": "mav_ngimskp_amu12_err"}, "mav_ngimskp_amu14": {"__spz_name__": "n_amu14+", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_ngimskp_amu14", "dataset": "mav-ngims-kp", "description": "Abundance or upper limit", "is_public": "True", "name": "n_amu14+", "start_date": "2014-10-18T00:00:08Z", "stop_date": "2024-02-14T23:59:52Z", "ucd": "phys.density", "units": "cm-3", "xmlid": "mav_ngimskp_amu14"}, "mav_ngimskp_amu14_err": {"__spz_name__": "n_amu14+ error", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_ngimskp_amu14_err", "dataset": "mav-ngims-kp", "description": "% Error (1 sigma), if -1, the value is an upper limit", "is_public": "True", "name": "n_amu14+ error", "start_date": "2014-10-18T00:00:08Z", "stop_date": "2024-02-14T23:59:52Z", "xmlid": "mav_ngimskp_amu14_err"}, "mav_ngimskp_amu16": {"__spz_name__": "n_amu16+", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_ngimskp_amu16", "dataset": "mav-ngims-kp", "description": "Abundance or upper limit", "is_public": "True", "name": "n_amu16+", "start_date": "2014-10-18T00:00:08Z", "stop_date": "2024-02-14T23:59:52Z", "ucd": "phys.density", "units": "cm-3", "xmlid": "mav_ngimskp_amu16"}, "mav_ngimskp_amu16_err": {"__spz_name__": "n_amu16+ error", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_ngimskp_amu16_err", "dataset": "mav-ngims-kp", "description": "% Error (1 sigma), if -1, the value is an upper limit", "is_public": "True", "name": "n_amu16+ error", "start_date": "2014-10-18T00:00:08Z", "stop_date": "2024-02-14T23:59:52Z", "xmlid": "mav_ngimskp_amu16_err"}, "mav_ngimskp_amu17": {"__spz_name__": "n_amu17+", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_ngimskp_amu17", "dataset": "mav-ngims-kp", "description": "Abundance or upper limit", "is_public": "True", "name": "n_amu17+", "start_date": "2014-10-18T00:00:08Z", "stop_date": "2024-02-14T23:59:52Z", "ucd": "phys.density", "units": "cm-3", "xmlid": "mav_ngimskp_amu17"}, "mav_ngimskp_amu17_err": {"__spz_name__": "n_amu17+ error", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_ngimskp_amu17_err", "dataset": "mav-ngims-kp", "description": "% Error (1 sigma), if -1, the value is an upper limit", "is_public": "True", "name": "n_amu17+ error", "start_date": "2014-10-18T00:00:08Z", "stop_date": "2024-02-14T23:59:52Z", "xmlid": "mav_ngimskp_amu17_err"}, "mav_ngimskp_amu28": {"__spz_name__": "n_amu28+", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_ngimskp_amu28", "dataset": "mav-ngims-kp", "description": "Abundance or upper limit", "is_public": "True", "name": "n_amu28+", "start_date": "2014-10-18T00:00:08Z", "stop_date": "2024-02-14T23:59:52Z", "ucd": "phys.density", "units": "cm-3", "xmlid": "mav_ngimskp_amu28"}, "mav_ngimskp_amu28_err": {"__spz_name__": "n_amu28+ error", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_ngimskp_amu28_err", "dataset": "mav-ngims-kp", "description": "% Error (1 sigma), if -1, the value is an upper limit", "is_public": "True", "name": "n_amu28+ error", "start_date": "2014-10-18T00:00:08Z", "stop_date": "2024-02-14T23:59:52Z", "xmlid": "mav_ngimskp_amu28_err"}, "mav_ngimskp_amu30": {"__spz_name__": "n_amu30+", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_ngimskp_amu30", "dataset": "mav-ngims-kp", "description": "Abundance or upper limit", "is_public": "True", "name": "n_amu30+", "start_date": "2014-10-18T00:00:08Z", "stop_date": "2024-02-14T23:59:52Z", "ucd": "phys.density", "units": "cm-3", "xmlid": "mav_ngimskp_amu30"}, "mav_ngimskp_amu30_err": {"__spz_name__": "n_amu30+ error", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_ngimskp_amu30_err", "dataset": "mav-ngims-kp", "description": "% Error (1 sigma), if -1, the value is an upper limit", "is_public": "True", "name": "n_amu30+ error", "start_date": "2014-10-18T00:00:08Z", "stop_date": "2024-02-14T23:59:52Z", "xmlid": "mav_ngimskp_amu30_err"}, "mav_ngimskp_amu32": {"__spz_name__": "n_amu32+", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_ngimskp_amu32", "dataset": "mav-ngims-kp", "description": "Abundance or upper limit", "is_public": "True", "name": "n_amu32+", "start_date": "2014-10-18T00:00:08Z", "stop_date": "2024-02-14T23:59:52Z", "ucd": "phys.density", "units": "cm-3", "xmlid": "mav_ngimskp_amu32"}, "mav_ngimskp_amu32_err": {"__spz_name__": "n_amu32+ error", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_ngimskp_amu32_err", "dataset": "mav-ngims-kp", "description": "% Error (1 sigma), if -1, the value is an upper limit", "is_public": "True", "name": "n_amu32+ error", "start_date": "2014-10-18T00:00:08Z", "stop_date": "2024-02-14T23:59:52Z", "xmlid": "mav_ngimskp_amu32_err"}, "mav_ngimskp_amu44": {"__spz_name__": "n_amu44+", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_ngimskp_amu44", "dataset": "mav-ngims-kp", "description": "Abundance or upper limit", "is_public": "True", "name": "n_amu44+", "start_date": "2014-10-18T00:00:08Z", "stop_date": "2024-02-14T23:59:52Z", "ucd": "phys.density", "units": "cm-3", "xmlid": "mav_ngimskp_amu44"}, "mav_ngimskp_amu44_err": {"__spz_name__": "n_amu44+ error", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_ngimskp_amu44_err", "dataset": "mav-ngims-kp", "description": "% Error (1 sigma), if -1, the value is an upper limit", "is_public": "True", "name": "n_amu44+ error", "start_date": "2014-10-18T00:00:08Z", "stop_date": "2024-02-14T23:59:52Z", "xmlid": "mav_ngimskp_amu44_err"}, "mav_ngimskp_ar": {"__spz_name__": "n_ar", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_ngimskp_ar", "dataset": "mav-ngims-kp", "description": "Abundance or upper limit", "is_public": "True", "name": "n_ar", "start_date": "2014-10-18T00:00:08Z", "stop_date": "2024-02-14T23:59:52Z", "ucd": "phys.density", "units": "cm-3", "xmlid": "mav_ngimskp_ar"}, "mav_ngimskp_ar_err": {"__spz_name__": "n_ar error", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_ngimskp_ar_err", "dataset": "mav-ngims-kp", "description": "% Error (1 sigma), if -1, the value is an upper limit", "is_public": "True", "name": "n_ar error", "start_date": "2014-10-18T00:00:08Z", "stop_date": "2024-02-14T23:59:52Z", "xmlid": "mav_ngimskp_ar_err"}, "mav_ngimskp_co": {"__spz_name__": "n_co", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_ngimskp_co", "dataset": "mav-ngims-kp", "description": "Abundance or upper limit", "is_public": "True", "name": "n_co", "start_date": "2014-10-18T00:00:08Z", "stop_date": "2024-02-14T23:59:52Z", "ucd": "phys.density", "units": "cm-3", "xmlid": "mav_ngimskp_co"}, "mav_ngimskp_co2": {"__spz_name__": "n_co2", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_ngimskp_co2", "dataset": "mav-ngims-kp", "description": "Abundance or upper limit", "is_public": "True", "name": "n_co2", "start_date": "2014-10-18T00:00:08Z", "stop_date": "2024-02-14T23:59:52Z", "ucd": "phys.density", "units": "cm-3", "xmlid": "mav_ngimskp_co2"}, "mav_ngimskp_co2_err": {"__spz_name__": "n_co2 error", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_ngimskp_co2_err", "dataset": "mav-ngims-kp", "description": "% Error (1 sigma), if -1, the value is an upper limit", "is_public": "True", "name": "n_co2 error", "start_date": "2014-10-18T00:00:08Z", "stop_date": "2024-02-14T23:59:52Z", "xmlid": "mav_ngimskp_co2_err"}, "mav_ngimskp_co_err": {"__spz_name__": "n_co error", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_ngimskp_co_err", "dataset": "mav-ngims-kp", "description": "% Error (1 sigma), if -1, the value is an upper limit", "is_public": "True", "name": "n_co error", "start_date": "2014-10-18T00:00:08Z", "stop_date": "2024-02-14T23:59:52Z", "xmlid": "mav_ngimskp_co_err"}, "mav_ngimskp_he": {"__spz_name__": "n_he", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_ngimskp_he", "dataset": "mav-ngims-kp", "description": "Abundance or upper limit", "is_public": "True", "name": "n_he", "start_date": "2014-10-18T00:00:08Z", "stop_date": "2024-02-14T23:59:52Z", "ucd": "phys.density", "units": "cm-3", "xmlid": "mav_ngimskp_he"}, "mav_ngimskp_he_err": {"__spz_name__": "n_he error", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_ngimskp_he_err", "dataset": "mav-ngims-kp", "description": "% Error (1 sigma), if -1, the value is an upper limit", "is_public": "True", "name": "n_he error", "start_date": "2014-10-18T00:00:08Z", "stop_date": "2024-02-14T23:59:52Z", "xmlid": "mav_ngimskp_he_err"}, "mav_ngimskp_n2": {"__spz_name__": "n_n2", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_ngimskp_n2", "dataset": "mav-ngims-kp", "description": "Abundance or upper limit", "is_public": "True", "name": "n_n2", "start_date": "2014-10-18T00:00:08Z", "stop_date": "2024-02-14T23:59:52Z", "ucd": "phys.density", "units": "cm-3", "xmlid": "mav_ngimskp_n2"}, "mav_ngimskp_n2_err": {"__spz_name__": "n_n2 error", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_ngimskp_n2_err", "dataset": "mav-ngims-kp", "description": "% Error (1 sigma), if -1, the value is an upper limit", "is_public": "True", "name": "n_n2 error", "start_date": "2014-10-18T00:00:08Z", "stop_date": "2024-02-14T23:59:52Z", "xmlid": "mav_ngimskp_n2_err"}, "mav_ngimskp_no": {"__spz_name__": "n_no", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_ngimskp_no", "dataset": "mav-ngims-kp", "description": "Abundance or upper limit", "is_public": "True", "name": "n_no", "start_date": "2014-10-18T00:00:08Z", "stop_date": "2024-02-14T23:59:52Z", "ucd": "phys.density", "units": "cm-3", "xmlid": "mav_ngimskp_no"}, "mav_ngimskp_no_err": {"__spz_name__": "n_no error", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_ngimskp_no_err", "dataset": "mav-ngims-kp", "description": "% Error (1 sigma), if -1, the value is an upper limit", "is_public": "True", "name": "n_no error", "start_date": "2014-10-18T00:00:08Z", "stop_date": "2024-02-14T23:59:52Z", "xmlid": "mav_ngimskp_no_err"}, "mav_ngimskp_o": {"__spz_name__": "n_o", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_ngimskp_o", "dataset": "mav-ngims-kp", "description": "Abundance or upper limit", "is_public": "True", "name": "n_o", "start_date": "2014-10-18T00:00:08Z", "stop_date": "2024-02-14T23:59:52Z", "ucd": "phys.density", "units": "cm-3", "xmlid": "mav_ngimskp_o"}, "mav_ngimskp_o_err": {"__spz_name__": "n_o error", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_ngimskp_o_err", "dataset": "mav-ngims-kp", "description": "% Error (1 sigma), if -1, the value is an upper limit", "is_public": "True", "name": "n_o error", "start_date": "2014-10-18T00:00:08Z", "stop_date": "2024-02-14T23:59:52Z", "xmlid": "mav_ngimskp_o_err"}, "maxSampling": "8S", "measurement_type": "NeutralGas", "name": "key parameters", "processing_level": "Calibrated", "sampling": "4S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MAVEN/NGIMS/mav-ngims-kp", "start_date": "2014-10-18T00:00:08Z", "stop_date": "2024-02-14T23:59:52Z", "target": "Mars", "xmlid": "mav-ngims-kp"}, "name": "NGIMS", "xmlid": "MAVEN_ngims"}, "SEP": {"__spz_name__": "SEP", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "MAVEN_sep", "att": "auto/MAVEN_sep", "desc": "Solar Energetic Particle
SolidStateDetector", "is_public": "True", "name": "SEP", "telescope_1": {"__spz_name__": "telescope 1", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "mav-sep1-all", "is_public": "True", "mav_sep1_anc": {"__spz_name__": "ancillary", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mav-sep1-anc", "att": "auto/mav-sep1-anc", "dataSource": "PDS", "desc": "
Sampling: 32S
Provider: PDS", "is_public": "True", "lastModificationDate": "2024-09-02T04:22:59Z", "lastUpdate": "2024-09-02T04:22:58Z", "mav_sep1_fare": {"__spz_name__": "forward : FOV center in IAU", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_sep1_fare", "dataset": "mav-sep1-anc", "description": "Geometric center of telecope 1 forward field of view in IAU Mars coordinates", "display_type": "timeseries", "is_public": "True", "mav_sep1_fare0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_sep1_fare(0)", "dataset": "mav-sep1-anc", "index1": "0", "is_public": "True", "name": "x", "parameter": "mav_sep1_fare", "start_date": "2014-09-21T23:59:59Z", "stop_date": "2024-05-14T23:59:28Z", "xmlid": "mav_sep1_fare(0)"}, "mav_sep1_fare1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_sep1_fare(1)", "dataset": "mav-sep1-anc", "index1": "1", "is_public": "True", "name": "y", "parameter": "mav_sep1_fare", "start_date": "2014-09-21T23:59:59Z", "stop_date": "2024-05-14T23:59:28Z", "xmlid": "mav_sep1_fare(1)"}, "mav_sep1_fare2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_sep1_fare(2)", "dataset": "mav-sep1-anc", "index1": "2", "is_public": "True", "name": "z", "parameter": "mav_sep1_fare", "start_date": "2014-09-21T23:59:59Z", "stop_date": "2024-05-14T23:59:28Z", "xmlid": "mav_sep1_fare(2)"}, "name": "forward : FOV center in IAU", "size": "3", "start_date": "2014-09-21T23:59:59Z", "stop_date": "2024-05-14T23:59:28Z", "xmlid": "mav_sep1_fare"}, "mav_sep1_fmars": {"__spz_name__": "forward : fraction mars", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_sep1_fmars", "dataset": "mav-sep1-anc", "description": "Fraction of telescope 1 forward field of view taken up by Mars", "display_type": "timeseries", "is_public": "True", "name": "forward : fraction mars", "start_date": "2014-09-21T23:59:59Z", "stop_date": "2024-05-14T23:59:28Z", "xmlid": "mav_sep1_fmars"}, "mav_sep1_fmso": {"__spz_name__": "forward : FOV center in MSO", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_sep1_fmso", "dataset": "mav-sep1-anc", "description": "Geometric center of telecope 1 forward field of view in MSO coordinates", "display_type": "timeseries", "is_public": "True", "mav_sep1_fmso0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_sep1_fmso(0)", "dataset": "mav-sep1-anc", "index1": "0", "is_public": "True", "name": "x", "parameter": "mav_sep1_fmso", "start_date": "2014-09-21T23:59:59Z", "stop_date": "2024-05-14T23:59:28Z", "xmlid": "mav_sep1_fmso(0)"}, "mav_sep1_fmso1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_sep1_fmso(1)", "dataset": "mav-sep1-anc", "index1": "1", "is_public": "True", "name": "y", "parameter": "mav_sep1_fmso", "start_date": "2014-09-21T23:59:59Z", "stop_date": "2024-05-14T23:59:28Z", "xmlid": "mav_sep1_fmso(1)"}, "mav_sep1_fmso2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_sep1_fmso(2)", "dataset": "mav-sep1-anc", "index1": "2", "is_public": "True", "name": "z", "parameter": "mav_sep1_fmso", "start_date": "2014-09-21T23:59:59Z", "stop_date": "2024-05-14T23:59:28Z", "xmlid": "mav_sep1_fmso(2)"}, "name": "forward : FOV center in MSO", "size": "3", "start_date": "2014-09-21T23:59:59Z", "stop_date": "2024-05-14T23:59:28Z", "xmlid": "mav_sep1_fmso"}, "mav_sep1_fnadir": {"__spz_name__": "forward : nadir angle", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_sep1_fnadir", "dataset": "mav-sep1-anc", "description": "Angle between the geometric center of telescope 1 forward field of view and the nadir direction, i.e. towards the center of Mars", "display_type": "timeseries", "is_public": "True", "name": "forward : nadir angle", "start_date": "2014-09-21T23:59:59Z", "stop_date": "2024-05-14T23:59:28Z", "units": "degrees", "xmlid": "mav_sep1_fnadir"}, "mav_sep1_fpitch": {"__spz_name__": "forward : pitch angle", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_sep1_fpitch", "dataset": "mav-sep1-anc", "description": "Angle between the geometric center of telescope 1 forward field of view and the magnetic field direction averaged over the 32 second interval", "display_type": "timeseries", "is_public": "True", "name": "forward : pitch angle", "start_date": "2014-09-21T23:59:59Z", "stop_date": "2024-05-14T23:59:28Z", "units": "degrees", "xmlid": "mav_sep1_fpitch"}, "mav_sep1_fsun": {"__spz_name__": "forward : sun angle", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_sep1_fsun", "dataset": "mav-sep1-anc", "description": "Angle between the geometric center of telescope 1 forward field of view and the direction of the sun", "display_type": "timeseries", "is_public": "True", "name": "forward : sun angle", "start_date": "2014-09-21T23:59:59Z", "stop_date": "2024-05-14T23:59:28Z", "units": "degrees", "xmlid": "mav_sep1_fsun"}, "mav_sep1_mars": {"__spz_name__": "mars :fraction sky", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_sep1_mars", "dataset": "mav-sep1-anc", "description": "Fraction of the sky filled by the disk of Mars", "display_type": "timeseries", "is_public": "True", "name": "mars :fraction sky", "start_date": "2014-09-21T23:59:59Z", "stop_date": "2024-05-14T23:59:28Z", "xmlid": "mav_sep1_mars"}, "mav_sep1_rare": {"__spz_name__": "rear : FOV center in IAU", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_sep1_rare", "dataset": "mav-sep1-anc", "description": "Geometric center of telecope 1 rear field of view in IAU MARS coordinates", "display_type": "timeseries", "is_public": "True", "mav_sep1_rare0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_sep1_rare(0)", "dataset": "mav-sep1-anc", "index1": "0", "is_public": "True", "name": "x", "parameter": "mav_sep1_rare", "start_date": "2014-09-21T23:59:59Z", "stop_date": "2024-05-14T23:59:28Z", "xmlid": "mav_sep1_rare(0)"}, "mav_sep1_rare1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_sep1_rare(1)", "dataset": "mav-sep1-anc", "index1": "1", "is_public": "True", "name": "y", "parameter": "mav_sep1_rare", "start_date": "2014-09-21T23:59:59Z", "stop_date": "2024-05-14T23:59:28Z", "xmlid": "mav_sep1_rare(1)"}, "mav_sep1_rare2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_sep1_rare(2)", "dataset": "mav-sep1-anc", "index1": "2", "is_public": "True", "name": "z", "parameter": "mav_sep1_rare", "start_date": "2014-09-21T23:59:59Z", "stop_date": "2024-05-14T23:59:28Z", "xmlid": "mav_sep1_rare(2)"}, "name": "rear : FOV center in IAU", "size": "3", "start_date": "2014-09-21T23:59:59Z", "stop_date": "2024-05-14T23:59:28Z", "xmlid": "mav_sep1_rare"}, "mav_sep1_rmars": {"__spz_name__": "rear : fraction mars", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_sep1_rmars", "dataset": "mav-sep1-anc", "description": "Fraction of telescope 1 rear field of view taken up by Mars", "display_type": "timeseries", "is_public": "True", "name": "rear : fraction mars", "start_date": "2014-09-21T23:59:59Z", "stop_date": "2024-05-14T23:59:28Z", "xmlid": "mav_sep1_rmars"}, "mav_sep1_rmso": {"__spz_name__": "rear : FOV center in MSO", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_sep1_rmso", "dataset": "mav-sep1-anc", "description": "Geometric center of telecope 1 rear field of view in MSO coordinates", "display_type": "timeseries", "is_public": "True", "mav_sep1_rmso0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_sep1_rmso(0)", "dataset": "mav-sep1-anc", "index1": "0", "is_public": "True", "name": "x", "parameter": "mav_sep1_rmso", "start_date": "2014-09-21T23:59:59Z", "stop_date": "2024-05-14T23:59:28Z", "xmlid": "mav_sep1_rmso(0)"}, "mav_sep1_rmso1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_sep1_rmso(1)", "dataset": "mav-sep1-anc", "index1": "1", "is_public": "True", "name": "y", "parameter": "mav_sep1_rmso", "start_date": "2014-09-21T23:59:59Z", "stop_date": "2024-05-14T23:59:28Z", "xmlid": "mav_sep1_rmso(1)"}, "mav_sep1_rmso2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_sep1_rmso(2)", "dataset": "mav-sep1-anc", "index1": "2", "is_public": "True", "name": "z", "parameter": "mav_sep1_rmso", "start_date": "2014-09-21T23:59:59Z", "stop_date": "2024-05-14T23:59:28Z", "xmlid": "mav_sep1_rmso(2)"}, "name": "rear : FOV center in MSO", "size": "3", "start_date": "2014-09-21T23:59:59Z", "stop_date": "2024-05-14T23:59:28Z", "xmlid": "mav_sep1_rmso"}, "mav_sep1_rnadir": {"__spz_name__": "rear : nadir angle", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_sep1_rnadir", "dataset": "mav-sep1-anc", "description": "Angle between the geometric center of telescope 1 rear field of view and the nadir direction, i.e. towards the center of Mars", "display_type": "timeseries", "is_public": "True", "name": "rear : nadir angle", "start_date": "2014-09-21T23:59:59Z", "stop_date": "2024-05-14T23:59:28Z", "units": "degrees", "xmlid": "mav_sep1_rnadir"}, "mav_sep1_rpitch": {"__spz_name__": "rear : pitch angle", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_sep1_rpitch", "dataset": "mav-sep1-anc", "description": "Angle between the geometric center of telescope 1 rear field of view and the magnetic field direction averaged over the 32 second interval", "display_type": "timeseries", "is_public": "True", "name": "rear : pitch angle", "start_date": "2014-09-21T23:59:59Z", "stop_date": "2024-05-14T23:59:28Z", "units": "degrees", "xmlid": "mav_sep1_rpitch"}, "mav_sep1_rsun": {"__spz_name__": "rear : sun angle", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_sep1_rsun", "dataset": "mav-sep1-anc", "description": "Angle between the geometric center of telescope 1 rear field of view and the direction of the sun", "display_type": "timeseries", "is_public": "True", "name": "rear : sun angle", "start_date": "2014-09-21T23:59:59Z", "stop_date": "2024-05-14T23:59:28Z", "units": "degrees", "xmlid": "mav_sep1_rsun"}, "measurement_type": "EnergeticParticles", "name": "ancillary", "processing_level": "Calibrated", "sampling": "32S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MAVEN/SEP/mav-sep1-anc", "start_date": "2014-09-21T23:59:59Z", "stop_date": "2024-05-14T23:59:28Z", "target": "Mars", "xmlid": "mav-sep1-anc"}, "mvn_sep1_clb": {"__spz_name__": "diff fluxes", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mvn-sep1-clb", "att": "auto/mvn-sep1-clb", "dataSource": "PDS", "desc": "
MinSampling: 2S; MaxSampling: 32S
Provider: PDS", "is_public": "True", "lastModificationDate": "2024-09-02T03:43:02Z", "lastUpdate": "2024-09-02T03:43:00Z", "mav_sep1_att": {"__spz_name__": "attenuator state", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_sep1_att", "dataset": "mvn-sep1-clb", "display_type": "timeseries", "is_public": "True", "name": "attenuator state", "start_date": "2014-09-22T19:34:31Z", "stop_date": "2024-05-15T00:00:02Z", "xmlid": "mav_sep1_att"}, "mav_sep1_fe": {"__spz_name__": "electrons : forward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_sep1_fe", "dataset": "mvn-sep1-clb", "display_type": "spectrogram", "is_public": "True", "name": "electrons : forward", "start_date": "2014-09-22T19:34:31Z", "stop_date": "2024-05-15T00:00:02Z", "units": "1/cm\u00b2/sec/ster/keV", "xmlid": "mav_sep1_fe"}, "mav_sep1_fi": {"__spz_name__": "ions : forward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_sep1_fi", "dataset": "mvn-sep1-clb", "display_type": "spectrogram", "is_public": "True", "name": "ions : forward", "start_date": "2014-09-22T19:34:31Z", "stop_date": "2024-05-15T00:00:02Z", "units": "1/cm\u00b2/sec/ster/keV", "xmlid": "mav_sep1_fi"}, "mav_sep1_re": {"__spz_name__": "electrons : rear", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_sep1_re", "dataset": "mvn-sep1-clb", "display_type": "spectrogram", "is_public": "True", "name": "electrons : rear", "start_date": "2014-09-22T19:34:31Z", "stop_date": "2024-05-15T00:00:02Z", "units": "1/cm\u00b2/sec/ster/keV", "xmlid": "mav_sep1_re"}, "mav_sep1_ri": {"__spz_name__": "ions : rear", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_sep1_ri", "dataset": "mvn-sep1-clb", "display_type": "spectrogram", "is_public": "True", "name": "ions : rear", "start_date": "2014-09-22T19:34:31Z", "stop_date": "2024-05-15T00:00:02Z", "units": "1/cm\u00b2/sec/ster/keV", "xmlid": "mav_sep1_ri"}, "maxSampling": "32S", "measurement_type": "EnergeticParticles", "name": "diff fluxes", "processing_level": "Calibrated", "sampling": "2S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MAVEN/SEP/mvn-sep1-clb", "start_date": "2014-09-22T19:34:31Z", "stop_date": "2024-05-15T00:00:02Z", "target": "Mars", "xmlid": "mvn-sep1-clb"}, "name": "telescope 1", "xmlid": "mav-sep1-all"}, "telescope_2": {"__spz_name__": "telescope 2", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "mav-sep2-all", "is_public": "True", "mav_sep2_anc": {"__spz_name__": "ancillary", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mav-sep2-anc", "att": "auto/mav-sep2-anc", "dataSource": "PDS", "desc": "
Sampling: 32S
Provider: PDS", "is_public": "True", "lastModificationDate": "2024-09-02T04:22:59Z", "lastUpdate": "2024-09-02T04:22:59Z", "mav_sep2_fare": {"__spz_name__": "forward : FOV center in IAU", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_sep2_fare", "dataset": "mav-sep2-anc", "description": "Geometric center of telecope 2 forward field of view in IAU Mars coordinates", "display_type": "timeseries", "is_public": "True", "mav_sep2_fare0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_sep2_fare(0)", "dataset": "mav-sep2-anc", "index1": "0", "is_public": "True", "name": "x", "parameter": "mav_sep2_fare", "start_date": "2014-09-21T23:59:59Z", "stop_date": "2024-05-14T23:59:28Z", "xmlid": "mav_sep2_fare(0)"}, "mav_sep2_fare1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_sep2_fare(1)", "dataset": "mav-sep2-anc", "index1": "1", "is_public": "True", "name": "y", "parameter": "mav_sep2_fare", "start_date": "2014-09-21T23:59:59Z", "stop_date": "2024-05-14T23:59:28Z", "xmlid": "mav_sep2_fare(1)"}, "mav_sep2_fare2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_sep2_fare(2)", "dataset": "mav-sep2-anc", "index1": "2", "is_public": "True", "name": "z", "parameter": "mav_sep2_fare", "start_date": "2014-09-21T23:59:59Z", "stop_date": "2024-05-14T23:59:28Z", "xmlid": "mav_sep2_fare(2)"}, "name": "forward : FOV center in IAU", "size": "3", "start_date": "2014-09-21T23:59:59Z", "stop_date": "2024-05-14T23:59:28Z", "xmlid": "mav_sep2_fare"}, "mav_sep2_fmars": {"__spz_name__": "forward : fraction mars", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_sep2_fmars", "dataset": "mav-sep2-anc", "description": "Fraction of telescope 2 forward field of view taken up by Mars", "display_type": "timeseries", "is_public": "True", "name": "forward : fraction mars", "start_date": "2014-09-21T23:59:59Z", "stop_date": "2024-05-14T23:59:28Z", "xmlid": "mav_sep2_fmars"}, "mav_sep2_fmso": {"__spz_name__": "forward : FOV center in MSO", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_sep2_fmso", "dataset": "mav-sep2-anc", "description": "Geometric center of telecope 2 forward field of view in MSO coordinates", "display_type": "timeseries", "is_public": "True", "mav_sep2_fmso0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_sep2_fmso(0)", "dataset": "mav-sep2-anc", "index1": "0", "is_public": "True", "name": "x", "parameter": "mav_sep2_fmso", "start_date": "2014-09-21T23:59:59Z", "stop_date": "2024-05-14T23:59:28Z", "xmlid": "mav_sep2_fmso(0)"}, "mav_sep2_fmso1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_sep2_fmso(1)", "dataset": "mav-sep2-anc", "index1": "1", "is_public": "True", "name": "y", "parameter": "mav_sep2_fmso", "start_date": "2014-09-21T23:59:59Z", "stop_date": "2024-05-14T23:59:28Z", "xmlid": "mav_sep2_fmso(1)"}, "mav_sep2_fmso2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_sep2_fmso(2)", "dataset": "mav-sep2-anc", "index1": "2", "is_public": "True", "name": "z", "parameter": "mav_sep2_fmso", "start_date": "2014-09-21T23:59:59Z", "stop_date": "2024-05-14T23:59:28Z", "xmlid": "mav_sep2_fmso(2)"}, "name": "forward : FOV center in MSO", "size": "3", "start_date": "2014-09-21T23:59:59Z", "stop_date": "2024-05-14T23:59:28Z", "xmlid": "mav_sep2_fmso"}, "mav_sep2_fnadir": {"__spz_name__": "forward : nadir angle", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_sep2_fnadir", "dataset": "mav-sep2-anc", "description": "Angle between the geometric center of telescope 2 forward field of view and the nadir direction, i.e. towards the center of Mars", "display_type": "timeseries", "is_public": "True", "name": "forward : nadir angle", "start_date": "2014-09-21T23:59:59Z", "stop_date": "2024-05-14T23:59:28Z", "units": "degrees", "xmlid": "mav_sep2_fnadir"}, "mav_sep2_fpitch": {"__spz_name__": "forward : pitch angle", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_sep2_fpitch", "dataset": "mav-sep2-anc", "description": "Angle between the geometric center of telescope 2 forward field of view and the magnetic field direction averaged over the 32 second interval", "display_type": "timeseries", "is_public": "True", "name": "forward : pitch angle", "start_date": "2014-09-21T23:59:59Z", "stop_date": "2024-05-14T23:59:28Z", "units": "degrees", "xmlid": "mav_sep2_fpitch"}, "mav_sep2_fsun": {"__spz_name__": "forward : sun angle", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_sep2_fsun", "dataset": "mav-sep2-anc", "description": "Angle between the geometric center of telescope 2 forward field of view and the direction of the sun", "display_type": "timeseries", "is_public": "True", "name": "forward : sun angle", "start_date": "2014-09-21T23:59:59Z", "stop_date": "2024-05-14T23:59:28Z", "units": "degrees", "xmlid": "mav_sep2_fsun"}, "mav_sep2_mars": {"__spz_name__": "mars :fraction sky", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_sep2_mars", "dataset": "mav-sep2-anc", "description": "Fraction of the sky filled by the disk of Mars", "display_type": "timeseries", "is_public": "True", "name": "mars :fraction sky", "start_date": "2014-09-21T23:59:59Z", "stop_date": "2024-05-14T23:59:28Z", "xmlid": "mav_sep2_mars"}, "mav_sep2_rare": {"__spz_name__": "rear : FOV center in IAU", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_sep2_rare", "dataset": "mav-sep2-anc", "description": "Geometric center of telecope 2 rear field of view in IAU MARS coordinates", "display_type": "timeseries", "is_public": "True", "mav_sep2_rare0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_sep2_rare(0)", "dataset": "mav-sep2-anc", "index1": "0", "is_public": "True", "name": "x", "parameter": "mav_sep2_rare", "start_date": "2014-09-21T23:59:59Z", "stop_date": "2024-05-14T23:59:28Z", "xmlid": "mav_sep2_rare(0)"}, "mav_sep2_rare1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_sep2_rare(1)", "dataset": "mav-sep2-anc", "index1": "1", "is_public": "True", "name": "y", "parameter": "mav_sep2_rare", "start_date": "2014-09-21T23:59:59Z", "stop_date": "2024-05-14T23:59:28Z", "xmlid": "mav_sep2_rare(1)"}, "mav_sep2_rare2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_sep2_rare(2)", "dataset": "mav-sep2-anc", "index1": "2", "is_public": "True", "name": "z", "parameter": "mav_sep2_rare", "start_date": "2014-09-21T23:59:59Z", "stop_date": "2024-05-14T23:59:28Z", "xmlid": "mav_sep2_rare(2)"}, "name": "rear : FOV center in IAU", "size": "3", "start_date": "2014-09-21T23:59:59Z", "stop_date": "2024-05-14T23:59:28Z", "xmlid": "mav_sep2_rare"}, "mav_sep2_rmars": {"__spz_name__": "rear : fraction mars", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_sep2_rmars", "dataset": "mav-sep2-anc", "description": "Fraction of telescope 2 rear field of view taken up by Mars", "display_type": "timeseries", "is_public": "True", "name": "rear : fraction mars", "start_date": "2014-09-21T23:59:59Z", "stop_date": "2024-05-14T23:59:28Z", "xmlid": "mav_sep2_rmars"}, "mav_sep2_rmso": {"__spz_name__": "rear : FOV center in MSO", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_sep2_rmso", "dataset": "mav-sep2-anc", "description": "Geometric center of telecope 2 rear field of view in MSO coordinates", "display_type": "timeseries", "is_public": "True", "mav_sep2_rmso0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_sep2_rmso(0)", "dataset": "mav-sep2-anc", "index1": "0", "is_public": "True", "name": "x", "parameter": "mav_sep2_rmso", "start_date": "2014-09-21T23:59:59Z", "stop_date": "2024-05-14T23:59:28Z", "xmlid": "mav_sep2_rmso(0)"}, "mav_sep2_rmso1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_sep2_rmso(1)", "dataset": "mav-sep2-anc", "index1": "1", "is_public": "True", "name": "y", "parameter": "mav_sep2_rmso", "start_date": "2014-09-21T23:59:59Z", "stop_date": "2024-05-14T23:59:28Z", "xmlid": "mav_sep2_rmso(1)"}, "mav_sep2_rmso2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_sep2_rmso(2)", "dataset": "mav-sep2-anc", "index1": "2", "is_public": "True", "name": "z", "parameter": "mav_sep2_rmso", "start_date": "2014-09-21T23:59:59Z", "stop_date": "2024-05-14T23:59:28Z", "xmlid": "mav_sep2_rmso(2)"}, "name": "rear : FOV center in MSO", "size": "3", "start_date": "2014-09-21T23:59:59Z", "stop_date": "2024-05-14T23:59:28Z", "xmlid": "mav_sep2_rmso"}, "mav_sep2_rnadir": {"__spz_name__": "rear : nadir angle", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_sep2_rnadir", "dataset": "mav-sep2-anc", "description": "Angle between the geometric center of telescope 2 rear field of view and the nadir direction, i.e. towards the center of Mars", "display_type": "timeseries", "is_public": "True", "name": "rear : nadir angle", "start_date": "2014-09-21T23:59:59Z", "stop_date": "2024-05-14T23:59:28Z", "units": "degrees", "xmlid": "mav_sep2_rnadir"}, "mav_sep2_rpitch": {"__spz_name__": "rear : pitch angle", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_sep2_rpitch", "dataset": "mav-sep2-anc", "description": "Angle between the geometric center of telescope 2 rear field of view and the magnetic field direction averaged over the 32 second interval", "display_type": "timeseries", "is_public": "True", "name": "rear : pitch angle", "start_date": "2014-09-21T23:59:59Z", "stop_date": "2024-05-14T23:59:28Z", "units": "degrees", "xmlid": "mav_sep2_rpitch"}, "mav_sep2_rsun": {"__spz_name__": "rear : sun angle", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_sep2_rsun", "dataset": "mav-sep2-anc", "description": "Angle between the geometric center of telescope 2 rear field of view and the direction of the sun", "display_type": "timeseries", "is_public": "True", "name": "rear : sun angle", "start_date": "2014-09-21T23:59:59Z", "stop_date": "2024-05-14T23:59:28Z", "units": "degrees", "xmlid": "mav_sep2_rsun"}, "measurement_type": "EnergeticParticles", "name": "ancillary", "processing_level": "Calibrated", "sampling": "32S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MAVEN/SEP/mav-sep2-anc", "start_date": "2014-09-21T23:59:59Z", "stop_date": "2024-05-14T23:59:28Z", "target": "Mars", "xmlid": "mav-sep2-anc"}, "mvn_sep2_clb": {"__spz_name__": "diff fluxes", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mvn-sep2-clb", "att": "auto/mvn-sep2-clb", "dataSource": "PDS", "desc": "
MinSampling: 2S; MaxSampling: 32S
Provider: PDS", "is_public": "True", "lastModificationDate": "2024-09-02T04:08:17Z", "lastUpdate": "2024-09-02T04:08:15Z", "mav_sep2_att": {"__spz_name__": "attenuator state", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_sep2_att", "dataset": "mvn-sep2-clb", "display_type": "timeseries", "is_public": "True", "name": "attenuator state", "start_date": "2014-09-22T19:34:31Z", "stop_date": "2024-05-15T00:00:00Z", "xmlid": "mav_sep2_att"}, "mav_sep2_fe": {"__spz_name__": "electrons : forward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_sep2_fe", "dataset": "mvn-sep2-clb", "display_type": "spectrogram", "is_public": "True", "name": "electrons : forward", "start_date": "2014-09-22T19:34:31Z", "stop_date": "2024-05-15T00:00:00Z", "units": "1/cm\u00b2/sec/ster/keV", "xmlid": "mav_sep2_fe"}, "mav_sep2_fi": {"__spz_name__": "ions : forward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_sep2_fi", "dataset": "mvn-sep2-clb", "display_type": "spectrogram", "is_public": "True", "name": "ions : forward", "start_date": "2014-09-22T19:34:31Z", "stop_date": "2024-05-15T00:00:00Z", "units": "1/cm\u00b2/sec/ster/keV", "xmlid": "mav_sep2_fi"}, "mav_sep2_re": {"__spz_name__": "electrons : rear", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_sep2_re", "dataset": "mvn-sep2-clb", "display_type": "spectrogram", "is_public": "True", "name": "electrons : rear", "start_date": "2014-09-22T19:34:31Z", "stop_date": "2024-05-15T00:00:00Z", "units": "1/cm\u00b2/sec/ster/keV", "xmlid": "mav_sep2_re"}, "mav_sep2_ri": {"__spz_name__": "ions : rear", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_sep2_ri", "dataset": "mvn-sep2-clb", "display_type": "spectrogram", "is_public": "True", "name": "ions : rear", "start_date": "2014-09-22T19:34:31Z", "stop_date": "2024-05-15T00:00:00Z", "units": "1/cm\u00b2/sec/ster/keV", "xmlid": "mav_sep2_ri"}, "maxSampling": "32S", "measurement_type": "EnergeticParticles", "name": "diff fluxes", "processing_level": "Calibrated", "sampling": "2S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MAVEN/SEP/mvn-sep2-clb", "start_date": "2014-09-22T19:34:31Z", "stop_date": "2024-05-15T00:00:00Z", "target": "Mars", "xmlid": "mvn-sep2-clb"}, "name": "telescope 2", "xmlid": "mav-sep2-all"}, "xmlid": "MAVEN_sep"}, "STATIC": {"__spz_name__": "STATIC", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "MAVEN_static", "att": "auto/MAVEN_static", "desc": "Supra-Thermal And Thermal Ion Composition
ElectrostaticAnalyser", "is_public": "True", "mav_static_kp": {"__spz_name__": "ions : key parameters", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mav-static-kp", "att": "auto/mav-static-kp", "dataSource": "PDS", "desc": "STATIC : key parameters
MinSampling: 4S; MaxSampling: 8S
Provider: PDS", "is_public": "True", "lastModificationDate": "2024-09-02T00:39:43Z", "lastUpdate": "2024-08-02T11:44:48Z", "mav_stakp_h_ang": {"__spz_name__": "h+ above : dir angular width", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_stakp_h_ang", "dataset": "mav-static-kp", "description": "H+ flux angular width above TBD altitude determined from TBD APID while in Pickup and Scan mode", "is_public": "True", "name": "h+ above : dir angular width", "start_date": "2014-03-19T00:00:00Z", "stop_date": "2024-02-14T23:59:52Z", "units": "degrees", "xmlid": "mav_stakp_h_ang"}, "mav_stakp_h_dir_qual": {"__spz_name__": "h+ above : direction quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_stakp_h_dir_qual", "dataset": "mav-static-kp", "description": "Number of counts in the measurement", "is_public": "True", "name": "h+ above : direction quality", "start_date": "2014-03-19T00:00:00Z", "stop_date": "2024-02-14T23:59:52Z", "units": "counts", "xmlid": "mav_stakp_h_dir_qual"}, "mav_stakp_h_e": {"__spz_name__": "h+ above : flux energy", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_stakp_h_e", "dataset": "mav-static-kp", "description": "H+ omni-directional characteristic energy above TBD altitude determined from APID c6 while in Pickup, Eclipse and Protect mode", "is_public": "True", "name": "h+ above : flux energy", "start_date": "2014-03-19T00:00:00Z", "stop_date": "2024-02-14T23:59:52Z", "units": "eV", "xmlid": "mav_stakp_h_e"}, "mav_stakp_h_f": {"__spz_name__": "h+ above : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_stakp_h_f", "dataset": "mav-static-kp", "description": "H+ omni-directional flux above TBD altitude determined from APID c6 while in Pickup, Eclipse and Protect mode", "is_public": "True", "name": "h+ above : flux", "start_date": "2014-03-19T00:00:00Z", "stop_date": "2024-02-14T23:59:52Z", "units": "1/(cm\u00b2 s)", "xmlid": "mav_stakp_h_f"}, "mav_stakp_h_mso": {"__spz_name__": "h+ above : direction mso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_stakp_h_mso", "dataset": "mav-static-kp", "description": "H+ MSO direction of flux above TBD altitude determined from TBD APID while in Pickup and Scan mode", "is_public": "True", "mav_stakp_h_mso0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_stakp_h_mso(0)", "dataset": "mav-static-kp", "index1": "0", "is_public": "True", "name": "x", "parameter": "mav_stakp_h_mso", "start_date": "2014-03-19T00:00:00Z", "stop_date": "2024-02-14T23:59:52Z", "xmlid": "mav_stakp_h_mso(0)"}, "mav_stakp_h_mso1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_stakp_h_mso(1)", "dataset": "mav-static-kp", "index1": "1", "is_public": "True", "name": "y", "parameter": "mav_stakp_h_mso", "start_date": "2014-03-19T00:00:00Z", "stop_date": "2024-02-14T23:59:52Z", "xmlid": "mav_stakp_h_mso(1)"}, "mav_stakp_h_mso2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_stakp_h_mso(2)", "dataset": "mav-static-kp", "index1": "2", "is_public": "True", "name": "z", "parameter": "mav_stakp_h_mso", "start_date": "2014-03-19T00:00:00Z", "stop_date": "2024-02-14T23:59:52Z", "xmlid": "mav_stakp_h_mso(2)"}, "name": "h+ above : direction mso", "size": "3", "start_date": "2014-03-19T00:00:00Z", "stop_date": "2024-02-14T23:59:52Z", "xmlid": "mav_stakp_h_mso"}, "mav_stakp_h_n": {"__spz_name__": "h+ below : density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_stakp_h_n", "dataset": "mav-static-kp", "description": "H+ number density below TBD altitude determined from APID c6 (32 energy x 64 mass) while in Ram or Conic modes", "is_public": "True", "name": "h+ below : density", "start_date": "2014-03-19T00:00:00Z", "stop_date": "2024-02-14T23:59:52Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm-3", "xmlid": "mav_stakp_h_n"}, "mav_stakp_h_qual_above": {"__spz_name__": "h+ above : flux quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_stakp_h_qual_above", "dataset": "mav-static-kp", "description": "Number of counts in the measurement", "is_public": "True", "name": "h+ above : flux quality", "start_date": "2014-03-19T00:00:00Z", "stop_date": "2024-02-14T23:59:52Z", "units": "counts", "xmlid": "mav_stakp_h_qual_above"}, "mav_stakp_h_qual_below": {"__spz_name__": "h+ below : _temp/dens quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_stakp_h_qual_below", "dataset": "mav-static-kp", "description": "Number of counts in the measurement", "is_public": "True", "name": "h+ below : _temp/dens quality", "start_date": "2014-03-19T00:00:00Z", "stop_date": "2024-02-14T23:59:52Z", "units": "Counts", "xmlid": "mav_stakp_h_qual_below"}, "mav_stakp_h_t": {"__spz_name__": "h+ below : temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_stakp_h_t", "dataset": "mav-static-kp", "description": "H+ temperature below TBD altitude determined from APID c6 (32 energy x 64 mass) while in Ram or Conic modes", "is_public": "True", "name": "h+ below : temperature", "start_date": "2014-03-19T00:00:00Z", "stop_date": "2024-02-14T23:59:52Z", "units": "eV", "xmlid": "mav_stakp_h_t"}, "mav_stakp_he_e": {"__spz_name__": "he++ above : flux energy", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_stakp_he_e", "dataset": "mav-static-kp", "description": "He++ omni-directional characteristic energy above TBD altitude determined from APID c6 while in Pickup, Eclipse and Protect mode", "is_public": "True", "name": "he++ above : flux energy", "start_date": "2014-03-19T00:00:00Z", "stop_date": "2024-02-14T23:59:52Z", "units": "eV", "xmlid": "mav_stakp_he_e"}, "mav_stakp_he_f": {"__spz_name__": "he++ above : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_stakp_he_f", "dataset": "mav-static-kp", "description": "He++ omni-directional flux above TBD altitude determined from APID c6 while in Pickup, Eclipse and Protect mode", "is_public": "True", "name": "he++ above : flux", "start_date": "2014-03-19T00:00:00Z", "stop_date": "2024-02-14T23:59:52Z", "units": "1/(cm\u00b2 s)", "xmlid": "mav_stakp_he_f"}, "mav_stakp_he_qual_above": {"__spz_name__": "he++ above : flux quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_stakp_he_qual_above", "dataset": "mav-static-kp", "description": "Number of counts in the measurement", "is_public": "True", "name": "he++ above : flux quality", "start_date": "2014-03-19T00:00:00Z", "stop_date": "2024-02-14T23:59:52Z", "units": "counts", "xmlid": "mav_stakp_he_qual_above"}, "mav_stakp_o2_e": {"__spz_name__": "o2+ above : flux energy", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_stakp_o2_e", "dataset": "mav-static-kp", "description": "O2+ omni-directional characteristic energy above TBD altitude determined from APID c6 while in Pickup, Eclipse and Protect mode", "is_public": "True", "name": "o2+ above : flux energy", "start_date": "2014-03-19T00:00:00Z", "stop_date": "2024-02-14T23:59:52Z", "units": "eV", "xmlid": "mav_stakp_o2_e"}, "mav_stakp_o2_f": {"__spz_name__": "o2+ above : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_stakp_o2_f", "dataset": "mav-static-kp", "description": "O2+ omni-directional flux above TBD altitude determined from APID c6 while in Pickup, Eclipse and Protect mode", "is_public": "True", "name": "o2+ above : flux", "start_date": "2014-03-19T00:00:00Z", "stop_date": "2024-02-14T23:59:52Z", "units": "1/(cm\u00b2 s)", "xmlid": "mav_stakp_o2_f"}, "mav_stakp_o2_n": {"__spz_name__": "o2+ below : density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_stakp_o2_n", "dataset": "mav-static-kp", "description": "O2+ number density below TBD altitude determined from APID c6 (32 energy x 64 mass) while in Ram or Conic modes", "is_public": "True", "name": "o2+ below : density", "start_date": "2014-03-19T00:00:00Z", "stop_date": "2024-02-14T23:59:52Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm-3", "xmlid": "mav_stakp_o2_n"}, "mav_stakp_o2_qual_above": {"__spz_name__": "o2+ above : flux quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_stakp_o2_qual_above", "dataset": "mav-static-kp", "description": "Number of counts in the measurement", "is_public": "True", "name": "o2+ above : flux quality", "start_date": "2014-03-19T00:00:00Z", "stop_date": "2024-02-14T23:59:52Z", "units": "counts", "xmlid": "mav_stakp_o2_qual_above"}, "mav_stakp_o2_qual_below": {"__spz_name__": "o2+ below : _temp/dens quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_stakp_o2_qual_below", "dataset": "mav-static-kp", "description": "Number of counts in the measurement", "is_public": "True", "name": "o2+ below : _temp/dens quality", "start_date": "2014-03-19T00:00:00Z", "stop_date": "2024-02-14T23:59:52Z", "units": "Counts", "xmlid": "mav_stakp_o2_qual_below"}, "mav_stakp_o2_qual_vmso": {"__spz_name__": "o2+ below : v mso quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_stakp_o2_qual_vmso", "dataset": "mav-static-kp", "description": "Number of counts in the measurement", "is_public": "True", "name": "o2+ below : v mso quality", "start_date": "2014-03-19T00:00:00Z", "stop_date": "2024-02-14T23:59:52Z", "units": "Counts", "xmlid": "mav_stakp_o2_qual_vmso"}, "mav_stakp_o2_t": {"__spz_name__": "o2+ below : temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_stakp_o2_t", "dataset": "mav-static-kp", "description": "O2+ temperatue below TBD altitude determined from APID c6 (32 energy x 64 mass) while in Ram or Conic modes", "is_public": "True", "name": "o2+ below : temperature", "start_date": "2014-03-19T00:00:00Z", "stop_date": "2024-02-14T23:59:52Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "eV", "xmlid": "mav_stakp_o2_t"}, "mav_stakp_o2_vmso": {"__spz_name__": "o2+ below : v mso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_stakp_o2_vmso", "dataset": "mav-static-kp", "description": "O2+ MSO velocity below TBD altitude while in Ram or Conic mode", "is_public": "True", "mav_stakp_o2_vmso0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_stakp_o2_vmso(0)", "dataset": "mav-static-kp", "index1": "0", "is_public": "True", "name": "vx", "parameter": "mav_stakp_o2_vmso", "start_date": "2014-03-19T00:00:00Z", "stop_date": "2024-02-14T23:59:52Z", "xmlid": "mav_stakp_o2_vmso(0)"}, "mav_stakp_o2_vmso1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_stakp_o2_vmso(1)", "dataset": "mav-static-kp", "index1": "1", "is_public": "True", "name": "vy", "parameter": "mav_stakp_o2_vmso", "start_date": "2014-03-19T00:00:00Z", "stop_date": "2024-02-14T23:59:52Z", "xmlid": "mav_stakp_o2_vmso(1)"}, "mav_stakp_o2_vmso2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_stakp_o2_vmso(2)", "dataset": "mav-static-kp", "index1": "2", "is_public": "True", "name": "vz", "parameter": "mav_stakp_o2_vmso", "start_date": "2014-03-19T00:00:00Z", "stop_date": "2024-02-14T23:59:52Z", "xmlid": "mav_stakp_o2_vmso(2)"}, "name": "o2+ below : v mso", "size": "3", "start_date": "2014-03-19T00:00:00Z", "stop_date": "2024-02-14T23:59:52Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "mav_stakp_o2_vmso"}, "mav_stakp_o_e": {"__spz_name__": "o+ above : flux energy", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_stakp_o_e", "dataset": "mav-static-kp", "description": "O+ omni-directional characteristic energy above TBD altitude determined from APID c6 while in Pickup, Eclipse and Protect mode", "is_public": "True", "name": "o+ above : flux energy", "start_date": "2014-03-19T00:00:00Z", "stop_date": "2024-02-14T23:59:52Z", "units": "eV", "xmlid": "mav_stakp_o_e"}, "mav_stakp_o_f": {"__spz_name__": "o+ above : flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_stakp_o_f", "dataset": "mav-static-kp", "description": "O+ omni-directional flux above TBD altitude determined from APID c6 while in Pickup, Eclipse and Protect mode", "is_public": "True", "name": "o+ above : flux", "start_date": "2014-03-19T00:00:00Z", "stop_date": "2024-02-14T23:59:52Z", "units": "1/(cm\u00b2 s)", "xmlid": "mav_stakp_o_f"}, "mav_stakp_o_n": {"__spz_name__": "o+ below : density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_stakp_o_n", "dataset": "mav-static-kp", "description": "O+ number density below TBD altitude determined from APID c6 (32 energy x 64 mass) while in Ram or Conic modes", "is_public": "True", "name": "o+ below : density", "start_date": "2014-03-19T00:00:00Z", "stop_date": "2024-02-14T23:59:52Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm-3", "xmlid": "mav_stakp_o_n"}, "mav_stakp_o_qual_above": {"__spz_name__": "o+ above : flux quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_stakp_o_qual_above", "dataset": "mav-static-kp", "description": "Number of counts in the measurement", "is_public": "True", "name": "o+ above : flux quality", "start_date": "2014-03-19T00:00:00Z", "stop_date": "2024-02-14T23:59:52Z", "units": "counts", "xmlid": "mav_stakp_o_qual_above"}, "mav_stakp_o_qual_below": {"__spz_name__": "o+ below : _temp/dens quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_stakp_o_qual_below", "dataset": "mav-static-kp", "description": "Number of counts in the measurement", "is_public": "True", "name": "o+ below : _temp/dens quality", "start_date": "2014-03-19T00:00:00Z", "stop_date": "2024-02-14T23:59:52Z", "units": "Counts", "xmlid": "mav_stakp_o_qual_below"}, "mav_stakp_o_t": {"__spz_name__": "o+ below : temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_stakp_o_t", "dataset": "mav-static-kp", "description": "O+ temperatue below TBD altitude determined from APID c6 (32 energy x 64 mass) while in Ram or Conic modes", "is_public": "True", "name": "o+ below : temperature", "start_date": "2014-03-19T00:00:00Z", "stop_date": "2024-02-14T23:59:52Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "eV", "xmlid": "mav_stakp_o_t"}, "mav_stakp_p_ang": {"__spz_name__": "pickup above : dir angular width", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_stakp_p_ang", "dataset": "mav-static-kp", "description": "Dominant pickup ion flux angular width above TBD altitude determined from APID D0 and CE while in Pickup, Eclipse and Protect mode", "is_public": "True", "name": "pickup above : dir angular width", "start_date": "2014-03-19T00:00:00Z", "stop_date": "2024-02-14T23:59:52Z", "units": "degrees", "xmlid": "mav_stakp_p_ang"}, "mav_stakp_p_dir_qual": {"__spz_name__": "pickup above : direction quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_stakp_p_dir_qual", "dataset": "mav-static-kp", "description": "Number of counts in the measurement", "is_public": "True", "name": "pickup above : direction quality", "start_date": "2014-03-19T00:00:00Z", "stop_date": "2024-02-14T23:59:52Z", "units": "counts", "xmlid": "mav_stakp_p_dir_qual"}, "mav_stakp_p_mso": {"__spz_name__": "pickup above : direction mso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_stakp_p_mso", "dataset": "mav-static-kp", "description": "Dominant pickup ion MSO direction of flux above TBD altitude determined from APID D0 and CE while in Pickup, Eclipse and Protect mode", "is_public": "True", "mav_stakp_p_mso0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_stakp_p_mso(0)", "dataset": "mav-static-kp", "index1": "0", "is_public": "True", "name": "x", "parameter": "mav_stakp_p_mso", "start_date": "2014-03-19T00:00:00Z", "stop_date": "2024-02-14T23:59:52Z", "xmlid": "mav_stakp_p_mso(0)"}, "mav_stakp_p_mso1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_stakp_p_mso(1)", "dataset": "mav-static-kp", "index1": "1", "is_public": "True", "name": "y", "parameter": "mav_stakp_p_mso", "start_date": "2014-03-19T00:00:00Z", "stop_date": "2024-02-14T23:59:52Z", "xmlid": "mav_stakp_p_mso(1)"}, "mav_stakp_p_mso2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_stakp_p_mso(2)", "dataset": "mav-static-kp", "index1": "2", "is_public": "True", "name": "z", "parameter": "mav_stakp_p_mso", "start_date": "2014-03-19T00:00:00Z", "stop_date": "2024-02-14T23:59:52Z", "xmlid": "mav_stakp_p_mso(2)"}, "name": "pickup above : direction mso", "size": "3", "start_date": "2014-03-19T00:00:00Z", "stop_date": "2024-02-14T23:59:52Z", "xmlid": "mav_stakp_p_mso"}, "maxSampling": "8S", "measurement_type": "ThermalPlasma", "name": "ions : key parameters", "processing_level": "Calibrated", "sampling": "4S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MAVEN/STATIC/mav-static-kp", "start_date": "2014-03-19T00:00:00Z", "stop_date": "2024-02-14T23:59:52Z", "target": "Mars", "xmlid": "mav-static-kp"}, "mavpds_sta_c0": {"__spz_name__": "c0-64energy2mass", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mavpds-sta-c0", "att": "auto/mavpds-sta-c0", "dataSource": "PDS", "desc": "
Sampling: 4S
Provider: PDS", "is_public": "True", "lastModificationDate": "2024-08-19T17:58:41Z", "lastUpdate": "2024-08-19T17:58:41Z", "mav_sta_c0": {"__spz_name__": "ion eflux : 2D", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_sta_c0", "dataset": "mavpds-sta-c0", "description": "64 energy x 2 mass ion distributions in units of differential energy flux \n (LID = urn:nasa:pds:maven.static.c:data.c0_64e2m)", "display_type": "spectrogram", "is_public": "True", "name": "ion eflux : 2D", "start_date": "2014-10-13T00:00:20Z", "stop_date": "2024-05-15T00:00:01Z", "ucd": "phys.atmol.ionStage", "units": "eV/cm\u00b2-sr-s-eV", "xmlid": "mav_sta_c0"}, "mav_sta_c0_energy": {"__spz_name__": "ion eflux : sum over mass", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_sta_c0_energy", "dataset": "mavpds-sta-c0", "description": "64 energy x 2 mass ion distributions in units of differential energy flux\n (LID = urn:nasa:pds:maven.static.c:data.c6_32e64m)", "display_type": "spectrogram", "is_public": "True", "name": "ion eflux : sum over mass", "start_date": "2014-10-13T00:00:20Z", "stop_date": "2024-05-15T00:00:01Z", "ucd": "phys.atmol.ionStage", "units": "eV/cm\u00b2-sr-s-eV", "xmlid": "mav_sta_c0_energy"}, "mav_sta_c0_ind": {"__spz_name__": "table index", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_sta_c0_ind", "dataset": "mavpds-sta-c0", "is_public": "True", "name": "table index", "start_date": "2014-10-13T00:00:20Z", "stop_date": "2024-05-15T00:00:01Z", "xmlid": "mav_sta_c0_ind"}, "measurement_type": "IonComposition", "name": "c0-64energy2mass", "processing_level": "Calibrated", "sampling": "4S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MAVEN/STATIC/mavpds-sta-c0", "start_date": "2014-10-13T00:00:20Z", "stop_date": "2024-05-15T00:00:01Z", "target": "Mars", "xmlid": "mavpds-sta-c0"}, "mavpds_sta_c6": {"__spz_name__": "c6-32energy64mass", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mavpds-sta-c6", "att": "auto/mavpds-sta-c6", "dataSource": "PDS", "desc": "
Sampling: 4S
Provider: PDS", "is_public": "True", "lastModificationDate": "2024-08-19T17:24:23Z", "lastUpdate": "2024-08-19T17:24:23Z", "mav_sta_c6": {"__spz_name__": "ion eflux : 2D", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_sta_c6", "dataset": "mavpds-sta-c6", "description": "32 energy x 64 mass ion distributions in units of differential energy flux\n (LID = urn:nasa:pds:maven.static.c:data.c6_32e64m)", "display_type": "spectrogram", "is_public": "True", "name": "ion eflux : 2D", "start_date": "2014-10-13T00:00:04Z", "stop_date": "2024-05-15T00:00:01Z", "ucd": "phys.atmol.ionStage", "units": "eV/cm\u00b2-sr-s-eV", "xmlid": "mav_sta_c6"}, "mav_sta_c6_energy": {"__spz_name__": "ion eflux : sum over mass", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_sta_c6_energy", "dataset": "mavpds-sta-c6", "description": "32 energy x 64 mass ion distributions in units of differential energy flux\n (LID = urn:nasa:pds:maven.static.c:data.c6_32e64m)", "display_type": "spectrogram", "is_public": "True", "name": "ion eflux : sum over mass", "start_date": "2014-10-13T00:00:04Z", "stop_date": "2024-05-15T00:00:01Z", "ucd": "phys.atmol.ionStage", "units": "eV/cm\u00b2-sr-s-eV", "xmlid": "mav_sta_c6_energy"}, "mav_sta_c6_ind": {"__spz_name__": "table index", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_sta_c6_ind", "dataset": "mavpds-sta-c6", "is_public": "True", "name": "table index", "start_date": "2014-10-13T00:00:04Z", "stop_date": "2024-05-15T00:00:01Z", "xmlid": "mav_sta_c6_ind"}, "mav_sta_c6_mass": {"__spz_name__": "ion eflux : sum over energy", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_sta_c6_mass", "dataset": "mavpds-sta-c6", "description": "32 energy x 64 mass ion distributions in units of differential energy flux\n (LID = urn:nasa:pds:maven.static.c:data.c6_32e64m)", "display_type": "spectrogram", "is_public": "True", "name": "ion eflux : sum over energy", "start_date": "2014-10-13T00:00:04Z", "stop_date": "2024-05-15T00:00:01Z", "ucd": "phys.atmol.ionStage", "units": "eV/cm\u00b2-sr-s-eV", "xmlid": "mav_sta_c6_mass"}, "measurement_type": "IonComposition", "name": "c6-32energy64mass", "processing_level": "Calibrated", "sampling": "4S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MAVEN/STATIC/mavpds-sta-c6", "start_date": "2014-10-13T00:00:04Z", "stop_date": "2024-05-15T00:00:01Z", "target": "Mars", "xmlid": "mavpds-sta-c6"}, "name": "STATIC", "xmlid": "MAVEN_static"}, "SWEA": {"__spz_name__": "SWEA", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "MAVEN_swea", "att": "auto/MAVEN_swea", "desc": "Solar Wind Electron Analyzer
ElectrostaticAnalyser", "is_public": "True", "mav_swea_kp": {"__spz_name__": "electrons : key parameters", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mav-swea-kp", "att": "auto/mav-swea-kp", "dataSource": "PDS", "desc": "SWEA : key parameters
MinSampling: 4S; MaxSampling: 8S
Provider: PDS", "is_public": "True", "lastModificationDate": "2024-09-02T00:39:43Z", "lastUpdate": "2024-08-02T11:44:45Z", "mav_sweakp_apf1": {"__spz_name__": "anti-parallel flux 5-100 eV", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_sweakp_apf1", "dataset": "mav-swea-kp", "description": "Electron energy flux anti-parallel to the magnetic field vector (90-180 degrees pitch angle)", "is_public": "True", "name": "anti-parallel flux 5-100 eV", "start_date": "2014-03-19T00:00:00Z", "stop_date": "2024-02-14T23:59:52Z", "units": "eV/(cm\u00b2 s sr)", "xmlid": "mav_sweakp_apf1"}, "mav_sweakp_apf2": {"__spz_name__": "anti-parallel flux 100-500 eV", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_sweakp_apf2", "dataset": "mav-swea-kp", "description": "Electron energy flux anti-parallel to the magnetic field vector (90-180 degrees pitch angle)", "is_public": "True", "name": "anti-parallel flux 100-500 eV", "start_date": "2014-03-19T00:00:00Z", "stop_date": "2024-02-14T23:59:52Z", "units": "eV/(cm\u00b2 s sr)", "xmlid": "mav_sweakp_apf2"}, "mav_sweakp_apf3": {"__spz_name__": "anti-parallel flux 500-1000 eV", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_sweakp_apf3", "dataset": "mav-swea-kp", "description": "Electron energy flux anti-parallel to the magnetic field vector (90-180 degrees pitch angle)", "is_public": "True", "name": "anti-parallel flux 500-1000 eV", "start_date": "2014-03-19T00:00:00Z", "stop_date": "2024-02-14T23:59:52Z", "units": "eV/(cm\u00b2 s sr)", "xmlid": "mav_sweakp_apf3"}, "mav_sweakp_n": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_sweakp_n", "dataset": "mav-swea-kp", "description": "Density of solar wind or magnetosheath electrons based on moments of the electron distribution after correcting for the spacecraft potential", "is_public": "True", "name": "density", "start_date": "2014-03-19T00:00:00Z", "stop_date": "2024-02-14T23:59:52Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm-3", "xmlid": "mav_sweakp_n"}, "mav_sweakp_nqual": {"__spz_name__": "density quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_sweakp_nqual", "dataset": "mav-swea-kp", "description": "Density statistical uncertainty, (1 sigma)", "is_public": "True", "name": "density quality", "start_date": "2014-03-19T00:00:00Z", "stop_date": "2024-02-14T23:59:52Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm-3", "xmlid": "mav_sweakp_nqual"}, "mav_sweakp_pf1": {"__spz_name__": "parallel flux 5-100 eV", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_sweakp_pf1", "dataset": "mav-swea-kp", "description": "Electron energy flux parallel to the magnetic field vector (0-90 degrees pitch angle)", "is_public": "True", "name": "parallel flux 5-100 eV", "start_date": "2014-03-19T00:00:00Z", "stop_date": "2024-02-14T23:59:52Z", "units": "eV/(cm\u00b2 s sr)", "xmlid": "mav_sweakp_pf1"}, "mav_sweakp_pf2": {"__spz_name__": "parallel flux 100-500 eV", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_sweakp_pf2", "dataset": "mav-swea-kp", "description": "Electron energy flux parallel to the magnetic field vector (0-90 degrees pitch angle)", "is_public": "True", "name": "parallel flux 100-500 eV", "start_date": "2014-03-19T00:00:00Z", "stop_date": "2024-02-14T23:59:52Z", "units": "eV/(cm\u00b2 s sr)", "xmlid": "mav_sweakp_pf2"}, "mav_sweakp_pf3": {"__spz_name__": "parallel flux 500-1000 eV", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_sweakp_pf3", "dataset": "mav-swea-kp", "description": "Electron energy flux parallel to the magnetic field vector (0-90 degrees pitch angle)", "is_public": "True", "name": "parallel flux 500-1000 eV", "start_date": "2014-03-19T00:00:00Z", "stop_date": "2024-02-14T23:59:52Z", "units": "eV/(cm\u00b2 s sr)", "xmlid": "mav_sweakp_pf3"}, "mav_sweakp_shape": {"__spz_name__": "spectrum shape", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_sweakp_shape", "dataset": "mav-swea-kp", "description": "Energy spectrum shape parameter used to distingush between ionospheric photoelectrons and solar wind electrons", "is_public": "True", "name": "spectrum shape", "start_date": "2014-03-19T00:00:00Z", "stop_date": "2024-02-14T23:59:52Z", "xmlid": "mav_sweakp_shape"}, "mav_sweakp_t": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_sweakp_t", "dataset": "mav-swea-kp", "description": "Temperature solar wind or magnetosheath electrons based on moments of the electron distribution after correcting for the spacecraft potential", "is_public": "True", "name": "temperature", "start_date": "2014-03-19T00:00:00Z", "stop_date": "2024-02-14T23:59:52Z", "ucd": "phys.temperature;phys.atmol.Ionstage", "units": "eV", "xmlid": "mav_sweakp_t"}, "mav_sweakp_tqual": {"__spz_name__": "temperature quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_sweakp_tqual", "dataset": "mav-swea-kp", "description": "Temperature statistical uncertainty, (1 sigma)", "is_public": "True", "name": "temperature quality", "start_date": "2014-03-19T00:00:00Z", "stop_date": "2024-02-14T23:59:52Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "eV", "xmlid": "mav_sweakp_tqual"}, "maxSampling": "8S", "measurement_type": "ThermalPlasma", "name": "electrons : key parameters", "processing_level": "Calibrated", "sampling": "4S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MAVEN/SWEA/mav-swea-kp", "start_date": "2014-03-19T00:00:00Z", "stop_date": "2024-02-14T23:59:52Z", "target": "Mars", "xmlid": "mav-swea-kp"}, "mavpds_swea_svyspec": {"__spz_name__": "onboard omni electron spectra", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mavpds-swea-svyspec", "att": "auto/mavpds-swea-svyspec", "dataSource": "PDS", "desc": "omni-directional electron spectra (survey)
Sampling: 4S
Provider: PDS", "is_public": "True", "lastModificationDate": "2024-09-02T06:11:28Z", "lastUpdate": "2024-09-02T06:11:25Z", "mav_swea_svyspec": {"__spz_name__": "elec counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_swea_svyspec", "dataset": "mavpds-swea-svyspec", "display_type": "spectrogram", "is_public": "True", "name": "elec counts", "start_date": "2014-03-19T14:15:52Z", "stop_date": "2024-05-14T23:59:59Z", "units": "cnts", "xmlid": "mav_swea_svyspec"}, "mav_swea_svyspecf": {"__spz_name__": "elec diff eflux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_swea_svyspecf", "dataset": "mavpds-swea-svyspec", "display_type": "spectrogram", "is_public": "True", "name": "elec diff eflux", "start_date": "2014-03-19T14:15:52Z", "stop_date": "2024-05-14T23:59:59Z", "units": "eV/cm\u00b2 sr eV", "xmlid": "mav_swea_svyspecf"}, "measurement_type": "ThermalPlasma", "name": "onboard omni electron spectra", "processing_level": "Calibrated", "sampling": "4S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MAVEN/SWEA/mavpds-swea-svyspec", "start_date": "2014-03-19T14:15:52Z", "stop_date": "2024-05-14T23:59:59Z", "target": "Mars", "xmlid": "mavpds-swea-svyspec"}, "name": "SWEA", "xmlid": "MAVEN_swea"}, "SWIA": {"__spz_name__": "SWIA", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "MAVEN_swia", "att": "auto/MAVEN_swia", "desc": "Solar Wind Ion Analyzer
ElectrostaticAnalyser", "is_public": "True", "mav_swia_kp": {"__spz_name__": "ions : key parameters", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mav-swia-kp", "att": "auto/mav-swia-kp", "dataSource": "PDS", "desc": "SWIA : ions considered as protons : key parameters
MinSampling: 4S; MaxSampling: 8S
Provider: PDS", "is_public": "True", "lastModificationDate": "2024-09-02T00:39:43Z", "lastUpdate": "2024-08-02T11:44:45Z", "mav_swiakp_n": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_swiakp_n", "dataset": "mav-swia-kp", "description": "Total ion density from SWIA onboard moment calculation, assuming 100% protons", "is_public": "True", "name": "density", "start_date": "2014-03-19T00:00:00Z", "stop_date": "2024-02-14T23:59:52Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm-3", "xmlid": "mav_swiakp_n"}, "mav_swiakp_pdyn": {"__spz_name__": "dynamic pressure", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_swiakp_pdyn", "dataset": "mav-swia-kp", "description": "Ion dynamic pressure computed on the SWIA ground from density and velocity moments, assuming 100% protons", "is_public": "True", "name": "dynamic pressure", "start_date": "2014-03-19T00:00:00Z", "stop_date": "2024-02-14T23:59:52Z", "ucd": "phys.temperature;phys.atmol.Ionstage", "units": "nPa", "xmlid": "mav_swiakp_pdyn"}, "mav_swiakp_qual": {"__spz_name__": "moments quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_swiakp_qual", "dataset": "mav-swia-kp", "description": "Quality flag (0 = bad, 1 = good) indicating whether the distribution is well-measured and decommutation parameters are definite", "is_public": "True", "name": "moments quality", "start_date": "2014-03-19T00:00:00Z", "stop_date": "2024-02-14T23:59:52Z", "xmlid": "mav_swiakp_qual"}, "mav_swiakp_t": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_swiakp_t", "dataset": "mav-swia-kp", "description": "Scalar ion temperature from SWIA onboard moment calculation, assuming 100% protons", "is_public": "True", "name": "temperature", "start_date": "2014-03-19T00:00:00Z", "stop_date": "2024-02-14T23:59:52Z", "ucd": "phys.temperature;phys.atmol.Ionstage", "units": "eV", "xmlid": "mav_swiakp_t"}, "mav_swiakp_vmso": {"__spz_name__": "v_mso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_swiakp_vmso", "dataset": "mav-swia-kp", "description": "Bulk ion flow velocity from SWIA onboard moment calculation, assuming 100% protons", "is_public": "True", "mav_swiakp_vmso0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_swiakp_vmso(0)", "dataset": "mav-swia-kp", "index1": "0", "is_public": "True", "name": "vx", "parameter": "mav_swiakp_vmso", "start_date": "2014-03-19T00:00:00Z", "stop_date": "2024-02-14T23:59:52Z", "xmlid": "mav_swiakp_vmso(0)"}, "mav_swiakp_vmso1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_swiakp_vmso(1)", "dataset": "mav-swia-kp", "index1": "1", "is_public": "True", "name": "vy", "parameter": "mav_swiakp_vmso", "start_date": "2014-03-19T00:00:00Z", "stop_date": "2024-02-14T23:59:52Z", "xmlid": "mav_swiakp_vmso(1)"}, "mav_swiakp_vmso2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_swiakp_vmso(2)", "dataset": "mav-swia-kp", "index1": "2", "is_public": "True", "name": "vz", "parameter": "mav_swiakp_vmso", "start_date": "2014-03-19T00:00:00Z", "stop_date": "2024-02-14T23:59:52Z", "xmlid": "mav_swiakp_vmso(2)"}, "name": "v_mso", "size": "3", "start_date": "2014-03-19T00:00:00Z", "stop_date": "2024-02-14T23:59:52Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "mav_swiakp_vmso"}, "mav_swiakp_vtot": {"__spz_name__": "|v|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_swiakp_vtot", "dataset": "mav-swia-kp", "description": "Bulk ion flow velocity magnitude from SWIA onboard moment calculation, assuming 100% protons", "is_public": "True", "name": "|v|", "start_date": "2014-03-19T00:00:00Z", "stop_date": "2024-02-14T23:59:52Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "mav_swiakp_vtot"}, "maxSampling": "8S", "measurement_type": "ThermalPlasma", "name": "ions : key parameters", "processing_level": "Calibrated", "sampling": "4S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MAVEN/SWIA/mav-swia-kp", "start_date": "2014-03-19T00:00:00Z", "stop_date": "2024-02-14T23:59:52Z", "target": "Mars", "xmlid": "mav-swia-kp"}, "mavpds_swia_momboard": {"__spz_name__": "onboard ion moments", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mavpds-swia-momboard", "att": "auto/mavpds-swia-momboard", "dataSource": "PDS", "desc": "
Sampling: 4S
Provider: PDS", "is_public": "True", "lastModificationDate": "2024-09-02T04:36:23Z", "lastUpdate": "2024-09-02T04:36:22Z", "mav_swia_n": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_swia_n", "dataset": "mavpds-swia-momboard", "is_public": "True", "name": "density", "start_date": "2014-03-19T14:19:43Z", "stop_date": "2024-05-15T00:00:23Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm-3", "xmlid": "mav_swia_n"}, "mav_swia_tmso": {"__spz_name__": "t_mso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_swia_tmso", "dataset": "mavpds-swia-momboard", "is_public": "True", "mav_swia_tmso0": {"__spz_name__": "txx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_swia_tmso(0)", "dataset": "mavpds-swia-momboard", "index1": "0", "is_public": "True", "name": "txx", "parameter": "mav_swia_tmso", "start_date": "2014-03-19T14:19:43Z", "stop_date": "2024-05-15T00:00:23Z", "xmlid": "mav_swia_tmso(0)"}, "mav_swia_tmso1": {"__spz_name__": "tyy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_swia_tmso(1)", "dataset": "mavpds-swia-momboard", "index1": "1", "is_public": "True", "name": "tyy", "parameter": "mav_swia_tmso", "start_date": "2014-03-19T14:19:43Z", "stop_date": "2024-05-15T00:00:23Z", "xmlid": "mav_swia_tmso(1)"}, "mav_swia_tmso2": {"__spz_name__": "tzz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_swia_tmso(2)", "dataset": "mavpds-swia-momboard", "index1": "2", "is_public": "True", "name": "tzz", "parameter": "mav_swia_tmso", "start_date": "2014-03-19T14:19:43Z", "stop_date": "2024-05-15T00:00:23Z", "xmlid": "mav_swia_tmso(2)"}, "name": "t_mso", "size": "3", "start_date": "2014-03-19T14:19:43Z", "stop_date": "2024-05-15T00:00:23Z", "ucd": "phys.temperature;phys.atmol.Ionstage", "units": "eV", "xmlid": "mav_swia_tmso"}, "mav_swia_vmso": {"__spz_name__": "v_mso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_swia_vmso", "dataset": "mavpds-swia-momboard", "is_public": "True", "mav_swia_vmso0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_swia_vmso(0)", "dataset": "mavpds-swia-momboard", "index1": "0", "is_public": "True", "name": "vx", "parameter": "mav_swia_vmso", "start_date": "2014-03-19T14:19:43Z", "stop_date": "2024-05-15T00:00:23Z", "xmlid": "mav_swia_vmso(0)"}, "mav_swia_vmso1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_swia_vmso(1)", "dataset": "mavpds-swia-momboard", "index1": "1", "is_public": "True", "name": "vy", "parameter": "mav_swia_vmso", "start_date": "2014-03-19T14:19:43Z", "stop_date": "2024-05-15T00:00:23Z", "xmlid": "mav_swia_vmso(1)"}, "mav_swia_vmso2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mav_swia_vmso(2)", "dataset": "mavpds-swia-momboard", "index1": "2", "is_public": "True", "name": "vz", "parameter": "mav_swia_vmso", "start_date": "2014-03-19T14:19:43Z", "stop_date": "2024-05-15T00:00:23Z", "xmlid": "mav_swia_vmso(2)"}, "name": "v_mso", "size": "3", "start_date": "2014-03-19T14:19:43Z", "stop_date": "2024-05-15T00:00:23Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "mav_swia_vmso"}, "mav_swia_vtot": {"__spz_name__": "|v|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_swia_vtot", "dataset": "mavpds-swia-momboard", "is_public": "True", "name": "|v|", "start_date": "2014-03-19T14:19:43Z", "stop_date": "2024-05-15T00:00:23Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "mav_swia_vtot"}, "measurement_type": "ThermalPlasma", "name": "onboard ion moments", "processing_level": "Calibrated", "sampling": "4S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MAVEN/SWIA/mavpds-swia-momboard", "start_date": "2014-03-19T14:19:43Z", "stop_date": "2024-05-15T00:00:23Z", "target": "Mars", "xmlid": "mavpds-swia-momboard"}, "mavpds_swia_specboard": {"__spz_name__": "onboard omni ion spectra", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mavpds-swia-specboard", "att": "auto/mavpds-swia-specboard", "dataSource": "PDS", "desc": "
Sampling: 4S
Provider: PDS", "is_public": "True", "lastModificationDate": "2024-09-02T04:51:17Z", "lastUpdate": "2024-09-02T04:51:16Z", "mav_swia_cspec": {"__spz_name__": "ion counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_swia_cspec", "dataset": "mavpds-swia-specboard", "description": "Onboard Survey Spectra - Ion energy spectra from SWIA coarse data", "display_type": "spectrogram", "is_public": "True", "name": "ion counts", "start_date": "2014-03-19T14:20:43Z", "stop_date": "2024-05-15T00:00:15Z", "ucd": "phys.atmol.ionStage", "units": "cnts", "xmlid": "mav_swia_cspec"}, "mav_swia_fspec": {"__spz_name__": "ion diff eflux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mav_swia_fspec", "dataset": "mavpds-swia-specboard", "description": "Onboard Survey Spectra - Ion energy spectra in units of differential \n energy flux calculated onboard from SWIA coarse data\n (LID = urn:nasa:pds:maven.swia.calibrated:data.onboard_svy_spec)", "display_type": "spectrogram", "is_public": "True", "name": "ion diff eflux", "start_date": "2014-03-19T14:20:43Z", "stop_date": "2024-05-15T00:00:15Z", "ucd": "phys.atmol.ionStage", "units": "eV/cm\u00b2 sr eV", "xmlid": "mav_swia_fspec"}, "measurement_type": "ThermalPlasma", "name": "onboard omni ion spectra", "processing_level": "Calibrated", "sampling": "4S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MAVEN/SWIA/mavpds-swia-specboard", "start_date": "2014-03-19T14:20:43Z", "stop_date": "2024-05-15T00:00:15Z", "target": "Mars", "xmlid": "mavpds-swia-specboard"}, "name": "SWIA", "xmlid": "MAVEN_swia"}, "__spz_name__": "MAVEN", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "MAVEN", "att": "auto/MAVEN", "desc": "Mars Atmosphere and Volatile Evolution Mission
2013-11-18T13:28:00
Mars arrival : 2014-09-28T19:24:00", "is_public": "True", "name": "MAVEN", "rank": "8", "target": "Mars", "xmlid": "MAVEN"}, "MESSENGER": {"Analytical_Models": {"__spz_name__": "Analytical Models", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "MESSENGER_models", "att": "auto/MESSENGER_models", "desc": "", "is_public": "True", "mes_kt17_model": {"PriorID": "mes-orb-orb", "__spz_name__": "KT17 model", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mes-kt17-model", "att": "auto/mes-kt17-model", "b_kt17_model_60_0_427_50_mes_xyz_orbmso": {"__spz_name__": "b msm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_kt17_model_60_0.427_50_mes_xyz_orbmso", "b_kt17_model_60_0_427_50_mes_xyz_orbmso0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_kt17_model_60_0.427_50_mes_xyz_orbmso(0)", "dataset": "mes-kt17-model", "index1": "0", "is_public": "True", "name": "bx", "parameter": "b_kt17_model_60_0.427_50_mes_xyz_orbmso", "start_date": "2011-03-04T00:00:00Z", "stop_date": "2015-04-29T23:59:00Z", "xmlid": "b_kt17_model_60_0.427_50_mes_xyz_orbmso(0)"}, "b_kt17_model_60_0_427_50_mes_xyz_orbmso1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_kt17_model_60_0.427_50_mes_xyz_orbmso(1)", "dataset": "mes-kt17-model", "index1": "1", "is_public": "True", "name": "by", "parameter": "b_kt17_model_60_0.427_50_mes_xyz_orbmso", "start_date": "2011-03-04T00:00:00Z", "stop_date": "2015-04-29T23:59:00Z", "xmlid": "b_kt17_model_60_0.427_50_mes_xyz_orbmso(1)"}, "b_kt17_model_60_0_427_50_mes_xyz_orbmso2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_kt17_model_60_0.427_50_mes_xyz_orbmso(2)", "dataset": "mes-kt17-model", "index1": "2", "is_public": "True", "name": "bz", "parameter": "b_kt17_model_60_0.427_50_mes_xyz_orbmso", "start_date": "2011-03-04T00:00:00Z", "stop_date": "2015-04-29T23:59:00Z", "xmlid": "b_kt17_model_60_0.427_50_mes_xyz_orbmso(2)"}, "dataset": "mes-kt17-model", "is_public": "True", "name": "b msm", "predefined": "1", "size": "3", "start_date": "2011-03-04T00:00:00Z", "stop_date": "2015-04-29T23:59:00Z", "template": "b_kt17_model_##sampling##_##rsun##_##dist##_##orbit##", "units": "nT", "xmlid": "b_kt17_model_60_0.427_50_mes_xyz_orbmso"}, "b_kt17_model_tot_60_0_427_50_mes_xyz_orbmso": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_kt17_model_tot_60_0.427_50_mes_xyz_orbmso", "dataset": "mes-kt17-model", "description": "Scalar magnitude of the magnetic field in nT", "display_type": "timeseries", "is_public": "True", "name": "|b|", "predefined": "1", "start_date": "2011-03-04T00:00:00Z", "stop_date": "2015-04-29T23:59:00Z", "template": "b_kt17_model_tot_##sampling##_##rsun##_##dist##_##orbit##", "ucd": "phys.magField", "units": "nT", "xmlid": "b_kt17_model_tot_60_0.427_50_mes_xyz_orbmso"}, "dataSource": "IRAP", "desc": "KT17 mercury magnetic field model
Sampling: 1M
Provider: IRAP", "is_public": "True", "lastModificationDate": "2016-04-05T10:54:45Z", "lastUpdate": "2016-04-04T18:53:40Z", "measurement_type": "MagneticField", "name": "KT17 model", "processing_level": "Calibrated", "sampling": "1M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MESSENGER/Models/mes-kt17-model", "start_date": "2011-03-04T00:00:00Z", "stop_date": "2015-04-29T23:59:00Z", "target": "Mercury", "xmlid": "mes-kt17-model"}, "mes_kt17_pds": {"__spz_name__": "KT17@PDS", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mes-kt17-pds", "att": "auto/mes-kt17-pds", "b_kt17_actIdx": {"__spz_name__": "disturbance index", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_kt17_actIdx", "dataset": "mes-kt17-pds", "is_public": "True", "name": "disturbance index", "start_date": "2011-03-24T01:13:54Z", "stop_date": "2015-04-30T12:32:43Z", "units": "nT", "xmlid": "b_kt17_actIdx"}, "b_kt17_all": {"__spz_name__": "b_mso all", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_kt17_all", "b_kt17_all0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_kt17_all(0)", "dataset": "mes-kt17-pds", "index1": "0", "is_public": "True", "name": "bx", "parameter": "b_kt17_all", "start_date": "2011-03-24T01:13:54Z", "stop_date": "2015-04-30T12:32:43Z", "xmlid": "b_kt17_all(0)"}, "b_kt17_all1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_kt17_all(1)", "dataset": "mes-kt17-pds", "index1": "1", "is_public": "True", "name": "by", "parameter": "b_kt17_all", "start_date": "2011-03-24T01:13:54Z", "stop_date": "2015-04-30T12:32:43Z", "xmlid": "b_kt17_all(1)"}, "b_kt17_all2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_kt17_all(2)", "dataset": "mes-kt17-pds", "index1": "2", "is_public": "True", "name": "bz", "parameter": "b_kt17_all", "start_date": "2011-03-24T01:13:54Z", "stop_date": "2015-04-30T12:32:43Z", "xmlid": "b_kt17_all(2)"}, "dataset": "mes-kt17-pds", "is_public": "True", "name": "b_mso all", "size": "3", "start_date": "2011-03-24T01:13:54Z", "stop_date": "2015-04-30T12:32:43Z", "units": "nT", "xmlid": "b_kt17_all"}, "b_kt17_all_tot": {"__spz_name__": "|b| all", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_kt17_all_tot", "dataset": "mes-kt17-pds", "is_public": "True", "name": "|b| all", "start_date": "2011-03-24T01:13:54Z", "stop_date": "2015-04-30T12:32:43Z", "units": "nT", "xmlid": "b_kt17_all_tot"}, "b_kt17_external": {"__spz_name__": "b_mso external", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_kt17_external", "b_kt17_external0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_kt17_external(0)", "dataset": "mes-kt17-pds", "index1": "0", "is_public": "True", "name": "bx", "parameter": "b_kt17_external", "start_date": "2011-03-24T01:13:54Z", "stop_date": "2015-04-30T12:32:43Z", "xmlid": "b_kt17_external(0)"}, "b_kt17_external1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_kt17_external(1)", "dataset": "mes-kt17-pds", "index1": "1", "is_public": "True", "name": "by", "parameter": "b_kt17_external", "start_date": "2011-03-24T01:13:54Z", "stop_date": "2015-04-30T12:32:43Z", "xmlid": "b_kt17_external(1)"}, "b_kt17_external2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_kt17_external(2)", "dataset": "mes-kt17-pds", "index1": "2", "is_public": "True", "name": "bz", "parameter": "b_kt17_external", "start_date": "2011-03-24T01:13:54Z", "stop_date": "2015-04-30T12:32:43Z", "xmlid": "b_kt17_external(2)"}, "dataset": "mes-kt17-pds", "is_public": "True", "name": "b_mso external", "size": "3", "start_date": "2011-03-24T01:13:54Z", "stop_date": "2015-04-30T12:32:43Z", "units": "nT", "xmlid": "b_kt17_external"}, "b_kt17_external_tot": {"__spz_name__": "|b| external", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_kt17_external_tot", "dataset": "mes-kt17-pds", "is_public": "True", "name": "|b| external", "start_date": "2011-03-24T01:13:54Z", "stop_date": "2015-04-30T12:32:43Z", "units": "nT", "xmlid": "b_kt17_external_tot"}, "b_kt17_internal": {"__spz_name__": "b_mso internal", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_kt17_internal", "b_kt17_internal0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_kt17_internal(0)", "dataset": "mes-kt17-pds", "index1": "0", "is_public": "True", "name": "bx", "parameter": "b_kt17_internal", "start_date": "2011-03-24T01:13:54Z", "stop_date": "2015-04-30T12:32:43Z", "xmlid": "b_kt17_internal(0)"}, "b_kt17_internal1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_kt17_internal(1)", "dataset": "mes-kt17-pds", "index1": "1", "is_public": "True", "name": "by", "parameter": "b_kt17_internal", "start_date": "2011-03-24T01:13:54Z", "stop_date": "2015-04-30T12:32:43Z", "xmlid": "b_kt17_internal(1)"}, "b_kt17_internal2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_kt17_internal(2)", "dataset": "mes-kt17-pds", "index1": "2", "is_public": "True", "name": "bz", "parameter": "b_kt17_internal", "start_date": "2011-03-24T01:13:54Z", "stop_date": "2015-04-30T12:32:43Z", "xmlid": "b_kt17_internal(2)"}, "dataset": "mes-kt17-pds", "is_public": "True", "name": "b_mso internal", "size": "3", "start_date": "2011-03-24T01:13:54Z", "stop_date": "2015-04-30T12:32:43Z", "units": "nT", "xmlid": "b_kt17_internal"}, "b_kt17_internal_tot": {"__spz_name__": "|b| internal", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_kt17_internal_tot", "dataset": "mes-kt17-pds", "is_public": "True", "name": "|b| internal", "start_date": "2011-03-24T01:13:54Z", "stop_date": "2015-04-30T12:32:43Z", "units": "nT", "xmlid": "b_kt17_internal_tot"}, "b_kt17_rhel": {"__spz_name__": "distance mercury-sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_kt17_rhel", "dataset": "mes-kt17-pds", "is_public": "True", "name": "distance mercury-sun", "start_date": "2011-03-24T01:13:54Z", "stop_date": "2015-04-30T12:32:43Z", "units": "nT", "xmlid": "b_kt17_rhel"}, "dataSource": "PDS", "desc": "MESSENGER Magnetometer KT17 Model Residual data
Sampling: 1M
Provider: PDS", "is_public": "True", "lastModificationDate": "2023-06-21T08:28:47Z", "lastUpdate": "2023-06-21T08:24:37Z", "measurement_type": "MagneticField", "name": "KT17@PDS", "processing_level": "Calibrated", "sampling": "1M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MESSENGER/Models/mes-kt17-pds", "start_date": "2011-03-24T01:13:54Z", "stop_date": "2015-04-30T12:32:43Z", "target": "Mercury", "xmlid": "mes-kt17-pds"}, "name": "Analytical Models", "xmlid": "MESSENGER_models"}, "EPS": {"__spz_name__": "EPS", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "MESSENGER_eps", "att": "auto/MESSENGER_eps", "desc": "Energetic Particle and Plasma Spectrometer (EPPS) : Energetic Particle Spectrometer
EnergeticParticleInstrument", "is_public": "True", "mess_eps_pa": {"__spz_name__": "pitch angles", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mess-eps-pa", "att": "auto/mess-eps-pa", "dataSource": "PDS", "desc": "
Sampling: 30S
Provider: PDS", "is_public": "True", "lastModificationDate": "2019-06-11T16:52:49Z", "lastUpdate": "2019-06-07T18:03:12Z", "measurement_type": "EnergeticParticles", "mes_eps_pa": {"__spz_name__": "pa values", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_eps_pa", "dataset": "mess-eps-pa", "description": "Pitch angles values for six looking directions", "is_public": "True", "name": "pa values", "start_date": "2011-03-24T00:00:44Z", "stop_date": "2015-04-30T15:08:09Z", "units": "deg", "xmlid": "mes_eps_pa"}, "name": "pitch angles", "processing_level": "Calibrated", "sampling": "30S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MESSENGER/EPS/mess-eps-pa", "start_date": "2011-03-24T00:00:44Z", "stop_date": "2015-04-30T15:08:09Z", "target": "Mercury", "xmlid": "mess-eps-pa"}, "mess_eps_spec": {"__spz_name__": "pitch-angle distribution", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mess-eps-spec", "att": "auto/mess-eps-spec", "dataSource": "PDS", "desc": "
Sampling: 120S
Provider: PDS", "is_public": "True", "lastModificationDate": "2019-06-11T18:20:19Z", "lastUpdate": "2019-06-11T18:04:45Z", "measurement_type": "EnergeticParticles", "mes_eps_pad": {"__spz_name__": "countrate", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_eps_pad", "dataset": "mess-eps-spec", "display_type": "spectrogram", "is_public": "True", "name": "countrate", "start_date": "2011-03-23T00:00:00Z", "stop_date": "2015-04-30T23:59:58Z", "units": "cnts/s", "xmlid": "mes_eps_pad"}, "name": "pitch-angle distribution", "processing_level": "Calibrated", "sampling": "120S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MESSENGER/EPS/mess-eps-spec", "start_date": "2011-03-23T00:00:00Z", "stop_date": "2015-04-30T23:59:58Z", "target": "Mercury", "xmlid": "mess-eps-spec"}, "name": "EPS", "xmlid": "MESSENGER_eps"}, "Ephemeris": {"__spz_name__": "Ephemeris", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "MESSENGER_ephemeris", "att": "auto/MESSENGER_ephemeris", "desc": "", "is_public": "True", "mes_orb_all": {"__spz_name__": "full mission", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mes-orb-all", "att": "auto/mes-orb-all", "dataSource": "PDS", "desc": "
Sampling: 20M
Provider: PDS", "is_public": "True", "lastModificationDate": "2015-12-22T19:32:02Z", "lastUpdate": "2015-12-22T18:32:55Z", "measurement_type": "Ephemeris", "mes_azi_orb": {"__spz_name__": "lon_rtn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_azi_orb", "dataset": "mes-orb-all", "display_type": "timeseries", "is_public": "True", "name": "lon_rtn", "start_date": "2004-08-04T00:00:00Z", "stop_date": "2015-04-30T00:00:00Z", "units": "deg", "xmlid": "mes_azi_orb"}, "mes_lat_orb": {"__spz_name__": "lat_rtn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_lat_orb", "dataset": "mes-orb-all", "display_type": "timeseries", "is_public": "True", "name": "lat_rtn", "start_date": "2004-08-04T00:00:00Z", "stop_date": "2015-04-30T00:00:00Z", "ucd": "pos.bodyrc.lat", "units": "deg", "xmlid": "mes_lat_orb"}, "mes_r_orb": {"__spz_name__": "distance mess-sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_r_orb", "dataset": "mes-orb-all", "display_type": "timeseries", "is_public": "True", "name": "distance mess-sun", "start_date": "2004-08-04T00:00:00Z", "stop_date": "2015-04-30T00:00:00Z", "ucd": "pos.distance;instr.obsty", "units": "AU", "xmlid": "mes_r_orb"}, "mes_xyz_hci": {"__spz_name__": "xyz_hci", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_xyz_hci", "dataset": "mes-orb-all", "display_type": "timeseries", "is_public": "True", "mes_xyz_hci0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_xyz_hci(0)", "dataset": "mes-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "mes_xyz_hci", "start_date": "2004-08-04T00:00:00Z", "stop_date": "2015-04-30T00:00:00Z", "xmlid": "mes_xyz_hci(0)"}, "mes_xyz_hci1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_xyz_hci(1)", "dataset": "mes-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "mes_xyz_hci", "start_date": "2004-08-04T00:00:00Z", "stop_date": "2015-04-30T00:00:00Z", "xmlid": "mes_xyz_hci(1)"}, "mes_xyz_hci2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_xyz_hci(2)", "dataset": "mes-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "mes_xyz_hci", "start_date": "2004-08-04T00:00:00Z", "stop_date": "2015-04-30T00:00:00Z", "xmlid": "mes_xyz_hci(2)"}, "name": "xyz_hci", "size": "3", "start_date": "2004-08-04T00:00:00Z", "stop_date": "2015-04-30T00:00:00Z", "ucd": "pos.ephem;instr.obsty", "units": "AU", "xmlid": "mes_xyz_hci"}, "mes_xyz_hee": {"__spz_name__": "xyz_hee", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_xyz_hee", "dataset": "mes-orb-all", "display_type": "timeseries", "is_public": "True", "mes_xyz_hee0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_xyz_hee(0)", "dataset": "mes-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "mes_xyz_hee", "start_date": "2004-08-04T00:00:00Z", "stop_date": "2015-04-30T00:00:00Z", "xmlid": "mes_xyz_hee(0)"}, "mes_xyz_hee1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_xyz_hee(1)", "dataset": "mes-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "mes_xyz_hee", "start_date": "2004-08-04T00:00:00Z", "stop_date": "2015-04-30T00:00:00Z", "xmlid": "mes_xyz_hee(1)"}, "mes_xyz_hee2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_xyz_hee(2)", "dataset": "mes-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "mes_xyz_hee", "start_date": "2004-08-04T00:00:00Z", "stop_date": "2015-04-30T00:00:00Z", "xmlid": "mes_xyz_hee(2)"}, "name": "xyz_hee", "size": "3", "start_date": "2004-08-04T00:00:00Z", "stop_date": "2015-04-30T00:00:00Z", "ucd": "pos.ephem;instr.obsty", "units": "AU", "xmlid": "mes_xyz_hee"}, "mes_xyz_heeq": {"__spz_name__": "xyz_heeq", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_xyz_heeq", "dataset": "mes-orb-all", "display_type": "timeseries", "is_public": "True", "mes_xyz_heeq0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_xyz_heeq(0)", "dataset": "mes-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "mes_xyz_heeq", "start_date": "2004-08-04T00:00:00Z", "stop_date": "2015-04-30T00:00:00Z", "xmlid": "mes_xyz_heeq(0)"}, "mes_xyz_heeq1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_xyz_heeq(1)", "dataset": "mes-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "mes_xyz_heeq", "start_date": "2004-08-04T00:00:00Z", "stop_date": "2015-04-30T00:00:00Z", "xmlid": "mes_xyz_heeq(1)"}, "mes_xyz_heeq2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_xyz_heeq(2)", "dataset": "mes-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "mes_xyz_heeq", "start_date": "2004-08-04T00:00:00Z", "stop_date": "2015-04-30T00:00:00Z", "xmlid": "mes_xyz_heeq(2)"}, "name": "xyz_heeq", "size": "3", "start_date": "2004-08-04T00:00:00Z", "stop_date": "2015-04-30T00:00:00Z", "ucd": "pos.ephem;instr.obsty", "units": "AU", "xmlid": "mes_xyz_heeq"}, "name": "full mission", "processing_level": "Calibrated", "sampling": "20M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MESSENGER/ephemeris/mes-orb-all", "start_date": "2004-08-04T00:00:00Z", "stop_date": "2015-04-30T00:00:00Z", "target": "Mercury", "xmlid": "mes-orb-all"}, "mes_orb_earth": {"__spz_name__": "flyby earth", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mes-orb-earth", "att": "auto/mes-orb-earth", "dataSource": "PDS", "desc": "
Sampling: 60S
Provider: PDS", "is_public": "True", "lastModificationDate": "2015-12-22T19:34:09Z", "lastUpdate": "2015-12-22T17:36:48Z", "measurement_type": "Ephemeris", "mes_earth_r": {"__spz_name__": "distance messenger-earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_earth_r", "dataset": "mes-orb-earth", "is_public": "True", "name": "distance messenger-earth", "start_date": "2005-07-19T00:00:00Z", "stop_date": "2005-08-17T23:59:00Z", "ucd": "pos.ephem", "units": "Re", "xmlid": "mes_earth_r"}, "mes_xyz_earth": {"__spz_name__": "xyz_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_xyz_earth", "dataset": "mes-orb-earth", "description": "MESSENGER trajectory in GSE coordinates", "display_type": "timeseries", "is_public": "True", "mes_xyz_earth0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_xyz_earth(0)", "dataset": "mes-orb-earth", "index1": "0", "is_public": "True", "name": "x", "parameter": "mes_xyz_earth", "start_date": "2005-07-19T00:00:00Z", "stop_date": "2005-08-17T23:59:00Z", "xmlid": "mes_xyz_earth(0)"}, "mes_xyz_earth1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_xyz_earth(1)", "dataset": "mes-orb-earth", "index1": "1", "is_public": "True", "name": "y", "parameter": "mes_xyz_earth", "start_date": "2005-07-19T00:00:00Z", "stop_date": "2005-08-17T23:59:00Z", "xmlid": "mes_xyz_earth(1)"}, "mes_xyz_earth2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_xyz_earth(2)", "dataset": "mes-orb-earth", "index1": "2", "is_public": "True", "name": "z", "parameter": "mes_xyz_earth", "start_date": "2005-07-19T00:00:00Z", "stop_date": "2005-08-17T23:59:00Z", "xmlid": "mes_xyz_earth(2)"}, "name": "xyz_gse", "size": "3", "start_date": "2005-07-19T00:00:00Z", "stop_date": "2005-08-17T23:59:00Z", "ucd": "pos.ephem;instr.obsty", "units": "Re", "xmlid": "mes_xyz_earth"}, "mes_xyz_earth_gsm": {"__spz_name__": "xyz_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_xyz_earth_gsm", "dataset": "mes-orb-earth", "description": "MESSENGER trajectory in GSM coordinates", "display_type": "timeseries", "is_public": "True", "mes_xyz_earth_gsm0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_xyz_earth_gsm(0)", "dataset": "mes-orb-earth", "index1": "0", "is_public": "True", "name": "x", "parameter": "mes_xyz_earth_gsm", "start_date": "2005-07-19T00:00:00Z", "stop_date": "2005-08-17T23:59:00Z", "xmlid": "mes_xyz_earth_gsm(0)"}, "mes_xyz_earth_gsm1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_xyz_earth_gsm(1)", "dataset": "mes-orb-earth", "index1": "1", "is_public": "True", "name": "y", "parameter": "mes_xyz_earth_gsm", "start_date": "2005-07-19T00:00:00Z", "stop_date": "2005-08-17T23:59:00Z", "xmlid": "mes_xyz_earth_gsm(1)"}, "mes_xyz_earth_gsm2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_xyz_earth_gsm(2)", "dataset": "mes-orb-earth", "index1": "2", "is_public": "True", "name": "z", "parameter": "mes_xyz_earth_gsm", "start_date": "2005-07-19T00:00:00Z", "stop_date": "2005-08-17T23:59:00Z", "xmlid": "mes_xyz_earth_gsm(2)"}, "name": "xyz_gsm", "size": "3", "start_date": "2005-07-19T00:00:00Z", "stop_date": "2005-08-17T23:59:00Z", "ucd": "pos.ephem;instr.obsty", "units": "Re", "xmlid": "mes_xyz_earth_gsm"}, "name": "flyby earth", "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MESSENGER/ephemeris/mes-orb-earth", "start_date": "2005-07-19T00:00:00Z", "stop_date": "2005-08-17T23:59:00Z", "target": "Earth", "xmlid": "mes-orb-earth"}, "mes_orb_flyby1": {"__spz_name__": "flyby mercury 1", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mes-orb-flyby1", "att": "auto/mes-orb-flyby1", "dataSource": "PDS", "desc": "
Sampling: 60S
Provider: PDS", "is_public": "True", "lastModificationDate": "2015-12-22T19:34:35Z", "lastUpdate": "2015-12-22T17:50:09Z", "measurement_type": "Ephemeris", "mes_mercury1_r": {"__spz_name__": "distance mess-mercury", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_mercury1_r", "dataset": "mes-orb-flyby1", "is_public": "True", "name": "distance mess-mercury", "start_date": "2007-12-31T00:00:00Z", "stop_date": "2008-01-29T23:59:00Z", "ucd": "pos.ephem;instr.obsty", "units": "Rm", "xmlid": "mes_mercury1_r"}, "mes_xyz_flyby1msm": {"__spz_name__": "xyz_msm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_xyz_flyby1msm", "dataset": "mes-orb-flyby1", "description": "MESSENGER trajectory in MSM coordinates", "display_type": "timeseries", "is_public": "True", "mes_xyz_flyby1msm0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_xyz_flyby1msm(0)", "dataset": "mes-orb-flyby1", "index1": "0", "is_public": "True", "name": "x", "parameter": "mes_xyz_flyby1msm", "start_date": "2007-12-31T00:00:00Z", "stop_date": "2008-01-29T23:59:00Z", "xmlid": "mes_xyz_flyby1msm(0)"}, "mes_xyz_flyby1msm1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_xyz_flyby1msm(1)", "dataset": "mes-orb-flyby1", "index1": "1", "is_public": "True", "name": "y", "parameter": "mes_xyz_flyby1msm", "start_date": "2007-12-31T00:00:00Z", "stop_date": "2008-01-29T23:59:00Z", "xmlid": "mes_xyz_flyby1msm(1)"}, "mes_xyz_flyby1msm2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_xyz_flyby1msm(2)", "dataset": "mes-orb-flyby1", "index1": "2", "is_public": "True", "name": "z", "parameter": "mes_xyz_flyby1msm", "start_date": "2007-12-31T00:00:00Z", "stop_date": "2008-01-29T23:59:00Z", "xmlid": "mes_xyz_flyby1msm(2)"}, "name": "xyz_msm", "size": "3", "start_date": "2007-12-31T00:00:00Z", "stop_date": "2008-01-29T23:59:00Z", "ucd": "pos.ephem;instr.obsty", "units": "Rm", "xmlid": "mes_xyz_flyby1msm"}, "mes_xyz_flyby1mso": {"__spz_name__": "xyz_mso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_xyz_flyby1mso", "dataset": "mes-orb-flyby1", "description": "MESSENGER trajectory in MSO coordinates", "display_type": "timeseries", "is_public": "True", "mes_xyz_flyby1mso0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_xyz_flyby1mso(0)", "dataset": "mes-orb-flyby1", "index1": "0", "is_public": "True", "name": "x", "parameter": "mes_xyz_flyby1mso", "start_date": "2007-12-31T00:00:00Z", "stop_date": "2008-01-29T23:59:00Z", "xmlid": "mes_xyz_flyby1mso(0)"}, "mes_xyz_flyby1mso1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_xyz_flyby1mso(1)", "dataset": "mes-orb-flyby1", "index1": "1", "is_public": "True", "name": "y", "parameter": "mes_xyz_flyby1mso", "start_date": "2007-12-31T00:00:00Z", "stop_date": "2008-01-29T23:59:00Z", "xmlid": "mes_xyz_flyby1mso(1)"}, "mes_xyz_flyby1mso2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_xyz_flyby1mso(2)", "dataset": "mes-orb-flyby1", "index1": "2", "is_public": "True", "name": "z", "parameter": "mes_xyz_flyby1mso", "start_date": "2007-12-31T00:00:00Z", "stop_date": "2008-01-29T23:59:00Z", "xmlid": "mes_xyz_flyby1mso(2)"}, "name": "xyz_mso", "size": "3", "start_date": "2007-12-31T00:00:00Z", "stop_date": "2008-01-29T23:59:00Z", "ucd": "pos.ephem;instr.obsty", "units": "Rm", "xmlid": "mes_xyz_flyby1mso"}, "name": "flyby mercury 1", "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MESSENGER/ephemeris/mes-orb-flyby1", "start_date": "2007-12-31T00:00:00Z", "stop_date": "2008-01-29T23:59:00Z", "target": "Mercury", "xmlid": "mes-orb-flyby1"}, "mes_orb_flyby2": {"__spz_name__": "flyby mercury 2", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mes-orb-flyby2", "att": "auto/mes-orb-flyby2", "dataSource": "PDS", "desc": "
Sampling: 60S
Provider: PDS", "is_public": "True", "lastModificationDate": "2015-12-22T19:34:56Z", "lastUpdate": "2015-12-22T17:51:03Z", "measurement_type": "Ephemeris", "mes_mercury2_r": {"__spz_name__": "distance mess-mercury", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_mercury2_r", "dataset": "mes-orb-flyby2", "is_public": "True", "name": "distance mess-mercury", "start_date": "2008-09-22T00:00:00Z", "stop_date": "2008-10-21T23:59:00Z", "ucd": "pos.ephem;instr.obsty", "units": "Rm", "xmlid": "mes_mercury2_r"}, "mes_xyz_flyby2msm": {"__spz_name__": "xyz_msm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_xyz_flyby2msm", "dataset": "mes-orb-flyby2", "description": "MESSENGER trajectory in MBF coordinates", "display_type": "timeseries", "is_public": "True", "mes_xyz_flyby2msm0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_xyz_flyby2msm(0)", "dataset": "mes-orb-flyby2", "index1": "0", "is_public": "True", "name": "x", "parameter": "mes_xyz_flyby2msm", "start_date": "2008-09-22T00:00:00Z", "stop_date": "2008-10-21T23:59:00Z", "xmlid": "mes_xyz_flyby2msm(0)"}, "mes_xyz_flyby2msm1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_xyz_flyby2msm(1)", "dataset": "mes-orb-flyby2", "index1": "1", "is_public": "True", "name": "y", "parameter": "mes_xyz_flyby2msm", "start_date": "2008-09-22T00:00:00Z", "stop_date": "2008-10-21T23:59:00Z", "xmlid": "mes_xyz_flyby2msm(1)"}, "mes_xyz_flyby2msm2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_xyz_flyby2msm(2)", "dataset": "mes-orb-flyby2", "index1": "2", "is_public": "True", "name": "z", "parameter": "mes_xyz_flyby2msm", "start_date": "2008-09-22T00:00:00Z", "stop_date": "2008-10-21T23:59:00Z", "xmlid": "mes_xyz_flyby2msm(2)"}, "name": "xyz_msm", "size": "3", "start_date": "2008-09-22T00:00:00Z", "stop_date": "2008-10-21T23:59:00Z", "ucd": "pos.ephem;instr.obsty", "units": "Rm", "xmlid": "mes_xyz_flyby2msm"}, "mes_xyz_flyby2mso": {"__spz_name__": "xyz_mso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_xyz_flyby2mso", "dataset": "mes-orb-flyby2", "description": "MESSENGER trajectory in MSO coordinates", "display_type": "timeseries", "is_public": "True", "mes_xyz_flyby2mso0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_xyz_flyby2mso(0)", "dataset": "mes-orb-flyby2", "index1": "0", "is_public": "True", "name": "x", "parameter": "mes_xyz_flyby2mso", "start_date": "2008-09-22T00:00:00Z", "stop_date": "2008-10-21T23:59:00Z", "xmlid": "mes_xyz_flyby2mso(0)"}, "mes_xyz_flyby2mso1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_xyz_flyby2mso(1)", "dataset": "mes-orb-flyby2", "index1": "1", "is_public": "True", "name": "y", "parameter": "mes_xyz_flyby2mso", "start_date": "2008-09-22T00:00:00Z", "stop_date": "2008-10-21T23:59:00Z", "xmlid": "mes_xyz_flyby2mso(1)"}, "mes_xyz_flyby2mso2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_xyz_flyby2mso(2)", "dataset": "mes-orb-flyby2", "index1": "2", "is_public": "True", "name": "z", "parameter": "mes_xyz_flyby2mso", "start_date": "2008-09-22T00:00:00Z", "stop_date": "2008-10-21T23:59:00Z", "xmlid": "mes_xyz_flyby2mso(2)"}, "name": "xyz_mso", "size": "3", "start_date": "2008-09-22T00:00:00Z", "stop_date": "2008-10-21T23:59:00Z", "ucd": "pos.ephem;instr.obsty", "units": "Rm", "xmlid": "mes_xyz_flyby2mso"}, "name": "flyby mercury 2", "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MESSENGER/ephemeris/mes-orb-flyby2", "start_date": "2008-09-22T00:00:00Z", "stop_date": "2008-10-21T23:59:00Z", "target": "Mercury", "xmlid": "mes-orb-flyby2"}, "mes_orb_flyby3": {"__spz_name__": "flyby mercury 3", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mes-orb-flyby3", "att": "auto/mes-orb-flyby3", "dataSource": "PDS", "desc": "
Sampling: 60S
Provider: PDS", "is_public": "True", "lastModificationDate": "2015-12-22T19:35:16Z", "lastUpdate": "2015-12-22T17:51:55Z", "measurement_type": "Ephemeris", "mes_mercury3_r": {"__spz_name__": "distance mess-mercury", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_mercury3_r", "dataset": "mes-orb-flyby3", "is_public": "True", "name": "distance mess-mercury", "start_date": "2009-09-16T00:00:00Z", "stop_date": "2009-10-15T23:59:00Z", "ucd": "pos.ephem;instr.obsty", "units": "Rm", "xmlid": "mes_mercury3_r"}, "mes_xyz_flyby3msm": {"__spz_name__": "xyz_msm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_xyz_flyby3msm", "dataset": "mes-orb-flyby3", "description": "MESSENGER trajectory in MBF coordinates", "display_type": "timeseries", "is_public": "True", "mes_xyz_flyby3msm0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_xyz_flyby3msm(0)", "dataset": "mes-orb-flyby3", "index1": "0", "is_public": "True", "name": "x", "parameter": "mes_xyz_flyby3msm", "start_date": "2009-09-16T00:00:00Z", "stop_date": "2009-10-15T23:59:00Z", "xmlid": "mes_xyz_flyby3msm(0)"}, "mes_xyz_flyby3msm1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_xyz_flyby3msm(1)", "dataset": "mes-orb-flyby3", "index1": "1", "is_public": "True", "name": "y", "parameter": "mes_xyz_flyby3msm", "start_date": "2009-09-16T00:00:00Z", "stop_date": "2009-10-15T23:59:00Z", "xmlid": "mes_xyz_flyby3msm(1)"}, "mes_xyz_flyby3msm2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_xyz_flyby3msm(2)", "dataset": "mes-orb-flyby3", "index1": "2", "is_public": "True", "name": "z", "parameter": "mes_xyz_flyby3msm", "start_date": "2009-09-16T00:00:00Z", "stop_date": "2009-10-15T23:59:00Z", "xmlid": "mes_xyz_flyby3msm(2)"}, "name": "xyz_msm", "size": "3", "start_date": "2009-09-16T00:00:00Z", "stop_date": "2009-10-15T23:59:00Z", "ucd": "pos.ephem;instr.obsty", "units": "Rm", "xmlid": "mes_xyz_flyby3msm"}, "mes_xyz_flyby3mso": {"__spz_name__": "xyz_mso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_xyz_flyby3mso", "dataset": "mes-orb-flyby3", "description": "MESSENGER trajectory in MSO coordinates", "display_type": "timeseries", "is_public": "True", "mes_xyz_flyby3mso0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_xyz_flyby3mso(0)", "dataset": "mes-orb-flyby3", "index1": "0", "is_public": "True", "name": "x", "parameter": "mes_xyz_flyby3mso", "start_date": "2009-09-16T00:00:00Z", "stop_date": "2009-10-15T23:59:00Z", "xmlid": "mes_xyz_flyby3mso(0)"}, "mes_xyz_flyby3mso1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_xyz_flyby3mso(1)", "dataset": "mes-orb-flyby3", "index1": "1", "is_public": "True", "name": "y", "parameter": "mes_xyz_flyby3mso", "start_date": "2009-09-16T00:00:00Z", "stop_date": "2009-10-15T23:59:00Z", "xmlid": "mes_xyz_flyby3mso(1)"}, "mes_xyz_flyby3mso2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_xyz_flyby3mso(2)", "dataset": "mes-orb-flyby3", "index1": "2", "is_public": "True", "name": "z", "parameter": "mes_xyz_flyby3mso", "start_date": "2009-09-16T00:00:00Z", "stop_date": "2009-10-15T23:59:00Z", "xmlid": "mes_xyz_flyby3mso(2)"}, "name": "xyz_mso", "size": "3", "start_date": "2009-09-16T00:00:00Z", "stop_date": "2009-10-15T23:59:00Z", "ucd": "pos.ephem;instr.obsty", "units": "Rm", "xmlid": "mes_xyz_flyby3mso"}, "name": "flyby mercury 3", "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MESSENGER/ephemeris/mes-orb-flyby3", "start_date": "2009-09-16T00:00:00Z", "stop_date": "2009-10-15T23:59:00Z", "target": "Mercury", "xmlid": "mes-orb-flyby3"}, "mes_orb_orb": {"__spz_name__": "orbit mercury", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mes-orb-orb", "att": "auto/mes-orb-orb", "dataSource": "PDS", "desc": "
Sampling: 60S
Provider: PDS", "is_public": "True", "lastModificationDate": "2016-04-05T10:54:45Z", "lastUpdate": "2016-04-04T18:53:40Z", "measurement_type": "Ephemeris", "mes_mercury_r": {"__spz_name__": "distance mess-mercury", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_mercury_r", "dataset": "mes-orb-orb", "is_public": "True", "name": "distance mess-mercury", "start_date": "2011-03-04T00:00:00Z", "stop_date": "2015-04-29T23:59:00Z", "ucd": "pos.ephem;instr.obsty", "units": "Rm", "xmlid": "mes_mercury_r"}, "mes_orb_num": {"__spz_name__": "mess_orbit_num", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_orb_num", "dataset": "mes-orb-orb", "display_type": "timeseries", "is_public": "True", "name": "mess_orbit_num", "start_date": "2011-03-04T00:00:00Z", "stop_date": "2015-04-29T23:59:00Z", "xmlid": "mes_orb_num"}, "mes_xyz_orbmsm": {"__spz_name__": "xyz_msm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_xyz_orbmsm", "dataset": "mes-orb-orb", "description": "MESSENGER trajectory in MSM coordinates", "display_type": "timeseries", "is_public": "True", "mes_xyz_orbmsm0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_xyz_orbmsm(0)", "dataset": "mes-orb-orb", "index1": "0", "is_public": "True", "name": "x", "parameter": "mes_xyz_orbmsm", "start_date": "2011-03-04T00:00:00Z", "stop_date": "2015-04-29T23:59:00Z", "xmlid": "mes_xyz_orbmsm(0)"}, "mes_xyz_orbmsm1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_xyz_orbmsm(1)", "dataset": "mes-orb-orb", "index1": "1", "is_public": "True", "name": "y", "parameter": "mes_xyz_orbmsm", "start_date": "2011-03-04T00:00:00Z", "stop_date": "2015-04-29T23:59:00Z", "xmlid": "mes_xyz_orbmsm(1)"}, "mes_xyz_orbmsm2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_xyz_orbmsm(2)", "dataset": "mes-orb-orb", "index1": "2", "is_public": "True", "name": "z", "parameter": "mes_xyz_orbmsm", "start_date": "2011-03-04T00:00:00Z", "stop_date": "2015-04-29T23:59:00Z", "xmlid": "mes_xyz_orbmsm(2)"}, "name": "xyz_msm", "size": "3", "start_date": "2011-03-04T00:00:00Z", "stop_date": "2015-04-29T23:59:00Z", "ucd": "pos.ephem;instr.obsty", "units": "Rme", "xmlid": "mes_xyz_orbmsm"}, "mes_xyz_orbmso": {"__spz_name__": "xyz_mso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_xyz_orbmso", "dataset": "mes-orb-orb", "description": "MESSENGER trajectory in MSO coordinates", "display_type": "timeseries", "is_public": "True", "mes_xyz_orbmso0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_xyz_orbmso(0)", "dataset": "mes-orb-orb", "index1": "0", "is_public": "True", "name": "x", "parameter": "mes_xyz_orbmso", "start_date": "2011-03-04T00:00:00Z", "stop_date": "2015-04-29T23:59:00Z", "xmlid": "mes_xyz_orbmso(0)"}, "mes_xyz_orbmso1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_xyz_orbmso(1)", "dataset": "mes-orb-orb", "index1": "1", "is_public": "True", "name": "y", "parameter": "mes_xyz_orbmso", "start_date": "2011-03-04T00:00:00Z", "stop_date": "2015-04-29T23:59:00Z", "xmlid": "mes_xyz_orbmso(1)"}, "mes_xyz_orbmso2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_xyz_orbmso(2)", "dataset": "mes-orb-orb", "index1": "2", "is_public": "True", "name": "z", "parameter": "mes_xyz_orbmso", "start_date": "2011-03-04T00:00:00Z", "stop_date": "2015-04-29T23:59:00Z", "xmlid": "mes_xyz_orbmso(2)"}, "name": "xyz_mso", "size": "3", "start_date": "2011-03-04T00:00:00Z", "stop_date": "2015-04-29T23:59:00Z", "ucd": "pos.ephem;instr.obsty", "units": "Rme", "xmlid": "mes_xyz_orbmso"}, "name": "orbit mercury", "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MESSENGER/ephemeris/mes-orb-orb", "start_date": "2011-03-04T00:00:00Z", "stop_date": "2015-04-29T23:59:00Z", "target": "Mercury", "xmlid": "mes-orb-orb"}, "mes_orb_venus": {"__spz_name__": "flyby venus 1", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mes-orb-venus", "att": "auto/mes-orb-venus", "dataSource": "PDS", "desc": "
Sampling: 60S
Provider: PDS", "is_public": "True", "lastModificationDate": "2015-12-22T19:33:26Z", "lastUpdate": "2015-12-22T17:43:04Z", "measurement_type": "Ephemeris", "mes_venus1_r": {"__spz_name__": "distance messenger-venus", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_venus1_r", "dataset": "mes-orb-venus", "is_public": "True", "name": "distance messenger-venus", "start_date": "2006-10-10T00:00:00Z", "stop_date": "2006-11-08T23:59:00Z", "ucd": "pos.ephem;instr.obsty", "units": "Rv", "xmlid": "mes_venus1_r"}, "mes_xyz_venus": {"__spz_name__": "xyz_vso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_xyz_venus", "dataset": "mes-orb-venus", "description": "MESSENGER trajectory in VSO coordinates", "display_type": "timeseries", "is_public": "True", "mes_xyz_venus0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_xyz_venus(0)", "dataset": "mes-orb-venus", "index1": "0", "is_public": "True", "name": "x", "parameter": "mes_xyz_venus", "start_date": "2006-10-10T00:00:00Z", "stop_date": "2006-11-08T23:59:00Z", "xmlid": "mes_xyz_venus(0)"}, "mes_xyz_venus1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_xyz_venus(1)", "dataset": "mes-orb-venus", "index1": "1", "is_public": "True", "name": "y", "parameter": "mes_xyz_venus", "start_date": "2006-10-10T00:00:00Z", "stop_date": "2006-11-08T23:59:00Z", "xmlid": "mes_xyz_venus(1)"}, "mes_xyz_venus2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_xyz_venus(2)", "dataset": "mes-orb-venus", "index1": "2", "is_public": "True", "name": "z", "parameter": "mes_xyz_venus", "start_date": "2006-10-10T00:00:00Z", "stop_date": "2006-11-08T23:59:00Z", "xmlid": "mes_xyz_venus(2)"}, "name": "xyz_vso", "size": "3", "start_date": "2006-10-10T00:00:00Z", "stop_date": "2006-11-08T23:59:00Z", "ucd": "pos.ephem;instr.obsty", "units": "Rv", "xmlid": "mes_xyz_venus"}, "name": "flyby venus 1", "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MESSENGER/ephemeris/mes-orb-venus", "start_date": "2006-10-10T00:00:00Z", "stop_date": "2006-11-08T23:59:00Z", "target": "Venus", "xmlid": "mes-orb-venus"}, "mes_orb_venus2": {"__spz_name__": "flyby venus 2", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mes-orb-venus2", "att": "auto/mes-orb-venus2", "dataSource": "PDS", "desc": "
Sampling: 60S
Provider: PDS", "is_public": "True", "lastModificationDate": "2015-12-22T19:33:47Z", "lastUpdate": "2015-12-22T17:44:53Z", "measurement_type": "Ephemeris", "mes_venus2_r": {"__spz_name__": "distance messenger-venus", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_venus2_r", "dataset": "mes-orb-venus2", "is_public": "True", "name": "distance messenger-venus", "start_date": "2007-05-23T00:00:00Z", "stop_date": "2007-06-21T23:59:00Z", "ucd": "pos.ephem;instr.obsty", "units": "Rv", "xmlid": "mes_venus2_r"}, "mes_xyz_venus2": {"__spz_name__": "xyz_vso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_xyz_venus2", "dataset": "mes-orb-venus2", "description": "MESSENGER trajectory in VSO coordinates", "display_type": "timeseries", "is_public": "True", "mes_xyz_venus20": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_xyz_venus2(0)", "dataset": "mes-orb-venus2", "index1": "0", "is_public": "True", "name": "x", "parameter": "mes_xyz_venus2", "start_date": "2007-05-23T00:00:00Z", "stop_date": "2007-06-21T23:59:00Z", "xmlid": "mes_xyz_venus2(0)"}, "mes_xyz_venus21": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_xyz_venus2(1)", "dataset": "mes-orb-venus2", "index1": "1", "is_public": "True", "name": "y", "parameter": "mes_xyz_venus2", "start_date": "2007-05-23T00:00:00Z", "stop_date": "2007-06-21T23:59:00Z", "xmlid": "mes_xyz_venus2(1)"}, "mes_xyz_venus22": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_xyz_venus2(2)", "dataset": "mes-orb-venus2", "index1": "2", "is_public": "True", "name": "z", "parameter": "mes_xyz_venus2", "start_date": "2007-05-23T00:00:00Z", "stop_date": "2007-06-21T23:59:00Z", "xmlid": "mes_xyz_venus2(2)"}, "name": "xyz_vso", "size": "3", "start_date": "2007-05-23T00:00:00Z", "stop_date": "2007-06-21T23:59:00Z", "ucd": "pos.ephem;instr.obsty", "units": "Rv", "xmlid": "mes_xyz_venus2"}, "name": "flyby venus 2", "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MESSENGER/ephemeris/mes-orb-venus2", "start_date": "2007-05-23T00:00:00Z", "stop_date": "2007-06-21T23:59:00Z", "target": "Venus", "xmlid": "mes-orb-venus2"}, "name": "Ephemeris", "xmlid": "MESSENGER_ephemeris"}, "FIPS": {"__spz_name__": "FIPS", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "MESSENGER_fips", "att": "auto/MESSENGER_fips", "desc": "Energetic Particle and Plasma Spectrometer (EPPS) : Fast Imaging Plasma Spectrometer
MassSpectrometer", "is_public": "True", "mes_fips_scan": {"__spz_name__": "scan", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mes-fips-scan", "att": "auto/mes-fips-scan", "dataSource": "PDS", "desc": "
Sampling: 9S
Provider: PDS", "is_public": "True", "lastModificationDate": "2016-04-12T18:33:16Z", "lastUpdate": "2016-04-11T21:14:50Z", "measurement_type": "IonComposition", "mes_fips_scanmode": {"__spz_name__": "scan_mode", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_fips_scanmode", "dataset": "mes-fips-scan", "is_public": "True", "name": "scan_mode", "start_date": "2008-08-20T16:03:35Z", "stop_date": "2015-04-30T15:08:18Z", "ucd": "meta.code", "xmlid": "mes_fips_scanmode"}, "mes_fips_scanprot": {"__spz_name__": "proton_flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_fips_scanprot", "dataset": "mes-fips-scan", "display_type": "spectrogram", "is_public": "True", "name": "proton_flux", "start_date": "2008-08-20T16:03:35Z", "stop_date": "2015-04-30T15:08:18Z", "ucd": "phys.flux;phys.atmol.ionStage", "units": "(keV/e)\u207b\u00b9 s\u207b\u00b9 cm\u207b\u00b2 sr\u207b\u00b9", "xmlid": "mes_fips_scanprot"}, "name": "scan", "processing_level": "Calibrated", "sampling": "9S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MESSENGER/FIPS/mes-fips-scan", "start_date": "2008-08-20T16:03:35Z", "stop_date": "2015-04-30T15:08:18Z", "target": "Mercury", "xmlid": "mes-fips-scan"}, "mess_fips_espec": {"__spz_name__": "espec", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mess-fips-espec", "att": "auto/mess-fips-espec", "dataSource": "PDS", "desc": "Energy Spectra
MinSampling: 7S; MaxSampling: 67S
Provider: PDS", "is_public": "True", "lastModificationDate": "2019-08-23T17:41:50Z", "lastUpdate": "2019-08-23T17:40:09Z", "maxSampling": "67S", "measurement_type": "IonComposition", "mes_fips_spec_h": {"__spz_name__": "eflux h+", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_fips_spec_h", "dataset": "mess-fips-espec", "display_type": "spectrogram", "is_public": "True", "name": "eflux h+", "start_date": "2011-03-23T23:49:00Z", "stop_date": "2015-04-30T14:43:27Z", "units": "(keV/e)\u207b\u00b9 s\u207b\u00b9 cm\u207b\u00b2 sr\u207b\u00b9", "xmlid": "mes_fips_spec_h"}, "mes_fips_spec_he": {"__spz_name__": "eflux he+", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_fips_spec_he", "dataset": "mess-fips-espec", "display_type": "spectrogram", "is_public": "True", "name": "eflux he+", "start_date": "2011-03-23T23:49:00Z", "stop_date": "2015-04-30T14:43:27Z", "units": "(keV/e)\u207b\u00b9 s\u207b\u00b9 cm\u207b\u00b2 sr\u207b\u00b9", "xmlid": "mes_fips_spec_he"}, "mes_fips_spec_he2": {"__spz_name__": "eflux he2+", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_fips_spec_he2", "dataset": "mess-fips-espec", "display_type": "spectrogram", "is_public": "True", "name": "eflux he2+", "start_date": "2011-03-23T23:49:00Z", "stop_date": "2015-04-30T14:43:27Z", "units": "(keV/e)\u207b\u00b9 s\u207b\u00b9 cm\u207b\u00b2 sr\u207b\u00b9", "xmlid": "mes_fips_spec_he2"}, "mes_fips_spec_na": {"__spz_name__": "eflux na+", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_fips_spec_na", "dataset": "mess-fips-espec", "display_type": "spectrogram", "is_public": "True", "name": "eflux na+", "start_date": "2011-03-23T23:49:00Z", "stop_date": "2015-04-30T14:43:27Z", "units": "(keV/e)\u207b\u00b9 s\u207b\u00b9 cm\u207b\u00b2 sr\u207b\u00b9", "xmlid": "mes_fips_spec_na"}, "mes_fips_spec_o": {"__spz_name__": "eflux o+", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_fips_spec_o", "dataset": "mess-fips-espec", "display_type": "spectrogram", "is_public": "True", "name": "eflux o+", "start_date": "2011-03-23T23:49:00Z", "stop_date": "2015-04-30T14:43:27Z", "units": "(keV/e)\u207b\u00b9 s\u207b\u00b9 cm\u207b\u00b2 sr\u207b\u00b9", "xmlid": "mes_fips_spec_o"}, "name": "espec", "processing_level": "Calibrated", "sampling": "7S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MESSENGER/FIPS/mess-fips-espec", "start_date": "2011-03-23T23:49:00Z", "stop_date": "2015-04-30T14:43:27Z", "target": "Mercury", "xmlid": "mess-fips-espec"}, "mess_fips_nobs": {"__spz_name__": "nobs", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mess-fips-nobs", "att": "auto/mess-fips-nobs", "dataSource": "PDS", "desc": "Ion Observed Densities
Sampling: 60S
Provider: PDS", "is_public": "True", "lastModificationDate": "2019-08-01T09:19:58Z", "lastUpdate": "2019-08-01T09:14:48Z", "measurement_type": "IonComposition", "mes_fips_n_h": {"__spz_name__": "density h+", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_fips_n_h", "dataset": "mess-fips-nobs", "is_public": "True", "name": "density h+", "start_date": "2011-03-23T15:20:57Z", "stop_date": "2015-04-30T15:08:18Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm\u207b\u00b3", "xmlid": "mes_fips_n_h"}, "mes_fips_n_he": {"__spz_name__": "density he+", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_fips_n_he", "dataset": "mess-fips-nobs", "is_public": "True", "name": "density he+", "start_date": "2011-03-23T15:20:57Z", "stop_date": "2015-04-30T15:08:18Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm\u207b\u00b3", "xmlid": "mes_fips_n_he"}, "mes_fips_n_he2": {"__spz_name__": "density he2+", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_fips_n_he2", "dataset": "mess-fips-nobs", "is_public": "True", "name": "density he2+", "start_date": "2011-03-23T15:20:57Z", "stop_date": "2015-04-30T15:08:18Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm\u207b\u00b3", "xmlid": "mes_fips_n_he2"}, "mes_fips_n_na": {"__spz_name__": "density na+", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_fips_n_na", "dataset": "mess-fips-nobs", "is_public": "True", "name": "density na+", "start_date": "2011-03-23T15:20:57Z", "stop_date": "2015-04-30T15:08:18Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm\u207b\u00b3", "xmlid": "mes_fips_n_na"}, "mes_fips_n_o": {"__spz_name__": "density o+", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_fips_n_o", "dataset": "mess-fips-nobs", "is_public": "True", "name": "density o+", "start_date": "2011-03-23T15:20:57Z", "stop_date": "2015-04-30T15:08:18Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm\u207b\u00b3", "xmlid": "mes_fips_n_o"}, "mes_fips_n_qual": {"__spz_name__": "quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_fips_n_qual", "dataset": "mess-fips-nobs", "is_public": "True", "name": "quality", "start_date": "2011-03-23T15:20:57Z", "stop_date": "2015-04-30T15:08:18Z", "xmlid": "mes_fips_n_qual"}, "name": "nobs", "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MESSENGER/FIPS/mess-fips-nobs", "start_date": "2011-03-23T15:20:57Z", "stop_date": "2015-04-30T15:08:18Z", "target": "Mercury", "xmlid": "mess-fips-nobs"}, "mess_fips_ntp": {"__spz_name__": "ntp", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mess-fips-ntp", "att": "auto/mess-fips-ntp", "dataSource": "PDS", "desc": "Ion Moments
Sampling: 60S
Provider: PDS", "is_public": "True", "lastModificationDate": "2019-07-29T11:44:17Z", "lastUpdate": "2019-07-26T16:14:09Z", "measurement_type": "IonComposition", "mes_fips_n": {"__spz_name__": "density h+", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_fips_n", "dataset": "mess-fips-ntp", "is_public": "True", "name": "density h+", "start_date": "2011-03-26T01:35:34Z", "stop_date": "2015-04-30T12:18:44Z", "ucd": "phys.flux;phys.atmol.ionStage", "units": "cm\u207b\u00b3", "xmlid": "mes_fips_n"}, "mes_fips_n_err": {"__spz_name__": "density h+ : err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_fips_n_err", "dataset": "mess-fips-ntp", "is_public": "True", "name": "density h+ : err", "start_date": "2011-03-26T01:35:34Z", "stop_date": "2015-04-30T12:18:44Z", "units": "cm\u207b\u00b3", "xmlid": "mes_fips_n_err"}, "mes_fips_p": {"__spz_name__": "pressure h+", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_fips_p", "dataset": "mess-fips-ntp", "is_public": "True", "name": "pressure h+", "start_date": "2011-03-26T01:35:34Z", "stop_date": "2015-04-30T12:18:44Z", "units": "nPa", "xmlid": "mes_fips_p"}, "mes_fips_p_err": {"__spz_name__": "pressure h+ : err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_fips_p_err", "dataset": "mess-fips-ntp", "is_public": "True", "name": "pressure h+ : err", "start_date": "2011-03-26T01:35:34Z", "stop_date": "2015-04-30T12:18:44Z", "units": "nPa", "xmlid": "mes_fips_p_err"}, "mes_fips_qual": {"__spz_name__": "quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_fips_qual", "dataset": "mess-fips-ntp", "is_public": "True", "name": "quality", "start_date": "2011-03-26T01:35:34Z", "stop_date": "2015-04-30T12:18:44Z", "xmlid": "mes_fips_qual"}, "mes_fips_t": {"__spz_name__": "temperature h+", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_fips_t", "dataset": "mess-fips-ntp", "is_public": "True", "name": "temperature h+", "start_date": "2011-03-26T01:35:34Z", "stop_date": "2015-04-30T12:18:44Z", "units": "MK", "xmlid": "mes_fips_t"}, "mes_fips_t_err": {"__spz_name__": "temperature h+ : err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_fips_t_err", "dataset": "mess-fips-ntp", "is_public": "True", "name": "temperature h+ : err", "start_date": "2011-03-26T01:35:34Z", "stop_date": "2015-04-30T12:18:44Z", "units": "MK", "xmlid": "mes_fips_t_err"}, "name": "ntp", "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MESSENGER/FIPS/mess-fips-ntp", "start_date": "2011-03-26T01:35:34Z", "stop_date": "2015-04-30T12:18:44Z", "target": "Mercury", "xmlid": "mess-fips-ntp"}, "name": "FIPS", "xmlid": "MESSENGER_fips"}, "MAG": {"__spz_name__": "MAG", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "MESSENGER_mag", "att": "auto/MESSENGER_mag", "cruise": {"__spz_name__": "cruise", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "mes-mag-cruise", "is_public": "True", "mes_mag_heliosphere01": {"__spz_name__": "1 sec", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mes-mag-heliosphere01", "att": "auto/mes-mag-heliosphere01", "dataSource": "PDS", "desc": "Magnetic Field : cruise : 1 sec average
Sampling: 1S
Provider: PDS", "is_public": "True", "lastModificationDate": "2015-04-29T12:00:39Z", "lastUpdate": "2015-04-29T11:59:20Z", "measurement_type": "MagneticField", "mes_b_rtn1s": {"__spz_name__": "b_rtn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_b_rtn1s", "dataset": "mes-mag-heliosphere01", "description": "Magnetic field vector components in RTN coordinates", "display_type": "timeseries", "is_public": "True", "mes_b_rtn1s0": {"__spz_name__": "br", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_b_rtn1s(0)", "dataset": "mes-mag-heliosphere01", "index1": "0", "is_public": "True", "name": "br", "parameter": "mes_b_rtn1s", "start_date": "2004-08-12T17:44:08Z", "stop_date": "2014-03-18T00:00:00Z", "xmlid": "mes_b_rtn1s(0)"}, "mes_b_rtn1s1": {"__spz_name__": "bt", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_b_rtn1s(1)", "dataset": "mes-mag-heliosphere01", "index1": "1", "is_public": "True", "name": "bt", "parameter": "mes_b_rtn1s", "start_date": "2004-08-12T17:44:08Z", "stop_date": "2014-03-18T00:00:00Z", "xmlid": "mes_b_rtn1s(1)"}, "mes_b_rtn1s2": {"__spz_name__": "bn", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_b_rtn1s(2)", "dataset": "mes-mag-heliosphere01", "index1": "2", "is_public": "True", "name": "bn", "parameter": "mes_b_rtn1s", "start_date": "2004-08-12T17:44:08Z", "stop_date": "2014-03-18T00:00:00Z", "xmlid": "mes_b_rtn1s(2)"}, "name": "b_rtn", "size": "3", "start_date": "2004-08-12T17:44:08Z", "stop_date": "2014-03-18T00:00:00Z", "ucd": "phys.magField", "units": "nT", "xmlid": "mes_b_rtn1s"}, "mes_b_rtn1s_phi": {"__spz_name__": "phi", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_b_rtn1s_phi", "dataset": "mes-mag-heliosphere01", "description": "Magnetic field phi angle", "display_type": "timeseries", "is_public": "True", "name": "phi", "start_date": "2004-08-12T17:44:08Z", "stop_date": "2014-03-18T00:00:00Z", "ucd": "phys.magField", "units": "degrees", "xmlid": "mes_b_rtn1s_phi"}, "mes_b_rtn1s_theta": {"__spz_name__": "theta", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_b_rtn1s_theta", "dataset": "mes-mag-heliosphere01", "description": "Magnetic field theta angle", "display_type": "timeseries", "is_public": "True", "name": "theta", "start_date": "2004-08-12T17:44:08Z", "stop_date": "2014-03-18T00:00:00Z", "ucd": "phys.magField", "units": "degrees", "xmlid": "mes_b_rtn1s_theta"}, "mes_bmag_rtn1s": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_bmag_rtn1s", "dataset": "mes-mag-heliosphere01", "description": "Scalar magnitude of the magnetic field in nT", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "2004-08-12T17:44:08Z", "stop_date": "2014-03-18T00:00:00Z", "ucd": "phys.magField", "units": "nT", "xmlid": "mes_bmag_rtn1s"}, "name": "1 sec", "processing_level": "Calibrated", "sampling": "1S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MESSENGER/MAG/Heliosphere/mes-mag-heliosphere01", "start_date": "2004-08-12T17:44:08Z", "stop_date": "2014-03-18T00:00:00Z", "target": "Heliosphere", "xmlid": "mes-mag-heliosphere01"}, "mes_mag_heliosphere60": {"__spz_name__": "60 sec", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mes-mag-heliosphere60", "att": "auto/mes-mag-heliosphere60", "dataSource": "PDS", "desc": "Magnetic Field : cruise : 1 min average
Sampling: 60S
Provider: PDS", "is_public": "True", "lastModificationDate": "2015-04-29T11:44:23Z", "lastUpdate": "2015-04-29T11:44:11Z", "measurement_type": "MagneticField", "mes_b_rtn1m": {"__spz_name__": "b_rtn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_b_rtn1m", "dataset": "mes-mag-heliosphere60", "description": "Magnetic field vector components in RTN coordinates", "display_type": "timeseries", "is_public": "True", "mes_b_rtn1m0": {"__spz_name__": "br", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_b_rtn1m(0)", "dataset": "mes-mag-heliosphere60", "index1": "0", "is_public": "True", "name": "br", "parameter": "mes_b_rtn1m", "start_date": "2004-08-12T17:44:00Z", "stop_date": "2014-03-18T00:00:00Z", "xmlid": "mes_b_rtn1m(0)"}, "mes_b_rtn1m1": {"__spz_name__": "bt", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_b_rtn1m(1)", "dataset": "mes-mag-heliosphere60", "index1": "1", "is_public": "True", "name": "bt", "parameter": "mes_b_rtn1m", "start_date": "2004-08-12T17:44:00Z", "stop_date": "2014-03-18T00:00:00Z", "xmlid": "mes_b_rtn1m(1)"}, "mes_b_rtn1m2": {"__spz_name__": "bn", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_b_rtn1m(2)", "dataset": "mes-mag-heliosphere60", "index1": "2", "is_public": "True", "name": "bn", "parameter": "mes_b_rtn1m", "start_date": "2004-08-12T17:44:00Z", "stop_date": "2014-03-18T00:00:00Z", "xmlid": "mes_b_rtn1m(2)"}, "name": "b_rtn", "size": "3", "start_date": "2004-08-12T17:44:00Z", "stop_date": "2014-03-18T00:00:00Z", "ucd": "phys.magField", "units": "nT", "xmlid": "mes_b_rtn1m"}, "mes_b_rtn1m_phi": {"__spz_name__": "phi", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_b_rtn1m_phi", "dataset": "mes-mag-heliosphere60", "description": "Magnetic field phi angle", "display_type": "timeseries", "is_public": "True", "name": "phi", "start_date": "2004-08-12T17:44:00Z", "stop_date": "2014-03-18T00:00:00Z", "ucd": "phys.magField", "units": "degrees", "xmlid": "mes_b_rtn1m_phi"}, "mes_b_rtn1m_theta": {"__spz_name__": "theta", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_b_rtn1m_theta", "dataset": "mes-mag-heliosphere60", "description": "Magnetic field theta angle", "display_type": "timeseries", "is_public": "True", "name": "theta", "start_date": "2004-08-12T17:44:00Z", "stop_date": "2014-03-18T00:00:00Z", "ucd": "phys.magField", "units": "degrees", "xmlid": "mes_b_rtn1m_theta"}, "mes_bmag_rtn1m": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_bmag_rtn1m", "dataset": "mes-mag-heliosphere60", "description": "Scalar magnitude of the magnetic field in nT", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "2004-08-12T17:44:00Z", "stop_date": "2014-03-18T00:00:00Z", "ucd": "phys.magField", "units": "nT", "xmlid": "mes_bmag_rtn1m"}, "name": "60 sec", "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MESSENGER/MAG/Heliosphere/mes-mag-heliosphere60", "start_date": "2004-08-12T17:44:00Z", "stop_date": "2014-03-18T00:00:00Z", "target": "Heliosphere", "xmlid": "mes-mag-heliosphere60"}, "name": "cruise", "xmlid": "mes-mag-cruise"}, "desc": "Magnetometer
Magnetometer", "is_public": "True", "mes_mag_flyby1": {"__spz_name__": "flyby mercury 1", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mes-mag-flyby1", "att": "auto/mes-mag-flyby1", "dataSource": "PDS", "desc": "
Sampling: 0.05S
Provider: PDS", "is_public": "True", "lastModificationDate": "2012-03-06T21:45:34Z", "lastUpdate": "2012-03-06T21:45:35Z", "measurement_type": "MagneticField", "mes_b_flyby1mbf": {"__spz_name__": "b_mbf", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_b_flyby1mbf", "dataset": "mes-mag-flyby1", "description": "Magnetic field vector components in MBF coordinates", "display_type": "timeseries", "is_public": "True", "mes_b_flyby1mbf0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_b_flyby1mbf(0)", "dataset": "mes-mag-flyby1", "index1": "0", "is_public": "True", "name": "bx", "parameter": "mes_b_flyby1mbf", "start_date": "2008-01-12T00:00:23Z", "stop_date": "2008-01-17T00:01:42Z", "xmlid": "mes_b_flyby1mbf(0)"}, "mes_b_flyby1mbf1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_b_flyby1mbf(1)", "dataset": "mes-mag-flyby1", "index1": "1", "is_public": "True", "name": "by", "parameter": "mes_b_flyby1mbf", "start_date": "2008-01-12T00:00:23Z", "stop_date": "2008-01-17T00:01:42Z", "xmlid": "mes_b_flyby1mbf(1)"}, "mes_b_flyby1mbf2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_b_flyby1mbf(2)", "dataset": "mes-mag-flyby1", "index1": "2", "is_public": "True", "name": "bz", "parameter": "mes_b_flyby1mbf", "start_date": "2008-01-12T00:00:23Z", "stop_date": "2008-01-17T00:01:42Z", "xmlid": "mes_b_flyby1mbf(2)"}, "name": "b_mbf", "size": "3", "start_date": "2008-01-12T00:00:23Z", "stop_date": "2008-01-17T00:01:42Z", "ucd": "phys.magField", "units": "nT", "xmlid": "mes_b_flyby1mbf"}, "mes_b_flyby1mso": {"__spz_name__": "b_mso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_b_flyby1mso", "dataset": "mes-mag-flyby1", "description": "Magnetic field vector components in MSO coordinates", "display_type": "timeseries", "is_public": "True", "mes_b_flyby1mso0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_b_flyby1mso(0)", "dataset": "mes-mag-flyby1", "index1": "0", "is_public": "True", "name": "bx", "parameter": "mes_b_flyby1mso", "start_date": "2008-01-12T00:00:23Z", "stop_date": "2008-01-17T00:01:42Z", "xmlid": "mes_b_flyby1mso(0)"}, "mes_b_flyby1mso1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_b_flyby1mso(1)", "dataset": "mes-mag-flyby1", "index1": "1", "is_public": "True", "name": "by", "parameter": "mes_b_flyby1mso", "start_date": "2008-01-12T00:00:23Z", "stop_date": "2008-01-17T00:01:42Z", "xmlid": "mes_b_flyby1mso(1)"}, "mes_b_flyby1mso2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_b_flyby1mso(2)", "dataset": "mes-mag-flyby1", "index1": "2", "is_public": "True", "name": "bz", "parameter": "mes_b_flyby1mso", "start_date": "2008-01-12T00:00:23Z", "stop_date": "2008-01-17T00:01:42Z", "xmlid": "mes_b_flyby1mso(2)"}, "name": "b_mso", "size": "3", "start_date": "2008-01-12T00:00:23Z", "stop_date": "2008-01-17T00:01:42Z", "ucd": "phys.magField", "units": "nT", "xmlid": "mes_b_flyby1mso"}, "mes_bmag_flyby1": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_bmag_flyby1", "dataset": "mes-mag-flyby1", "description": "Magnitude of the magnetic field in nT", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "2008-01-12T00:00:23Z", "stop_date": "2008-01-17T00:01:42Z", "ucd": "phys.magField", "units": "nT", "xmlid": "mes_bmag_flyby1"}, "name": "flyby mercury 1", "processing_level": "Calibrated", "sampling": "0.05S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MESSENGER/MAG/mes-mag-flyby1", "start_date": "2008-01-12T00:00:23Z", "stop_date": "2008-01-17T00:01:42Z", "target": "Mercury", "xmlid": "mes-mag-flyby1"}, "mes_mag_flyby2": {"__spz_name__": "flyby mercury 2", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mes-mag-flyby2", "att": "auto/mes-mag-flyby2", "dataSource": "PDS", "desc": "
Sampling: 0.05S
Provider: PDS", "is_public": "True", "lastModificationDate": "2012-03-06T21:45:28Z", "lastUpdate": "2012-03-06T21:45:30Z", "measurement_type": "MagneticField", "mes_b_flyby2mbf": {"__spz_name__": "b_mbf", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_b_flyby2mbf", "dataset": "mes-mag-flyby2", "description": "Magnetic field vector components in MBF coordinates", "display_type": "timeseries", "is_public": "True", "mes_b_flyby2mbf0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_b_flyby2mbf(0)", "dataset": "mes-mag-flyby2", "index1": "0", "is_public": "True", "name": "bx", "parameter": "mes_b_flyby2mbf", "start_date": "2008-10-04T00:00:04Z", "stop_date": "2008-10-09T00:00:33Z", "xmlid": "mes_b_flyby2mbf(0)"}, "mes_b_flyby2mbf1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_b_flyby2mbf(1)", "dataset": "mes-mag-flyby2", "index1": "1", "is_public": "True", "name": "by", "parameter": "mes_b_flyby2mbf", "start_date": "2008-10-04T00:00:04Z", "stop_date": "2008-10-09T00:00:33Z", "xmlid": "mes_b_flyby2mbf(1)"}, "mes_b_flyby2mbf2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_b_flyby2mbf(2)", "dataset": "mes-mag-flyby2", "index1": "2", "is_public": "True", "name": "bz", "parameter": "mes_b_flyby2mbf", "start_date": "2008-10-04T00:00:04Z", "stop_date": "2008-10-09T00:00:33Z", "xmlid": "mes_b_flyby2mbf(2)"}, "name": "b_mbf", "size": "3", "start_date": "2008-10-04T00:00:04Z", "stop_date": "2008-10-09T00:00:33Z", "ucd": "phys.magField", "units": "nT", "xmlid": "mes_b_flyby2mbf"}, "mes_b_flyby2mso": {"__spz_name__": "b_mso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_b_flyby2mso", "dataset": "mes-mag-flyby2", "description": "Magnetic field vector components in MSO coordinates", "display_type": "timeseries", "is_public": "True", "mes_b_flyby2mso0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_b_flyby2mso(0)", "dataset": "mes-mag-flyby2", "index1": "0", "is_public": "True", "name": "bx", "parameter": "mes_b_flyby2mso", "start_date": "2008-10-04T00:00:04Z", "stop_date": "2008-10-09T00:00:33Z", "xmlid": "mes_b_flyby2mso(0)"}, "mes_b_flyby2mso1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_b_flyby2mso(1)", "dataset": "mes-mag-flyby2", "index1": "1", "is_public": "True", "name": "by", "parameter": "mes_b_flyby2mso", "start_date": "2008-10-04T00:00:04Z", "stop_date": "2008-10-09T00:00:33Z", "xmlid": "mes_b_flyby2mso(1)"}, "mes_b_flyby2mso2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_b_flyby2mso(2)", "dataset": "mes-mag-flyby2", "index1": "2", "is_public": "True", "name": "bz", "parameter": "mes_b_flyby2mso", "start_date": "2008-10-04T00:00:04Z", "stop_date": "2008-10-09T00:00:33Z", "xmlid": "mes_b_flyby2mso(2)"}, "name": "b_mso", "size": "3", "start_date": "2008-10-04T00:00:04Z", "stop_date": "2008-10-09T00:00:33Z", "ucd": "phys.magField", "units": "nT", "xmlid": "mes_b_flyby2mso"}, "mes_bmag_flyby2": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_bmag_flyby2", "dataset": "mes-mag-flyby2", "description": "Scalar magnitude of the magnetic field in nT", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "2008-10-04T00:00:04Z", "stop_date": "2008-10-09T00:00:33Z", "ucd": "phys.magField", "units": "nT", "xmlid": "mes_bmag_flyby2"}, "name": "flyby mercury 2", "processing_level": "Calibrated", "sampling": "0.05S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MESSENGER/MAG/mes-mag-flyby2", "start_date": "2008-10-04T00:00:04Z", "stop_date": "2008-10-09T00:00:33Z", "target": "Mercury", "xmlid": "mes-mag-flyby2"}, "mes_mag_flyby3": {"__spz_name__": "flyby mercury 3", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mes-mag-flyby3", "att": "auto/mes-mag-flyby3", "dataSource": "PDS", "desc": "
Sampling: 0.05S
Provider: PDS", "is_public": "True", "lastModificationDate": "2012-03-06T21:45:24Z", "lastUpdate": "2012-03-06T21:45:26Z", "measurement_type": "MagneticField", "mes_b_flyby3mbf": {"__spz_name__": "b_mbf", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_b_flyby3mbf", "dataset": "mes-mag-flyby3", "description": "Magnetic field vector components in MBF coordinates", "display_type": "timeseries", "is_public": "True", "mes_b_flyby3mbf0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_b_flyby3mbf(0)", "dataset": "mes-mag-flyby3", "index1": "0", "is_public": "True", "name": "bx", "parameter": "mes_b_flyby3mbf", "start_date": "2009-09-27T00:00:58Z", "stop_date": "2009-10-02T00:01:19Z", "xmlid": "mes_b_flyby3mbf(0)"}, "mes_b_flyby3mbf1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_b_flyby3mbf(1)", "dataset": "mes-mag-flyby3", "index1": "1", "is_public": "True", "name": "by", "parameter": "mes_b_flyby3mbf", "start_date": "2009-09-27T00:00:58Z", "stop_date": "2009-10-02T00:01:19Z", "xmlid": "mes_b_flyby3mbf(1)"}, "mes_b_flyby3mbf2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_b_flyby3mbf(2)", "dataset": "mes-mag-flyby3", "index1": "2", "is_public": "True", "name": "bz", "parameter": "mes_b_flyby3mbf", "start_date": "2009-09-27T00:00:58Z", "stop_date": "2009-10-02T00:01:19Z", "xmlid": "mes_b_flyby3mbf(2)"}, "name": "b_mbf", "size": "3", "start_date": "2009-09-27T00:00:58Z", "stop_date": "2009-10-02T00:01:19Z", "ucd": "phys.magField", "units": "nT", "xmlid": "mes_b_flyby3mbf"}, "mes_b_flyby3mso": {"__spz_name__": "b_mso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_b_flyby3mso", "dataset": "mes-mag-flyby3", "description": "Magnetic field vector components in MSO coordinates", "display_type": "timeseries", "is_public": "True", "mes_b_flyby3mso0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_b_flyby3mso(0)", "dataset": "mes-mag-flyby3", "index1": "0", "is_public": "True", "name": "bx", "parameter": "mes_b_flyby3mso", "start_date": "2009-09-27T00:00:58Z", "stop_date": "2009-10-02T00:01:19Z", "xmlid": "mes_b_flyby3mso(0)"}, "mes_b_flyby3mso1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_b_flyby3mso(1)", "dataset": "mes-mag-flyby3", "index1": "1", "is_public": "True", "name": "by", "parameter": "mes_b_flyby3mso", "start_date": "2009-09-27T00:00:58Z", "stop_date": "2009-10-02T00:01:19Z", "xmlid": "mes_b_flyby3mso(1)"}, "mes_b_flyby3mso2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_b_flyby3mso(2)", "dataset": "mes-mag-flyby3", "index1": "2", "is_public": "True", "name": "bz", "parameter": "mes_b_flyby3mso", "start_date": "2009-09-27T00:00:58Z", "stop_date": "2009-10-02T00:01:19Z", "xmlid": "mes_b_flyby3mso(2)"}, "name": "b_mso", "size": "3", "start_date": "2009-09-27T00:00:58Z", "stop_date": "2009-10-02T00:01:19Z", "ucd": "phys.magField", "units": "nT", "xmlid": "mes_b_flyby3mso"}, "mes_bmag_flyby3": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_bmag_flyby3", "dataset": "mes-mag-flyby3", "description": "Scalar magnitude of the magnetic field in nT", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "2009-09-27T00:00:58Z", "stop_date": "2009-10-02T00:01:19Z", "ucd": "phys.magField", "units": "nT", "xmlid": "mes_bmag_flyby3"}, "name": "flyby mercury 3", "processing_level": "Calibrated", "sampling": "0.05S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MESSENGER/MAG/mes-mag-flyby3", "start_date": "2009-09-27T00:00:58Z", "stop_date": "2009-10-02T00:01:19Z", "target": "Mercury", "xmlid": "mes-mag-flyby3"}, "mes_mag_venus": {"__spz_name__": "flyby venus 2", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mes-mag-venus", "att": "auto/mes-mag-venus", "dataSource": "PDS", "desc": "
Sampling: 0.05S
Provider: PDS", "is_public": "True", "lastModificationDate": "2012-03-06T21:45:31Z", "lastUpdate": "2012-03-06T21:45:32Z", "measurement_type": "MagneticField", "mes_b_venus": {"__spz_name__": "b_vso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_b_venus", "dataset": "mes-mag-venus", "description": "Magnetic field vector components in VSO coordinates", "display_type": "timeseries", "is_public": "True", "mes_b_venus0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_b_venus(0)", "dataset": "mes-mag-venus", "index1": "0", "is_public": "True", "name": "bx", "parameter": "mes_b_venus", "start_date": "2007-06-04T00:01:37Z", "stop_date": "2007-06-07T00:01:29Z", "xmlid": "mes_b_venus(0)"}, "mes_b_venus1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_b_venus(1)", "dataset": "mes-mag-venus", "index1": "1", "is_public": "True", "name": "by", "parameter": "mes_b_venus", "start_date": "2007-06-04T00:01:37Z", "stop_date": "2007-06-07T00:01:29Z", "xmlid": "mes_b_venus(1)"}, "mes_b_venus2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_b_venus(2)", "dataset": "mes-mag-venus", "index1": "2", "is_public": "True", "name": "bz", "parameter": "mes_b_venus", "start_date": "2007-06-04T00:01:37Z", "stop_date": "2007-06-07T00:01:29Z", "xmlid": "mes_b_venus(2)"}, "name": "b_vso", "size": "3", "start_date": "2007-06-04T00:01:37Z", "stop_date": "2007-06-07T00:01:29Z", "ucd": "phys.magField", "units": "nT", "xmlid": "mes_b_venus"}, "mes_bmag_venus": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_bmag_venus", "dataset": "mes-mag-venus", "description": "Scalar magnitude of the magnetic field in nT", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "2007-06-04T00:01:37Z", "stop_date": "2007-06-07T00:01:29Z", "ucd": "phys.magField", "units": "nT", "xmlid": "mes_bmag_venus"}, "name": "flyby venus 2", "processing_level": "Calibrated", "sampling": "0.05S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MESSENGER/MAG/mes-mag-venus", "start_date": "2007-06-04T00:01:37Z", "stop_date": "2007-06-07T00:01:29Z", "target": "Venus", "xmlid": "mes-mag-venus"}, "name": "MAG", "orbit_mercury": {"__spz_name__": "orbit mercury", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "mes-mag-orb", "is_public": "True", "mes_mag_orb01": {"__spz_name__": "1 sec", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mes-mag-orb01", "att": "auto/mes-mag-orb01", "dataSource": "PDS", "desc": "Magnetic Field : Mercury orbit: 1 sec average
Sampling: 1S
Provider: PDS", "is_public": "True", "lastModificationDate": "2019-03-07T10:53:01Z", "lastUpdate": "2019-03-05T22:19:08Z", "measurement_type": "MagneticField", "mes_b_orbmbf1s": {"__spz_name__": "b_mbf", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_b_orbmbf1s", "dataset": "mes-mag-orb01", "description": "Magnetic field vector components in MBF coordinates", "display_type": "timeseries", "is_public": "True", "mes_b_orbmbf1s0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_b_orbmbf1s(0)", "dataset": "mes-mag-orb01", "index1": "0", "is_public": "True", "name": "bx", "parameter": "mes_b_orbmbf1s", "start_date": "2011-03-23T15:36:41Z", "stop_date": "2015-04-30T15:08:14Z", "xmlid": "mes_b_orbmbf1s(0)"}, "mes_b_orbmbf1s1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_b_orbmbf1s(1)", "dataset": "mes-mag-orb01", "index1": "1", "is_public": "True", "name": "by", "parameter": "mes_b_orbmbf1s", "start_date": "2011-03-23T15:36:41Z", "stop_date": "2015-04-30T15:08:14Z", "xmlid": "mes_b_orbmbf1s(1)"}, "mes_b_orbmbf1s2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_b_orbmbf1s(2)", "dataset": "mes-mag-orb01", "index1": "2", "is_public": "True", "name": "bz", "parameter": "mes_b_orbmbf1s", "start_date": "2011-03-23T15:36:41Z", "stop_date": "2015-04-30T15:08:14Z", "xmlid": "mes_b_orbmbf1s(2)"}, "name": "b_mbf", "size": "3", "start_date": "2011-03-23T15:36:41Z", "stop_date": "2015-04-30T15:08:14Z", "ucd": "phys.magField", "units": "nT", "xmlid": "mes_b_orbmbf1s"}, "mes_b_orbmso1s": {"__spz_name__": "b_mso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_b_orbmso1s", "dataset": "mes-mag-orb01", "description": "Magnetic field vector components in MSO coordinates", "display_type": "timeseries", "is_public": "True", "mes_b_orbmso1s0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_b_orbmso1s(0)", "dataset": "mes-mag-orb01", "index1": "0", "is_public": "True", "name": "bx", "parameter": "mes_b_orbmso1s", "start_date": "2011-03-23T15:36:41Z", "stop_date": "2015-04-30T15:08:14Z", "xmlid": "mes_b_orbmso1s(0)"}, "mes_b_orbmso1s1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_b_orbmso1s(1)", "dataset": "mes-mag-orb01", "index1": "1", "is_public": "True", "name": "by", "parameter": "mes_b_orbmso1s", "start_date": "2011-03-23T15:36:41Z", "stop_date": "2015-04-30T15:08:14Z", "xmlid": "mes_b_orbmso1s(1)"}, "mes_b_orbmso1s2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_b_orbmso1s(2)", "dataset": "mes-mag-orb01", "index1": "2", "is_public": "True", "name": "bz", "parameter": "mes_b_orbmso1s", "start_date": "2011-03-23T15:36:41Z", "stop_date": "2015-04-30T15:08:14Z", "xmlid": "mes_b_orbmso1s(2)"}, "name": "b_mso", "size": "3", "start_date": "2011-03-23T15:36:41Z", "stop_date": "2015-04-30T15:08:14Z", "ucd": "phys.magField", "units": "nT", "xmlid": "mes_b_orbmso1s"}, "mes_b_orbrtn1s": {"__spz_name__": "b_rtn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_b_orbrtn1s", "dataset": "mes-mag-orb01", "description": "Magnetic field vector components in RTN coordinates", "display_type": "timeseries", "is_public": "True", "mes_b_orbrtn1s0": {"__spz_name__": "br", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_b_orbrtn1s(0)", "dataset": "mes-mag-orb01", "index1": "0", "is_public": "True", "name": "br", "parameter": "mes_b_orbrtn1s", "start_date": "2011-03-23T15:36:41Z", "stop_date": "2015-04-30T15:08:14Z", "xmlid": "mes_b_orbrtn1s(0)"}, "mes_b_orbrtn1s1": {"__spz_name__": "bt", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_b_orbrtn1s(1)", "dataset": "mes-mag-orb01", "index1": "1", "is_public": "True", "name": "bt", "parameter": "mes_b_orbrtn1s", "start_date": "2011-03-23T15:36:41Z", "stop_date": "2015-04-30T15:08:14Z", "xmlid": "mes_b_orbrtn1s(1)"}, "mes_b_orbrtn1s2": {"__spz_name__": "bn", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_b_orbrtn1s(2)", "dataset": "mes-mag-orb01", "index1": "2", "is_public": "True", "name": "bn", "parameter": "mes_b_orbrtn1s", "start_date": "2011-03-23T15:36:41Z", "stop_date": "2015-04-30T15:08:14Z", "xmlid": "mes_b_orbrtn1s(2)"}, "name": "b_rtn", "size": "3", "start_date": "2011-03-23T15:36:41Z", "stop_date": "2015-04-30T15:08:14Z", "ucd": "phys.magField", "units": "nT", "xmlid": "mes_b_orbrtn1s"}, "mes_b_orbrtn1s_phi": {"__spz_name__": "phi", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_b_orbrtn1s_phi", "dataset": "mes-mag-orb01", "description": "Magnetic field phi angle", "display_type": "timeseries", "is_public": "True", "name": "phi", "start_date": "2011-03-23T15:36:41Z", "stop_date": "2015-04-30T15:08:14Z", "ucd": "phys.magField", "units": "degrees", "xmlid": "mes_b_orbrtn1s_phi"}, "mes_b_orbrtn1s_theta": {"__spz_name__": "theta", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_b_orbrtn1s_theta", "dataset": "mes-mag-orb01", "description": "Magnetic field theta angle", "display_type": "timeseries", "is_public": "True", "name": "theta", "start_date": "2011-03-23T15:36:41Z", "stop_date": "2015-04-30T15:08:14Z", "ucd": "phys.magField", "units": "degrees", "xmlid": "mes_b_orbrtn1s_theta"}, "mes_bmag_orb1s": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_bmag_orb1s", "dataset": "mes-mag-orb01", "description": "Scalar magnitude of the magnetic field in nT", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "2011-03-23T15:36:41Z", "stop_date": "2015-04-30T15:08:14Z", "ucd": "phys.magField", "units": "nT", "xmlid": "mes_bmag_orb1s"}, "name": "1 sec", "processing_level": "Calibrated", "sampling": "1S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MESSENGER/MAG/Mercury_Orbit/mes-mag-orb01", "start_date": "2011-03-23T15:36:41Z", "stop_date": "2015-04-30T15:08:14Z", "target": "Mercury", "xmlid": "mes-mag-orb01"}, "mes_mag_orbit60": {"__spz_name__": "60 sec", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mes-mag-orbit60", "att": "auto/mes-mag-orbit60", "dataSource": "PDS", "desc": "Magnetic Field : Mercury orbit: 1 min average
Sampling: 60S
Provider: PDS", "is_public": "True", "lastModificationDate": "2019-03-07T16:41:36Z", "lastUpdate": "2019-03-07T16:35:35Z", "measurement_type": "MagneticField", "mes_b_orbmbf1m": {"__spz_name__": "b_mbf", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_b_orbmbf1m", "dataset": "mes-mag-orbit60", "description": "Magnetic field vector components in MBF coordinates", "display_type": "timeseries", "is_public": "True", "mes_b_orbmbf1m0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_b_orbmbf1m(0)", "dataset": "mes-mag-orbit60", "index1": "0", "is_public": "True", "name": "bx", "parameter": "mes_b_orbmbf1m", "start_date": "2011-03-24T00:00:00Z", "stop_date": "2015-04-30T15:08:00Z", "xmlid": "mes_b_orbmbf1m(0)"}, "mes_b_orbmbf1m1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_b_orbmbf1m(1)", "dataset": "mes-mag-orbit60", "index1": "1", "is_public": "True", "name": "by", "parameter": "mes_b_orbmbf1m", "start_date": "2011-03-24T00:00:00Z", "stop_date": "2015-04-30T15:08:00Z", "xmlid": "mes_b_orbmbf1m(1)"}, "mes_b_orbmbf1m2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_b_orbmbf1m(2)", "dataset": "mes-mag-orbit60", "index1": "2", "is_public": "True", "name": "bz", "parameter": "mes_b_orbmbf1m", "start_date": "2011-03-24T00:00:00Z", "stop_date": "2015-04-30T15:08:00Z", "xmlid": "mes_b_orbmbf1m(2)"}, "name": "b_mbf", "size": "3", "start_date": "2011-03-24T00:00:00Z", "stop_date": "2015-04-30T15:08:00Z", "ucd": "phys.magField", "units": "nT", "xmlid": "mes_b_orbmbf1m"}, "mes_b_orbmso1m": {"__spz_name__": "b_mso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_b_orbmso1m", "dataset": "mes-mag-orbit60", "description": "Magnetic field vector components in MSO coordinates", "display_type": "timeseries", "is_public": "True", "mes_b_orbmso1m0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_b_orbmso1m(0)", "dataset": "mes-mag-orbit60", "index1": "0", "is_public": "True", "name": "bx", "parameter": "mes_b_orbmso1m", "start_date": "2011-03-24T00:00:00Z", "stop_date": "2015-04-30T15:08:00Z", "xmlid": "mes_b_orbmso1m(0)"}, "mes_b_orbmso1m1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_b_orbmso1m(1)", "dataset": "mes-mag-orbit60", "index1": "1", "is_public": "True", "name": "by", "parameter": "mes_b_orbmso1m", "start_date": "2011-03-24T00:00:00Z", "stop_date": "2015-04-30T15:08:00Z", "xmlid": "mes_b_orbmso1m(1)"}, "mes_b_orbmso1m2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_b_orbmso1m(2)", "dataset": "mes-mag-orbit60", "index1": "2", "is_public": "True", "name": "bz", "parameter": "mes_b_orbmso1m", "start_date": "2011-03-24T00:00:00Z", "stop_date": "2015-04-30T15:08:00Z", "xmlid": "mes_b_orbmso1m(2)"}, "name": "b_mso", "size": "3", "start_date": "2011-03-24T00:00:00Z", "stop_date": "2015-04-30T15:08:00Z", "ucd": "phys.magField", "units": "nT", "xmlid": "mes_b_orbmso1m"}, "mes_b_orbrtn1m": {"__spz_name__": "b_rtn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_b_orbrtn1m", "dataset": "mes-mag-orbit60", "description": "Magnetic field vector components in RTN coordinates", "display_type": "timeseries", "is_public": "True", "mes_b_orbrtn1m0": {"__spz_name__": "br", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_b_orbrtn1m(0)", "dataset": "mes-mag-orbit60", "index1": "0", "is_public": "True", "name": "br", "parameter": "mes_b_orbrtn1m", "start_date": "2011-03-24T00:00:00Z", "stop_date": "2015-04-30T15:08:00Z", "xmlid": "mes_b_orbrtn1m(0)"}, "mes_b_orbrtn1m1": {"__spz_name__": "bt", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_b_orbrtn1m(1)", "dataset": "mes-mag-orbit60", "index1": "1", "is_public": "True", "name": "bt", "parameter": "mes_b_orbrtn1m", "start_date": "2011-03-24T00:00:00Z", "stop_date": "2015-04-30T15:08:00Z", "xmlid": "mes_b_orbrtn1m(1)"}, "mes_b_orbrtn1m2": {"__spz_name__": "bn", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_b_orbrtn1m(2)", "dataset": "mes-mag-orbit60", "index1": "2", "is_public": "True", "name": "bn", "parameter": "mes_b_orbrtn1m", "start_date": "2011-03-24T00:00:00Z", "stop_date": "2015-04-30T15:08:00Z", "xmlid": "mes_b_orbrtn1m(2)"}, "name": "b_rtn", "size": "3", "start_date": "2011-03-24T00:00:00Z", "stop_date": "2015-04-30T15:08:00Z", "ucd": "phys.magField", "units": "nT", "xmlid": "mes_b_orbrtn1m"}, "mes_b_orbrtn1m_phi": {"__spz_name__": "phi", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_b_orbrtn1m_phi", "dataset": "mes-mag-orbit60", "description": "Magnetic field phi angle", "display_type": "timeseries", "is_public": "True", "name": "phi", "start_date": "2011-03-24T00:00:00Z", "stop_date": "2015-04-30T15:08:00Z", "ucd": "phys.magField", "units": "degrees", "xmlid": "mes_b_orbrtn1m_phi"}, "mes_b_orbrtn1m_theta": {"__spz_name__": "theta", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_b_orbrtn1m_theta", "dataset": "mes-mag-orbit60", "description": "Magnetic field theta angle", "display_type": "timeseries", "is_public": "True", "name": "theta", "start_date": "2011-03-24T00:00:00Z", "stop_date": "2015-04-30T15:08:00Z", "ucd": "phys.magField", "units": "degrees", "xmlid": "mes_b_orbrtn1m_theta"}, "mes_bmag_orb1m": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_bmag_orb1m", "dataset": "mes-mag-orbit60", "description": "Scalar magnitude of the magnetic field in nT", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "2011-03-24T00:00:00Z", "stop_date": "2015-04-30T15:08:00Z", "ucd": "phys.magField", "units": "nT", "xmlid": "mes_bmag_orb1m"}, "name": "60 sec", "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MESSENGER/MAG/Mercury_Orbit/mes-mag-orbit60", "start_date": "2011-03-24T00:00:00Z", "stop_date": "2015-04-30T15:08:00Z", "target": "Mercury", "xmlid": "mes-mag-orbit60"}, "mes_mag_orbitHR": {"__spz_name__": "0.05 sec", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mes-mag-orbitHR", "att": "auto/mes-mag-orbitHR", "dataSource": "PDS", "desc": "
Sampling: 0.05S
Provider: PDS", "is_public": "True", "lastModificationDate": "2022-07-18T13:09:20Z", "lastUpdate": "2022-07-18T13:13:42Z", "measurement_type": "MagneticField", "mes_b_orbmbf": {"__spz_name__": "b_mbf", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_b_orbmbf", "dataset": "mes-mag-orbitHR", "description": "Magnetic field vector components in MBF coordinates", "display_type": "timeseries", "is_public": "True", "mes_b_orbmbf0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_b_orbmbf(0)", "dataset": "mes-mag-orbitHR", "index1": "0", "is_public": "True", "name": "bx", "parameter": "mes_b_orbmbf", "start_date": "2011-03-23T15:36:40Z", "stop_date": "2015-04-30T15:08:14Z", "xmlid": "mes_b_orbmbf(0)"}, "mes_b_orbmbf1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_b_orbmbf(1)", "dataset": "mes-mag-orbitHR", "index1": "1", "is_public": "True", "name": "by", "parameter": "mes_b_orbmbf", "start_date": "2011-03-23T15:36:40Z", "stop_date": "2015-04-30T15:08:14Z", "xmlid": "mes_b_orbmbf(1)"}, "mes_b_orbmbf2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_b_orbmbf(2)", "dataset": "mes-mag-orbitHR", "index1": "2", "is_public": "True", "name": "bz", "parameter": "mes_b_orbmbf", "start_date": "2011-03-23T15:36:40Z", "stop_date": "2015-04-30T15:08:14Z", "xmlid": "mes_b_orbmbf(2)"}, "name": "b_mbf", "size": "3", "start_date": "2011-03-23T15:36:40Z", "stop_date": "2015-04-30T15:08:14Z", "ucd": "phys.magField", "units": "nT", "xmlid": "mes_b_orbmbf"}, "mes_b_orbmso": {"__spz_name__": "b_mso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_b_orbmso", "dataset": "mes-mag-orbitHR", "description": "Magnetic field vector components in MSO coordinates", "display_type": "timeseries", "is_public": "True", "mes_b_orbmso0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_b_orbmso(0)", "dataset": "mes-mag-orbitHR", "index1": "0", "is_public": "True", "name": "bx", "parameter": "mes_b_orbmso", "start_date": "2011-03-23T15:36:40Z", "stop_date": "2015-04-30T15:08:14Z", "xmlid": "mes_b_orbmso(0)"}, "mes_b_orbmso1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_b_orbmso(1)", "dataset": "mes-mag-orbitHR", "index1": "1", "is_public": "True", "name": "by", "parameter": "mes_b_orbmso", "start_date": "2011-03-23T15:36:40Z", "stop_date": "2015-04-30T15:08:14Z", "xmlid": "mes_b_orbmso(1)"}, "mes_b_orbmso2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_b_orbmso(2)", "dataset": "mes-mag-orbitHR", "index1": "2", "is_public": "True", "name": "bz", "parameter": "mes_b_orbmso", "start_date": "2011-03-23T15:36:40Z", "stop_date": "2015-04-30T15:08:14Z", "xmlid": "mes_b_orbmso(2)"}, "name": "b_mso", "size": "3", "start_date": "2011-03-23T15:36:40Z", "stop_date": "2015-04-30T15:08:14Z", "ucd": "phys.magField", "units": "nT", "xmlid": "mes_b_orbmso"}, "mes_b_orbrtn": {"__spz_name__": "b_rtn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_b_orbrtn", "dataset": "mes-mag-orbitHR", "description": "Magnetic field vector components in RTN coordinates", "display_type": "timeseries", "is_public": "True", "mes_b_orbrtn0": {"__spz_name__": "br", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_b_orbrtn(0)", "dataset": "mes-mag-orbitHR", "index1": "0", "is_public": "True", "name": "br", "parameter": "mes_b_orbrtn", "start_date": "2011-03-23T15:36:40Z", "stop_date": "2015-04-30T15:08:14Z", "xmlid": "mes_b_orbrtn(0)"}, "mes_b_orbrtn1": {"__spz_name__": "bt", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_b_orbrtn(1)", "dataset": "mes-mag-orbitHR", "index1": "1", "is_public": "True", "name": "bt", "parameter": "mes_b_orbrtn", "start_date": "2011-03-23T15:36:40Z", "stop_date": "2015-04-30T15:08:14Z", "xmlid": "mes_b_orbrtn(1)"}, "mes_b_orbrtn2": {"__spz_name__": "bn", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mes_b_orbrtn(2)", "dataset": "mes-mag-orbitHR", "index1": "2", "is_public": "True", "name": "bn", "parameter": "mes_b_orbrtn", "start_date": "2011-03-23T15:36:40Z", "stop_date": "2015-04-30T15:08:14Z", "xmlid": "mes_b_orbrtn(2)"}, "name": "b_rtn", "size": "3", "start_date": "2011-03-23T15:36:40Z", "stop_date": "2015-04-30T15:08:14Z", "ucd": "phys.magField", "units": "nT", "xmlid": "mes_b_orbrtn"}, "mes_b_orbrtn_phi": {"__spz_name__": "phi", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_b_orbrtn_phi", "dataset": "mes-mag-orbitHR", "description": "Magnetic field phi angle", "display_type": "timeseries", "is_public": "True", "name": "phi", "start_date": "2011-03-23T15:36:40Z", "stop_date": "2015-04-30T15:08:14Z", "ucd": "phys.magField", "units": "degrees", "xmlid": "mes_b_orbrtn_phi"}, "mes_b_orbrtn_theta": {"__spz_name__": "theta", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_b_orbrtn_theta", "dataset": "mes-mag-orbitHR", "description": "Magnetic field theta angle", "display_type": "timeseries", "is_public": "True", "name": "theta", "start_date": "2011-03-23T15:36:40Z", "stop_date": "2015-04-30T15:08:14Z", "ucd": "phys.magField", "units": "degrees", "xmlid": "mes_b_orbrtn_theta"}, "mes_bmag_orb": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mes_bmag_orb", "dataset": "mes-mag-orbitHR", "description": "Scalar magnitude of the magnetic field in nT", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "2011-03-23T15:36:40Z", "stop_date": "2015-04-30T15:08:14Z", "ucd": "phys.magField", "units": "nT", "xmlid": "mes_bmag_orb"}, "name": "0.05 sec", "processing_level": "Calibrated", "sampling": "0.05S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MESSENGER/MAG/Mercury_Orbit/mes-mag-orbitHR", "start_date": "2011-03-23T15:36:40Z", "stop_date": "2015-04-30T15:08:14Z", "target": "Mercury", "xmlid": "mes-mag-orbitHR"}, "name": "orbit mercury", "xmlid": "mes-mag-orb"}, "xmlid": "MESSENGER_mag"}, "__spz_name__": "MESSENGER", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "MESSENGER", "att": "auto/MESSENGER", "desc": "Mercury Surface, Space Environment, Geochemistry and Ranging Mission
2004-08-03T00:00:00 - 2015-04-30T00:00:00", "is_public": "True", "name": "MESSENGER", "rank": "2", "target": "Mercury", "xmlid": "MESSENGER"}, "MEX": {"Analytical_Models": {"__spz_name__": "Analytical Models", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "MEX_models", "att": "auto/MEX_models", "desc": "", "is_public": "True", "mex_morsch_model": {"PriorID": "mex-orb-mars", "__spz_name__": "Morschhauser field model", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mex-morsch-model", "att": "auto/mex-morsch-model", "bmorsch_mso_60_mex_xyz_mso": {"__spz_name__": "b_mso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "bmorsch_mso_60_mex_xyz_mso", "bmorsch_mso_60_mex_xyz_mso0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "bmorsch_mso_60_mex_xyz_mso(0)", "dataset": "mex-morsch-model", "index1": "0", "is_public": "True", "name": "bx", "parameter": "bmorsch_mso_60_mex_xyz_mso", "start_date": "2003-12-22T18:09:05Z", "stop_date": "2023-07-24T22:36:45Z", "xmlid": "bmorsch_mso_60_mex_xyz_mso(0)"}, "bmorsch_mso_60_mex_xyz_mso1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "bmorsch_mso_60_mex_xyz_mso(1)", "dataset": "mex-morsch-model", "index1": "1", "is_public": "True", "name": "by", "parameter": "bmorsch_mso_60_mex_xyz_mso", "start_date": "2003-12-22T18:09:05Z", "stop_date": "2023-07-24T22:36:45Z", "xmlid": "bmorsch_mso_60_mex_xyz_mso(1)"}, "bmorsch_mso_60_mex_xyz_mso2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "bmorsch_mso_60_mex_xyz_mso(2)", "dataset": "mex-morsch-model", "index1": "2", "is_public": "True", "name": "bz", "parameter": "bmorsch_mso_60_mex_xyz_mso", "start_date": "2003-12-22T18:09:05Z", "stop_date": "2023-07-24T22:36:45Z", "xmlid": "bmorsch_mso_60_mex_xyz_mso(2)"}, "dataset": "mex-morsch-model", "is_public": "True", "name": "b_mso", "predefined": "1", "size": "3", "start_date": "2003-12-22T18:09:05Z", "stop_date": "2023-07-24T22:36:45Z", "template": "bmorsch_mso_##sampling##_##orbit##", "units": "nT", "xmlid": "bmorsch_mso_60_mex_xyz_mso"}, "bmorsch_tot_60_mex_xyz_mso": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "bmorsch_tot_60_mex_xyz_mso", "dataset": "mex-morsch-model", "is_public": "True", "name": "|b|", "predefined": "1", "start_date": "2003-12-22T18:09:05Z", "stop_date": "2023-07-24T22:36:45Z", "template": "bmorsch_tot_##sampling##_##orbit##", "units": "nT", "xmlid": "bmorsch_tot_60_mex_xyz_mso"}, "dataSource": "IRAP", "desc": "Morschhauser model martian crustal magnetic field
Sampling: 1M
Provider: IRAP", "is_public": "True", "lastModificationDate": "2024-10-02T02:04:46Z", "lastUpdate": "2024-10-02T02:04:38Z", "measurement_type": "MagneticField", "name": "Morschhauser field model", "processing_level": "Calibrated", "sampling": "1M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MEX/Models/mex-morsch-model", "start_date": "2003-12-22T18:09:05Z", "stop_date": "2023-07-24T22:36:45Z", "target": "Mars", "xmlid": "mex-morsch-model"}, "name": "Analytical Models", "xmlid": "MEX_models"}, "ELS": {"__spz_name__": "ELS", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "MEX_els", "att": "auto/MEX_els", "desc": "Electron Spectrometer
ElectrostaticAnalyser", "is_public": "True", "mex_els_all": {"__spz_name__": "electron energy spectra : 16 anodes", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mex-els-all", "att": "auto/mex-els-all", "dataSource": "IRAP", "desc": "
MinSampling: 1S; MaxSampling: 64S
Provider: IRAP", "is_public": "True", "lastModificationDate": "2021-10-22T09:15:19Z", "lastUpdate": "2021-10-12T21:02:01Z", "maxSampling": "64S", "measurement_type": "ThermalPlasma", "mex_els_spec": {"__spz_name__": "counts : per anode ", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mex_els_spec", "dataset": "mex-els-all", "description": "energy spectrogram of electron counts", "display_type": "spectrogram", "is_public": "True", "name": "counts : per anode ", "start_date": "2003-06-23T18:42:48Z", "stop_date": "2021-09-22T21:47:31Z", "template": "mex_els_spec_##anode##", "ucd": "phys.flux;phys.electron", "units": "cnts", "xmlid": "mex_els_spec"}, "mex_els_spec_sum": {"__spz_name__": "counts : sum over anodes", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mex_els_spec_sum", "dataset": "mex-els-all", "description": "energy spectrogram of electron counts", "display_type": "spectrogram", "is_public": "True", "name": "counts : sum over anodes", "start_date": "2003-06-23T18:42:48Z", "stop_date": "2021-09-22T21:47:31Z", "ucd": "phys.flux;phys.electron", "units": "cnts", "xmlid": "mex_els_spec_sum"}, "name": "electron energy spectra : 16 anodes", "processing_level": "Calibrated", "sampling": "1S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MEX/ELS/mex-els-all", "start_date": "2003-06-23T18:42:48Z", "stop_date": "2021-09-22T21:47:31Z", "target": "Mars", "xmlid": "mex-els-all"}, "name": "ELS", "xmlid": "MEX_els"}, "Ephemeris": {"__spz_name__": "Ephemeris", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "MEX_ephemeris", "att": "auto/MEX_ephemeris", "desc": "", "is_public": "True", "mex_orb_mars": {"__spz_name__": "orbit mars", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mex-orb-mars", "att": "auto/mex-orb-mars", "dataSource": "NAIF", "desc": "
Sampling: 60S
Provider: NAIF", "is_public": "True", "lastModificationDate": "2024-10-02T02:04:46Z", "lastUpdate": "2024-10-02T02:04:38Z", "lat_mex_iau": {"__spz_name__": "lat_iau_mars", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "lat_mex_iau", "dataset": "mex-orb-mars", "description": "Mars Express trajectory in PC coordinates", "is_public": "True", "name": "lat_iau_mars", "start_date": "2003-12-22T18:09:05Z", "stop_date": "2023-07-24T22:36:45Z", "ucd": "pos.ephem;instr.obsty", "units": "deg", "xmlid": "lat_mex_iau"}, "lon_mex_iau": {"__spz_name__": "lon_iau_mars", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "lon_mex_iau", "dataset": "mex-orb-mars", "description": "Mars Express trajectory in PC coordinates", "is_public": "True", "name": "lon_iau_mars", "start_date": "2003-12-22T18:09:05Z", "stop_date": "2023-07-24T22:36:45Z", "ucd": "pos.ephem;instr.obsty", "units": "deg", "xmlid": "lon_mex_iau"}, "measurement_type": "Ephemeris", "mex_mars_r": {"__spz_name__": "distance mex-mars", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mex_mars_r", "dataset": "mex-orb-mars", "description": "Mars Express trajectory in PC coordinates", "is_public": "True", "name": "distance mex-mars", "start_date": "2003-12-22T18:09:05Z", "stop_date": "2023-07-24T22:36:45Z", "ucd": "pos.ephem;instr.obsty", "units": "Rma", "xmlid": "mex_mars_r"}, "mex_orb_num": {"__spz_name__": "mex_orbit_num", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mex_orb_num", "dataset": "mex-orb-mars", "display_type": "timeseries", "is_public": "True", "name": "mex_orbit_num", "start_date": "2003-12-22T18:09:05Z", "stop_date": "2023-07-24T22:36:45Z", "xmlid": "mex_orb_num"}, "mex_xyz_mso": {"__spz_name__": "xyz_mso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mex_xyz_mso", "dataset": "mex-orb-mars", "description": "Mars Express trajectory in MSO coordinates", "display_type": "timeseries", "is_public": "True", "mex_xyz_mso0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mex_xyz_mso(0)", "dataset": "mex-orb-mars", "index1": "0", "is_public": "True", "name": "x", "parameter": "mex_xyz_mso", "start_date": "2003-12-22T18:09:05Z", "stop_date": "2023-07-24T22:36:45Z", "xmlid": "mex_xyz_mso(0)"}, "mex_xyz_mso1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mex_xyz_mso(1)", "dataset": "mex-orb-mars", "index1": "1", "is_public": "True", "name": "y", "parameter": "mex_xyz_mso", "start_date": "2003-12-22T18:09:05Z", "stop_date": "2023-07-24T22:36:45Z", "xmlid": "mex_xyz_mso(1)"}, "mex_xyz_mso2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mex_xyz_mso(2)", "dataset": "mex-orb-mars", "index1": "2", "is_public": "True", "name": "z", "parameter": "mex_xyz_mso", "start_date": "2003-12-22T18:09:05Z", "stop_date": "2023-07-24T22:36:45Z", "xmlid": "mex_xyz_mso(2)"}, "name": "xyz_mso", "size": "3", "start_date": "2003-12-22T18:09:05Z", "stop_date": "2023-07-24T22:36:45Z", "ucd": "pos.ephem;instr.obsty", "units": "Rma", "xmlid": "mex_xyz_mso"}, "name": "orbit mars", "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MEX/ephemeris/mex-orb-mars", "start_date": "2003-12-22T18:09:05Z", "stop_date": "2023-07-24T22:36:45Z", "target": "Mars", "xmlid": "mex-orb-mars"}, "name": "Ephemeris", "xmlid": "MEX_ephemeris"}, "IMA": {"__spz_name__": "IMA", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "MEX_ima", "att": "auto/MEX_ima", "desc": "MassSpectrometer", "is_public": "True", "mex_ima_bg": {"__spz_name__": "background", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mex-ima-bg", "att": "auto/mex-ima-bg", "dataSource": "IRF", "desc": "
Sampling: 192S
Provider: IRF", "is_public": "True", "lastModificationDate": "2022-06-22T14:35:44Z", "lastUpdate": "2022-06-22T14:30:41Z", "measurement_type": "ThermalPlasma", "mex_ima_bg": {"__spz_name__": "bkgrd counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mex_ima_bg", "dataset": "mex-ima-bg", "display_type": "timeseries", "is_public": "True", "name": "bkgrd counts", "start_date": "2003-06-23T18:42:59Z", "stop_date": "2021-12-31T23:57:43Z", "ucd": "meta.code.qual;phys.atmol.ionStage", "units": "cnts", "xmlid": "mex_ima_bg"}, "mex_ima_totct": {"__spz_name__": "total counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mex_ima_totct", "dataset": "mex-ima-bg", "display_type": "timeseries", "is_public": "True", "name": "total counts", "start_date": "2003-06-23T18:42:59Z", "stop_date": "2021-12-31T23:57:43Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cnts", "xmlid": "mex_ima_totct"}, "name": "background", "processing_level": "Calibrated", "sampling": "192S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MEX/IMA/mex-ima-bg", "start_date": "2003-06-23T18:42:59Z", "stop_date": "2021-12-31T23:57:43Z", "target": "Mars", "xmlid": "mex-ima-bg"}, "mex_ima_extra": {"__spz_name__": "ima spectra", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mex-ima-extra", "att": "auto/mex-ima-extra", "dataSource": "IRAP", "desc": "
Sampling: 192S
Provider: IRAP", "is_public": "True", "lastModificationDate": "2021-10-22T09:15:29Z", "lastUpdate": "2021-10-18T19:01:42Z", "measurement_type": "ThermalPlasma", "mex_elev_n": {"__spz_name__": "elevations number", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mex_elev_n", "dataset": "mex-ima-extra", "description": "Number of the elevation angles", "is_public": "True", "name": "elevations number", "start_date": "2004-01-05T06:16:06Z", "stop_date": "2021-09-22T20:03:40Z", "xmlid": "mex_elev_n"}, "mex_energy_tab": {"__spz_name__": "energy table", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mex_energy_tab", "dataset": "mex-ima-extra", "description": "energy table number", "is_public": "True", "name": "energy table", "start_date": "2004-01-05T06:16:06Z", "stop_date": "2021-09-22T20:03:40Z", "xmlid": "mex_energy_tab"}, "mex_h_flux": {"__spz_name__": "protons : fluxes per anode ", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mex_h_flux", "dataset": "mex-ima-extra", "description": "energy-time spectrogram of proton diff fluxes", "display_type": "spectrogram", "is_public": "True", "name": "protons : fluxes per anode ", "start_date": "2004-01-05T06:16:06Z", "stop_date": "2021-09-22T20:03:40Z", "template": "mex_h_flux_##anode##", "ucd": "phys.flux;phys.atmol.ionStage", "units": "cnts/(cm\u00b2 s sr eV)", "xmlid": "mex_h_flux"}, "mex_h_spec": {"__spz_name__": "protons : cnts per anode ", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mex_h_spec", "dataset": "mex-ima-extra", "description": "energy-time spectrogram of proton counts", "display_type": "spectrogram", "is_public": "True", "name": "protons : cnts per anode ", "start_date": "2004-01-05T06:16:06Z", "stop_date": "2021-09-22T20:03:40Z", "template": "mex_h_spec_##anode##", "ucd": "phys.flux;phys.atmol.ionStage", "units": "cnts", "xmlid": "mex_h_spec"}, "mex_h_spec_sum": {"__spz_name__": "protons : cnts sum", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mex_h_spec_sum", "dataset": "mex-ima-extra", "description": "energy-time spectrogram of proton counts", "display_type": "spectrogram", "is_public": "True", "name": "protons : cnts sum", "start_date": "2004-01-05T06:16:06Z", "stop_date": "2021-09-22T20:03:40Z", "ucd": "phys.flux;phys.atmol.ionStage", "units": "cnts", "xmlid": "mex_h_spec_sum"}, "mex_o_flux": {"__spz_name__": "heavy : fluxes per anode ", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mex_o_flux", "dataset": "mex-ima-extra", "description": "energy-time spectrogram of heavy ion diff fluxes", "display_type": "spectrogram", "is_public": "True", "name": "heavy : fluxes per anode ", "start_date": "2004-01-05T06:16:06Z", "stop_date": "2021-09-22T20:03:40Z", "template": "mex_o_flux_##anode##", "ucd": "phys.flux;phys.atmol.ionStage", "units": "cnts/(cm\u00b2 s sr eV)", "xmlid": "mex_o_flux"}, "mex_o_spec": {"__spz_name__": "heavy : cnts per anode ", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mex_o_spec", "dataset": "mex-ima-extra", "description": "energy-time spectrogram of heavy ion counts", "display_type": "spectrogram", "is_public": "True", "name": "heavy : cnts per anode ", "start_date": "2004-01-05T06:16:06Z", "stop_date": "2021-09-22T20:03:40Z", "template": "mex_o_spec_##anode##", "ucd": "phys.flux;phys.atmol.ionStage", "units": "cnts", "xmlid": "mex_o_spec"}, "mex_o_spec_sum": {"__spz_name__": "heavy : cnts sum", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mex_o_spec_sum", "dataset": "mex-ima-extra", "description": "energy-time spectrogram of heavy ion counts", "display_type": "spectrogram", "is_public": "True", "name": "heavy : cnts sum", "start_date": "2004-01-05T06:16:06Z", "stop_date": "2021-09-22T20:03:40Z", "ucd": "phys.flux;phys.atmol.ionStage", "units": "cnts", "xmlid": "mex_o_spec_sum"}, "name": "ima spectra", "processing_level": "Calibrated", "sampling": "192S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MEX/IMA/mex-ima-extra", "start_date": "2004-01-05T06:16:06Z", "stop_date": "2021-09-22T20:03:40Z", "target": "Mars", "xmlid": "mex-ima-extra"}, "mex_ima_param": {"__spz_name__": "ima moments", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mex-ima-param", "att": "auto/mex-ima-param", "dataSource": "IRAP", "desc": "
Sampling: 192S
Provider: IRAP", "is_public": "True", "lastModificationDate": "2021-10-22T09:15:38Z", "lastUpdate": "2021-10-18T18:48:46Z", "measurement_type": "ThermalPlasma", "mex_h_dens": {"__spz_name__": "h+: density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mex_h_dens", "dataset": "mex-ima-param", "description": "Proton density", "display_type": "timeseries", "is_public": "True", "name": "h+: density", "start_date": "2004-01-23T04:20:49Z", "stop_date": "2021-09-22T20:06:50Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm-3", "xmlid": "mex_h_dens"}, "mex_h_qual": {"__spz_name__": "h+: moments quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mex_h_qual", "dataset": "mex-ima-param", "description": "Proton moment quality flag", "display_type": "timeseries", "is_public": "True", "name": "h+: moments quality", "start_date": "2004-01-23T04:20:49Z", "stop_date": "2021-09-22T20:06:50Z", "ucd": "meta.code.qual;phys.atmol.ionStage", "units": "0-1", "xmlid": "mex_h_qual"}, "mex_h_temp": {"__spz_name__": "h+: temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mex_h_temp", "dataset": "mex-ima-param", "description": "Proton temperature", "display_type": "timeseries", "is_public": "True", "name": "h+: temperature", "start_date": "2004-01-23T04:20:49Z", "stop_date": "2021-09-22T20:06:50Z", "ucd": "phys.temperature;phys.atmol.ionStage", "units": "eV", "xmlid": "mex_h_temp"}, "mex_h_vel": {"__spz_name__": "h+: v_mso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mex_h_vel", "dataset": "mex-ima-param", "description": "Proton bulk velocity components in MSO coordinates", "display_type": "timeseries", "is_public": "True", "mex_h_vel0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mex_h_vel(0)", "dataset": "mex-ima-param", "index1": "0", "is_public": "True", "name": "vx", "parameter": "mex_h_vel", "start_date": "2004-01-23T04:20:49Z", "stop_date": "2021-09-22T20:06:50Z", "xmlid": "mex_h_vel(0)"}, "mex_h_vel1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mex_h_vel(1)", "dataset": "mex-ima-param", "index1": "1", "is_public": "True", "name": "vy", "parameter": "mex_h_vel", "start_date": "2004-01-23T04:20:49Z", "stop_date": "2021-09-22T20:06:50Z", "xmlid": "mex_h_vel(1)"}, "mex_h_vel2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mex_h_vel(2)", "dataset": "mex-ima-param", "index1": "2", "is_public": "True", "name": "vz", "parameter": "mex_h_vel", "start_date": "2004-01-23T04:20:49Z", "stop_date": "2021-09-22T20:06:50Z", "xmlid": "mex_h_vel(2)"}, "name": "h+: v_mso", "size": "3", "start_date": "2004-01-23T04:20:49Z", "stop_date": "2021-09-22T20:06:50Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "mex_h_vel"}, "mex_h_vtot": {"__spz_name__": "h+: |v|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mex_h_vtot", "dataset": "mex-ima-param", "description": "Proton bulk velocity", "display_type": "timeseries", "is_public": "True", "name": "h+: |v|", "start_date": "2004-01-23T04:20:49Z", "stop_date": "2021-09-22T20:06:50Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "mex_h_vtot"}, "mex_o2_dens": {"__spz_name__": "o2+: density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mex_o2_dens", "dataset": "mex-ima-param", "description": "O2+ ion density", "display_type": "timeseries", "is_public": "True", "name": "o2+: density", "start_date": "2004-01-23T04:20:49Z", "stop_date": "2021-09-22T20:06:50Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm-3", "xmlid": "mex_o2_dens"}, "mex_o2_qual": {"__spz_name__": "o2+: moments quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mex_o2_qual", "dataset": "mex-ima-param", "description": "O2+ ion moment quality flag", "display_type": "timeseries", "is_public": "True", "name": "o2+: moments quality", "start_date": "2004-01-23T04:20:49Z", "stop_date": "2021-09-22T20:06:50Z", "ucd": "meta.code.qual;phys.atmol.ionStage", "units": "0-1", "xmlid": "mex_o2_qual"}, "mex_o2_temp": {"__spz_name__": "o2+: temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mex_o2_temp", "dataset": "mex-ima-param", "description": "O2+ ion temperature", "display_type": "timeseries", "is_public": "True", "name": "o2+: temperature", "start_date": "2004-01-23T04:20:49Z", "stop_date": "2021-09-22T20:06:50Z", "ucd": "phys.temperature;phys.atmol.ionStage", "units": "eV", "xmlid": "mex_o2_temp"}, "mex_o2_vel": {"__spz_name__": "o2+: v_mso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mex_o2_vel", "dataset": "mex-ima-param", "description": "O2+ ion bulk velocity components in MSO coordinates", "display_type": "timeseries", "is_public": "True", "mex_o2_vel0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mex_o2_vel(0)", "dataset": "mex-ima-param", "index1": "0", "is_public": "True", "name": "vx", "parameter": "mex_o2_vel", "start_date": "2004-01-23T04:20:49Z", "stop_date": "2021-09-22T20:06:50Z", "xmlid": "mex_o2_vel(0)"}, "mex_o2_vel1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mex_o2_vel(1)", "dataset": "mex-ima-param", "index1": "1", "is_public": "True", "name": "vy", "parameter": "mex_o2_vel", "start_date": "2004-01-23T04:20:49Z", "stop_date": "2021-09-22T20:06:50Z", "xmlid": "mex_o2_vel(1)"}, "mex_o2_vel2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mex_o2_vel(2)", "dataset": "mex-ima-param", "index1": "2", "is_public": "True", "name": "vz", "parameter": "mex_o2_vel", "start_date": "2004-01-23T04:20:49Z", "stop_date": "2021-09-22T20:06:50Z", "xmlid": "mex_o2_vel(2)"}, "name": "o2+: v_mso", "size": "3", "start_date": "2004-01-23T04:20:49Z", "stop_date": "2021-09-22T20:06:50Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "mex_o2_vel"}, "mex_o2_vtot": {"__spz_name__": "o2+: |v|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mex_o2_vtot", "dataset": "mex-ima-param", "description": "O2+ Ions bulk velocity", "display_type": "timeseries", "is_public": "True", "name": "o2+: |v|", "start_date": "2004-01-23T04:20:49Z", "stop_date": "2021-09-22T20:06:50Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "mex_o2_vtot"}, "mex_o_dens": {"__spz_name__": "o+: density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mex_o_dens", "dataset": "mex-ima-param", "description": "O+ ion density", "display_type": "timeseries", "is_public": "True", "name": "o+: density", "start_date": "2004-01-23T04:20:49Z", "stop_date": "2021-09-22T20:06:50Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm-3", "xmlid": "mex_o_dens"}, "mex_o_qual": {"__spz_name__": "o+: moments quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mex_o_qual", "dataset": "mex-ima-param", "description": "O+ ion moment quality flag", "display_type": "timeseries", "is_public": "True", "name": "o+: moments quality", "start_date": "2004-01-23T04:20:49Z", "stop_date": "2021-09-22T20:06:50Z", "ucd": "meta.code.qual;phys.atmol.ionStage", "units": "0-1", "xmlid": "mex_o_qual"}, "mex_o_temp": {"__spz_name__": "o+: temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mex_o_temp", "dataset": "mex-ima-param", "description": "O+ ion temperature", "display_type": "timeseries", "is_public": "True", "name": "o+: temperature", "start_date": "2004-01-23T04:20:49Z", "stop_date": "2021-09-22T20:06:50Z", "ucd": "phys.temperature;phys.atmol.ionStage", "units": "eV", "xmlid": "mex_o_temp"}, "mex_o_vel": {"__spz_name__": "o+: v_mso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mex_o_vel", "dataset": "mex-ima-param", "description": "O+ ion bulk velocity components in MSO coordinates", "display_type": "timeseries", "is_public": "True", "mex_o_vel0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mex_o_vel(0)", "dataset": "mex-ima-param", "index1": "0", "is_public": "True", "name": "vx", "parameter": "mex_o_vel", "start_date": "2004-01-23T04:20:49Z", "stop_date": "2021-09-22T20:06:50Z", "xmlid": "mex_o_vel(0)"}, "mex_o_vel1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mex_o_vel(1)", "dataset": "mex-ima-param", "index1": "1", "is_public": "True", "name": "vy", "parameter": "mex_o_vel", "start_date": "2004-01-23T04:20:49Z", "stop_date": "2021-09-22T20:06:50Z", "xmlid": "mex_o_vel(1)"}, "mex_o_vel2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mex_o_vel(2)", "dataset": "mex-ima-param", "index1": "2", "is_public": "True", "name": "vz", "parameter": "mex_o_vel", "start_date": "2004-01-23T04:20:49Z", "stop_date": "2021-09-22T20:06:50Z", "xmlid": "mex_o_vel(2)"}, "name": "o+: v_mso", "size": "3", "start_date": "2004-01-23T04:20:49Z", "stop_date": "2021-09-22T20:06:50Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "mex_o_vel"}, "mex_o_vtot": {"__spz_name__": "o+: |v|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mex_o_vtot", "dataset": "mex-ima-param", "description": "O+ Ions bulk velocity", "display_type": "timeseries", "is_public": "True", "name": "o+: |v|", "start_date": "2004-01-23T04:20:49Z", "stop_date": "2021-09-22T20:06:50Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "mex_o_vtot"}, "mex_scan": {"__spz_name__": "scan flag", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mex_scan", "dataset": "mex-ima-param", "description": "Scan quality flag", "is_public": "True", "name": "scan flag", "start_date": "2004-01-23T04:20:49Z", "stop_date": "2021-09-22T20:06:50Z", "ucd": "meta.code.qual", "xmlid": "mex_scan"}, "name": "ima moments", "processing_level": "Calibrated", "sampling": "192S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MEX/IMA/mex-ima-param", "start_date": "2004-01-23T04:20:49Z", "stop_date": "2021-09-22T20:06:50Z", "target": "Mars", "xmlid": "mex-ima-param"}, "mex_ima_sw": {"__spz_name__": "proton moments in SW", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mex-ima-sw", "att": "auto/mex-ima-sw", "dataSource": "IRAP", "desc": "Solar Wind Proxy
Sampling: 192S
Provider: IRAP", "is_public": "True", "lastModificationDate": "2021-10-22T09:15:46Z", "lastUpdate": "2021-10-18T18:45:11Z", "measurement_type": "ThermalPlasma", "mex_flag_sw": {"__spz_name__": "density quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mex_flag_sw", "dataset": "mex-ima-sw", "description": "Proton moment quality flag", "display_type": "timeseries", "is_public": "True", "name": "density quality", "start_date": "2006-01-01T23:35:17Z", "stop_date": "2021-09-22T20:03:39Z", "ucd": "meta.code.qual;phys.atmol.ionStage", "units": "0-1", "xmlid": "mex_flag_sw"}, "mex_n_sw": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mex_n_sw", "dataset": "mex-ima-sw", "description": "Proton density", "display_type": "timeseries", "is_public": "True", "name": "density", "start_date": "2006-01-01T23:35:17Z", "stop_date": "2021-09-22T20:03:39Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm-3", "xmlid": "mex_n_sw"}, "mex_v_sw": {"__spz_name__": "|v|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mex_v_sw", "dataset": "mex-ima-sw", "description": "Proton bulk velocity", "display_type": "timeseries", "is_public": "True", "name": "|v|", "start_date": "2006-01-01T23:35:17Z", "stop_date": "2021-09-22T20:03:39Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "mex_v_sw"}, "name": "proton moments in SW", "processing_level": "Calibrated", "sampling": "192S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MEX/IMA/mex-ima-sw", "start_date": "2006-01-01T23:35:17Z", "stop_date": "2021-09-22T20:03:39Z", "target": "Mars", "xmlid": "mex-ima-sw"}, "name": "IMA", "xmlid": "MEX_ima"}, "MARSIS": {"__spz_name__": "MARSIS", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "MEX_marsis", "att": "auto/MEX_marsis", "desc": "Mars Advanced Radar for Subsurface and Ionosphere Sounding
Sounder", "is_public": "True", "mex_marsis_ele": {"__spz_name__": "total electron content", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mex-marsis-ele", "att": "auto/mex-marsis-ele", "dataSource": "PSA", "desc": "
MinSampling: 1S; MaxSampling: 10S
Provider: PSA", "is_public": "True", "lastModificationDate": "2018-07-31T09:40:33Z", "lastUpdate": "2016-01-27T13:27:11Z", "maxSampling": "10S", "measurement_type": "Waves", "mex_marsis_tec": {"__spz_name__": "tec", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mex_marsis_tec", "dataset": "mex-marsis-ele", "description": "Total electron content derived from the ionosphere \n distortion correction", "display_type": "timeseries", "is_public": "True", "name": "tec", "start_date": "2005-06-19T04:03:28Z", "stop_date": "2007-09-30T23:41:11Z", "ucd": "phys.density;phys.electron", "units": "m-2", "xmlid": "mex_marsis_tec"}, "mex_marsis_tecflag": {"__spz_name__": "quality flag", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mex_marsis_tecflag", "dataset": "mex-marsis-ele", "display_type": "timeseries", "is_public": "True", "name": "quality flag", "start_date": "2005-06-19T04:03:28Z", "stop_date": "2007-09-30T23:41:11Z", "xmlid": "mex_marsis_tecflag"}, "name": "total electron content", "processing_level": "Calibrated", "sampling": "1S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MEX/MARSIS/mex-marsis-ele", "start_date": "2005-06-19T04:03:28Z", "stop_date": "2007-09-30T23:41:11Z", "target": "Mars", "xmlid": "mex-marsis-ele"}, "name": "MARSIS", "xmlid": "MEX_marsis"}, "__spz_name__": "MEX", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "MEX", "att": "auto/MEX", "desc": "Mars-Express
2003-06-02T00:00:00
Mars arrival : 2003-12-25T00:00:00", "is_public": "True", "name": "MEX", "rank": "8", "target": "Mars", "xmlid": "MEX"}, "MGS": {"Analytical_Models": {"__spz_name__": "Analytical Models", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "MGS_models", "att": "auto/MGS_models", "desc": "", "is_public": "True", "mgs_morsch_model": {"PriorID": "mgs-orb-all", "__spz_name__": "Morschhauser field model", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mgs-morsch-model", "att": "auto/mgs-morsch-model", "bmorsch_mso_60_xyz_mgs_mso": {"__spz_name__": "b_mso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "bmorsch_mso_60_xyz_mgs_mso", "bmorsch_mso_60_xyz_mgs_mso0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "bmorsch_mso_60_xyz_mgs_mso(0)", "dataset": "mgs-morsch-model", "index1": "0", "is_public": "True", "name": "bx", "parameter": "bmorsch_mso_60_xyz_mgs_mso", "start_date": "1997-09-13T00:00:00Z", "stop_date": "2006-11-08T00:00:00Z", "xmlid": "bmorsch_mso_60_xyz_mgs_mso(0)"}, "bmorsch_mso_60_xyz_mgs_mso1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "bmorsch_mso_60_xyz_mgs_mso(1)", "dataset": "mgs-morsch-model", "index1": "1", "is_public": "True", "name": "by", "parameter": "bmorsch_mso_60_xyz_mgs_mso", "start_date": "1997-09-13T00:00:00Z", "stop_date": "2006-11-08T00:00:00Z", "xmlid": "bmorsch_mso_60_xyz_mgs_mso(1)"}, "bmorsch_mso_60_xyz_mgs_mso2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "bmorsch_mso_60_xyz_mgs_mso(2)", "dataset": "mgs-morsch-model", "index1": "2", "is_public": "True", "name": "bz", "parameter": "bmorsch_mso_60_xyz_mgs_mso", "start_date": "1997-09-13T00:00:00Z", "stop_date": "2006-11-08T00:00:00Z", "xmlid": "bmorsch_mso_60_xyz_mgs_mso(2)"}, "dataset": "mgs-morsch-model", "is_public": "True", "name": "b_mso", "predefined": "1", "size": "3", "start_date": "1997-09-13T00:00:00Z", "stop_date": "2006-11-08T00:00:00Z", "template": "bmorsch_mso_##sampling##_##orbit##", "units": "nT", "xmlid": "bmorsch_mso_60_xyz_mgs_mso"}, "bmorsch_tot_60_xyz_mgs_mso": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "bmorsch_tot_60_xyz_mgs_mso", "dataset": "mgs-morsch-model", "is_public": "True", "name": "|b|", "predefined": "1", "start_date": "1997-09-13T00:00:00Z", "stop_date": "2006-11-08T00:00:00Z", "template": "bmorsch_tot_##sampling##_##orbit##", "units": "nT", "xmlid": "bmorsch_tot_60_xyz_mgs_mso"}, "dataSource": "IRAP", "desc": "Morschhauser model martian crustal magnetic field
Sampling: 1M
Provider: IRAP", "is_public": "True", "lastModificationDate": "2012-03-06T21:46:11Z", "lastUpdate": "2018-06-21T12:31:24Z", "measurement_type": "MagneticField", "name": "Morschhauser field model", "processing_level": "Calibrated", "sampling": "1M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MGS/Models/mgs-morsch-model", "start_date": "1997-09-13T00:00:00Z", "stop_date": "2006-11-08T00:00:00Z", "target": "Mars", "xmlid": "mgs-morsch-model"}, "name": "Analytical Models", "xmlid": "MGS_models"}, "ER": {"__spz_name__": "ER", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "MGS_er", "att": "auto/MGS_er", "desc": "Electron Reflectometer
Spectrometer", "is_public": "True", "mgs_er_omni": {"__spz_name__": "er_omni", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mgs-er-omni", "att": "auto/mgs-er-omni", "dataSource": "PDS", "desc": "
MinSampling: 2S; MaxSampling: 8S
Provider: PDS", "e_mgs_omni": {"__spz_name__": "electron flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "e_mgs_omni", "dataset": "mgs-er-omni", "display_type": "spectrogram", "is_public": "True", "name": "electron flux", "start_date": "1997-09-14T01:01:03Z", "stop_date": "2006-10-11T00:00:32Z", "units": "cm\u207b\u00b2 s\u207b\u00b9 ster\u207b\u00b9 eV\u207b\u00b9", "xmlid": "e_mgs_omni"}, "is_public": "True", "lastModificationDate": "2012-03-06T21:52:32Z", "lastUpdate": "2012-03-06T21:53:11Z", "maxSampling": "8S", "measurement_type": "ThermalPlasma", "name": "er_omni", "processing_level": "Calibrated", "sampling": "2S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MGS/ER/mgs-er-omni", "start_date": "1997-09-14T01:01:03Z", "stop_date": "2006-10-11T00:00:32Z", "xmlid": "mgs-er-omni"}, "name": "ER", "xmlid": "MGS_er"}, "Ephemeris": {"__spz_name__": "Ephemeris", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "MGS_ephemeris", "att": "auto/MGS_ephemeris", "desc": "", "is_public": "True", "mgs_orb_all": {"__spz_name__": "orbit mars", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mgs-orb-all", "att": "auto/mgs-orb-all", "dataSource": "PDS:NAIF", "desc": "
Sampling: 60S
Provider: PDS:NAIF", "is_public": "True", "lastModificationDate": "2012-03-06T21:46:11Z", "lastUpdate": "2018-06-21T12:31:24Z", "lat_mgs_iau": {"__spz_name__": "lat_iau_mars", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "lat_mgs_iau", "dataset": "mgs-orb-all", "is_public": "True", "name": "lat_iau_mars", "start_date": "1997-09-13T00:00:00Z", "stop_date": "2006-11-08T00:00:00Z", "ucd": "pos.ephem", "units": "deg", "xmlid": "lat_mgs_iau"}, "lon_mgs_iau": {"__spz_name__": "lon_iau_mars", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "lon_mgs_iau", "dataset": "mgs-orb-all", "is_public": "True", "name": "lon_iau_mars", "start_date": "1997-09-13T00:00:00Z", "stop_date": "2006-11-08T00:00:00Z", "ucd": "pos.ephem", "units": "deg", "xmlid": "lon_mgs_iau"}, "measurement_type": "Ephemeris", "mgs_mars_r": {"__spz_name__": "distance mgs-mars", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mgs_mars_r", "dataset": "mgs-orb-all", "is_public": "True", "name": "distance mgs-mars", "start_date": "1997-09-13T00:00:00Z", "stop_date": "2006-11-08T00:00:00Z", "ucd": "pos.ephem", "units": "Rma", "xmlid": "mgs_mars_r"}, "name": "orbit mars", "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MGS/Ephemeris/mgs-orb-all", "start_date": "1997-09-13T00:00:00Z", "stop_date": "2006-11-08T00:00:00Z", "xmlid": "mgs-orb-all", "xyz_mgs_mso": {"__spz_name__": "xyz_mso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "xyz_mgs_mso", "dataset": "mgs-orb-all", "display_type": "timeseries", "is_public": "True", "name": "xyz_mso", "size": "3", "start_date": "1997-09-13T00:00:00Z", "stop_date": "2006-11-08T00:00:00Z", "ucd": "pos.ephem", "units": "Rm", "xmlid": "xyz_mgs_mso", "xyz_mgs_mso0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_mgs_mso(0)", "dataset": "mgs-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "xyz_mgs_mso", "start_date": "1997-09-13T00:00:00Z", "stop_date": "2006-11-08T00:00:00Z", "xmlid": "xyz_mgs_mso(0)"}, "xyz_mgs_mso1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_mgs_mso(1)", "dataset": "mgs-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "xyz_mgs_mso", "start_date": "1997-09-13T00:00:00Z", "stop_date": "2006-11-08T00:00:00Z", "xmlid": "xyz_mgs_mso(1)"}, "xyz_mgs_mso2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_mgs_mso(2)", "dataset": "mgs-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "xyz_mgs_mso", "start_date": "1997-09-13T00:00:00Z", "stop_date": "2006-11-08T00:00:00Z", "xmlid": "xyz_mgs_mso(2)"}}}, "name": "Ephemeris", "xmlid": "MGS_ephemeris"}, "MAG": {"__spz_name__": "MAG", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "MGS_mag", "att": "auto/MGS_mag", "desc": "Fluxgate Magnetometer
Magnetometer", "is_public": "True", "mgs_mag_mso": {"__spz_name__": "orbit mars", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mgs-mag-mso", "att": "auto/mgs-mag-mso", "b_mgs_mso": {"__spz_name__": "b_mso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_mgs_mso", "b_mgs_mso0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_mgs_mso(0)", "dataset": "mgs-mag-mso", "index1": "0", "is_public": "True", "name": "bx", "parameter": "b_mgs_mso", "start_date": "1997-09-14T00:42:11Z", "stop_date": "2006-11-02T23:23:46Z", "xmlid": "b_mgs_mso(0)"}, "b_mgs_mso1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_mgs_mso(1)", "dataset": "mgs-mag-mso", "index1": "1", "is_public": "True", "name": "by", "parameter": "b_mgs_mso", "start_date": "1997-09-14T00:42:11Z", "stop_date": "2006-11-02T23:23:46Z", "xmlid": "b_mgs_mso(1)"}, "b_mgs_mso2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_mgs_mso(2)", "dataset": "mgs-mag-mso", "index1": "2", "is_public": "True", "name": "bz", "parameter": "b_mgs_mso", "start_date": "1997-09-14T00:42:11Z", "stop_date": "2006-11-02T23:23:46Z", "xmlid": "b_mgs_mso(2)"}, "dataset": "mgs-mag-mso", "description": "Magnetic field vector components in MSO coordinates", "display_type": "timeseries", "is_public": "True", "name": "b_mso", "size": "3", "start_date": "1997-09-14T00:42:11Z", "stop_date": "2006-11-02T23:23:46Z", "ucd": "phys.magField", "units": "nT", "xmlid": "b_mgs_mso"}, "b_mgs_pc": {"__spz_name__": "b_iau_mars", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_mgs_pc", "b_mgs_pc0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_mgs_pc(0)", "dataset": "mgs-mag-mso", "index1": "0", "is_public": "True", "name": "bx", "parameter": "b_mgs_pc", "start_date": "1997-09-14T00:42:11Z", "stop_date": "2006-11-02T23:23:46Z", "xmlid": "b_mgs_pc(0)"}, "b_mgs_pc1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_mgs_pc(1)", "dataset": "mgs-mag-mso", "index1": "1", "is_public": "True", "name": "by", "parameter": "b_mgs_pc", "start_date": "1997-09-14T00:42:11Z", "stop_date": "2006-11-02T23:23:46Z", "xmlid": "b_mgs_pc(1)"}, "b_mgs_pc2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_mgs_pc(2)", "dataset": "mgs-mag-mso", "index1": "2", "is_public": "True", "name": "bz", "parameter": "b_mgs_pc", "start_date": "1997-09-14T00:42:11Z", "stop_date": "2006-11-02T23:23:46Z", "xmlid": "b_mgs_pc(2)"}, "dataset": "mgs-mag-mso", "description": "Magnetic field vector components in planetocentic coordinates", "display_type": "timeseries", "is_public": "True", "name": "b_iau_mars", "size": "3", "start_date": "1997-09-14T00:42:11Z", "stop_date": "2006-11-02T23:23:46Z", "ucd": "phys.magField", "units": "nT", "xmlid": "b_mgs_pc"}, "b_mgs_tot": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_mgs_tot", "dataset": "mgs-mag-mso", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "1997-09-14T00:42:11Z", "stop_date": "2006-11-02T23:23:46Z", "ucd": "phys.magField", "units": "nT", "xmlid": "b_mgs_tot"}, "dataSource": "PDS", "desc": "
MinSampling: 0.75S; MaxSampling: 3S
Provider: PDS", "is_public": "True", "lastModificationDate": "2012-03-06T21:47:29Z", "lastUpdate": "2014-05-02T18:10:17Z", "maxSampling": "3S", "measurement_type": "MagneticField", "name": "orbit mars", "processing_level": "Calibrated", "sampling": "0.75S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MGS/MAG/mgs-mag-mso", "start_date": "1997-09-14T00:42:11Z", "stop_date": "2006-11-02T23:23:46Z", "xmlid": "mgs-mag-mso"}, "name": "MAG", "xmlid": "MGS_mag"}, "Proxy": {"__spz_name__": "Proxy", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "MGS_proxy", "att": "auto/MGS_proxy", "desc": "MGS Proxies
Magnetometer", "is_public": "True", "mgs_proxy_drap": {"__spz_name__": "imf draping direction", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mgs-proxy-drap", "att": "auto/mgs-proxy-drap", "dataSource": "David Brain", "desc": "
MinSampling: 1H; MaxSampling: 2H
Provider: David Brain", "is_public": "True", "lastModificationDate": "2012-03-06T21:46:16Z", "lastUpdate": "2012-03-06T21:46:16Z", "maxSampling": "2H", "measurement_type": "MagneticField", "mgs_drap_ang": {"__spz_name__": "draping_azimuth_ang", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mgs_drap_ang", "dataset": "mgs-proxy-drap", "is_public": "True", "name": "draping_azimuth_ang", "start_date": "1999-04-02T15:50:49Z", "stop_date": "2006-10-27T14:20:34Z", "units": "deg", "xmlid": "mgs_drap_ang"}, "name": "imf draping direction", "processing_level": "Calibrated", "sampling": "1H", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MGS/Proxy/mgs-proxy-drap", "start_date": "1999-04-02T15:50:49Z", "stop_date": "2006-10-27T14:20:34Z", "target": "Mars", "xmlid": "mgs-proxy-drap"}, "mgs_proxy_euv": {"__spz_name__": "euv", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mgs-proxy-euv", "att": "auto/mgs-proxy-euv", "dataSource": "David Brain", "desc": "Extreme Ultraviolet Proxy
MinSampling: 1H; MaxSampling: 2H
Provider: David Brain", "is_public": "True", "lastModificationDate": "2012-03-06T21:46:16Z", "lastUpdate": "2012-03-06T21:46:17Z", "maxSampling": "2H", "measurement_type": "Irradiance", "mgs_euv_earth": {"__spz_name__": "flux_earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mgs_euv_earth", "dataset": "mgs-proxy-euv", "is_public": "True", "name": "flux_earth", "start_date": "1999-01-01T00:00:00Z", "stop_date": "2006-12-31T22:00:00Z", "units": "sfu", "xmlid": "mgs_euv_earth"}, "mgs_euv_mars": {"__spz_name__": "flux_mars", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mgs_euv_mars", "dataset": "mgs-proxy-euv", "is_public": "True", "name": "flux_mars", "start_date": "1999-01-01T00:00:00Z", "stop_date": "2006-12-31T22:00:00Z", "units": "sfu", "xmlid": "mgs_euv_mars"}, "name": "euv", "processing_level": "Calibrated", "sampling": "1H", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MGS/Proxy/mgs-proxy-euv", "start_date": "1999-01-01T00:00:00Z", "stop_date": "2006-12-31T22:00:00Z", "target": "Mars", "xmlid": "mgs-proxy-euv"}, "mgs_proxy_subsol": {"__spz_name__": "subsolar b strength", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mgs-proxy-subsol", "att": "auto/mgs-proxy-subsol", "dataSource": "David Brain", "desc": "
MinSampling: 1H; MaxSampling: 2H
Provider: David Brain", "is_public": "True", "lastModificationDate": "2012-03-06T21:46:17Z", "lastUpdate": "2012-03-06T21:46:17Z", "maxSampling": "2H", "measurement_type": "MagneticField", "mgs_subsol_bmag": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mgs_subsol_bmag", "dataset": "mgs-proxy-subsol", "is_public": "True", "name": "|b|", "start_date": "1999-04-02T15:45:28Z", "stop_date": "2006-10-27T14:20:34Z", "units": "nT", "xmlid": "mgs_subsol_bmag"}, "name": "subsolar b strength", "processing_level": "Calibrated", "sampling": "1H", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MGS/Proxy/mgs-proxy-subsol", "start_date": "1999-04-02T15:45:28Z", "stop_date": "2006-10-27T14:20:34Z", "target": "Mars", "xmlid": "mgs-proxy-subsol"}, "name": "Proxy", "xmlid": "MGS_proxy"}, "__spz_name__": "MGS", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "MGS", "att": "auto/MGS", "desc": "Mars Global Surveyor
1996-11-07T17:00:00 - 2006-11-02T00:00:00
Mars arrival : 1997-09-12T01:17:00", "is_public": "True", "name": "MGS", "rank": "8", "target": "Mars", "xmlid": "MGS"}, "MMS": {"MMS1": {"Analytical_Models": {"__spz_name__": "Analytical Models", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "MMS1_models", "att": "auto/MMS1_models", "desc": "", "is_public": "True", "mms1_msph_models": {"PriorID": "mms1-orb-t89d", "__spz_name__": "distance to neutral sheet", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mms1-msph-models", "att": "auto/mms1-msph-models", "dataSource": "IRAP", "desc": "Distance to model neutral sheet
Sampling: 1M
Provider: IRAP", "dz_fairfield70_mms1_xyz_gse": {"__spz_name__": "dZ Fairfield70", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "dz_fairfield70_mms1_xyz_gse", "dataset": "mms1-msph-models", "description": "Distance (Re) from s/c location to Fairfield1970 neutral sheet position. Depends on spacecraft location in SM coordinates and dipole tilt angle. Valid for Ysm less than 15 Re.", "is_public": "True", "name": "dZ Fairfield70", "predefined": "1", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "template": "dz_fairfield70_##ORBIT##", "units": "Re", "xmlid": "dz_fairfield70_mms1_xyz_gse"}, "dz_fairfield80_mms1_xyz_gse": {"__spz_name__": "dZ Fairfield80", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "dz_fairfield80_mms1_xyz_gse", "dataset": "mms1-msph-models", "description": "Distance (Re) from s/c location to Fairfield1980 neutral sheet position. Depends on spacecraft location in SM coordinates and dipole tilt angle.", "is_public": "True", "name": "dZ Fairfield80", "predefined": "1", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "template": "dz_fairfield80_##ORBIT##", "units": "Re", "xmlid": "dz_fairfield80_mms1_xyz_gse"}, "is_public": "True", "lastModificationDate": "2024-10-04T05:34:59Z", "lastUpdate": "2024-10-02T09:40:55Z", "measurement_type": "Ephemeris", "name": "distance to neutral sheet", "processing_level": "Calibrated", "sampling": "1M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MMS/MMS1/Models/mms1-msph-models", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "target": "Earth", "timeRestriction": "2024-08-08T23:59:59.999Z", "xmlid": "mms1-msph-models"}, "mms1_t96_model": {"PriorID": "mms1-orb-t89d", "__spz_name__": "T96 field model", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mms1-t96-model", "att": "auto/mms1-t96-model", "b_t96gse_mms1_xyz_gse": {"__spz_name__": "b_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_t96gse_mms1_xyz_gse", "b_t96gse_mms1_xyz_gse0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gse_mms1_xyz_gse(0)", "dataset": "mms1-t96-model", "index1": "0", "is_public": "True", "name": "bx", "parameter": "b_t96gse_mms1_xyz_gse", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "b_t96gse_mms1_xyz_gse(0)"}, "b_t96gse_mms1_xyz_gse1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gse_mms1_xyz_gse(1)", "dataset": "mms1-t96-model", "index1": "1", "is_public": "True", "name": "by", "parameter": "b_t96gse_mms1_xyz_gse", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "b_t96gse_mms1_xyz_gse(1)"}, "b_t96gse_mms1_xyz_gse2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gse_mms1_xyz_gse(2)", "dataset": "mms1-t96-model", "index1": "2", "is_public": "True", "name": "bz", "parameter": "b_t96gse_mms1_xyz_gse", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "b_t96gse_mms1_xyz_gse(2)"}, "dataset": "mms1-t96-model", "is_public": "True", "name": "b_gse", "predefined": "1", "size": "3", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "template": "b_t96gse_##ORBIT##", "units": "nT", "xmlid": "b_t96gse_mms1_xyz_gse"}, "b_t96gsm_mms1_xyz_gse": {"__spz_name__": "b_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_t96gsm_mms1_xyz_gse", "b_t96gsm_mms1_xyz_gse0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gsm_mms1_xyz_gse(0)", "dataset": "mms1-t96-model", "index1": "0", "is_public": "True", "name": "bx", "parameter": "b_t96gsm_mms1_xyz_gse", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "b_t96gsm_mms1_xyz_gse(0)"}, "b_t96gsm_mms1_xyz_gse1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gsm_mms1_xyz_gse(1)", "dataset": "mms1-t96-model", "index1": "1", "is_public": "True", "name": "by", "parameter": "b_t96gsm_mms1_xyz_gse", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "b_t96gsm_mms1_xyz_gse(1)"}, "b_t96gsm_mms1_xyz_gse2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gsm_mms1_xyz_gse(2)", "dataset": "mms1-t96-model", "index1": "2", "is_public": "True", "name": "bz", "parameter": "b_t96gsm_mms1_xyz_gse", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "b_t96gsm_mms1_xyz_gse(2)"}, "dataset": "mms1-t96-model", "is_public": "True", "name": "b_gsm", "predefined": "1", "size": "3", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "template": "b_t96gsm_##ORBIT##", "units": "nT", "xmlid": "b_t96gsm_mms1_xyz_gse"}, "b_t96tot_mms1_xyz_gse": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_t96tot_mms1_xyz_gse", "dataset": "mms1-t96-model", "is_public": "True", "name": "|b|", "predefined": "1", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "template": "b_t96tot_##ORBIT##", "units": "nT", "xmlid": "b_t96tot_mms1_xyz_gse"}, "dataSource": "IRAP", "desc": "Tsyganenko96 geomagnetospheric magnetic field model
Sampling: 1M
Provider: IRAP", "is_public": "True", "lastModificationDate": "2024-10-04T05:34:59Z", "lastUpdate": "2024-10-02T09:40:55Z", "measurement_type": "MagneticField", "name": "T96 field model", "processing_level": "Calibrated", "sampling": "1M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MMS/MMS1/Models/mms1-t96-model", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "target": "Earth", "timeRestriction": "2024-08-08T23:59:59.999Z", "xmlid": "mms1-t96-model"}, "name": "Analytical Models", "xmlid": "MMS1_models"}, "EDP": {"__spz_name__": "EDP", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "MMS1_edp", "att": "auto/MMS1_edp", "burst": {"__spz_name__": "burst", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "mms1-edp-brst", "is_public": "True", "mms1_dce_brst": {"__spz_name__": "dc e-field", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mms1-dce-brst", "att": "auto/mms1-dce-brst", "dataSource": "LASP", "desc": "dc electric field / burst / l2
Sampling: 0.00015S
Provider: LASP", "is_public": "True", "lastModificationDate": "2024-10-04T05:35:57Z", "lastUpdate": "2024-08-12T16:48:36Z", "measurement_type": "ElectricField", "mms1_dce_gse_brst": {"__spz_name__": "e_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_dce_gse_brst", "dataset": "mms1-dce-brst", "display_type": "timeseries", "is_public": "True", "mms1_dce_gse_brst0": {"__spz_name__": "ex", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_dce_gse_brst(0)", "dataset": "mms1-dce-brst", "index1": "0", "is_public": "True", "name": "ex", "parameter": "mms1_dce_gse_brst", "start_date": "2015-08-02T00:03:44Z", "stop_date": "2024-06-15T17:46:03Z", "xmlid": "mms1_dce_gse_brst(0)"}, "mms1_dce_gse_brst1": {"__spz_name__": "ey", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_dce_gse_brst(1)", "dataset": "mms1-dce-brst", "index1": "1", "is_public": "True", "name": "ey", "parameter": "mms1_dce_gse_brst", "start_date": "2015-08-02T00:03:44Z", "stop_date": "2024-06-15T17:46:03Z", "xmlid": "mms1_dce_gse_brst(1)"}, "mms1_dce_gse_brst2": {"__spz_name__": "ez", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_dce_gse_brst(2)", "dataset": "mms1-dce-brst", "index1": "2", "is_public": "True", "name": "ez", "parameter": "mms1_dce_gse_brst", "start_date": "2015-08-02T00:03:44Z", "stop_date": "2024-06-15T17:46:03Z", "xmlid": "mms1_dce_gse_brst(2)"}, "name": "e_gse", "size": "3", "start_date": "2015-08-02T00:03:44Z", "stop_date": "2024-06-15T17:46:03Z", "units": "mV/m", "xmlid": "mms1_dce_gse_brst"}, "mms1_dce_gsm_brst": {"__spz_name__": "e_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_dce_gsm_brst", "dataset": "mms1-dce-brst", "display_type": "timeseries", "is_public": "True", "mms1_dce_gsm_brst0": {"__spz_name__": "ex", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_dce_gsm_brst(0)", "dataset": "mms1-dce-brst", "index1": "0", "is_public": "True", "name": "ex", "parameter": "mms1_dce_gsm_brst", "start_date": "2015-08-02T00:03:44Z", "stop_date": "2024-06-15T17:46:03Z", "xmlid": "mms1_dce_gsm_brst(0)"}, "mms1_dce_gsm_brst1": {"__spz_name__": "ey", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_dce_gsm_brst(1)", "dataset": "mms1-dce-brst", "index1": "1", "is_public": "True", "name": "ey", "parameter": "mms1_dce_gsm_brst", "start_date": "2015-08-02T00:03:44Z", "stop_date": "2024-06-15T17:46:03Z", "xmlid": "mms1_dce_gsm_brst(1)"}, "mms1_dce_gsm_brst2": {"__spz_name__": "ez", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_dce_gsm_brst(2)", "dataset": "mms1-dce-brst", "index1": "2", "is_public": "True", "name": "ez", "parameter": "mms1_dce_gsm_brst", "start_date": "2015-08-02T00:03:44Z", "stop_date": "2024-06-15T17:46:03Z", "xmlid": "mms1_dce_gsm_brst(2)"}, "name": "e_gsm", "size": "3", "start_date": "2015-08-02T00:03:44Z", "stop_date": "2024-06-15T17:46:03Z", "units": "mV/m", "xmlid": "mms1_dce_gsm_brst"}, "mms1_dce_qual_brst": {"__spz_name__": "dce : qual", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_dce_qual_brst", "dataset": "mms1-dce-brst", "description": "Quality indicator (3 good), (2 ok data, use with some caution), (1 bad data, use with caution), (0 Really bad data or no data at all)", "display_type": "timeseries", "is_public": "True", "name": "dce : qual", "start_date": "2015-08-02T00:03:44Z", "stop_date": "2024-06-15T17:46:03Z", "xmlid": "mms1_dce_qual_brst"}, "name": "dc e-field", "processing_level": "Calibrated", "sampling": "0.00015S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MMS/MMS1/EDP/mms1-dce-brst", "start_date": "2015-08-02T00:03:44Z", "stop_date": "2024-06-15T17:46:03Z", "timeRestriction": "2024-08-08T23:59:59.999Z", "xmlid": "mms1-dce-brst"}, "name": "burst", "xmlid": "mms1-edp-brst"}, "desc": "Electric field Double Probe
DoubleSphere", "fast": {"__spz_name__": "fast", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "mms1-edp-fast", "is_public": "True", "mms1_edp_dce": {"__spz_name__": "dc e-field", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mms1-edp-dce", "att": "auto/mms1-edp-dce", "dataSource": "LASP", "desc": "dc electric field / fast / l2
Sampling: 0.03S
Provider: LASP", "is_public": "True", "lastModificationDate": "2024-10-07T05:31:28Z", "lastUpdate": "2024-10-07T05:31:21Z", "measurement_type": "ElectricField", "mms1_dce_err": {"__spz_name__": "e : error", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_dce_err", "dataset": "mms1-edp-dce", "display_type": "timeseries", "is_public": "True", "mms1_dce_err0": {"__spz_name__": "ex", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_dce_err(0)", "dataset": "mms1-edp-dce", "index1": "0", "is_public": "True", "name": "ex", "parameter": "mms1_dce_err", "start_date": "2015-09-01T09:51:44Z", "stop_date": "2024-08-14T23:59:59Z", "xmlid": "mms1_dce_err(0)"}, "mms1_dce_err1": {"__spz_name__": "ey", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_dce_err(1)", "dataset": "mms1-edp-dce", "index1": "1", "is_public": "True", "name": "ey", "parameter": "mms1_dce_err", "start_date": "2015-09-01T09:51:44Z", "stop_date": "2024-08-14T23:59:59Z", "xmlid": "mms1_dce_err(1)"}, "mms1_dce_err2": {"__spz_name__": "ez", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_dce_err(2)", "dataset": "mms1-edp-dce", "index1": "2", "is_public": "True", "name": "ez", "parameter": "mms1_dce_err", "start_date": "2015-09-01T09:51:44Z", "stop_date": "2024-08-14T23:59:59Z", "xmlid": "mms1_dce_err(2)"}, "name": "e : error", "size": "3", "start_date": "2015-09-01T09:51:44Z", "stop_date": "2024-08-14T23:59:59Z", "units": "mV/m", "xmlid": "mms1_dce_err"}, "mms1_dce_gse": {"__spz_name__": "e_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_dce_gse", "dataset": "mms1-edp-dce", "display_type": "timeseries", "is_public": "True", "mms1_dce_gse0": {"__spz_name__": "ex", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_dce_gse(0)", "dataset": "mms1-edp-dce", "index1": "0", "is_public": "True", "name": "ex", "parameter": "mms1_dce_gse", "start_date": "2015-09-01T09:51:44Z", "stop_date": "2024-08-14T23:59:59Z", "xmlid": "mms1_dce_gse(0)"}, "mms1_dce_gse1": {"__spz_name__": "ey", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_dce_gse(1)", "dataset": "mms1-edp-dce", "index1": "1", "is_public": "True", "name": "ey", "parameter": "mms1_dce_gse", "start_date": "2015-09-01T09:51:44Z", "stop_date": "2024-08-14T23:59:59Z", "xmlid": "mms1_dce_gse(1)"}, "mms1_dce_gse2": {"__spz_name__": "ez", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_dce_gse(2)", "dataset": "mms1-edp-dce", "index1": "2", "is_public": "True", "name": "ez", "parameter": "mms1_dce_gse", "start_date": "2015-09-01T09:51:44Z", "stop_date": "2024-08-14T23:59:59Z", "xmlid": "mms1_dce_gse(2)"}, "name": "e_gse", "size": "3", "start_date": "2015-09-01T09:51:44Z", "stop_date": "2024-08-14T23:59:59Z", "units": "mV/m", "xmlid": "mms1_dce_gse"}, "mms1_dce_gsm": {"__spz_name__": "e_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_dce_gsm", "dataset": "mms1-edp-dce", "display_type": "timeseries", "is_public": "True", "mms1_dce_gsm0": {"__spz_name__": "ex", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_dce_gsm(0)", "dataset": "mms1-edp-dce", "index1": "0", "is_public": "True", "name": "ex", "parameter": "mms1_dce_gsm", "start_date": "2015-09-01T09:51:44Z", "stop_date": "2024-08-14T23:59:59Z", "xmlid": "mms1_dce_gsm(0)"}, "mms1_dce_gsm1": {"__spz_name__": "ey", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_dce_gsm(1)", "dataset": "mms1-edp-dce", "index1": "1", "is_public": "True", "name": "ey", "parameter": "mms1_dce_gsm", "start_date": "2015-09-01T09:51:44Z", "stop_date": "2024-08-14T23:59:59Z", "xmlid": "mms1_dce_gsm(1)"}, "mms1_dce_gsm2": {"__spz_name__": "ez", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_dce_gsm(2)", "dataset": "mms1-edp-dce", "index1": "2", "is_public": "True", "name": "ez", "parameter": "mms1_dce_gsm", "start_date": "2015-09-01T09:51:44Z", "stop_date": "2024-08-14T23:59:59Z", "xmlid": "mms1_dce_gsm(2)"}, "name": "e_gsm", "size": "3", "start_date": "2015-09-01T09:51:44Z", "stop_date": "2024-08-14T23:59:59Z", "units": "mV/m", "xmlid": "mms1_dce_gsm"}, "mms1_dce_para": {"__spz_name__": "e_para", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_dce_para", "dataset": "mms1-edp-dce", "display_type": "timeseries", "is_public": "True", "mms1_dce_para0": {"__spz_name__": "e_para", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_dce_para(0)", "dataset": "mms1-edp-dce", "index1": "0", "is_public": "True", "name": "e_para", "parameter": "mms1_dce_para", "start_date": "2015-09-01T09:51:44Z", "stop_date": "2024-08-14T23:59:59Z", "xmlid": "mms1_dce_para(0)"}, "mms1_dce_para1": {"__spz_name__": "e_perp", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_dce_para(1)", "dataset": "mms1-edp-dce", "index1": "1", "is_public": "True", "name": "e_perp", "parameter": "mms1_dce_para", "start_date": "2015-09-01T09:51:44Z", "stop_date": "2024-08-14T23:59:59Z", "xmlid": "mms1_dce_para(1)"}, "name": "e_para", "size": "2", "start_date": "2015-09-01T09:51:44Z", "stop_date": "2024-08-14T23:59:59Z", "units": "mV/m", "xmlid": "mms1_dce_para"}, "mms1_edp_dce_qual": {"__spz_name__": "dce : qual", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_edp_dce_qual", "dataset": "mms1-edp-dce", "description": "Quality indicator (3 good), (2 ok data, use with some caution), (1 bad data, use with caution), (0 Really bad data or no data at all)", "display_type": "timeseries", "is_public": "True", "name": "dce : qual", "start_date": "2015-09-01T09:51:44Z", "stop_date": "2024-08-14T23:59:59Z", "xmlid": "mms1_edp_dce_qual"}, "name": "dc e-field", "processing_level": "Calibrated", "sampling": "0.03S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MMS/MMS1/EDP/mms1-edp-dce", "start_date": "2015-09-01T09:51:44Z", "stop_date": "2024-08-14T23:59:59Z", "timeRestriction": "2024-08-08T23:59:59.999Z", "xmlid": "mms1-edp-dce"}, "mms1_edp_scpot": {"__spz_name__": "scpot", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mms1-edp-scpot", "att": "auto/mms1-edp-scpot", "dataSource": "LASP", "desc": "sc potential / fast / l2
Sampling: 0.03S
Provider: LASP", "is_public": "True", "lastModificationDate": "2024-10-07T05:31:35Z", "lastUpdate": "2024-10-07T05:31:34Z", "measurement_type": "ElectricField", "mms1_edp_scpot": {"__spz_name__": "sc pot", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_edp_scpot", "dataset": "mms1-edp-scpot", "display_type": "timeseries", "is_public": "True", "name": "sc pot", "start_date": "2015-07-15T15:18:14Z", "stop_date": "2024-09-29T21:31:55Z", "units": "V", "xmlid": "mms1_edp_scpot"}, "mms1_edp_scpot_qual": {"__spz_name__": "sc pot : qual", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_edp_scpot_qual", "dataset": "mms1-edp-scpot", "description": "Quality indicator (3 good), (2 ok data, use with some caution), (1 bad data, use with caution), (0 Really bad data or no data at all)", "display_type": "timeseries", "is_public": "True", "name": "sc pot : qual", "start_date": "2015-07-15T15:18:14Z", "stop_date": "2024-09-29T21:31:55Z", "xmlid": "mms1_edp_scpot_qual"}, "name": "scpot", "processing_level": "Calibrated", "sampling": "0.03S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MMS/MMS1/EDP/mms1-edp-scpot", "start_date": "2015-07-15T15:18:14Z", "stop_date": "2024-09-29T21:31:55Z", "timeRestriction": "2024-08-08T23:59:59.999Z", "xmlid": "mms1-edp-scpot"}, "name": "fast", "xmlid": "mms1-edp-fast"}, "is_public": "True", "name": "EDP", "survey": {"__spz_name__": "survey", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "mms1-edp-srvy", "is_public": "True", "mms1_edp_hfesp": {"__spz_name__": "e spectral density", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mms1-edp-hfesp", "att": "auto/mms1-edp-hfesp", "dataSource": "LASP", "desc": "ac electric field spectral density / srvy / l2
Sampling: 16S
Provider: LASP", "is_public": "True", "lastModificationDate": "2024-10-07T05:31:06Z", "lastUpdate": "2024-10-07T05:31:04Z", "measurement_type": "ElectricField", "mms1_edp_espec": {"__spz_name__": "e spec dens", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_edp_espec", "dataset": "mms1-edp-hfesp", "display_type": "spectrogram", "is_public": "True", "name": "e spec dens", "start_date": "2015-09-01T00:00:11Z", "stop_date": "2024-09-30T21:22:09Z", "units": "(V/m)\u00b2/Hz", "xmlid": "mms1_edp_espec"}, "name": "e spectral density", "processing_level": "Calibrated", "sampling": "16S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MMS/MMS1/EDP/mms1-edp-hfesp", "start_date": "2015-09-01T00:00:11Z", "stop_date": "2024-09-30T21:22:09Z", "timeRestriction": "2024-08-08T23:59:59.999Z", "xmlid": "mms1-edp-hfesp"}, "name": "survey", "xmlid": "mms1-edp-srvy"}, "xmlid": "MMS1_edp"}, "Ephemeris": {"__spz_name__": "Ephemeris", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "MMS1_ephemeris", "att": "auto/MMS1_ephemeris", "desc": "", "is_public": "True", "mms1_orb_t89d": {"__spz_name__": "orbit t89d", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mms1-orb-t89d", "att": "auto/mms1-orb-t89d", "dataSource": "LANL", "desc": "
Sampling: 30S
Provider: LANL", "is_public": "True", "lastModificationDate": "2024-10-04T05:34:59Z", "lastUpdate": "2024-10-02T09:40:55Z", "measurement_type": "Ephemeris", "mms1_r": {"__spz_name__": "distance mms1-earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_r", "dataset": "mms1-orb-t89d", "display_type": "timeseries", "is_public": "True", "name": "distance mms1-earth", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "ucd": "pos.distance;instr.obsty", "units": "Re", "xmlid": "mms1_r"}, "mms1_xyz_gse": {"__spz_name__": "xyz_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_xyz_gse", "dataset": "mms1-orb-t89d", "description": "Spacecraft position in GSE", "display_type": "timeseries", "is_public": "True", "mms1_xyz_gse0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_xyz_gse(0)", "dataset": "mms1-orb-t89d", "index1": "0", "is_public": "True", "name": "x", "parameter": "mms1_xyz_gse", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "mms1_xyz_gse(0)"}, "mms1_xyz_gse1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_xyz_gse(1)", "dataset": "mms1-orb-t89d", "index1": "1", "is_public": "True", "name": "y", "parameter": "mms1_xyz_gse", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "mms1_xyz_gse(1)"}, "mms1_xyz_gse2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_xyz_gse(2)", "dataset": "mms1-orb-t89d", "index1": "2", "is_public": "True", "name": "z", "parameter": "mms1_xyz_gse", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "mms1_xyz_gse(2)"}, "name": "xyz_gse", "size": "3", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "Re", "xmlid": "mms1_xyz_gse"}, "mms1_xyz_gsm": {"__spz_name__": "xyz_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_xyz_gsm", "dataset": "mms1-orb-t89d", "description": "Spacecraft position in GSM", "display_type": "timeseries", "is_public": "True", "mms1_xyz_gsm0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_xyz_gsm(0)", "dataset": "mms1-orb-t89d", "index1": "0", "is_public": "True", "name": "x", "parameter": "mms1_xyz_gsm", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "mms1_xyz_gsm(0)"}, "mms1_xyz_gsm1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_xyz_gsm(1)", "dataset": "mms1-orb-t89d", "index1": "1", "is_public": "True", "name": "y", "parameter": "mms1_xyz_gsm", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "mms1_xyz_gsm(1)"}, "mms1_xyz_gsm2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_xyz_gsm(2)", "dataset": "mms1-orb-t89d", "index1": "2", "is_public": "True", "name": "z", "parameter": "mms1_xyz_gsm", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "mms1_xyz_gsm(2)"}, "name": "xyz_gsm", "size": "3", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "Re", "xmlid": "mms1_xyz_gsm"}, "name": "orbit t89d", "processing_level": "Calibrated", "sampling": "30S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MMS/MMS1/Ephemeris/mms1-orb-t89d", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "timeRestriction": "2024-08-08T23:59:59.999Z", "xmlid": "mms1-orb-t89d"}, "name": "Ephemeris", "xmlid": "MMS1_ephemeris"}, "FGM": {"__spz_name__": "FGM", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "MMS1_fgm", "att": "auto/MMS1_fgm", "desc": "Fluxgate Magnetometer
Magnetometer", "is_public": "True", "mms1_fgm_brst": {"__spz_name__": "burst", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mms1-fgm-brst", "att": "auto/mms1-fgm-brst", "dataSource": "LASP", "desc": "burst
Sampling: 0.01S
Provider: LASP", "is_public": "True", "lastModificationDate": "2024-10-04T05:45:26Z", "lastUpdate": "2024-08-13T11:25:35Z", "measurement_type": "MagneticField", "mms1_brst_bgse": {"__spz_name__": "b_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_brst_bgse", "dataset": "mms1-fgm-brst", "display_type": "timeseries", "is_public": "True", "mms1_brst_bgse0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_bgse(0)", "dataset": "mms1-fgm-brst", "index1": "0", "is_public": "True", "name": "bx", "parameter": "mms1_brst_bgse", "start_date": "2015-09-01T12:11:14Z", "stop_date": "2024-06-30T17:58:32Z", "xmlid": "mms1_brst_bgse(0)"}, "mms1_brst_bgse1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_bgse(1)", "dataset": "mms1-fgm-brst", "index1": "1", "is_public": "True", "name": "by", "parameter": "mms1_brst_bgse", "start_date": "2015-09-01T12:11:14Z", "stop_date": "2024-06-30T17:58:32Z", "xmlid": "mms1_brst_bgse(1)"}, "mms1_brst_bgse2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_bgse(2)", "dataset": "mms1-fgm-brst", "index1": "2", "is_public": "True", "name": "bz", "parameter": "mms1_brst_bgse", "start_date": "2015-09-01T12:11:14Z", "stop_date": "2024-06-30T17:58:32Z", "xmlid": "mms1_brst_bgse(2)"}, "name": "b_gse", "size": "3", "start_date": "2015-09-01T12:11:14Z", "stop_date": "2024-06-30T17:58:32Z", "units": "nT", "xmlid": "mms1_brst_bgse"}, "mms1_brst_bgsm": {"__spz_name__": "b_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_brst_bgsm", "dataset": "mms1-fgm-brst", "display_type": "timeseries", "is_public": "True", "mms1_brst_bgsm0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_bgsm(0)", "dataset": "mms1-fgm-brst", "index1": "0", "is_public": "True", "name": "bx", "parameter": "mms1_brst_bgsm", "start_date": "2015-09-01T12:11:14Z", "stop_date": "2024-06-30T17:58:32Z", "xmlid": "mms1_brst_bgsm(0)"}, "mms1_brst_bgsm1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_bgsm(1)", "dataset": "mms1-fgm-brst", "index1": "1", "is_public": "True", "name": "by", "parameter": "mms1_brst_bgsm", "start_date": "2015-09-01T12:11:14Z", "stop_date": "2024-06-30T17:58:32Z", "xmlid": "mms1_brst_bgsm(1)"}, "mms1_brst_bgsm2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_bgsm(2)", "dataset": "mms1-fgm-brst", "index1": "2", "is_public": "True", "name": "bz", "parameter": "mms1_brst_bgsm", "start_date": "2015-09-01T12:11:14Z", "stop_date": "2024-06-30T17:58:32Z", "xmlid": "mms1_brst_bgsm(2)"}, "name": "b_gsm", "size": "3", "start_date": "2015-09-01T12:11:14Z", "stop_date": "2024-06-30T17:58:32Z", "units": "nT", "xmlid": "mms1_brst_bgsm"}, "mms1_brst_btot": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_brst_btot", "dataset": "mms1-fgm-brst", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "2015-09-01T12:11:14Z", "stop_date": "2024-06-30T17:58:32Z", "units": "nT", "xmlid": "mms1_brst_btot"}, "name": "burst", "processing_level": "Calibrated", "sampling": "0.01S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MMS/MMS1/FGM/mms1-fgm-brst", "start_date": "2015-09-01T12:11:14Z", "stop_date": "2024-06-30T17:58:32Z", "timeRestriction": "2024-08-08T23:59:59.999Z", "xmlid": "mms1-fgm-brst"}, "mms1_fgm_srvy": {"__spz_name__": "survey", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mms1-fgm-srvy", "att": "auto/mms1-fgm-srvy", "dataSource": "LASP", "desc": "survey
MinSampling: 0.0625S; MaxSampling: 0.125S
Provider: LASP", "is_public": "True", "lastModificationDate": "2024-10-07T05:32:35Z", "lastUpdate": "2024-10-07T05:32:32Z", "maxSampling": "0.125S", "measurement_type": "MagneticField", "mms1_b_gse": {"__spz_name__": "b_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_b_gse", "dataset": "mms1-fgm-srvy", "display_type": "timeseries", "is_public": "True", "mms1_b_gse0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_b_gse(0)", "dataset": "mms1-fgm-srvy", "index1": "0", "is_public": "True", "name": "bx", "parameter": "mms1_b_gse", "start_date": "2015-09-01T00:00:12Z", "stop_date": "2024-09-02T00:00:04Z", "xmlid": "mms1_b_gse(0)"}, "mms1_b_gse1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_b_gse(1)", "dataset": "mms1-fgm-srvy", "index1": "1", "is_public": "True", "name": "by", "parameter": "mms1_b_gse", "start_date": "2015-09-01T00:00:12Z", "stop_date": "2024-09-02T00:00:04Z", "xmlid": "mms1_b_gse(1)"}, "mms1_b_gse2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_b_gse(2)", "dataset": "mms1-fgm-srvy", "index1": "2", "is_public": "True", "name": "bz", "parameter": "mms1_b_gse", "start_date": "2015-09-01T00:00:12Z", "stop_date": "2024-09-02T00:00:04Z", "xmlid": "mms1_b_gse(2)"}, "name": "b_gse", "size": "3", "start_date": "2015-09-01T00:00:12Z", "stop_date": "2024-09-02T00:00:04Z", "units": "nT", "xmlid": "mms1_b_gse"}, "mms1_b_gsm": {"__spz_name__": "b_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_b_gsm", "dataset": "mms1-fgm-srvy", "display_type": "timeseries", "is_public": "True", "mms1_b_gsm0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_b_gsm(0)", "dataset": "mms1-fgm-srvy", "index1": "0", "is_public": "True", "name": "bx", "parameter": "mms1_b_gsm", "start_date": "2015-09-01T00:00:12Z", "stop_date": "2024-09-02T00:00:04Z", "xmlid": "mms1_b_gsm(0)"}, "mms1_b_gsm1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_b_gsm(1)", "dataset": "mms1-fgm-srvy", "index1": "1", "is_public": "True", "name": "by", "parameter": "mms1_b_gsm", "start_date": "2015-09-01T00:00:12Z", "stop_date": "2024-09-02T00:00:04Z", "xmlid": "mms1_b_gsm(1)"}, "mms1_b_gsm2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_b_gsm(2)", "dataset": "mms1-fgm-srvy", "index1": "2", "is_public": "True", "name": "bz", "parameter": "mms1_b_gsm", "start_date": "2015-09-01T00:00:12Z", "stop_date": "2024-09-02T00:00:04Z", "xmlid": "mms1_b_gsm(2)"}, "name": "b_gsm", "size": "3", "start_date": "2015-09-01T00:00:12Z", "stop_date": "2024-09-02T00:00:04Z", "units": "nT", "xmlid": "mms1_b_gsm"}, "mms1_b_tot": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_b_tot", "dataset": "mms1-fgm-srvy", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "2015-09-01T00:00:12Z", "stop_date": "2024-09-02T00:00:04Z", "units": "nT", "xmlid": "mms1_b_tot"}, "mms1_pres_m": {"__spz_name__": "pressure_b", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_pres_m", "dataset": "mms1-fgm-srvy", "display_type": "timeseries", "is_public": "True", "name": "pressure_b", "start_date": "2015-09-01T00:00:12Z", "stop_date": "2024-09-02T00:00:04Z", "units": "nPa", "xmlid": "mms1_pres_m"}, "name": "survey", "processing_level": "Calibrated", "sampling": "0.0625S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MMS/MMS1/FGM/mms1-fgm-srvy", "start_date": "2015-09-01T00:00:12Z", "stop_date": "2024-09-02T00:00:04Z", "timeRestriction": "2024-08-08T23:59:59.999Z", "xmlid": "mms1-fgm-srvy"}, "name": "FGM", "xmlid": "MMS1_fgm"}, "FPI": {"__spz_name__": "FPI", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "MMS1_fpi", "att": "auto/MMS1_fpi", "burst_mode": {"__spz_name__": "burst mode", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "mms1-fpi-brst", "is_public": "True", "mms1_fpi_brst_current": {"PriorID": "mms1-fpi-brst.desm", "__spz_name__": "electric current", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mms1-fpi-brst.current", "att": "auto/mms1-fpi-brst.current", "dataSource": "LASP", "desc": "electric current : burst mode
Sampling: 0.03S
Provider: LASP", "is_public": "True", "lastModificationDate": "2024-10-04T05:57:24Z", "lastUpdate": "2024-10-02T10:33:08Z", "measurement_type": "ThermalPlasma", "mms1_brst_jgse": {"__spz_name__": "j_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_brst_jgse", "dataset": "mms1-fpi-brst.current", "description": "Electric current = 1.6e-10*(mms1_brst_desm_n+mms1_brst_dism_n)*0.5*(mms1_brst_dism_v-mms1_brst_desm_v)", "display_type": "timeseries", "is_public": "True", "mms1_brst_jgse0": {"__spz_name__": "jx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_jgse(0)", "dataset": "mms1-fpi-brst.current", "index1": "0", "is_public": "True", "name": "jx", "parameter": "mms1_brst_jgse", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms1_brst_jgse(0)"}, "mms1_brst_jgse1": {"__spz_name__": "jy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_jgse(1)", "dataset": "mms1-fpi-brst.current", "index1": "1", "is_public": "True", "name": "jy", "parameter": "mms1_brst_jgse", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms1_brst_jgse(1)"}, "mms1_brst_jgse2": {"__spz_name__": "jz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_jgse(2)", "dataset": "mms1-fpi-brst.current", "index1": "2", "is_public": "True", "name": "jz", "parameter": "mms1_brst_jgse", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms1_brst_jgse(2)"}, "name": "j_gse", "size": "3", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "units": "A/m\u00b2", "xmlid": "mms1_brst_jgse"}, "name": "electric current", "processing_level": "Calibrated", "sampling": "0.03S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MMS/MMS1/FPI/mms1-fpi-brst.current", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "timeRestriction": "2024-08-08T23:59:59.999Z", "xmlid": "mms1-fpi-brst.current"}, "mms1_fpi_brst_desm": {"__spz_name__": "DES : electrons", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mms1-fpi-brst.desm", "att": "auto/mms1-fpi-brst.desm", "dataSource": "LASP", "desc": "Dual Electron Spectrometers : burst mode
Sampling: 0.03S
Provider: LASP", "is_public": "True", "lastModificationDate": "2024-10-04T05:57:24Z", "lastUpdate": "2024-10-02T10:33:08Z", "measurement_type": "ThermalPlasma", "mms1_brst_des_anti": {"__spz_name__": "elec eflux : anti", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_brst_des_anti", "dataset": "mms1-fpi-brst.desm", "display_type": "spectrogram", "is_public": "True", "name": "elec eflux : anti", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "units": "keV/(cm\u00b2-s-sr-keV)", "xmlid": "mms1_brst_des_anti"}, "mms1_brst_des_pahigh": {"__spz_name__": "pa dist : highen", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_brst_des_pahigh", "dataset": "mms1-fpi-brst.desm", "description": "High energy bin: 2 keV - 30 keV. \n Pitch-angle bin size: 6 deg. Note that pitch angles are calculated in the spacecraft frame; \n i.e., not shifted by the bulk velocity", "display_type": "spectrogram", "is_public": "True", "name": "pa dist : highen", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "units": "keV/(cm\u00b2-s-sr-keV)", "xmlid": "mms1_brst_des_pahigh"}, "mms1_brst_des_palow": {"__spz_name__": "pa dist : lowen", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_brst_des_palow", "dataset": "mms1-fpi-brst.desm", "description": "Low energy bin: 0 eV - 200 eV. \n Pitch-angle bin size: 6 deg. Note that pitch angles are calculated in the spacecraft frame; \n i.e., not shifted by the bulk velocity", "display_type": "spectrogram", "is_public": "True", "name": "pa dist : lowen", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "units": "keV/(cm\u00b2-s-sr-keV)", "xmlid": "mms1_brst_des_palow"}, "mms1_brst_des_pamid": {"__spz_name__": "pa dist : miden", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_brst_des_pamid", "dataset": "mms1-fpi-brst.desm", "description": "Mid energy bin: 200 eV - 2 keV. \n Pitch-angle bin size: 6 deg. Note that pitch angles are calculated in the spacecraft frame; \n i.e., not shifted by the bulk velocity", "display_type": "spectrogram", "is_public": "True", "name": "pa dist : miden", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "units": "keV/(cm\u00b2-s-sr-keV)", "xmlid": "mms1_brst_des_pamid"}, "mms1_brst_des_para": {"__spz_name__": "elec eflux : para", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_brst_des_para", "dataset": "mms1-fpi-brst.desm", "display_type": "spectrogram", "is_public": "True", "name": "elec eflux : para", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "units": "keV/(cm\u00b2-s-sr-keV)", "xmlid": "mms1_brst_des_para"}, "mms1_brst_des_perp": {"__spz_name__": "elec eflux : perp", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_brst_des_perp", "dataset": "mms1-fpi-brst.desm", "display_type": "spectrogram", "is_public": "True", "name": "elec eflux : perp", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "units": "keV/(cm\u00b2-s-sr-keV)", "xmlid": "mms1_brst_des_perp"}, "mms1_brst_desm_err": {"__spz_name__": "error flags", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_brst_desm_err", "dataset": "mms1-fpi-brst.desm", "display_type": "timeseries", "is_public": "True", "name": "error flags", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms1_brst_desm_err"}, "mms1_brst_desm_hq": {"__spz_name__": "heatq_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_brst_desm_hq", "dataset": "mms1-fpi-brst.desm", "display_type": "timeseries", "is_public": "True", "mms1_brst_desm_hq0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_desm_hq(0)", "dataset": "mms1-fpi-brst.desm", "index1": "0", "is_public": "True", "name": "x", "parameter": "mms1_brst_desm_hq", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms1_brst_desm_hq(0)"}, "mms1_brst_desm_hq1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_desm_hq(1)", "dataset": "mms1-fpi-brst.desm", "index1": "1", "is_public": "True", "name": "y", "parameter": "mms1_brst_desm_hq", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms1_brst_desm_hq(1)"}, "mms1_brst_desm_hq2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_desm_hq(2)", "dataset": "mms1-fpi-brst.desm", "index1": "2", "is_public": "True", "name": "z", "parameter": "mms1_brst_desm_hq", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms1_brst_desm_hq(2)"}, "name": "heatq_gse", "size": "3", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "ucd": "phys.pressure", "units": "mW/m\u00b2", "xmlid": "mms1_brst_desm_hq"}, "mms1_brst_desm_hqerr": {"__spz_name__": "heatq_gse : err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_brst_desm_hqerr", "dataset": "mms1-fpi-brst.desm", "display_type": "timeseries", "is_public": "True", "mms1_brst_desm_hqerr0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_desm_hqerr(0)", "dataset": "mms1-fpi-brst.desm", "index1": "0", "is_public": "True", "name": "x", "parameter": "mms1_brst_desm_hqerr", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms1_brst_desm_hqerr(0)"}, "mms1_brst_desm_hqerr1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_desm_hqerr(1)", "dataset": "mms1-fpi-brst.desm", "index1": "1", "is_public": "True", "name": "y", "parameter": "mms1_brst_desm_hqerr", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms1_brst_desm_hqerr(1)"}, "mms1_brst_desm_hqerr2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_desm_hqerr(2)", "dataset": "mms1-fpi-brst.desm", "index1": "2", "is_public": "True", "name": "z", "parameter": "mms1_brst_desm_hqerr", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms1_brst_desm_hqerr(2)"}, "name": "heatq_gse : err", "size": "3", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "ucd": "phys.pressure", "units": "mW/m\u00b2", "xmlid": "mms1_brst_desm_hqerr"}, "mms1_brst_desm_n": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_brst_desm_n", "dataset": "mms1-fpi-brst.desm", "display_type": "timeseries", "is_public": "True", "name": "density", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "units": "cm\u207b\u00b3", "xmlid": "mms1_brst_desm_n"}, "mms1_brst_desm_nerr": {"__spz_name__": "density : err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_brst_desm_nerr", "dataset": "mms1-fpi-brst.desm", "display_type": "timeseries", "is_public": "True", "name": "density : err", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "units": "cm\u207b\u00b3", "xmlid": "mms1_brst_desm_nerr"}, "mms1_brst_desm_spom": {"__spz_name__": "elec eflux : omni", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_brst_desm_spom", "dataset": "mms1-fpi-brst.desm", "display_type": "spectrogram", "is_public": "True", "name": "elec eflux : omni", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "units": "keV/(cm\u00b2-s-sr-keV)", "xmlid": "mms1_brst_desm_spom"}, "mms1_brst_desm_t": {"__spz_name__": "temp_tensor_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_brst_desm_t", "dataset": "mms1-fpi-brst.desm", "display_type": "timeseries", "is_public": "True", "mms1_brst_desm_t0": {"__spz_name__": "xx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_desm_t(0)", "dataset": "mms1-fpi-brst.desm", "index1": "0", "is_public": "True", "name": "xx", "parameter": "mms1_brst_desm_t", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms1_brst_desm_t(0)"}, "mms1_brst_desm_t1": {"__spz_name__": "xy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_desm_t(1)", "dataset": "mms1-fpi-brst.desm", "index1": "1", "is_public": "True", "name": "xy", "parameter": "mms1_brst_desm_t", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms1_brst_desm_t(1)"}, "mms1_brst_desm_t2": {"__spz_name__": "xz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_desm_t(2)", "dataset": "mms1-fpi-brst.desm", "index1": "2", "is_public": "True", "name": "xz", "parameter": "mms1_brst_desm_t", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms1_brst_desm_t(2)"}, "mms1_brst_desm_t3": {"__spz_name__": "yx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_desm_t(3)", "dataset": "mms1-fpi-brst.desm", "index1": "3", "is_public": "True", "name": "yx", "parameter": "mms1_brst_desm_t", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms1_brst_desm_t(3)"}, "mms1_brst_desm_t4": {"__spz_name__": "yy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_desm_t(4)", "dataset": "mms1-fpi-brst.desm", "index1": "4", "is_public": "True", "name": "yy", "parameter": "mms1_brst_desm_t", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms1_brst_desm_t(4)"}, "mms1_brst_desm_t5": {"__spz_name__": "yz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_desm_t(5)", "dataset": "mms1-fpi-brst.desm", "index1": "5", "is_public": "True", "name": "yz", "parameter": "mms1_brst_desm_t", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms1_brst_desm_t(5)"}, "mms1_brst_desm_t6": {"__spz_name__": "zx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_desm_t(6)", "dataset": "mms1-fpi-brst.desm", "index1": "6", "is_public": "True", "name": "zx", "parameter": "mms1_brst_desm_t", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms1_brst_desm_t(6)"}, "mms1_brst_desm_t7": {"__spz_name__": "zy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_desm_t(7)", "dataset": "mms1-fpi-brst.desm", "index1": "7", "is_public": "True", "name": "zy", "parameter": "mms1_brst_desm_t", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms1_brst_desm_t(7)"}, "mms1_brst_desm_t8": {"__spz_name__": "zz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_desm_t(8)", "dataset": "mms1-fpi-brst.desm", "index1": "8", "is_public": "True", "name": "zz", "parameter": "mms1_brst_desm_t", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms1_brst_desm_t(8)"}, "name": "temp_tensor_gse", "size": "9", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "units": "eV", "xmlid": "mms1_brst_desm_t"}, "mms1_brst_desm_tpar": {"__spz_name__": "t_para", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_brst_desm_tpar", "dataset": "mms1-fpi-brst.desm", "display_type": "timeseries", "is_public": "True", "name": "t_para", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "units": "eV", "xmlid": "mms1_brst_desm_tpar"}, "mms1_brst_desm_tperp": {"__spz_name__": "t_perp", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_brst_desm_tperp", "dataset": "mms1-fpi-brst.desm", "display_type": "timeseries", "is_public": "True", "name": "t_perp", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "units": "eV", "xmlid": "mms1_brst_desm_tperp"}, "mms1_brst_desm_v": {"__spz_name__": "v_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_brst_desm_v", "dataset": "mms1-fpi-brst.desm", "display_type": "timeseries", "is_public": "True", "mms1_brst_desm_v0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_desm_v(0)", "dataset": "mms1-fpi-brst.desm", "index1": "0", "is_public": "True", "name": "vx", "parameter": "mms1_brst_desm_v", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms1_brst_desm_v(0)"}, "mms1_brst_desm_v1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_desm_v(1)", "dataset": "mms1-fpi-brst.desm", "index1": "1", "is_public": "True", "name": "vy", "parameter": "mms1_brst_desm_v", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms1_brst_desm_v(1)"}, "mms1_brst_desm_v2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_desm_v(2)", "dataset": "mms1-fpi-brst.desm", "index1": "2", "is_public": "True", "name": "vz", "parameter": "mms1_brst_desm_v", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms1_brst_desm_v(2)"}, "name": "v_gse", "size": "3", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "units": "km/s", "xmlid": "mms1_brst_desm_v"}, "mms1_brst_desm_verr": {"__spz_name__": "v_gse : err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_brst_desm_verr", "dataset": "mms1-fpi-brst.desm", "display_type": "timeseries", "is_public": "True", "mms1_brst_desm_verr0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_desm_verr(0)", "dataset": "mms1-fpi-brst.desm", "index1": "0", "is_public": "True", "name": "vx", "parameter": "mms1_brst_desm_verr", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms1_brst_desm_verr(0)"}, "mms1_brst_desm_verr1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_desm_verr(1)", "dataset": "mms1-fpi-brst.desm", "index1": "1", "is_public": "True", "name": "vy", "parameter": "mms1_brst_desm_verr", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms1_brst_desm_verr(1)"}, "mms1_brst_desm_verr2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_desm_verr(2)", "dataset": "mms1-fpi-brst.desm", "index1": "2", "is_public": "True", "name": "vz", "parameter": "mms1_brst_desm_verr", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms1_brst_desm_verr(2)"}, "name": "v_gse : err", "size": "3", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "units": "km/s", "xmlid": "mms1_brst_desm_verr"}, "mms1_brst_desmpres": {"__spz_name__": "press_tensor_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_brst_desmpres", "dataset": "mms1-fpi-brst.desm", "display_type": "timeseries", "is_public": "True", "mms1_brst_desmpres0": {"__spz_name__": "xx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_desmpres(0)", "dataset": "mms1-fpi-brst.desm", "index1": "0", "is_public": "True", "name": "xx", "parameter": "mms1_brst_desmpres", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms1_brst_desmpres(0)"}, "mms1_brst_desmpres1": {"__spz_name__": "xy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_desmpres(1)", "dataset": "mms1-fpi-brst.desm", "index1": "1", "is_public": "True", "name": "xy", "parameter": "mms1_brst_desmpres", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms1_brst_desmpres(1)"}, "mms1_brst_desmpres2": {"__spz_name__": "xz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_desmpres(2)", "dataset": "mms1-fpi-brst.desm", "index1": "2", "is_public": "True", "name": "xz", "parameter": "mms1_brst_desmpres", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms1_brst_desmpres(2)"}, "mms1_brst_desmpres3": {"__spz_name__": "yx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_desmpres(3)", "dataset": "mms1-fpi-brst.desm", "index1": "3", "is_public": "True", "name": "yx", "parameter": "mms1_brst_desmpres", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms1_brst_desmpres(3)"}, "mms1_brst_desmpres4": {"__spz_name__": "yy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_desmpres(4)", "dataset": "mms1-fpi-brst.desm", "index1": "4", "is_public": "True", "name": "yy", "parameter": "mms1_brst_desmpres", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms1_brst_desmpres(4)"}, "mms1_brst_desmpres5": {"__spz_name__": "yz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_desmpres(5)", "dataset": "mms1-fpi-brst.desm", "index1": "5", "is_public": "True", "name": "yz", "parameter": "mms1_brst_desmpres", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms1_brst_desmpres(5)"}, "mms1_brst_desmpres6": {"__spz_name__": "zx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_desmpres(6)", "dataset": "mms1-fpi-brst.desm", "index1": "6", "is_public": "True", "name": "zx", "parameter": "mms1_brst_desmpres", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms1_brst_desmpres(6)"}, "mms1_brst_desmpres7": {"__spz_name__": "zy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_desmpres(7)", "dataset": "mms1-fpi-brst.desm", "index1": "7", "is_public": "True", "name": "zy", "parameter": "mms1_brst_desmpres", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms1_brst_desmpres(7)"}, "mms1_brst_desmpres8": {"__spz_name__": "zz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_desmpres(8)", "dataset": "mms1-fpi-brst.desm", "index1": "8", "is_public": "True", "name": "zz", "parameter": "mms1_brst_desmpres", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms1_brst_desmpres(8)"}, "name": "press_tensor_gse", "size": "9", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "ucd": "phys.pressure", "units": "nPa", "xmlid": "mms1_brst_desmpres"}, "mms1_brst_desmpreserr": {"__spz_name__": "press_tensor_gse : err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_brst_desmpreserr", "dataset": "mms1-fpi-brst.desm", "display_type": "timeseries", "is_public": "True", "mms1_brst_desmpreserr0": {"__spz_name__": "xx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_desmpreserr(0)", "dataset": "mms1-fpi-brst.desm", "index1": "0", "is_public": "True", "name": "xx", "parameter": "mms1_brst_desmpreserr", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms1_brst_desmpreserr(0)"}, "mms1_brst_desmpreserr1": {"__spz_name__": "xy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_desmpreserr(1)", "dataset": "mms1-fpi-brst.desm", "index1": "1", "is_public": "True", "name": "xy", "parameter": "mms1_brst_desmpreserr", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms1_brst_desmpreserr(1)"}, "mms1_brst_desmpreserr2": {"__spz_name__": "xz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_desmpreserr(2)", "dataset": "mms1-fpi-brst.desm", "index1": "2", "is_public": "True", "name": "xz", "parameter": "mms1_brst_desmpreserr", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms1_brst_desmpreserr(2)"}, "mms1_brst_desmpreserr3": {"__spz_name__": "yx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_desmpreserr(3)", "dataset": "mms1-fpi-brst.desm", "index1": "3", "is_public": "True", "name": "yx", "parameter": "mms1_brst_desmpreserr", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms1_brst_desmpreserr(3)"}, "mms1_brst_desmpreserr4": {"__spz_name__": "yy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_desmpreserr(4)", "dataset": "mms1-fpi-brst.desm", "index1": "4", "is_public": "True", "name": "yy", "parameter": "mms1_brst_desmpreserr", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms1_brst_desmpreserr(4)"}, "mms1_brst_desmpreserr5": {"__spz_name__": "yz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_desmpreserr(5)", "dataset": "mms1-fpi-brst.desm", "index1": "5", "is_public": "True", "name": "yz", "parameter": "mms1_brst_desmpreserr", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms1_brst_desmpreserr(5)"}, "mms1_brst_desmpreserr6": {"__spz_name__": "zx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_desmpreserr(6)", "dataset": "mms1-fpi-brst.desm", "index1": "6", "is_public": "True", "name": "zx", "parameter": "mms1_brst_desmpreserr", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms1_brst_desmpreserr(6)"}, "mms1_brst_desmpreserr7": {"__spz_name__": "zy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_desmpreserr(7)", "dataset": "mms1-fpi-brst.desm", "index1": "7", "is_public": "True", "name": "zy", "parameter": "mms1_brst_desmpreserr", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms1_brst_desmpreserr(7)"}, "mms1_brst_desmpreserr8": {"__spz_name__": "zz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_desmpreserr(8)", "dataset": "mms1-fpi-brst.desm", "index1": "8", "is_public": "True", "name": "zz", "parameter": "mms1_brst_desmpreserr", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms1_brst_desmpreserr(8)"}, "name": "press_tensor_gse : err", "size": "9", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "ucd": "phys.pressure", "units": "nPa", "xmlid": "mms1_brst_desmpreserr"}, "name": "DES : electrons", "processing_level": "Calibrated", "sampling": "0.03S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MMS/MMS1/FPI/mms1-fpi-brst.desm", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "timeRestriction": "2024-08-08T23:59:59.999Z", "xmlid": "mms1-fpi-brst.desm"}, "mms1_fpi_brst_dism": {"__spz_name__": "DIS : ions", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mms1-fpi-brst.dism", "att": "auto/mms1-fpi-brst.dism", "dataSource": "LASP", "desc": "Dual Ion Spectrometers : burst mode
Sampling: 0.15S
Provider: LASP", "is_public": "True", "lastModificationDate": "2024-10-04T06:10:49Z", "lastUpdate": "2024-10-02T11:53:45Z", "measurement_type": "MagneticField", "mms1_brst_dis_err": {"__spz_name__": "error flags", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_brst_dis_err", "dataset": "mms1-fpi-brst.dism", "display_type": "timeseries", "is_public": "True", "name": "error flags", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms1_brst_dis_err"}, "mms1_brst_dis_heatq": {"__spz_name__": "heatq_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_brst_dis_heatq", "dataset": "mms1-fpi-brst.dism", "display_type": "timeseries", "is_public": "True", "mms1_brst_dis_heatq0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_dis_heatq(0)", "dataset": "mms1-fpi-brst.dism", "index1": "0", "is_public": "True", "name": "x", "parameter": "mms1_brst_dis_heatq", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms1_brst_dis_heatq(0)"}, "mms1_brst_dis_heatq1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_dis_heatq(1)", "dataset": "mms1-fpi-brst.dism", "index1": "1", "is_public": "True", "name": "y", "parameter": "mms1_brst_dis_heatq", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms1_brst_dis_heatq(1)"}, "mms1_brst_dis_heatq2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_dis_heatq(2)", "dataset": "mms1-fpi-brst.dism", "index1": "2", "is_public": "True", "name": "z", "parameter": "mms1_brst_dis_heatq", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms1_brst_dis_heatq(2)"}, "name": "heatq_gse", "size": "3", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "ucd": "phys.pressure", "units": "mW/m\u00b2", "xmlid": "mms1_brst_dis_heatq"}, "mms1_brst_dis_heatqerr": {"__spz_name__": "heatq : err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_brst_dis_heatqerr", "dataset": "mms1-fpi-brst.dism", "display_type": "timeseries", "is_public": "True", "mms1_brst_dis_heatqerr0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_dis_heatqerr(0)", "dataset": "mms1-fpi-brst.dism", "index1": "0", "is_public": "True", "name": "x", "parameter": "mms1_brst_dis_heatqerr", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms1_brst_dis_heatqerr(0)"}, "mms1_brst_dis_heatqerr1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_dis_heatqerr(1)", "dataset": "mms1-fpi-brst.dism", "index1": "1", "is_public": "True", "name": "y", "parameter": "mms1_brst_dis_heatqerr", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms1_brst_dis_heatqerr(1)"}, "mms1_brst_dis_heatqerr2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_dis_heatqerr(2)", "dataset": "mms1-fpi-brst.dism", "index1": "2", "is_public": "True", "name": "z", "parameter": "mms1_brst_dis_heatqerr", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms1_brst_dis_heatqerr(2)"}, "name": "heatq : err", "size": "3", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "ucd": "phys.pressure", "units": "mW/m\u00b2", "xmlid": "mms1_brst_dis_heatqerr"}, "mms1_brst_dis_n": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_brst_dis_n", "dataset": "mms1-fpi-brst.dism", "display_type": "timeseries", "is_public": "True", "name": "density", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "units": "cm\u207b\u00b3", "xmlid": "mms1_brst_dis_n"}, "mms1_brst_dis_nerr": {"__spz_name__": "density : err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_brst_dis_nerr", "dataset": "mms1-fpi-brst.dism", "display_type": "timeseries", "is_public": "True", "name": "density : err", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "units": "cm\u207b\u00b3", "xmlid": "mms1_brst_dis_nerr"}, "mms1_brst_dis_omni": {"__spz_name__": "ion eflux : omni", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_brst_dis_omni", "dataset": "mms1-fpi-brst.dism", "display_type": "spectrogram", "is_public": "True", "name": "ion eflux : omni", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "units": "keV/(cm\u00b2-s-sr-keV)", "xmlid": "mms1_brst_dis_omni"}, "mms1_brst_dis_tpara": {"__spz_name__": "t_para", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_brst_dis_tpara", "dataset": "mms1-fpi-brst.dism", "display_type": "timeseries", "is_public": "True", "name": "t_para", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "units": "eV", "xmlid": "mms1_brst_dis_tpara"}, "mms1_brst_dis_tperp": {"__spz_name__": "t_perp", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_brst_dis_tperp", "dataset": "mms1-fpi-brst.dism", "display_type": "timeseries", "is_public": "True", "name": "t_perp", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "units": "eV", "xmlid": "mms1_brst_dis_tperp"}, "mms1_brst_dis_verr": {"__spz_name__": "v_gse : err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_brst_dis_verr", "dataset": "mms1-fpi-brst.dism", "display_type": "timeseries", "is_public": "True", "mms1_brst_dis_verr0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_dis_verr(0)", "dataset": "mms1-fpi-brst.dism", "index1": "0", "is_public": "True", "name": "vx", "parameter": "mms1_brst_dis_verr", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms1_brst_dis_verr(0)"}, "mms1_brst_dis_verr1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_dis_verr(1)", "dataset": "mms1-fpi-brst.dism", "index1": "1", "is_public": "True", "name": "vy", "parameter": "mms1_brst_dis_verr", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms1_brst_dis_verr(1)"}, "mms1_brst_dis_verr2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_dis_verr(2)", "dataset": "mms1-fpi-brst.dism", "index1": "2", "is_public": "True", "name": "vz", "parameter": "mms1_brst_dis_verr", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms1_brst_dis_verr(2)"}, "name": "v_gse : err", "size": "3", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "units": "km/s", "xmlid": "mms1_brst_dis_verr"}, "mms1_brst_dis_vgse": {"__spz_name__": "v_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_brst_dis_vgse", "dataset": "mms1-fpi-brst.dism", "display_type": "timeseries", "is_public": "True", "mms1_brst_dis_vgse0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_dis_vgse(0)", "dataset": "mms1-fpi-brst.dism", "index1": "0", "is_public": "True", "name": "vx", "parameter": "mms1_brst_dis_vgse", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms1_brst_dis_vgse(0)"}, "mms1_brst_dis_vgse1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_dis_vgse(1)", "dataset": "mms1-fpi-brst.dism", "index1": "1", "is_public": "True", "name": "vy", "parameter": "mms1_brst_dis_vgse", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms1_brst_dis_vgse(1)"}, "mms1_brst_dis_vgse2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_dis_vgse(2)", "dataset": "mms1-fpi-brst.dism", "index1": "2", "is_public": "True", "name": "vz", "parameter": "mms1_brst_dis_vgse", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms1_brst_dis_vgse(2)"}, "name": "v_gse", "size": "3", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "units": "km/s", "xmlid": "mms1_brst_dis_vgse"}, "mms1_brst_dispres": {"__spz_name__": "press_tensor_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_brst_dispres", "dataset": "mms1-fpi-brst.dism", "display_type": "timeseries", "is_public": "True", "mms1_brst_dispres0": {"__spz_name__": "xx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_dispres(0)", "dataset": "mms1-fpi-brst.dism", "index1": "0", "is_public": "True", "name": "xx", "parameter": "mms1_brst_dispres", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms1_brst_dispres(0)"}, "mms1_brst_dispres1": {"__spz_name__": "xy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_dispres(1)", "dataset": "mms1-fpi-brst.dism", "index1": "1", "is_public": "True", "name": "xy", "parameter": "mms1_brst_dispres", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms1_brst_dispres(1)"}, "mms1_brst_dispres2": {"__spz_name__": "xz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_dispres(2)", "dataset": "mms1-fpi-brst.dism", "index1": "2", "is_public": "True", "name": "xz", "parameter": "mms1_brst_dispres", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms1_brst_dispres(2)"}, "mms1_brst_dispres3": {"__spz_name__": "yx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_dispres(3)", "dataset": "mms1-fpi-brst.dism", "index1": "3", "is_public": "True", "name": "yx", "parameter": "mms1_brst_dispres", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms1_brst_dispres(3)"}, "mms1_brst_dispres4": {"__spz_name__": "yy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_dispres(4)", "dataset": "mms1-fpi-brst.dism", "index1": "4", "is_public": "True", "name": "yy", "parameter": "mms1_brst_dispres", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms1_brst_dispres(4)"}, "mms1_brst_dispres5": {"__spz_name__": "yz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_dispres(5)", "dataset": "mms1-fpi-brst.dism", "index1": "5", "is_public": "True", "name": "yz", "parameter": "mms1_brst_dispres", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms1_brst_dispres(5)"}, "mms1_brst_dispres6": {"__spz_name__": "zx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_dispres(6)", "dataset": "mms1-fpi-brst.dism", "index1": "6", "is_public": "True", "name": "zx", "parameter": "mms1_brst_dispres", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms1_brst_dispres(6)"}, "mms1_brst_dispres7": {"__spz_name__": "zy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_dispres(7)", "dataset": "mms1-fpi-brst.dism", "index1": "7", "is_public": "True", "name": "zy", "parameter": "mms1_brst_dispres", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms1_brst_dispres(7)"}, "mms1_brst_dispres8": {"__spz_name__": "zz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_dispres(8)", "dataset": "mms1-fpi-brst.dism", "index1": "8", "is_public": "True", "name": "zz", "parameter": "mms1_brst_dispres", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms1_brst_dispres(8)"}, "name": "press_tensor_gse", "size": "9", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "ucd": "phys.pressure", "units": "nPa", "xmlid": "mms1_brst_dispres"}, "mms1_brst_dispreserr": {"__spz_name__": "press_tensor_gse : err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_brst_dispreserr", "dataset": "mms1-fpi-brst.dism", "display_type": "timeseries", "is_public": "True", "mms1_brst_dispreserr0": {"__spz_name__": "xx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_dispreserr(0)", "dataset": "mms1-fpi-brst.dism", "index1": "0", "is_public": "True", "name": "xx", "parameter": "mms1_brst_dispreserr", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms1_brst_dispreserr(0)"}, "mms1_brst_dispreserr1": {"__spz_name__": "xy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_dispreserr(1)", "dataset": "mms1-fpi-brst.dism", "index1": "1", "is_public": "True", "name": "xy", "parameter": "mms1_brst_dispreserr", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms1_brst_dispreserr(1)"}, "mms1_brst_dispreserr2": {"__spz_name__": "xz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_dispreserr(2)", "dataset": "mms1-fpi-brst.dism", "index1": "2", "is_public": "True", "name": "xz", "parameter": "mms1_brst_dispreserr", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms1_brst_dispreserr(2)"}, "mms1_brst_dispreserr3": {"__spz_name__": "yx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_dispreserr(3)", "dataset": "mms1-fpi-brst.dism", "index1": "3", "is_public": "True", "name": "yx", "parameter": "mms1_brst_dispreserr", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms1_brst_dispreserr(3)"}, "mms1_brst_dispreserr4": {"__spz_name__": "yy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_dispreserr(4)", "dataset": "mms1-fpi-brst.dism", "index1": "4", "is_public": "True", "name": "yy", "parameter": "mms1_brst_dispreserr", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms1_brst_dispreserr(4)"}, "mms1_brst_dispreserr5": {"__spz_name__": "yz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_dispreserr(5)", "dataset": "mms1-fpi-brst.dism", "index1": "5", "is_public": "True", "name": "yz", "parameter": "mms1_brst_dispreserr", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms1_brst_dispreserr(5)"}, "mms1_brst_dispreserr6": {"__spz_name__": "zx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_dispreserr(6)", "dataset": "mms1-fpi-brst.dism", "index1": "6", "is_public": "True", "name": "zx", "parameter": "mms1_brst_dispreserr", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms1_brst_dispreserr(6)"}, "mms1_brst_dispreserr7": {"__spz_name__": "zy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_dispreserr(7)", "dataset": "mms1-fpi-brst.dism", "index1": "7", "is_public": "True", "name": "zy", "parameter": "mms1_brst_dispreserr", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms1_brst_dispreserr(7)"}, "mms1_brst_dispreserr8": {"__spz_name__": "zz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_brst_dispreserr(8)", "dataset": "mms1-fpi-brst.dism", "index1": "8", "is_public": "True", "name": "zz", "parameter": "mms1_brst_dispreserr", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms1_brst_dispreserr(8)"}, "name": "press_tensor_gse : err", "size": "9", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "ucd": "phys.pressure", "units": "nPa", "xmlid": "mms1_brst_dispreserr"}, "name": "DIS : ions", "processing_level": "Calibrated", "sampling": "0.15S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MMS/MMS1/FPI/mms1-fpi-brst.dism", "start_date": "2015-07-15T15:27:04Z", "stop_date": "2024-06-30T23:00:22Z", "timeRestriction": "2024-08-08T23:59:59.999Z", "xmlid": "mms1-fpi-brst.dism"}, "name": "burst mode", "xmlid": "mms1-fpi-brst"}, "desc": "Fast Plasma Investigation
ElectrostaticAnalyser", "fast_mode": {"__spz_name__": "fast mode", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "mms1-fpi-fast", "is_public": "True", "mms1_fpi_current": {"PriorID": "mms1-fpi-desmoms", "__spz_name__": "electric current", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mms1-fpi-current", "att": "auto/mms1-fpi-current", "dataSource": "LASP", "desc": "electric current : fast mode
Sampling: 4.5S
Provider: LASP", "is_public": "True", "lastModificationDate": "2024-10-07T05:33:22Z", "lastUpdate": "2024-10-07T05:33:22Z", "measurement_type": "ThermalPlasma", "mms1_fast_jgse": {"__spz_name__": "j_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_fast_jgse", "dataset": "mms1-fpi-current", "description": "Electric current = 1.6e-10*(mms1_des_ne+mms1_dis_ni)*0.5*(mms1_dis_vgse-mms1_des_vgse)", "display_type": "timeseries", "is_public": "True", "mms1_fast_jgse0": {"__spz_name__": "jx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_fast_jgse(0)", "dataset": "mms1-fpi-current", "index1": "0", "is_public": "True", "name": "jx", "parameter": "mms1_fast_jgse", "start_date": "2015-07-15T15:11:27Z", "stop_date": "2024-08-14T00:48:54Z", "xmlid": "mms1_fast_jgse(0)"}, "mms1_fast_jgse1": {"__spz_name__": "jy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_fast_jgse(1)", "dataset": "mms1-fpi-current", "index1": "1", "is_public": "True", "name": "jy", "parameter": "mms1_fast_jgse", "start_date": "2015-07-15T15:11:27Z", "stop_date": "2024-08-14T00:48:54Z", "xmlid": "mms1_fast_jgse(1)"}, "mms1_fast_jgse2": {"__spz_name__": "jz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_fast_jgse(2)", "dataset": "mms1-fpi-current", "index1": "2", "is_public": "True", "name": "jz", "parameter": "mms1_fast_jgse", "start_date": "2015-07-15T15:11:27Z", "stop_date": "2024-08-14T00:48:54Z", "xmlid": "mms1_fast_jgse(2)"}, "name": "j_gse", "size": "3", "start_date": "2015-07-15T15:11:27Z", "stop_date": "2024-08-14T00:48:54Z", "units": "A/m\u00b2", "xmlid": "mms1_fast_jgse"}, "name": "electric current", "processing_level": "Calibrated", "sampling": "4.5S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MMS/MMS1/FPI/mms1-fpi-current", "start_date": "2015-07-15T15:11:27Z", "stop_date": "2024-08-14T00:48:54Z", "timeRestriction": "2024-08-08T23:59:59.999Z", "xmlid": "mms1-fpi-current"}, "mms1_fpi_desmoms": {"__spz_name__": "DES : electrons", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mms1-fpi-desmoms", "att": "auto/mms1-fpi-desmoms", "dataSource": "LASP", "desc": "Dual Electron Spectrometers : fast mode
Sampling: 4.5S
Provider: LASP", "is_public": "True", "lastModificationDate": "2024-10-07T05:33:22Z", "lastUpdate": "2024-10-07T05:33:22Z", "measurement_type": "MagneticField", "mms1_des_anti": {"__spz_name__": "elec eflux : anti", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_des_anti", "dataset": "mms1-fpi-desmoms", "display_type": "spectrogram", "is_public": "True", "name": "elec eflux : anti", "start_date": "2015-07-15T15:11:27Z", "stop_date": "2024-08-14T00:48:54Z", "units": "keV/(cm\u00b2-s-sr-keV)", "xmlid": "mms1_des_anti"}, "mms1_des_heatq": {"__spz_name__": "heatq_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_des_heatq", "dataset": "mms1-fpi-desmoms", "display_type": "timeseries", "is_public": "True", "mms1_des_heatq0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_des_heatq(0)", "dataset": "mms1-fpi-desmoms", "index1": "0", "is_public": "True", "name": "x", "parameter": "mms1_des_heatq", "start_date": "2015-07-15T15:11:27Z", "stop_date": "2024-08-14T00:48:54Z", "xmlid": "mms1_des_heatq(0)"}, "mms1_des_heatq1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_des_heatq(1)", "dataset": "mms1-fpi-desmoms", "index1": "1", "is_public": "True", "name": "y", "parameter": "mms1_des_heatq", "start_date": "2015-07-15T15:11:27Z", "stop_date": "2024-08-14T00:48:54Z", "xmlid": "mms1_des_heatq(1)"}, "mms1_des_heatq2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_des_heatq(2)", "dataset": "mms1-fpi-desmoms", "index1": "2", "is_public": "True", "name": "z", "parameter": "mms1_des_heatq", "start_date": "2015-07-15T15:11:27Z", "stop_date": "2024-08-14T00:48:54Z", "xmlid": "mms1_des_heatq(2)"}, "name": "heatq_gse", "size": "3", "start_date": "2015-07-15T15:11:27Z", "stop_date": "2024-08-14T00:48:54Z", "ucd": "phys.pressure", "units": "mW/m\u00b2", "xmlid": "mms1_des_heatq"}, "mms1_des_ne": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_des_ne", "dataset": "mms1-fpi-desmoms", "display_type": "timeseries", "is_public": "True", "name": "density", "start_date": "2015-07-15T15:11:27Z", "stop_date": "2024-08-14T00:48:54Z", "units": "cm\u207b\u00b3", "xmlid": "mms1_des_ne"}, "mms1_des_ne_err": {"__spz_name__": "density : err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_des_ne_err", "dataset": "mms1-fpi-desmoms", "display_type": "timeseries", "is_public": "True", "name": "density : err", "start_date": "2015-07-15T15:11:27Z", "stop_date": "2024-08-14T00:48:54Z", "units": "cm\u207b\u00b3", "xmlid": "mms1_des_ne_err"}, "mms1_des_omni": {"__spz_name__": "elec eflux : omni", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_des_omni", "dataset": "mms1-fpi-desmoms", "display_type": "spectrogram", "is_public": "True", "name": "elec eflux : omni", "start_date": "2015-07-15T15:11:27Z", "stop_date": "2024-08-14T00:48:54Z", "units": "keV/(cm\u00b2-s-sr-keV)", "xmlid": "mms1_des_omni"}, "mms1_des_pahigh": {"__spz_name__": "pa dist : highen", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_des_pahigh", "dataset": "mms1-fpi-desmoms", "description": "High energy bin: 2 keV - 30 keV. \n Pitch-angle bin size: 6 deg. Note that pitch angles are calculated in the spacecraft frame; \n i.e., not shifted by the bulk velocity", "display_type": "spectrogram", "is_public": "True", "name": "pa dist : highen", "start_date": "2015-07-15T15:11:27Z", "stop_date": "2024-08-14T00:48:54Z", "units": "keV/(cm\u00b2-s-sr-keV)", "xmlid": "mms1_des_pahigh"}, "mms1_des_palow": {"__spz_name__": "pa dist : lowen", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_des_palow", "dataset": "mms1-fpi-desmoms", "description": "Low energy bin: 0 eV - 200 eV. \n Pitch-angle bin size: 6 deg. Note that pitch angles are calculated in the spacecraft frame; \n i.e., not shifted by the bulk velocity", "display_type": "spectrogram", "is_public": "True", "name": "pa dist : lowen", "start_date": "2015-07-15T15:11:27Z", "stop_date": "2024-08-14T00:48:54Z", "units": "keV/(cm\u00b2-s-sr-keV)", "xmlid": "mms1_des_palow"}, "mms1_des_pamid": {"__spz_name__": "pa dist : miden", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_des_pamid", "dataset": "mms1-fpi-desmoms", "description": "Mid energy bin: 200 eV - 2 keV. \n Pitch-angle bin size: 6 deg. Note that pitch angles are calculated in the spacecraft frame; \n i.e., not shifted by the bulk velocity", "display_type": "spectrogram", "is_public": "True", "name": "pa dist : miden", "start_date": "2015-07-15T15:11:27Z", "stop_date": "2024-08-14T00:48:54Z", "units": "keV/(cm\u00b2-s-sr-keV)", "xmlid": "mms1_des_pamid"}, "mms1_des_para": {"__spz_name__": "elec eflux : para", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_des_para", "dataset": "mms1-fpi-desmoms", "display_type": "spectrogram", "is_public": "True", "name": "elec eflux : para", "start_date": "2015-07-15T15:11:27Z", "stop_date": "2024-08-14T00:48:54Z", "units": "keV/(cm\u00b2-s-sr-keV)", "xmlid": "mms1_des_para"}, "mms1_des_perp": {"__spz_name__": "elec eflux : perp", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_des_perp", "dataset": "mms1-fpi-desmoms", "display_type": "spectrogram", "is_public": "True", "name": "elec eflux : perp", "start_date": "2015-07-15T15:11:27Z", "stop_date": "2024-08-14T00:48:54Z", "units": "keV/(cm\u00b2-s-sr-keV)", "xmlid": "mms1_des_perp"}, "mms1_des_press": {"__spz_name__": "pressure_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_des_press", "dataset": "mms1-fpi-desmoms", "display_type": "timeseries", "is_public": "True", "mms1_des_press0": {"__spz_name__": "xx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_des_press(0)", "dataset": "mms1-fpi-desmoms", "index1": "0", "is_public": "True", "name": "xx", "parameter": "mms1_des_press", "start_date": "2015-07-15T15:11:27Z", "stop_date": "2024-08-14T00:48:54Z", "xmlid": "mms1_des_press(0)"}, "mms1_des_press1": {"__spz_name__": "xy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_des_press(1)", "dataset": "mms1-fpi-desmoms", "index1": "1", "is_public": "True", "name": "xy", "parameter": "mms1_des_press", "start_date": "2015-07-15T15:11:27Z", "stop_date": "2024-08-14T00:48:54Z", "xmlid": "mms1_des_press(1)"}, "mms1_des_press2": {"__spz_name__": "xz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_des_press(2)", "dataset": "mms1-fpi-desmoms", "index1": "2", "is_public": "True", "name": "xz", "parameter": "mms1_des_press", "start_date": "2015-07-15T15:11:27Z", "stop_date": "2024-08-14T00:48:54Z", "xmlid": "mms1_des_press(2)"}, "mms1_des_press3": {"__spz_name__": "yx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_des_press(3)", "dataset": "mms1-fpi-desmoms", "index1": "3", "is_public": "True", "name": "yx", "parameter": "mms1_des_press", "start_date": "2015-07-15T15:11:27Z", "stop_date": "2024-08-14T00:48:54Z", "xmlid": "mms1_des_press(3)"}, "mms1_des_press4": {"__spz_name__": "yy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_des_press(4)", "dataset": "mms1-fpi-desmoms", "index1": "4", "is_public": "True", "name": "yy", "parameter": "mms1_des_press", "start_date": "2015-07-15T15:11:27Z", "stop_date": "2024-08-14T00:48:54Z", "xmlid": "mms1_des_press(4)"}, "mms1_des_press5": {"__spz_name__": "yz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_des_press(5)", "dataset": "mms1-fpi-desmoms", "index1": "5", "is_public": "True", "name": "yz", "parameter": "mms1_des_press", "start_date": "2015-07-15T15:11:27Z", "stop_date": "2024-08-14T00:48:54Z", "xmlid": "mms1_des_press(5)"}, "mms1_des_press6": {"__spz_name__": "zx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_des_press(6)", "dataset": "mms1-fpi-desmoms", "index1": "6", "is_public": "True", "name": "zx", "parameter": "mms1_des_press", "start_date": "2015-07-15T15:11:27Z", "stop_date": "2024-08-14T00:48:54Z", "xmlid": "mms1_des_press(6)"}, "mms1_des_press7": {"__spz_name__": "zy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_des_press(7)", "dataset": "mms1-fpi-desmoms", "index1": "7", "is_public": "True", "name": "zy", "parameter": "mms1_des_press", "start_date": "2015-07-15T15:11:27Z", "stop_date": "2024-08-14T00:48:54Z", "xmlid": "mms1_des_press(7)"}, "mms1_des_press8": {"__spz_name__": "zz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_des_press(8)", "dataset": "mms1-fpi-desmoms", "index1": "8", "is_public": "True", "name": "zz", "parameter": "mms1_des_press", "start_date": "2015-07-15T15:11:27Z", "stop_date": "2024-08-14T00:48:54Z", "xmlid": "mms1_des_press(8)"}, "name": "pressure_gse", "size": "9", "start_date": "2015-07-15T15:11:27Z", "stop_date": "2024-08-14T00:48:54Z", "ucd": "phys.pressure", "units": "nPa", "xmlid": "mms1_des_press"}, "mms1_des_tpara": {"__spz_name__": "t_para", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_des_tpara", "dataset": "mms1-fpi-desmoms", "display_type": "timeseries", "is_public": "True", "name": "t_para", "start_date": "2015-07-15T15:11:27Z", "stop_date": "2024-08-14T00:48:54Z", "units": "eV", "xmlid": "mms1_des_tpara"}, "mms1_des_tperp": {"__spz_name__": "t_perp", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_des_tperp", "dataset": "mms1-fpi-desmoms", "display_type": "timeseries", "is_public": "True", "name": "t_perp", "start_date": "2015-07-15T15:11:27Z", "stop_date": "2024-08-14T00:48:54Z", "units": "eV", "xmlid": "mms1_des_tperp"}, "mms1_des_v_err": {"__spz_name__": "v_gse : err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_des_v_err", "dataset": "mms1-fpi-desmoms", "display_type": "timeseries", "is_public": "True", "mms1_des_v_err0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_des_v_err(0)", "dataset": "mms1-fpi-desmoms", "index1": "0", "is_public": "True", "name": "vx", "parameter": "mms1_des_v_err", "start_date": "2015-07-15T15:11:27Z", "stop_date": "2024-08-14T00:48:54Z", "xmlid": "mms1_des_v_err(0)"}, "mms1_des_v_err1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_des_v_err(1)", "dataset": "mms1-fpi-desmoms", "index1": "1", "is_public": "True", "name": "vy", "parameter": "mms1_des_v_err", "start_date": "2015-07-15T15:11:27Z", "stop_date": "2024-08-14T00:48:54Z", "xmlid": "mms1_des_v_err(1)"}, "mms1_des_v_err2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_des_v_err(2)", "dataset": "mms1-fpi-desmoms", "index1": "2", "is_public": "True", "name": "vz", "parameter": "mms1_des_v_err", "start_date": "2015-07-15T15:11:27Z", "stop_date": "2024-08-14T00:48:54Z", "xmlid": "mms1_des_v_err(2)"}, "name": "v_gse : err", "size": "3", "start_date": "2015-07-15T15:11:27Z", "stop_date": "2024-08-14T00:48:54Z", "units": "km/s", "xmlid": "mms1_des_v_err"}, "mms1_des_vgse": {"__spz_name__": "v_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_des_vgse", "dataset": "mms1-fpi-desmoms", "display_type": "timeseries", "is_public": "True", "mms1_des_vgse0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_des_vgse(0)", "dataset": "mms1-fpi-desmoms", "index1": "0", "is_public": "True", "name": "vx", "parameter": "mms1_des_vgse", "start_date": "2015-07-15T15:11:27Z", "stop_date": "2024-08-14T00:48:54Z", "xmlid": "mms1_des_vgse(0)"}, "mms1_des_vgse1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_des_vgse(1)", "dataset": "mms1-fpi-desmoms", "index1": "1", "is_public": "True", "name": "vy", "parameter": "mms1_des_vgse", "start_date": "2015-07-15T15:11:27Z", "stop_date": "2024-08-14T00:48:54Z", "xmlid": "mms1_des_vgse(1)"}, "mms1_des_vgse2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_des_vgse(2)", "dataset": "mms1-fpi-desmoms", "index1": "2", "is_public": "True", "name": "vz", "parameter": "mms1_des_vgse", "start_date": "2015-07-15T15:11:27Z", "stop_date": "2024-08-14T00:48:54Z", "xmlid": "mms1_des_vgse(2)"}, "name": "v_gse", "size": "3", "start_date": "2015-07-15T15:11:27Z", "stop_date": "2024-08-14T00:48:54Z", "units": "km/s", "xmlid": "mms1_des_vgse"}, "name": "DES : electrons", "processing_level": "Calibrated", "sampling": "4.5S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MMS/MMS1/FPI/mms1-fpi-desmoms", "start_date": "2015-07-15T15:11:27Z", "stop_date": "2024-08-14T00:48:54Z", "timeRestriction": "2024-08-08T23:59:59.999Z", "xmlid": "mms1-fpi-desmoms"}, "mms1_fpi_dismoms": {"__spz_name__": "DIS : ions", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mms1-fpi-dismoms", "att": "auto/mms1-fpi-dismoms", "dataSource": "LASP", "desc": "Dual Ion Spectrometers : fast mode
Sampling: 4.5S
Provider: LASP", "is_public": "True", "lastModificationDate": "2024-10-07T05:33:24Z", "lastUpdate": "2024-10-07T05:33:23Z", "measurement_type": "MagneticField", "mms1_dis_heatq": {"__spz_name__": "heatq_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_dis_heatq", "dataset": "mms1-fpi-dismoms", "display_type": "timeseries", "is_public": "True", "mms1_dis_heatq0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_dis_heatq(0)", "dataset": "mms1-fpi-dismoms", "index1": "0", "is_public": "True", "name": "x", "parameter": "mms1_dis_heatq", "start_date": "2015-07-15T15:11:27Z", "stop_date": "2024-08-14T00:48:54Z", "xmlid": "mms1_dis_heatq(0)"}, "mms1_dis_heatq1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_dis_heatq(1)", "dataset": "mms1-fpi-dismoms", "index1": "1", "is_public": "True", "name": "y", "parameter": "mms1_dis_heatq", "start_date": "2015-07-15T15:11:27Z", "stop_date": "2024-08-14T00:48:54Z", "xmlid": "mms1_dis_heatq(1)"}, "mms1_dis_heatq2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_dis_heatq(2)", "dataset": "mms1-fpi-dismoms", "index1": "2", "is_public": "True", "name": "z", "parameter": "mms1_dis_heatq", "start_date": "2015-07-15T15:11:27Z", "stop_date": "2024-08-14T00:48:54Z", "xmlid": "mms1_dis_heatq(2)"}, "name": "heatq_gse", "size": "3", "start_date": "2015-07-15T15:11:27Z", "stop_date": "2024-08-14T00:48:54Z", "ucd": "phys.pressure", "units": "mW/m\u00b2", "xmlid": "mms1_dis_heatq"}, "mms1_dis_ni": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_dis_ni", "dataset": "mms1-fpi-dismoms", "display_type": "timeseries", "is_public": "True", "name": "density", "start_date": "2015-07-15T15:11:27Z", "stop_date": "2024-08-14T00:48:54Z", "units": "cm\u207b\u00b3", "xmlid": "mms1_dis_ni"}, "mms1_dis_ni_err": {"__spz_name__": "density : err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_dis_ni_err", "dataset": "mms1-fpi-dismoms", "display_type": "timeseries", "is_public": "True", "name": "density : err", "start_date": "2015-07-15T15:11:27Z", "stop_date": "2024-08-14T00:48:54Z", "units": "cm\u207b\u00b3", "xmlid": "mms1_dis_ni_err"}, "mms1_dis_omni": {"__spz_name__": "ion eflux : omni", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_dis_omni", "dataset": "mms1-fpi-dismoms", "display_type": "spectrogram", "is_public": "True", "name": "ion eflux : omni", "start_date": "2015-07-15T15:11:27Z", "stop_date": "2024-08-14T00:48:54Z", "units": "keV/(cm\u00b2-s-sr-keV)", "xmlid": "mms1_dis_omni"}, "mms1_dis_press": {"__spz_name__": "pressure_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_dis_press", "dataset": "mms1-fpi-dismoms", "display_type": "timeseries", "is_public": "True", "mms1_dis_press0": {"__spz_name__": "xx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_dis_press(0)", "dataset": "mms1-fpi-dismoms", "index1": "0", "is_public": "True", "name": "xx", "parameter": "mms1_dis_press", "start_date": "2015-07-15T15:11:27Z", "stop_date": "2024-08-14T00:48:54Z", "xmlid": "mms1_dis_press(0)"}, "mms1_dis_press1": {"__spz_name__": "xy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_dis_press(1)", "dataset": "mms1-fpi-dismoms", "index1": "1", "is_public": "True", "name": "xy", "parameter": "mms1_dis_press", "start_date": "2015-07-15T15:11:27Z", "stop_date": "2024-08-14T00:48:54Z", "xmlid": "mms1_dis_press(1)"}, "mms1_dis_press2": {"__spz_name__": "xz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_dis_press(2)", "dataset": "mms1-fpi-dismoms", "index1": "2", "is_public": "True", "name": "xz", "parameter": "mms1_dis_press", "start_date": "2015-07-15T15:11:27Z", "stop_date": "2024-08-14T00:48:54Z", "xmlid": "mms1_dis_press(2)"}, "mms1_dis_press3": {"__spz_name__": "yx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_dis_press(3)", "dataset": "mms1-fpi-dismoms", "index1": "3", "is_public": "True", "name": "yx", "parameter": "mms1_dis_press", "start_date": "2015-07-15T15:11:27Z", "stop_date": "2024-08-14T00:48:54Z", "xmlid": "mms1_dis_press(3)"}, "mms1_dis_press4": {"__spz_name__": "yy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_dis_press(4)", "dataset": "mms1-fpi-dismoms", "index1": "4", "is_public": "True", "name": "yy", "parameter": "mms1_dis_press", "start_date": "2015-07-15T15:11:27Z", "stop_date": "2024-08-14T00:48:54Z", "xmlid": "mms1_dis_press(4)"}, "mms1_dis_press5": {"__spz_name__": "yz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_dis_press(5)", "dataset": "mms1-fpi-dismoms", "index1": "5", "is_public": "True", "name": "yz", "parameter": "mms1_dis_press", "start_date": "2015-07-15T15:11:27Z", "stop_date": "2024-08-14T00:48:54Z", "xmlid": "mms1_dis_press(5)"}, "mms1_dis_press6": {"__spz_name__": "zx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_dis_press(6)", "dataset": "mms1-fpi-dismoms", "index1": "6", "is_public": "True", "name": "zx", "parameter": "mms1_dis_press", "start_date": "2015-07-15T15:11:27Z", "stop_date": "2024-08-14T00:48:54Z", "xmlid": "mms1_dis_press(6)"}, "mms1_dis_press7": {"__spz_name__": "zy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_dis_press(7)", "dataset": "mms1-fpi-dismoms", "index1": "7", "is_public": "True", "name": "zy", "parameter": "mms1_dis_press", "start_date": "2015-07-15T15:11:27Z", "stop_date": "2024-08-14T00:48:54Z", "xmlid": "mms1_dis_press(7)"}, "mms1_dis_press8": {"__spz_name__": "zz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_dis_press(8)", "dataset": "mms1-fpi-dismoms", "index1": "8", "is_public": "True", "name": "zz", "parameter": "mms1_dis_press", "start_date": "2015-07-15T15:11:27Z", "stop_date": "2024-08-14T00:48:54Z", "xmlid": "mms1_dis_press(8)"}, "name": "pressure_gse", "size": "9", "start_date": "2015-07-15T15:11:27Z", "stop_date": "2024-08-14T00:48:54Z", "ucd": "phys.pressure", "units": "nPa", "xmlid": "mms1_dis_press"}, "mms1_dis_tpara": {"__spz_name__": "t_para", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_dis_tpara", "dataset": "mms1-fpi-dismoms", "display_type": "timeseries", "is_public": "True", "name": "t_para", "start_date": "2015-07-15T15:11:27Z", "stop_date": "2024-08-14T00:48:54Z", "units": "eV", "xmlid": "mms1_dis_tpara"}, "mms1_dis_tperp": {"__spz_name__": "t_perp", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_dis_tperp", "dataset": "mms1-fpi-dismoms", "display_type": "timeseries", "is_public": "True", "name": "t_perp", "start_date": "2015-07-15T15:11:27Z", "stop_date": "2024-08-14T00:48:54Z", "units": "eV", "xmlid": "mms1_dis_tperp"}, "mms1_dis_v_err": {"__spz_name__": "v_gse : err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_dis_v_err", "dataset": "mms1-fpi-dismoms", "display_type": "timeseries", "is_public": "True", "mms1_dis_v_err0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_dis_v_err(0)", "dataset": "mms1-fpi-dismoms", "index1": "0", "is_public": "True", "name": "vx", "parameter": "mms1_dis_v_err", "start_date": "2015-07-15T15:11:27Z", "stop_date": "2024-08-14T00:48:54Z", "xmlid": "mms1_dis_v_err(0)"}, "mms1_dis_v_err1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_dis_v_err(1)", "dataset": "mms1-fpi-dismoms", "index1": "1", "is_public": "True", "name": "vy", "parameter": "mms1_dis_v_err", "start_date": "2015-07-15T15:11:27Z", "stop_date": "2024-08-14T00:48:54Z", "xmlid": "mms1_dis_v_err(1)"}, "mms1_dis_v_err2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_dis_v_err(2)", "dataset": "mms1-fpi-dismoms", "index1": "2", "is_public": "True", "name": "vz", "parameter": "mms1_dis_v_err", "start_date": "2015-07-15T15:11:27Z", "stop_date": "2024-08-14T00:48:54Z", "xmlid": "mms1_dis_v_err(2)"}, "name": "v_gse : err", "size": "3", "start_date": "2015-07-15T15:11:27Z", "stop_date": "2024-08-14T00:48:54Z", "units": "km/s", "xmlid": "mms1_dis_v_err"}, "mms1_dis_vgse": {"__spz_name__": "v_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_dis_vgse", "dataset": "mms1-fpi-dismoms", "display_type": "timeseries", "is_public": "True", "mms1_dis_vgse0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_dis_vgse(0)", "dataset": "mms1-fpi-dismoms", "index1": "0", "is_public": "True", "name": "vx", "parameter": "mms1_dis_vgse", "start_date": "2015-07-15T15:11:27Z", "stop_date": "2024-08-14T00:48:54Z", "xmlid": "mms1_dis_vgse(0)"}, "mms1_dis_vgse1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_dis_vgse(1)", "dataset": "mms1-fpi-dismoms", "index1": "1", "is_public": "True", "name": "vy", "parameter": "mms1_dis_vgse", "start_date": "2015-07-15T15:11:27Z", "stop_date": "2024-08-14T00:48:54Z", "xmlid": "mms1_dis_vgse(1)"}, "mms1_dis_vgse2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_dis_vgse(2)", "dataset": "mms1-fpi-dismoms", "index1": "2", "is_public": "True", "name": "vz", "parameter": "mms1_dis_vgse", "start_date": "2015-07-15T15:11:27Z", "stop_date": "2024-08-14T00:48:54Z", "xmlid": "mms1_dis_vgse(2)"}, "name": "v_gse", "size": "3", "start_date": "2015-07-15T15:11:27Z", "stop_date": "2024-08-14T00:48:54Z", "units": "km/s", "xmlid": "mms1_dis_vgse"}, "name": "DIS : ions", "processing_level": "Calibrated", "sampling": "4.5S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MMS/MMS1/FPI/mms1-fpi-dismoms", "start_date": "2015-07-15T15:11:27Z", "stop_date": "2024-08-14T00:48:54Z", "timeRestriction": "2024-08-08T23:59:59.999Z", "xmlid": "mms1-fpi-dismoms"}, "name": "fast mode", "xmlid": "mms1-fpi-fast"}, "is_public": "True", "name": "FPI", "xmlid": "MMS1_fpi"}, "HPCA": {"__spz_name__": "HPCA", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "MMS1_hpca", "att": "auto/MMS1_hpca", "desc": "Hot Plasma Composition Analyzer
MassSpectrometer", "is_public": "True", "mms1_hpca_brst": {"__spz_name__": "ion energy flux : burst", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mms1-hpca-brst", "att": "auto/mms1-hpca-brst", "dataSource": "LASP", "desc": "ion flux spectrograms : burst mode
Sampling: 0.625S
Provider: LASP", "is_public": "True", "lastModificationDate": "2024-10-04T06:24:34Z", "lastUpdate": "2024-04-12T22:20:08Z", "measurement_type": "IonComposition", "mms1_hpca_heefl": {"__spz_name__": "he++ eflux : 2D energy/polar", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_hpca_heefl", "dataset": "mms1-hpca-brst", "description": "He++ Flux for all elevation anodes accross all energies", "display_type": "spectrogram", "is_public": "True", "name": "he++ eflux : 2D energy/polar", "start_date": "2015-07-15T15:27:02Z", "stop_date": "2023-09-19T05:15:40Z", "units": "keV/((cm\u00b2-s-sr-keV))", "xmlid": "mms1_hpca_heefl"}, "mms1_hpca_heefl_elevation": {"__spz_name__": "he++ eflux : sum on elevations", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_hpca_heefl_elevation", "dataset": "mms1-hpca-brst", "description": "He++ Flux for all energies", "display_type": "spectrogram", "is_public": "True", "name": "he++ eflux : sum on elevations", "start_date": "2015-07-15T15:27:02Z", "stop_date": "2023-09-19T05:15:40Z", "units": "keV/((cm\u00b2-s-sr-keV))", "xmlid": "mms1_hpca_heefl_elevation"}, "mms1_hpca_heeq": {"__spz_name__": "he++ eflux quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_hpca_heeq", "dataset": "mms1-hpca-brst", "display_type": "timeseries", "is_public": "True", "name": "he++ eflux quality", "start_date": "2015-07-15T15:27:02Z", "stop_date": "2023-09-19T05:15:40Z", "xmlid": "mms1_hpca_heeq"}, "mms1_hpca_hefl": {"__spz_name__": "he+ eflux : 2D energy/polar", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_hpca_hefl", "dataset": "mms1-hpca-brst", "description": "He Flux for all elevation anodes accross all energies", "display_type": "spectrogram", "is_public": "True", "name": "he+ eflux : 2D energy/polar", "start_date": "2015-07-15T15:27:02Z", "stop_date": "2023-09-19T05:15:40Z", "units": "keV/((cm\u00b2-s-sr-keV))", "xmlid": "mms1_hpca_hefl"}, "mms1_hpca_hefl_elevation": {"__spz_name__": "he+ eflux : sum on elevations", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_hpca_hefl_elevation", "dataset": "mms1-hpca-brst", "description": "He Flux for all energies", "display_type": "spectrogram", "is_public": "True", "name": "he+ eflux : sum on elevations", "start_date": "2015-07-15T15:27:02Z", "stop_date": "2023-09-19T05:15:40Z", "units": "keV/((cm\u00b2-s-sr-keV))", "xmlid": "mms1_hpca_hefl_elevation"}, "mms1_hpca_heq": {"__spz_name__": "he+ eflux quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_hpca_heq", "dataset": "mms1-hpca-brst", "display_type": "timeseries", "is_public": "True", "name": "he+ eflux quality", "start_date": "2015-07-15T15:27:02Z", "stop_date": "2023-09-19T05:15:40Z", "xmlid": "mms1_hpca_heq"}, "mms1_hpca_hfl": {"__spz_name__": "h+ eflux : 2D energy/elevation", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_hpca_hfl", "dataset": "mms1-hpca-brst", "description": "H+ Flux for all elevation anodes across all energies", "display_type": "spectrogram", "is_public": "True", "name": "h+ eflux : 2D energy/elevation", "start_date": "2015-07-15T15:27:02Z", "stop_date": "2023-09-19T05:15:40Z", "units": "keV/((cm\u00b2-s-sr-keV))", "xmlid": "mms1_hpca_hfl"}, "mms1_hpca_hfl_elevation": {"__spz_name__": "h+ eflux : sum on elevations", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_hpca_hfl_elevation", "dataset": "mms1-hpca-brst", "description": "H+ Flux for all energies", "display_type": "spectrogram", "is_public": "True", "name": "h+ eflux : sum on elevations", "start_date": "2015-07-15T15:27:02Z", "stop_date": "2023-09-19T05:15:40Z", "units": "keV/((cm\u00b2-s-sr-keV))", "xmlid": "mms1_hpca_hfl_elevation"}, "mms1_hpca_hq": {"__spz_name__": "h+ eflux quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_hpca_hq", "dataset": "mms1-hpca-brst", "display_type": "timeseries", "is_public": "True", "name": "h+ eflux quality", "start_date": "2015-07-15T15:27:02Z", "stop_date": "2023-09-19T05:15:40Z", "xmlid": "mms1_hpca_hq"}, "mms1_hpca_ofl": {"__spz_name__": "o+ eflux : 2D energy/polar", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_hpca_ofl", "dataset": "mms1-hpca-brst", "description": "O+ Flux for all elevation anodes accross all energies", "display_type": "spectrogram", "is_public": "True", "name": "o+ eflux : 2D energy/polar", "start_date": "2015-07-15T15:27:02Z", "stop_date": "2023-09-19T05:15:40Z", "units": "keV/((cm\u00b2-s-sr-keV))", "xmlid": "mms1_hpca_ofl"}, "mms1_hpca_ofl_elevation": {"__spz_name__": "o+ eflux : sum on elevations", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_hpca_ofl_elevation", "dataset": "mms1-hpca-brst", "description": "O+ Flux for all energies", "display_type": "spectrogram", "is_public": "True", "name": "o+ eflux : sum on elevations", "start_date": "2015-07-15T15:27:02Z", "stop_date": "2023-09-19T05:15:40Z", "units": "keV/((cm\u00b2-s-sr-keV))", "xmlid": "mms1_hpca_ofl_elevation"}, "mms1_hpca_oq": {"__spz_name__": "o+ eflux quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_hpca_oq", "dataset": "mms1-hpca-brst", "display_type": "timeseries", "is_public": "True", "name": "o+ eflux quality", "start_date": "2015-07-15T15:27:02Z", "stop_date": "2023-09-19T05:15:40Z", "xmlid": "mms1_hpca_oq"}, "name": "ion energy flux : burst", "processing_level": "Calibrated", "sampling": "0.625S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MMS/MMS1/HPCA/mms1-hpca-brst", "start_date": "2015-07-15T15:27:02Z", "stop_date": "2023-09-19T05:15:40Z", "xmlid": "mms1-hpca-brst"}, "mms1_hpca_moms": {"__spz_name__": "ion moments : survey", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mms1-hpca-moms", "att": "auto/mms1-hpca-moms", "dataSource": "LASP", "desc": "ion moments : survey mode
Sampling: 10S
Provider: LASP", "is_public": "True", "lastModificationDate": "2024-10-07T05:33:32Z", "lastUpdate": "2024-10-07T05:33:32Z", "measurement_type": "MagneticField", "mms1_heplus_n": {"__spz_name__": "he+ density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_heplus_n", "dataset": "mms1-hpca-moms", "display_type": "timeseries", "is_public": "True", "name": "he+ density", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "units": "cm\u207b\u00b3", "xmlid": "mms1_heplus_n"}, "mms1_heplus_press": {"__spz_name__": "he+ pressure_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_heplus_press", "dataset": "mms1-hpca-moms", "display_type": "timeseries", "is_public": "True", "mms1_heplus_press0": {"__spz_name__": "xx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_heplus_press(0)", "dataset": "mms1-hpca-moms", "index1": "0", "is_public": "True", "name": "xx", "parameter": "mms1_heplus_press", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_heplus_press(0)"}, "mms1_heplus_press1": {"__spz_name__": "xy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_heplus_press(1)", "dataset": "mms1-hpca-moms", "index1": "1", "is_public": "True", "name": "xy", "parameter": "mms1_heplus_press", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_heplus_press(1)"}, "mms1_heplus_press2": {"__spz_name__": "xz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_heplus_press(2)", "dataset": "mms1-hpca-moms", "index1": "2", "is_public": "True", "name": "xz", "parameter": "mms1_heplus_press", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_heplus_press(2)"}, "mms1_heplus_press3": {"__spz_name__": "yx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_heplus_press(3)", "dataset": "mms1-hpca-moms", "index1": "3", "is_public": "True", "name": "yx", "parameter": "mms1_heplus_press", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_heplus_press(3)"}, "mms1_heplus_press4": {"__spz_name__": "yy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_heplus_press(4)", "dataset": "mms1-hpca-moms", "index1": "4", "is_public": "True", "name": "yy", "parameter": "mms1_heplus_press", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_heplus_press(4)"}, "mms1_heplus_press5": {"__spz_name__": "yz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_heplus_press(5)", "dataset": "mms1-hpca-moms", "index1": "5", "is_public": "True", "name": "yz", "parameter": "mms1_heplus_press", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_heplus_press(5)"}, "mms1_heplus_press6": {"__spz_name__": "zx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_heplus_press(6)", "dataset": "mms1-hpca-moms", "index1": "6", "is_public": "True", "name": "zx", "parameter": "mms1_heplus_press", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_heplus_press(6)"}, "mms1_heplus_press7": {"__spz_name__": "zy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_heplus_press(7)", "dataset": "mms1-hpca-moms", "index1": "7", "is_public": "True", "name": "zy", "parameter": "mms1_heplus_press", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_heplus_press(7)"}, "mms1_heplus_press8": {"__spz_name__": "zz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_heplus_press(8)", "dataset": "mms1-hpca-moms", "index1": "8", "is_public": "True", "name": "zz", "parameter": "mms1_heplus_press", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_heplus_press(8)"}, "name": "he+ pressure_gse", "size": "9", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "ucd": "phys.pressure", "units": "nPa", "xmlid": "mms1_heplus_press"}, "mms1_heplus_t": {"__spz_name__": "he+ temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_heplus_t", "dataset": "mms1-hpca-moms", "display_type": "timeseries", "is_public": "True", "name": "he+ temperature", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "units": "eV", "xmlid": "mms1_heplus_t"}, "mms1_heplus_tpara": {"__spz_name__": "he+ t_para", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_heplus_tpara", "dataset": "mms1-hpca-moms", "display_type": "timeseries", "is_public": "True", "name": "he+ t_para", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "units": "eV", "xmlid": "mms1_heplus_tpara"}, "mms1_heplus_tperp": {"__spz_name__": "he+ t_perp", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_heplus_tperp", "dataset": "mms1-hpca-moms", "display_type": "timeseries", "is_public": "True", "name": "he+ t_perp", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "units": "eV", "xmlid": "mms1_heplus_tperp"}, "mms1_heplus_vgse": {"__spz_name__": "he+ v_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_heplus_vgse", "dataset": "mms1-hpca-moms", "display_type": "timeseries", "is_public": "True", "mms1_heplus_vgse0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_heplus_vgse(0)", "dataset": "mms1-hpca-moms", "index1": "0", "is_public": "True", "name": "vx", "parameter": "mms1_heplus_vgse", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_heplus_vgse(0)"}, "mms1_heplus_vgse1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_heplus_vgse(1)", "dataset": "mms1-hpca-moms", "index1": "1", "is_public": "True", "name": "vy", "parameter": "mms1_heplus_vgse", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_heplus_vgse(1)"}, "mms1_heplus_vgse2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_heplus_vgse(2)", "dataset": "mms1-hpca-moms", "index1": "2", "is_public": "True", "name": "vz", "parameter": "mms1_heplus_vgse", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_heplus_vgse(2)"}, "name": "he+ v_gse", "size": "3", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "units": "km/s", "xmlid": "mms1_heplus_vgse"}, "mms1_heplus_vgsm": {"__spz_name__": "he+ v_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_heplus_vgsm", "dataset": "mms1-hpca-moms", "display_type": "timeseries", "is_public": "True", "mms1_heplus_vgsm0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_heplus_vgsm(0)", "dataset": "mms1-hpca-moms", "index1": "0", "is_public": "True", "name": "vx", "parameter": "mms1_heplus_vgsm", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_heplus_vgsm(0)"}, "mms1_heplus_vgsm1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_heplus_vgsm(1)", "dataset": "mms1-hpca-moms", "index1": "1", "is_public": "True", "name": "vy", "parameter": "mms1_heplus_vgsm", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_heplus_vgsm(1)"}, "mms1_heplus_vgsm2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_heplus_vgsm(2)", "dataset": "mms1-hpca-moms", "index1": "2", "is_public": "True", "name": "vz", "parameter": "mms1_heplus_vgsm", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_heplus_vgsm(2)"}, "name": "he+ v_gsm", "size": "3", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "units": "km/s", "xmlid": "mms1_heplus_vgsm"}, "mms1_heplus_vpara_gse": {"__spz_name__": "he+ v_para_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_heplus_vpara_gse", "dataset": "mms1-hpca-moms", "display_type": "timeseries", "is_public": "True", "mms1_heplus_vpara_gse0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_heplus_vpara_gse(0)", "dataset": "mms1-hpca-moms", "index1": "0", "is_public": "True", "name": "vx", "parameter": "mms1_heplus_vpara_gse", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_heplus_vpara_gse(0)"}, "mms1_heplus_vpara_gse1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_heplus_vpara_gse(1)", "dataset": "mms1-hpca-moms", "index1": "1", "is_public": "True", "name": "vy", "parameter": "mms1_heplus_vpara_gse", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_heplus_vpara_gse(1)"}, "mms1_heplus_vpara_gse2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_heplus_vpara_gse(2)", "dataset": "mms1-hpca-moms", "index1": "2", "is_public": "True", "name": "vz", "parameter": "mms1_heplus_vpara_gse", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_heplus_vpara_gse(2)"}, "name": "he+ v_para_gse", "size": "3", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "units": "km/s", "xmlid": "mms1_heplus_vpara_gse"}, "mms1_heplus_vpara_gsm": {"__spz_name__": "he+ v_para_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_heplus_vpara_gsm", "dataset": "mms1-hpca-moms", "display_type": "timeseries", "is_public": "True", "mms1_heplus_vpara_gsm0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_heplus_vpara_gsm(0)", "dataset": "mms1-hpca-moms", "index1": "0", "is_public": "True", "name": "vx", "parameter": "mms1_heplus_vpara_gsm", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_heplus_vpara_gsm(0)"}, "mms1_heplus_vpara_gsm1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_heplus_vpara_gsm(1)", "dataset": "mms1-hpca-moms", "index1": "1", "is_public": "True", "name": "vy", "parameter": "mms1_heplus_vpara_gsm", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_heplus_vpara_gsm(1)"}, "mms1_heplus_vpara_gsm2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_heplus_vpara_gsm(2)", "dataset": "mms1-hpca-moms", "index1": "2", "is_public": "True", "name": "vz", "parameter": "mms1_heplus_vpara_gsm", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_heplus_vpara_gsm(2)"}, "name": "he+ v_para_gsm", "size": "3", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "units": "km/s", "xmlid": "mms1_heplus_vpara_gsm"}, "mms1_heplus_vpara_tot": {"__spz_name__": "he+ |v_para|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_heplus_vpara_tot", "dataset": "mms1-hpca-moms", "display_type": "timeseries", "is_public": "True", "name": "he+ |v_para|", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "units": "km/s", "xmlid": "mms1_heplus_vpara_tot"}, "mms1_heplus_vperp_gse": {"__spz_name__": "he+ v_perp_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_heplus_vperp_gse", "dataset": "mms1-hpca-moms", "display_type": "timeseries", "is_public": "True", "mms1_heplus_vperp_gse0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_heplus_vperp_gse(0)", "dataset": "mms1-hpca-moms", "index1": "0", "is_public": "True", "name": "vx", "parameter": "mms1_heplus_vperp_gse", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_heplus_vperp_gse(0)"}, "mms1_heplus_vperp_gse1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_heplus_vperp_gse(1)", "dataset": "mms1-hpca-moms", "index1": "1", "is_public": "True", "name": "vy", "parameter": "mms1_heplus_vperp_gse", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_heplus_vperp_gse(1)"}, "mms1_heplus_vperp_gse2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_heplus_vperp_gse(2)", "dataset": "mms1-hpca-moms", "index1": "2", "is_public": "True", "name": "vz", "parameter": "mms1_heplus_vperp_gse", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_heplus_vperp_gse(2)"}, "name": "he+ v_perp_gse", "size": "3", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "units": "km/s", "xmlid": "mms1_heplus_vperp_gse"}, "mms1_heplus_vperp_gsm": {"__spz_name__": "he+ v_perp_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_heplus_vperp_gsm", "dataset": "mms1-hpca-moms", "display_type": "timeseries", "is_public": "True", "mms1_heplus_vperp_gsm0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_heplus_vperp_gsm(0)", "dataset": "mms1-hpca-moms", "index1": "0", "is_public": "True", "name": "vx", "parameter": "mms1_heplus_vperp_gsm", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_heplus_vperp_gsm(0)"}, "mms1_heplus_vperp_gsm1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_heplus_vperp_gsm(1)", "dataset": "mms1-hpca-moms", "index1": "1", "is_public": "True", "name": "vy", "parameter": "mms1_heplus_vperp_gsm", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_heplus_vperp_gsm(1)"}, "mms1_heplus_vperp_gsm2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_heplus_vperp_gsm(2)", "dataset": "mms1-hpca-moms", "index1": "2", "is_public": "True", "name": "vz", "parameter": "mms1_heplus_vperp_gsm", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_heplus_vperp_gsm(2)"}, "name": "he+ v_perp_gsm", "size": "3", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "units": "km/s", "xmlid": "mms1_heplus_vperp_gsm"}, "mms1_heplus_vperp_tot": {"__spz_name__": "he+ |v_perp|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_heplus_vperp_tot", "dataset": "mms1-hpca-moms", "display_type": "timeseries", "is_public": "True", "name": "he+ |v_perp|", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "units": "km/s", "xmlid": "mms1_heplus_vperp_tot"}, "mms1_heplusplus_n": {"__spz_name__": "he++ density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_heplusplus_n", "dataset": "mms1-hpca-moms", "display_type": "timeseries", "is_public": "True", "name": "he++ density", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "units": "cm\u207b\u00b3", "xmlid": "mms1_heplusplus_n"}, "mms1_heplusplus_press": {"__spz_name__": "he++ pressure_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_heplusplus_press", "dataset": "mms1-hpca-moms", "display_type": "timeseries", "is_public": "True", "mms1_heplusplus_press0": {"__spz_name__": "xx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_heplusplus_press(0)", "dataset": "mms1-hpca-moms", "index1": "0", "is_public": "True", "name": "xx", "parameter": "mms1_heplusplus_press", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_heplusplus_press(0)"}, "mms1_heplusplus_press1": {"__spz_name__": "xy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_heplusplus_press(1)", "dataset": "mms1-hpca-moms", "index1": "1", "is_public": "True", "name": "xy", "parameter": "mms1_heplusplus_press", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_heplusplus_press(1)"}, "mms1_heplusplus_press2": {"__spz_name__": "xz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_heplusplus_press(2)", "dataset": "mms1-hpca-moms", "index1": "2", "is_public": "True", "name": "xz", "parameter": "mms1_heplusplus_press", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_heplusplus_press(2)"}, "mms1_heplusplus_press3": {"__spz_name__": "yx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_heplusplus_press(3)", "dataset": "mms1-hpca-moms", "index1": "3", "is_public": "True", "name": "yx", "parameter": "mms1_heplusplus_press", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_heplusplus_press(3)"}, "mms1_heplusplus_press4": {"__spz_name__": "yy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_heplusplus_press(4)", "dataset": "mms1-hpca-moms", "index1": "4", "is_public": "True", "name": "yy", "parameter": "mms1_heplusplus_press", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_heplusplus_press(4)"}, "mms1_heplusplus_press5": {"__spz_name__": "yz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_heplusplus_press(5)", "dataset": "mms1-hpca-moms", "index1": "5", "is_public": "True", "name": "yz", "parameter": "mms1_heplusplus_press", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_heplusplus_press(5)"}, "mms1_heplusplus_press6": {"__spz_name__": "zx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_heplusplus_press(6)", "dataset": "mms1-hpca-moms", "index1": "6", "is_public": "True", "name": "zx", "parameter": "mms1_heplusplus_press", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_heplusplus_press(6)"}, "mms1_heplusplus_press7": {"__spz_name__": "zy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_heplusplus_press(7)", "dataset": "mms1-hpca-moms", "index1": "7", "is_public": "True", "name": "zy", "parameter": "mms1_heplusplus_press", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_heplusplus_press(7)"}, "mms1_heplusplus_press8": {"__spz_name__": "zz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_heplusplus_press(8)", "dataset": "mms1-hpca-moms", "index1": "8", "is_public": "True", "name": "zz", "parameter": "mms1_heplusplus_press", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_heplusplus_press(8)"}, "name": "he++ pressure_gse", "size": "9", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "ucd": "phys.pressure", "units": "nPa", "xmlid": "mms1_heplusplus_press"}, "mms1_heplusplus_t": {"__spz_name__": "he++ temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_heplusplus_t", "dataset": "mms1-hpca-moms", "display_type": "timeseries", "is_public": "True", "name": "he++ temperature", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "units": "eV", "xmlid": "mms1_heplusplus_t"}, "mms1_heplusplus_tpara": {"__spz_name__": "he++ t_para", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_heplusplus_tpara", "dataset": "mms1-hpca-moms", "display_type": "timeseries", "is_public": "True", "name": "he++ t_para", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "units": "eV", "xmlid": "mms1_heplusplus_tpara"}, "mms1_heplusplus_tperp": {"__spz_name__": "he++ t_perp", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_heplusplus_tperp", "dataset": "mms1-hpca-moms", "display_type": "timeseries", "is_public": "True", "name": "he++ t_perp", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "units": "eV", "xmlid": "mms1_heplusplus_tperp"}, "mms1_heplusplus_vgse": {"__spz_name__": "he++ v_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_heplusplus_vgse", "dataset": "mms1-hpca-moms", "display_type": "timeseries", "is_public": "True", "mms1_heplusplus_vgse0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_heplusplus_vgse(0)", "dataset": "mms1-hpca-moms", "index1": "0", "is_public": "True", "name": "vx", "parameter": "mms1_heplusplus_vgse", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_heplusplus_vgse(0)"}, "mms1_heplusplus_vgse1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_heplusplus_vgse(1)", "dataset": "mms1-hpca-moms", "index1": "1", "is_public": "True", "name": "vy", "parameter": "mms1_heplusplus_vgse", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_heplusplus_vgse(1)"}, "mms1_heplusplus_vgse2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_heplusplus_vgse(2)", "dataset": "mms1-hpca-moms", "index1": "2", "is_public": "True", "name": "vz", "parameter": "mms1_heplusplus_vgse", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_heplusplus_vgse(2)"}, "name": "he++ v_gse", "size": "3", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "units": "km/s", "xmlid": "mms1_heplusplus_vgse"}, "mms1_heplusplus_vgsm": {"__spz_name__": "he++ v_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_heplusplus_vgsm", "dataset": "mms1-hpca-moms", "display_type": "timeseries", "is_public": "True", "mms1_heplusplus_vgsm0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_heplusplus_vgsm(0)", "dataset": "mms1-hpca-moms", "index1": "0", "is_public": "True", "name": "vx", "parameter": "mms1_heplusplus_vgsm", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_heplusplus_vgsm(0)"}, "mms1_heplusplus_vgsm1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_heplusplus_vgsm(1)", "dataset": "mms1-hpca-moms", "index1": "1", "is_public": "True", "name": "vy", "parameter": "mms1_heplusplus_vgsm", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_heplusplus_vgsm(1)"}, "mms1_heplusplus_vgsm2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_heplusplus_vgsm(2)", "dataset": "mms1-hpca-moms", "index1": "2", "is_public": "True", "name": "vz", "parameter": "mms1_heplusplus_vgsm", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_heplusplus_vgsm(2)"}, "name": "he++ v_gsm", "size": "3", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "units": "km/s", "xmlid": "mms1_heplusplus_vgsm"}, "mms1_heplusplus_vpara_gse": {"__spz_name__": "he++ v_para_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_heplusplus_vpara_gse", "dataset": "mms1-hpca-moms", "display_type": "timeseries", "is_public": "True", "mms1_heplusplus_vpara_gse0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_heplusplus_vpara_gse(0)", "dataset": "mms1-hpca-moms", "index1": "0", "is_public": "True", "name": "vx", "parameter": "mms1_heplusplus_vpara_gse", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_heplusplus_vpara_gse(0)"}, "mms1_heplusplus_vpara_gse1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_heplusplus_vpara_gse(1)", "dataset": "mms1-hpca-moms", "index1": "1", "is_public": "True", "name": "vy", "parameter": "mms1_heplusplus_vpara_gse", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_heplusplus_vpara_gse(1)"}, "mms1_heplusplus_vpara_gse2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_heplusplus_vpara_gse(2)", "dataset": "mms1-hpca-moms", "index1": "2", "is_public": "True", "name": "vz", "parameter": "mms1_heplusplus_vpara_gse", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_heplusplus_vpara_gse(2)"}, "name": "he++ v_para_gse", "size": "3", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "units": "km/s", "xmlid": "mms1_heplusplus_vpara_gse"}, "mms1_heplusplus_vpara_gsm": {"__spz_name__": "he++ v_para_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_heplusplus_vpara_gsm", "dataset": "mms1-hpca-moms", "display_type": "timeseries", "is_public": "True", "mms1_heplusplus_vpara_gsm0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_heplusplus_vpara_gsm(0)", "dataset": "mms1-hpca-moms", "index1": "0", "is_public": "True", "name": "vx", "parameter": "mms1_heplusplus_vpara_gsm", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_heplusplus_vpara_gsm(0)"}, "mms1_heplusplus_vpara_gsm1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_heplusplus_vpara_gsm(1)", "dataset": "mms1-hpca-moms", "index1": "1", "is_public": "True", "name": "vy", "parameter": "mms1_heplusplus_vpara_gsm", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_heplusplus_vpara_gsm(1)"}, "mms1_heplusplus_vpara_gsm2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_heplusplus_vpara_gsm(2)", "dataset": "mms1-hpca-moms", "index1": "2", "is_public": "True", "name": "vz", "parameter": "mms1_heplusplus_vpara_gsm", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_heplusplus_vpara_gsm(2)"}, "name": "he++ v_para_gsm", "size": "3", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "units": "km/s", "xmlid": "mms1_heplusplus_vpara_gsm"}, "mms1_heplusplus_vpara_tot": {"__spz_name__": "he++ |v_para|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_heplusplus_vpara_tot", "dataset": "mms1-hpca-moms", "display_type": "timeseries", "is_public": "True", "name": "he++ |v_para|", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "units": "km/s", "xmlid": "mms1_heplusplus_vpara_tot"}, "mms1_heplusplus_vperp_gse": {"__spz_name__": "he++ v_perp_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_heplusplus_vperp_gse", "dataset": "mms1-hpca-moms", "display_type": "timeseries", "is_public": "True", "mms1_heplusplus_vperp_gse0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_heplusplus_vperp_gse(0)", "dataset": "mms1-hpca-moms", "index1": "0", "is_public": "True", "name": "vx", "parameter": "mms1_heplusplus_vperp_gse", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_heplusplus_vperp_gse(0)"}, "mms1_heplusplus_vperp_gse1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_heplusplus_vperp_gse(1)", "dataset": "mms1-hpca-moms", "index1": "1", "is_public": "True", "name": "vy", "parameter": "mms1_heplusplus_vperp_gse", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_heplusplus_vperp_gse(1)"}, "mms1_heplusplus_vperp_gse2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_heplusplus_vperp_gse(2)", "dataset": "mms1-hpca-moms", "index1": "2", "is_public": "True", "name": "vz", "parameter": "mms1_heplusplus_vperp_gse", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_heplusplus_vperp_gse(2)"}, "name": "he++ v_perp_gse", "size": "3", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "units": "km/s", "xmlid": "mms1_heplusplus_vperp_gse"}, "mms1_heplusplus_vperp_gsm": {"__spz_name__": "he++ v_perp_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_heplusplus_vperp_gsm", "dataset": "mms1-hpca-moms", "display_type": "timeseries", "is_public": "True", "mms1_heplusplus_vperp_gsm0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_heplusplus_vperp_gsm(0)", "dataset": "mms1-hpca-moms", "index1": "0", "is_public": "True", "name": "vx", "parameter": "mms1_heplusplus_vperp_gsm", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_heplusplus_vperp_gsm(0)"}, "mms1_heplusplus_vperp_gsm1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_heplusplus_vperp_gsm(1)", "dataset": "mms1-hpca-moms", "index1": "1", "is_public": "True", "name": "vy", "parameter": "mms1_heplusplus_vperp_gsm", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_heplusplus_vperp_gsm(1)"}, "mms1_heplusplus_vperp_gsm2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_heplusplus_vperp_gsm(2)", "dataset": "mms1-hpca-moms", "index1": "2", "is_public": "True", "name": "vz", "parameter": "mms1_heplusplus_vperp_gsm", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_heplusplus_vperp_gsm(2)"}, "name": "he++ v_perp_gsm", "size": "3", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "units": "km/s", "xmlid": "mms1_heplusplus_vperp_gsm"}, "mms1_heplusplus_vperp_tot": {"__spz_name__": "he++ |v_perp|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_heplusplus_vperp_tot", "dataset": "mms1-hpca-moms", "display_type": "timeseries", "is_public": "True", "name": "he++ |v_perp|", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "units": "km/s", "xmlid": "mms1_heplusplus_vperp_tot"}, "mms1_hpca_bgse": {"__spz_name__": "b_gse spin", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_hpca_bgse", "dataset": "mms1-hpca-moms", "display_type": "timeseries", "is_public": "True", "mms1_hpca_bgse0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_hpca_bgse(0)", "dataset": "mms1-hpca-moms", "index1": "0", "is_public": "True", "name": "bx", "parameter": "mms1_hpca_bgse", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_hpca_bgse(0)"}, "mms1_hpca_bgse1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_hpca_bgse(1)", "dataset": "mms1-hpca-moms", "index1": "1", "is_public": "True", "name": "by", "parameter": "mms1_hpca_bgse", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_hpca_bgse(1)"}, "mms1_hpca_bgse2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_hpca_bgse(2)", "dataset": "mms1-hpca-moms", "index1": "2", "is_public": "True", "name": "bz", "parameter": "mms1_hpca_bgse", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_hpca_bgse(2)"}, "name": "b_gse spin", "size": "3", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "units": "nT", "xmlid": "mms1_hpca_bgse"}, "mms1_hpca_bgsm": {"__spz_name__": "b_gsm spin", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_hpca_bgsm", "dataset": "mms1-hpca-moms", "display_type": "timeseries", "is_public": "True", "mms1_hpca_bgsm0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_hpca_bgsm(0)", "dataset": "mms1-hpca-moms", "index1": "0", "is_public": "True", "name": "bx", "parameter": "mms1_hpca_bgsm", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_hpca_bgsm(0)"}, "mms1_hpca_bgsm1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_hpca_bgsm(1)", "dataset": "mms1-hpca-moms", "index1": "1", "is_public": "True", "name": "by", "parameter": "mms1_hpca_bgsm", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_hpca_bgsm(1)"}, "mms1_hpca_bgsm2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_hpca_bgsm(2)", "dataset": "mms1-hpca-moms", "index1": "2", "is_public": "True", "name": "bz", "parameter": "mms1_hpca_bgsm", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_hpca_bgsm(2)"}, "name": "b_gsm spin", "size": "3", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "units": "nT", "xmlid": "mms1_hpca_bgsm"}, "mms1_hpca_btot": {"__spz_name__": "|b| spin", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_hpca_btot", "dataset": "mms1-hpca-moms", "display_type": "timeseries", "is_public": "True", "name": "|b| spin", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "units": "nT", "xmlid": "mms1_hpca_btot"}, "mms1_hpca_mode": {"__spz_name__": "science mode", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_hpca_mode", "dataset": "mms1-hpca-moms", "display_type": "timeseries", "is_public": "True", "name": "science mode", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_hpca_mode"}, "mms1_hplus_n": {"__spz_name__": "h+ density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_hplus_n", "dataset": "mms1-hpca-moms", "display_type": "timeseries", "is_public": "True", "name": "h+ density", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "units": "cm\u207b\u00b3", "xmlid": "mms1_hplus_n"}, "mms1_hplus_press": {"__spz_name__": "h+ pressure_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_hplus_press", "dataset": "mms1-hpca-moms", "display_type": "timeseries", "is_public": "True", "mms1_hplus_press0": {"__spz_name__": "xx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_hplus_press(0)", "dataset": "mms1-hpca-moms", "index1": "0", "is_public": "True", "name": "xx", "parameter": "mms1_hplus_press", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_hplus_press(0)"}, "mms1_hplus_press1": {"__spz_name__": "xy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_hplus_press(1)", "dataset": "mms1-hpca-moms", "index1": "1", "is_public": "True", "name": "xy", "parameter": "mms1_hplus_press", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_hplus_press(1)"}, "mms1_hplus_press2": {"__spz_name__": "xz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_hplus_press(2)", "dataset": "mms1-hpca-moms", "index1": "2", "is_public": "True", "name": "xz", "parameter": "mms1_hplus_press", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_hplus_press(2)"}, "mms1_hplus_press3": {"__spz_name__": "yx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_hplus_press(3)", "dataset": "mms1-hpca-moms", "index1": "3", "is_public": "True", "name": "yx", "parameter": "mms1_hplus_press", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_hplus_press(3)"}, "mms1_hplus_press4": {"__spz_name__": "yy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_hplus_press(4)", "dataset": "mms1-hpca-moms", "index1": "4", "is_public": "True", "name": "yy", "parameter": "mms1_hplus_press", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_hplus_press(4)"}, "mms1_hplus_press5": {"__spz_name__": "yz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_hplus_press(5)", "dataset": "mms1-hpca-moms", "index1": "5", "is_public": "True", "name": "yz", "parameter": "mms1_hplus_press", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_hplus_press(5)"}, "mms1_hplus_press6": {"__spz_name__": "zx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_hplus_press(6)", "dataset": "mms1-hpca-moms", "index1": "6", "is_public": "True", "name": "zx", "parameter": "mms1_hplus_press", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_hplus_press(6)"}, "mms1_hplus_press7": {"__spz_name__": "zy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_hplus_press(7)", "dataset": "mms1-hpca-moms", "index1": "7", "is_public": "True", "name": "zy", "parameter": "mms1_hplus_press", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_hplus_press(7)"}, "mms1_hplus_press8": {"__spz_name__": "zz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_hplus_press(8)", "dataset": "mms1-hpca-moms", "index1": "8", "is_public": "True", "name": "zz", "parameter": "mms1_hplus_press", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_hplus_press(8)"}, "name": "h+ pressure_gse", "size": "9", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "ucd": "phys.pressure", "units": "nPa", "xmlid": "mms1_hplus_press"}, "mms1_hplus_t": {"__spz_name__": "h+ temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_hplus_t", "dataset": "mms1-hpca-moms", "display_type": "timeseries", "is_public": "True", "name": "h+ temperature", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "units": "eV", "xmlid": "mms1_hplus_t"}, "mms1_hplus_tpara": {"__spz_name__": "h+ t_para", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_hplus_tpara", "dataset": "mms1-hpca-moms", "display_type": "timeseries", "is_public": "True", "name": "h+ t_para", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "units": "eV", "xmlid": "mms1_hplus_tpara"}, "mms1_hplus_tperp": {"__spz_name__": "h+ t_perp", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_hplus_tperp", "dataset": "mms1-hpca-moms", "display_type": "timeseries", "is_public": "True", "name": "h+ t_perp", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "units": "eV", "xmlid": "mms1_hplus_tperp"}, "mms1_hplus_vgse": {"__spz_name__": "h+ v_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_hplus_vgse", "dataset": "mms1-hpca-moms", "display_type": "timeseries", "is_public": "True", "mms1_hplus_vgse0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_hplus_vgse(0)", "dataset": "mms1-hpca-moms", "index1": "0", "is_public": "True", "name": "vx", "parameter": "mms1_hplus_vgse", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_hplus_vgse(0)"}, "mms1_hplus_vgse1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_hplus_vgse(1)", "dataset": "mms1-hpca-moms", "index1": "1", "is_public": "True", "name": "vy", "parameter": "mms1_hplus_vgse", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_hplus_vgse(1)"}, "mms1_hplus_vgse2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_hplus_vgse(2)", "dataset": "mms1-hpca-moms", "index1": "2", "is_public": "True", "name": "vz", "parameter": "mms1_hplus_vgse", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_hplus_vgse(2)"}, "name": "h+ v_gse", "size": "3", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "units": "km/s", "xmlid": "mms1_hplus_vgse"}, "mms1_hplus_vgsm": {"__spz_name__": "h+ v_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_hplus_vgsm", "dataset": "mms1-hpca-moms", "display_type": "timeseries", "is_public": "True", "mms1_hplus_vgsm0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_hplus_vgsm(0)", "dataset": "mms1-hpca-moms", "index1": "0", "is_public": "True", "name": "vx", "parameter": "mms1_hplus_vgsm", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_hplus_vgsm(0)"}, "mms1_hplus_vgsm1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_hplus_vgsm(1)", "dataset": "mms1-hpca-moms", "index1": "1", "is_public": "True", "name": "vy", "parameter": "mms1_hplus_vgsm", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_hplus_vgsm(1)"}, "mms1_hplus_vgsm2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_hplus_vgsm(2)", "dataset": "mms1-hpca-moms", "index1": "2", "is_public": "True", "name": "vz", "parameter": "mms1_hplus_vgsm", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_hplus_vgsm(2)"}, "name": "h+ v_gsm", "size": "3", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "units": "km/s", "xmlid": "mms1_hplus_vgsm"}, "mms1_hplus_vpara_gse": {"__spz_name__": "h+ v_para_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_hplus_vpara_gse", "dataset": "mms1-hpca-moms", "display_type": "timeseries", "is_public": "True", "mms1_hplus_vpara_gse0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_hplus_vpara_gse(0)", "dataset": "mms1-hpca-moms", "index1": "0", "is_public": "True", "name": "vx", "parameter": "mms1_hplus_vpara_gse", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_hplus_vpara_gse(0)"}, "mms1_hplus_vpara_gse1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_hplus_vpara_gse(1)", "dataset": "mms1-hpca-moms", "index1": "1", "is_public": "True", "name": "vy", "parameter": "mms1_hplus_vpara_gse", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_hplus_vpara_gse(1)"}, "mms1_hplus_vpara_gse2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_hplus_vpara_gse(2)", "dataset": "mms1-hpca-moms", "index1": "2", "is_public": "True", "name": "vz", "parameter": "mms1_hplus_vpara_gse", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_hplus_vpara_gse(2)"}, "name": "h+ v_para_gse", "size": "3", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "units": "km/s", "xmlid": "mms1_hplus_vpara_gse"}, "mms1_hplus_vpara_gsm": {"__spz_name__": "h+ v_para_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_hplus_vpara_gsm", "dataset": "mms1-hpca-moms", "display_type": "timeseries", "is_public": "True", "mms1_hplus_vpara_gsm0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_hplus_vpara_gsm(0)", "dataset": "mms1-hpca-moms", "index1": "0", "is_public": "True", "name": "vx", "parameter": "mms1_hplus_vpara_gsm", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_hplus_vpara_gsm(0)"}, "mms1_hplus_vpara_gsm1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_hplus_vpara_gsm(1)", "dataset": "mms1-hpca-moms", "index1": "1", "is_public": "True", "name": "vy", "parameter": "mms1_hplus_vpara_gsm", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_hplus_vpara_gsm(1)"}, "mms1_hplus_vpara_gsm2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_hplus_vpara_gsm(2)", "dataset": "mms1-hpca-moms", "index1": "2", "is_public": "True", "name": "vz", "parameter": "mms1_hplus_vpara_gsm", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_hplus_vpara_gsm(2)"}, "name": "h+ v_para_gsm", "size": "3", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "units": "km/s", "xmlid": "mms1_hplus_vpara_gsm"}, "mms1_hplus_vpara_tot": {"__spz_name__": "h+ |v_para|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_hplus_vpara_tot", "dataset": "mms1-hpca-moms", "display_type": "timeseries", "is_public": "True", "name": "h+ |v_para|", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "units": "km/s", "xmlid": "mms1_hplus_vpara_tot"}, "mms1_hplus_vperp_gse": {"__spz_name__": "h+ v_perp_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_hplus_vperp_gse", "dataset": "mms1-hpca-moms", "display_type": "timeseries", "is_public": "True", "mms1_hplus_vperp_gse0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_hplus_vperp_gse(0)", "dataset": "mms1-hpca-moms", "index1": "0", "is_public": "True", "name": "vx", "parameter": "mms1_hplus_vperp_gse", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_hplus_vperp_gse(0)"}, "mms1_hplus_vperp_gse1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_hplus_vperp_gse(1)", "dataset": "mms1-hpca-moms", "index1": "1", "is_public": "True", "name": "vy", "parameter": "mms1_hplus_vperp_gse", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_hplus_vperp_gse(1)"}, "mms1_hplus_vperp_gse2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_hplus_vperp_gse(2)", "dataset": "mms1-hpca-moms", "index1": "2", "is_public": "True", "name": "vz", "parameter": "mms1_hplus_vperp_gse", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_hplus_vperp_gse(2)"}, "name": "h+ v_perp_gse", "size": "3", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "units": "km/s", "xmlid": "mms1_hplus_vperp_gse"}, "mms1_hplus_vperp_gsm": {"__spz_name__": "h+ v_perp_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_hplus_vperp_gsm", "dataset": "mms1-hpca-moms", "display_type": "timeseries", "is_public": "True", "mms1_hplus_vperp_gsm0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_hplus_vperp_gsm(0)", "dataset": "mms1-hpca-moms", "index1": "0", "is_public": "True", "name": "vx", "parameter": "mms1_hplus_vperp_gsm", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_hplus_vperp_gsm(0)"}, "mms1_hplus_vperp_gsm1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_hplus_vperp_gsm(1)", "dataset": "mms1-hpca-moms", "index1": "1", "is_public": "True", "name": "vy", "parameter": "mms1_hplus_vperp_gsm", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_hplus_vperp_gsm(1)"}, "mms1_hplus_vperp_gsm2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_hplus_vperp_gsm(2)", "dataset": "mms1-hpca-moms", "index1": "2", "is_public": "True", "name": "vz", "parameter": "mms1_hplus_vperp_gsm", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_hplus_vperp_gsm(2)"}, "name": "h+ v_perp_gsm", "size": "3", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "units": "km/s", "xmlid": "mms1_hplus_vperp_gsm"}, "mms1_hplus_vperp_tot": {"__spz_name__": "h+ |v_perp|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_hplus_vperp_tot", "dataset": "mms1-hpca-moms", "display_type": "timeseries", "is_public": "True", "name": "h+ |v_perp|", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "units": "km/s", "xmlid": "mms1_hplus_vperp_tot"}, "mms1_oplus_n": {"__spz_name__": "o+ density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_oplus_n", "dataset": "mms1-hpca-moms", "display_type": "timeseries", "is_public": "True", "name": "o+ density", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "units": "cm\u207b\u00b3", "xmlid": "mms1_oplus_n"}, "mms1_oplus_press": {"__spz_name__": "o+ pressure_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_oplus_press", "dataset": "mms1-hpca-moms", "display_type": "timeseries", "is_public": "True", "mms1_oplus_press0": {"__spz_name__": "xx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_oplus_press(0)", "dataset": "mms1-hpca-moms", "index1": "0", "is_public": "True", "name": "xx", "parameter": "mms1_oplus_press", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_oplus_press(0)"}, "mms1_oplus_press1": {"__spz_name__": "xy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_oplus_press(1)", "dataset": "mms1-hpca-moms", "index1": "1", "is_public": "True", "name": "xy", "parameter": "mms1_oplus_press", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_oplus_press(1)"}, "mms1_oplus_press2": {"__spz_name__": "xz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_oplus_press(2)", "dataset": "mms1-hpca-moms", "index1": "2", "is_public": "True", "name": "xz", "parameter": "mms1_oplus_press", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_oplus_press(2)"}, "mms1_oplus_press3": {"__spz_name__": "yx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_oplus_press(3)", "dataset": "mms1-hpca-moms", "index1": "3", "is_public": "True", "name": "yx", "parameter": "mms1_oplus_press", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_oplus_press(3)"}, "mms1_oplus_press4": {"__spz_name__": "yy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_oplus_press(4)", "dataset": "mms1-hpca-moms", "index1": "4", "is_public": "True", "name": "yy", "parameter": "mms1_oplus_press", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_oplus_press(4)"}, "mms1_oplus_press5": {"__spz_name__": "yz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_oplus_press(5)", "dataset": "mms1-hpca-moms", "index1": "5", "is_public": "True", "name": "yz", "parameter": "mms1_oplus_press", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_oplus_press(5)"}, "mms1_oplus_press6": {"__spz_name__": "zx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_oplus_press(6)", "dataset": "mms1-hpca-moms", "index1": "6", "is_public": "True", "name": "zx", "parameter": "mms1_oplus_press", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_oplus_press(6)"}, "mms1_oplus_press7": {"__spz_name__": "zy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_oplus_press(7)", "dataset": "mms1-hpca-moms", "index1": "7", "is_public": "True", "name": "zy", "parameter": "mms1_oplus_press", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_oplus_press(7)"}, "mms1_oplus_press8": {"__spz_name__": "zz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_oplus_press(8)", "dataset": "mms1-hpca-moms", "index1": "8", "is_public": "True", "name": "zz", "parameter": "mms1_oplus_press", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_oplus_press(8)"}, "name": "o+ pressure_gse", "size": "9", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "ucd": "phys.pressure", "units": "nPa", "xmlid": "mms1_oplus_press"}, "mms1_oplus_t": {"__spz_name__": "o+ temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_oplus_t", "dataset": "mms1-hpca-moms", "display_type": "timeseries", "is_public": "True", "name": "o+ temperature", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "units": "eV", "xmlid": "mms1_oplus_t"}, "mms1_oplus_tpara": {"__spz_name__": "o+ t_para", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_oplus_tpara", "dataset": "mms1-hpca-moms", "display_type": "timeseries", "is_public": "True", "name": "o+ t_para", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "units": "eV", "xmlid": "mms1_oplus_tpara"}, "mms1_oplus_tperp": {"__spz_name__": "o+ t_perp", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_oplus_tperp", "dataset": "mms1-hpca-moms", "display_type": "timeseries", "is_public": "True", "name": "o+ t_perp", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "units": "eV", "xmlid": "mms1_oplus_tperp"}, "mms1_oplus_vgse": {"__spz_name__": "o+ v_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_oplus_vgse", "dataset": "mms1-hpca-moms", "display_type": "timeseries", "is_public": "True", "mms1_oplus_vgse0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_oplus_vgse(0)", "dataset": "mms1-hpca-moms", "index1": "0", "is_public": "True", "name": "vx", "parameter": "mms1_oplus_vgse", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_oplus_vgse(0)"}, "mms1_oplus_vgse1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_oplus_vgse(1)", "dataset": "mms1-hpca-moms", "index1": "1", "is_public": "True", "name": "vy", "parameter": "mms1_oplus_vgse", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_oplus_vgse(1)"}, "mms1_oplus_vgse2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_oplus_vgse(2)", "dataset": "mms1-hpca-moms", "index1": "2", "is_public": "True", "name": "vz", "parameter": "mms1_oplus_vgse", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_oplus_vgse(2)"}, "name": "o+ v_gse", "size": "3", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "units": "km/s", "xmlid": "mms1_oplus_vgse"}, "mms1_oplus_vgsm": {"__spz_name__": "o+ v_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_oplus_vgsm", "dataset": "mms1-hpca-moms", "display_type": "timeseries", "is_public": "True", "mms1_oplus_vgsm0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_oplus_vgsm(0)", "dataset": "mms1-hpca-moms", "index1": "0", "is_public": "True", "name": "vx", "parameter": "mms1_oplus_vgsm", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_oplus_vgsm(0)"}, "mms1_oplus_vgsm1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_oplus_vgsm(1)", "dataset": "mms1-hpca-moms", "index1": "1", "is_public": "True", "name": "vy", "parameter": "mms1_oplus_vgsm", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_oplus_vgsm(1)"}, "mms1_oplus_vgsm2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_oplus_vgsm(2)", "dataset": "mms1-hpca-moms", "index1": "2", "is_public": "True", "name": "vz", "parameter": "mms1_oplus_vgsm", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_oplus_vgsm(2)"}, "name": "o+ v_gsm", "size": "3", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "units": "km/s", "xmlid": "mms1_oplus_vgsm"}, "mms1_oplus_vpara_gse": {"__spz_name__": "o+ v_para_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_oplus_vpara_gse", "dataset": "mms1-hpca-moms", "display_type": "timeseries", "is_public": "True", "mms1_oplus_vpara_gse0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_oplus_vpara_gse(0)", "dataset": "mms1-hpca-moms", "index1": "0", "is_public": "True", "name": "vx", "parameter": "mms1_oplus_vpara_gse", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_oplus_vpara_gse(0)"}, "mms1_oplus_vpara_gse1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_oplus_vpara_gse(1)", "dataset": "mms1-hpca-moms", "index1": "1", "is_public": "True", "name": "vy", "parameter": "mms1_oplus_vpara_gse", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_oplus_vpara_gse(1)"}, "mms1_oplus_vpara_gse2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_oplus_vpara_gse(2)", "dataset": "mms1-hpca-moms", "index1": "2", "is_public": "True", "name": "vz", "parameter": "mms1_oplus_vpara_gse", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_oplus_vpara_gse(2)"}, "name": "o+ v_para_gse", "size": "3", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "units": "km/s", "xmlid": "mms1_oplus_vpara_gse"}, "mms1_oplus_vpara_gsm": {"__spz_name__": "o+ v_para_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_oplus_vpara_gsm", "dataset": "mms1-hpca-moms", "display_type": "timeseries", "is_public": "True", "mms1_oplus_vpara_gsm0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_oplus_vpara_gsm(0)", "dataset": "mms1-hpca-moms", "index1": "0", "is_public": "True", "name": "vx", "parameter": "mms1_oplus_vpara_gsm", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_oplus_vpara_gsm(0)"}, "mms1_oplus_vpara_gsm1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_oplus_vpara_gsm(1)", "dataset": "mms1-hpca-moms", "index1": "1", "is_public": "True", "name": "vy", "parameter": "mms1_oplus_vpara_gsm", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_oplus_vpara_gsm(1)"}, "mms1_oplus_vpara_gsm2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_oplus_vpara_gsm(2)", "dataset": "mms1-hpca-moms", "index1": "2", "is_public": "True", "name": "vz", "parameter": "mms1_oplus_vpara_gsm", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_oplus_vpara_gsm(2)"}, "name": "o+ v_para_gsm", "size": "3", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "units": "km/s", "xmlid": "mms1_oplus_vpara_gsm"}, "mms1_oplus_vpara_tot": {"__spz_name__": "o+ |v_para|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_oplus_vpara_tot", "dataset": "mms1-hpca-moms", "display_type": "timeseries", "is_public": "True", "name": "o+ |v_para|", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "units": "km/s", "xmlid": "mms1_oplus_vpara_tot"}, "mms1_oplus_vperp_gse": {"__spz_name__": "o+ v_perp_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_oplus_vperp_gse", "dataset": "mms1-hpca-moms", "display_type": "timeseries", "is_public": "True", "mms1_oplus_vperp_gse0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_oplus_vperp_gse(0)", "dataset": "mms1-hpca-moms", "index1": "0", "is_public": "True", "name": "vx", "parameter": "mms1_oplus_vperp_gse", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_oplus_vperp_gse(0)"}, "mms1_oplus_vperp_gse1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_oplus_vperp_gse(1)", "dataset": "mms1-hpca-moms", "index1": "1", "is_public": "True", "name": "vy", "parameter": "mms1_oplus_vperp_gse", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_oplus_vperp_gse(1)"}, "mms1_oplus_vperp_gse2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_oplus_vperp_gse(2)", "dataset": "mms1-hpca-moms", "index1": "2", "is_public": "True", "name": "vz", "parameter": "mms1_oplus_vperp_gse", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_oplus_vperp_gse(2)"}, "name": "o+ v_perp_gse", "size": "3", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "units": "km/s", "xmlid": "mms1_oplus_vperp_gse"}, "mms1_oplus_vperp_gsm": {"__spz_name__": "o+ v_perp_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_oplus_vperp_gsm", "dataset": "mms1-hpca-moms", "display_type": "timeseries", "is_public": "True", "mms1_oplus_vperp_gsm0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_oplus_vperp_gsm(0)", "dataset": "mms1-hpca-moms", "index1": "0", "is_public": "True", "name": "vx", "parameter": "mms1_oplus_vperp_gsm", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_oplus_vperp_gsm(0)"}, "mms1_oplus_vperp_gsm1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_oplus_vperp_gsm(1)", "dataset": "mms1-hpca-moms", "index1": "1", "is_public": "True", "name": "vy", "parameter": "mms1_oplus_vperp_gsm", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_oplus_vperp_gsm(1)"}, "mms1_oplus_vperp_gsm2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1_oplus_vperp_gsm(2)", "dataset": "mms1-hpca-moms", "index1": "2", "is_public": "True", "name": "vz", "parameter": "mms1_oplus_vperp_gsm", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "xmlid": "mms1_oplus_vperp_gsm(2)"}, "name": "o+ v_perp_gsm", "size": "3", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "units": "km/s", "xmlid": "mms1_oplus_vperp_gsm"}, "mms1_oplus_vperp_tot": {"__spz_name__": "o+ |v_perp|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_oplus_vperp_tot", "dataset": "mms1-hpca-moms", "display_type": "timeseries", "is_public": "True", "name": "o+ |v_perp|", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "units": "km/s", "xmlid": "mms1_oplus_vperp_tot"}, "name": "ion moments : survey", "processing_level": "Calibrated", "sampling": "10S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MMS/MMS1/HPCA/mms1-hpca-moms", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2024-08-17T23:59:21Z", "timeRestriction": "2024-08-08T23:59:59.999Z", "xmlid": "mms1-hpca-moms"}, "mms1_hpca_srvy": {"__spz_name__": "ion energy flux : survey", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mms1-hpca-srvy", "att": "auto/mms1-hpca-srvy", "dataSource": "LASP", "desc": "ion flux spectrograms : survey mode
Sampling: 0.625S
Provider: LASP", "is_public": "True", "lastModificationDate": "2024-08-13T13:50:44Z", "lastUpdate": "2024-08-13T13:50:19Z", "measurement_type": "IonComposition", "mms1_hpca_srvy_heefl": {"__spz_name__": "he++ eflux : 2D energy/polar", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_hpca_srvy_heefl", "dataset": "mms1-hpca-srvy", "description": "He++ Flux for all elevation anodes accross all energies", "display_type": "spectrogram", "is_public": "True", "name": "he++ eflux : 2D energy/polar", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2022-02-03T06:00:00Z", "units": "keV/((cm\u00b2-s-sr-keV))", "xmlid": "mms1_hpca_srvy_heefl"}, "mms1_hpca_srvy_heefl_elevation": {"__spz_name__": "he++ eflux : sum on elevations", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_hpca_srvy_heefl_elevation", "dataset": "mms1-hpca-srvy", "description": "He++ Flux for all energies", "display_type": "spectrogram", "is_public": "True", "name": "he++ eflux : sum on elevations", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2022-02-03T06:00:00Z", "units": "keV/((cm\u00b2-s-sr-keV))", "xmlid": "mms1_hpca_srvy_heefl_elevation"}, "mms1_hpca_srvy_heeq": {"__spz_name__": "he++ eflux quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_hpca_srvy_heeq", "dataset": "mms1-hpca-srvy", "display_type": "timeseries", "is_public": "True", "name": "he++ eflux quality", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2022-02-03T06:00:00Z", "xmlid": "mms1_hpca_srvy_heeq"}, "mms1_hpca_srvy_hefl": {"__spz_name__": "he+ eflux : 2D energy/polar", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_hpca_srvy_hefl", "dataset": "mms1-hpca-srvy", "description": "He Flux for all elevation anodes accross all energies", "display_type": "spectrogram", "is_public": "True", "name": "he+ eflux : 2D energy/polar", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2022-02-03T06:00:00Z", "units": "keV/((cm\u00b2-s-sr-keV))", "xmlid": "mms1_hpca_srvy_hefl"}, "mms1_hpca_srvy_hefl_elevation": {"__spz_name__": "he+ eflux : sum on elevations", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_hpca_srvy_hefl_elevation", "dataset": "mms1-hpca-srvy", "description": "He Flux for all energies", "display_type": "spectrogram", "is_public": "True", "name": "he+ eflux : sum on elevations", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2022-02-03T06:00:00Z", "units": "keV/((cm\u00b2-s-sr-keV))", "xmlid": "mms1_hpca_srvy_hefl_elevation"}, "mms1_hpca_srvy_heq": {"__spz_name__": "he+ eflux quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_hpca_srvy_heq", "dataset": "mms1-hpca-srvy", "display_type": "timeseries", "is_public": "True", "name": "he+ eflux quality", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2022-02-03T06:00:00Z", "xmlid": "mms1_hpca_srvy_heq"}, "mms1_hpca_srvy_hfl": {"__spz_name__": "h+ eflux : 2D energy/elevation", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_hpca_srvy_hfl", "dataset": "mms1-hpca-srvy", "description": "H+ Flux for all elevation anodes across all energies", "display_type": "spectrogram", "is_public": "True", "name": "h+ eflux : 2D energy/elevation", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2022-02-03T06:00:00Z", "units": "keV/((cm\u00b2-s-sr-keV))", "xmlid": "mms1_hpca_srvy_hfl"}, "mms1_hpca_srvy_hfl_elevation": {"__spz_name__": "h+ eflux : sum on elevations", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_hpca_srvy_hfl_elevation", "dataset": "mms1-hpca-srvy", "description": "H+ Flux for all energies", "display_type": "spectrogram", "is_public": "True", "name": "h+ eflux : sum on elevations", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2022-02-03T06:00:00Z", "units": "keV/((cm\u00b2-s-sr-keV))", "xmlid": "mms1_hpca_srvy_hfl_elevation"}, "mms1_hpca_srvy_hq": {"__spz_name__": "h+ eflux quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_hpca_srvy_hq", "dataset": "mms1-hpca-srvy", "display_type": "timeseries", "is_public": "True", "name": "h+ eflux quality", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2022-02-03T06:00:00Z", "xmlid": "mms1_hpca_srvy_hq"}, "mms1_hpca_srvy_ofl": {"__spz_name__": "o+ eflux : 2D energy/polar", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_hpca_srvy_ofl", "dataset": "mms1-hpca-srvy", "description": "O+ Flux for all elevation anodes accross all energies", "display_type": "spectrogram", "is_public": "True", "name": "o+ eflux : 2D energy/polar", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2022-02-03T06:00:00Z", "units": "keV/((cm\u00b2-s-sr-keV))", "xmlid": "mms1_hpca_srvy_ofl"}, "mms1_hpca_srvy_ofl_elevation": {"__spz_name__": "o+ eflux : sum on elevations", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_hpca_srvy_ofl_elevation", "dataset": "mms1-hpca-srvy", "description": "O+ Flux for all energies", "display_type": "spectrogram", "is_public": "True", "name": "o+ eflux : sum on elevations", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2022-02-03T06:00:00Z", "units": "keV/((cm\u00b2-s-sr-keV))", "xmlid": "mms1_hpca_srvy_ofl_elevation"}, "mms1_hpca_srvy_oq": {"__spz_name__": "o+ eflux quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_hpca_srvy_oq", "dataset": "mms1-hpca-srvy", "display_type": "timeseries", "is_public": "True", "name": "o+ eflux quality", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2022-02-03T06:00:00Z", "xmlid": "mms1_hpca_srvy_oq"}, "name": "ion energy flux : survey", "processing_level": "Calibrated", "sampling": "0.625S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MMS/MMS1/HPCA/mms1-hpca-srvy", "start_date": "2015-06-20T20:55:22Z", "stop_date": "2022-02-03T06:00:00Z", "xmlid": "mms1-hpca-srvy"}, "name": "HPCA", "xmlid": "MMS1_hpca"}, "__spz_name__": "MMS1", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "MMS1", "att": "auto/MMS1", "desc": "Magnetospheric Multiscale Mission #1
2015-09-01T00:00:00", "is_public": "True", "name": "MMS1", "target": "Earth.Magnetosphere", "xmlid": "MMS1"}, "MMS2": {"Analytical_Models": {"__spz_name__": "Analytical Models", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "MMS2_models", "att": "auto/MMS2_models", "desc": "", "is_public": "True", "mms2_msph_models": {"PriorID": "mms2-orb-t89d", "__spz_name__": "distance to neutral sheet", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mms2-msph-models", "att": "auto/mms2-msph-models", "dataSource": "IRAP", "desc": "Distance to model neutral sheet
Sampling: 1M
Provider: IRAP", "dz_fairfield70_mms2_xyz_gse": {"__spz_name__": "dZ Fairfield70", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "dz_fairfield70_mms2_xyz_gse", "dataset": "mms2-msph-models", "description": "Distance (Re) from s/c location to Fairfield1970 neutral sheet position. Depends on spacecraft location in SM coordinates and dipole tilt angle. Valid for Ysm less than 15 Re.", "is_public": "True", "name": "dZ Fairfield70", "predefined": "1", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "template": "dz_fairfield70_##ORBIT##", "units": "Re", "xmlid": "dz_fairfield70_mms2_xyz_gse"}, "dz_fairfield80_mms2_xyz_gse": {"__spz_name__": "dZ Fairfield80", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "dz_fairfield80_mms2_xyz_gse", "dataset": "mms2-msph-models", "description": "Distance (Re) from s/c location to Fairfield1980 neutral sheet position. Depends on spacecraft location in SM coordinates and dipole tilt angle.", "is_public": "True", "name": "dZ Fairfield80", "predefined": "1", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "template": "dz_fairfield80_##ORBIT##", "units": "Re", "xmlid": "dz_fairfield80_mms2_xyz_gse"}, "is_public": "True", "lastModificationDate": "2024-10-07T05:33:33Z", "lastUpdate": "2024-10-07T05:33:32Z", "measurement_type": "Ephemeris", "name": "distance to neutral sheet", "processing_level": "Calibrated", "sampling": "1M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MMS/MMS2/Models/mms2-msph-models", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "target": "Earth", "xmlid": "mms2-msph-models"}, "mms2_t96_model": {"PriorID": "mms2-orb-t89d", "__spz_name__": "T96 field model", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mms2-t96-model", "att": "auto/mms2-t96-model", "b_t96gse_mms2_xyz_gse": {"__spz_name__": "b_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_t96gse_mms2_xyz_gse", "b_t96gse_mms2_xyz_gse0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gse_mms2_xyz_gse(0)", "dataset": "mms2-t96-model", "index1": "0", "is_public": "True", "name": "bx", "parameter": "b_t96gse_mms2_xyz_gse", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "b_t96gse_mms2_xyz_gse(0)"}, "b_t96gse_mms2_xyz_gse1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gse_mms2_xyz_gse(1)", "dataset": "mms2-t96-model", "index1": "1", "is_public": "True", "name": "by", "parameter": "b_t96gse_mms2_xyz_gse", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "b_t96gse_mms2_xyz_gse(1)"}, "b_t96gse_mms2_xyz_gse2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gse_mms2_xyz_gse(2)", "dataset": "mms2-t96-model", "index1": "2", "is_public": "True", "name": "bz", "parameter": "b_t96gse_mms2_xyz_gse", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "b_t96gse_mms2_xyz_gse(2)"}, "dataset": "mms2-t96-model", "is_public": "True", "name": "b_gse", "predefined": "1", "size": "3", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "template": "b_t96gse_##ORBIT##", "units": "nT", "xmlid": "b_t96gse_mms2_xyz_gse"}, "b_t96gsm_mms2_xyz_gse": {"__spz_name__": "b_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_t96gsm_mms2_xyz_gse", "b_t96gsm_mms2_xyz_gse0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gsm_mms2_xyz_gse(0)", "dataset": "mms2-t96-model", "index1": "0", "is_public": "True", "name": "bx", "parameter": "b_t96gsm_mms2_xyz_gse", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "b_t96gsm_mms2_xyz_gse(0)"}, "b_t96gsm_mms2_xyz_gse1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gsm_mms2_xyz_gse(1)", "dataset": "mms2-t96-model", "index1": "1", "is_public": "True", "name": "by", "parameter": "b_t96gsm_mms2_xyz_gse", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "b_t96gsm_mms2_xyz_gse(1)"}, "b_t96gsm_mms2_xyz_gse2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gsm_mms2_xyz_gse(2)", "dataset": "mms2-t96-model", "index1": "2", "is_public": "True", "name": "bz", "parameter": "b_t96gsm_mms2_xyz_gse", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "b_t96gsm_mms2_xyz_gse(2)"}, "dataset": "mms2-t96-model", "is_public": "True", "name": "b_gsm", "predefined": "1", "size": "3", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "template": "b_t96gsm_##ORBIT##", "units": "nT", "xmlid": "b_t96gsm_mms2_xyz_gse"}, "b_t96tot_mms2_xyz_gse": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_t96tot_mms2_xyz_gse", "dataset": "mms2-t96-model", "is_public": "True", "name": "|b|", "predefined": "1", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "template": "b_t96tot_##ORBIT##", "units": "nT", "xmlid": "b_t96tot_mms2_xyz_gse"}, "dataSource": "IRAP", "desc": "Tsyganenko96 geomagnetospheric magnetic field model
Sampling: 1M
Provider: IRAP", "is_public": "True", "lastModificationDate": "2024-10-07T05:33:33Z", "lastUpdate": "2024-10-07T05:33:32Z", "measurement_type": "MagneticField", "name": "T96 field model", "processing_level": "Calibrated", "sampling": "1M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MMS/MMS2/Models/mms2-t96-model", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "target": "Earth", "xmlid": "mms2-t96-model"}, "name": "Analytical Models", "xmlid": "MMS2_models"}, "EDP": {"__spz_name__": "EDP", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "MMS2_edp", "att": "auto/MMS2_edp", "desc": "Electric field Double Probe
DoubleSphere", "fast": {"__spz_name__": "fast", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "mms2-edp-fast", "is_public": "True", "mms2_edp_dce": {"__spz_name__": "dc e-field", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mms2-edp-dce", "att": "auto/mms2-edp-dce", "dataSource": "LASP", "desc": "dc electric field / fast / l2
Sampling: 0.03S
Provider: LASP", "is_public": "True", "lastModificationDate": "2024-10-04T05:31:49Z", "lastUpdate": "2024-10-02T05:56:49Z", "measurement_type": "ElectricField", "mms2_dce_err": {"__spz_name__": "e : error", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_dce_err", "dataset": "mms2-edp-dce", "display_type": "timeseries", "is_public": "True", "mms2_dce_err0": {"__spz_name__": "ex", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_dce_err(0)", "dataset": "mms2-edp-dce", "index1": "0", "is_public": "True", "name": "ex", "parameter": "mms2_dce_err", "start_date": "2015-09-01T00:00:10Z", "stop_date": "2024-08-14T23:59:59Z", "xmlid": "mms2_dce_err(0)"}, "mms2_dce_err1": {"__spz_name__": "ey", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_dce_err(1)", "dataset": "mms2-edp-dce", "index1": "1", "is_public": "True", "name": "ey", "parameter": "mms2_dce_err", "start_date": "2015-09-01T00:00:10Z", "stop_date": "2024-08-14T23:59:59Z", "xmlid": "mms2_dce_err(1)"}, "mms2_dce_err2": {"__spz_name__": "ez", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_dce_err(2)", "dataset": "mms2-edp-dce", "index1": "2", "is_public": "True", "name": "ez", "parameter": "mms2_dce_err", "start_date": "2015-09-01T00:00:10Z", "stop_date": "2024-08-14T23:59:59Z", "xmlid": "mms2_dce_err(2)"}, "name": "e : error", "size": "3", "start_date": "2015-09-01T00:00:10Z", "stop_date": "2024-08-14T23:59:59Z", "units": "mV/m", "xmlid": "mms2_dce_err"}, "mms2_dce_gse": {"__spz_name__": "e_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_dce_gse", "dataset": "mms2-edp-dce", "display_type": "timeseries", "is_public": "True", "mms2_dce_gse0": {"__spz_name__": "ex", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_dce_gse(0)", "dataset": "mms2-edp-dce", "index1": "0", "is_public": "True", "name": "ex", "parameter": "mms2_dce_gse", "start_date": "2015-09-01T00:00:10Z", "stop_date": "2024-08-14T23:59:59Z", "xmlid": "mms2_dce_gse(0)"}, "mms2_dce_gse1": {"__spz_name__": "ey", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_dce_gse(1)", "dataset": "mms2-edp-dce", "index1": "1", "is_public": "True", "name": "ey", "parameter": "mms2_dce_gse", "start_date": "2015-09-01T00:00:10Z", "stop_date": "2024-08-14T23:59:59Z", "xmlid": "mms2_dce_gse(1)"}, "mms2_dce_gse2": {"__spz_name__": "ez", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_dce_gse(2)", "dataset": "mms2-edp-dce", "index1": "2", "is_public": "True", "name": "ez", "parameter": "mms2_dce_gse", "start_date": "2015-09-01T00:00:10Z", "stop_date": "2024-08-14T23:59:59Z", "xmlid": "mms2_dce_gse(2)"}, "name": "e_gse", "size": "3", "start_date": "2015-09-01T00:00:10Z", "stop_date": "2024-08-14T23:59:59Z", "units": "mV/m", "xmlid": "mms2_dce_gse"}, "mms2_dce_gsm": {"__spz_name__": "e_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_dce_gsm", "dataset": "mms2-edp-dce", "display_type": "timeseries", "is_public": "True", "mms2_dce_gsm0": {"__spz_name__": "ex", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_dce_gsm(0)", "dataset": "mms2-edp-dce", "index1": "0", "is_public": "True", "name": "ex", "parameter": "mms2_dce_gsm", "start_date": "2015-09-01T00:00:10Z", "stop_date": "2024-08-14T23:59:59Z", "xmlid": "mms2_dce_gsm(0)"}, "mms2_dce_gsm1": {"__spz_name__": "ey", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_dce_gsm(1)", "dataset": "mms2-edp-dce", "index1": "1", "is_public": "True", "name": "ey", "parameter": "mms2_dce_gsm", "start_date": "2015-09-01T00:00:10Z", "stop_date": "2024-08-14T23:59:59Z", "xmlid": "mms2_dce_gsm(1)"}, "mms2_dce_gsm2": {"__spz_name__": "ez", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_dce_gsm(2)", "dataset": "mms2-edp-dce", "index1": "2", "is_public": "True", "name": "ez", "parameter": "mms2_dce_gsm", "start_date": "2015-09-01T00:00:10Z", "stop_date": "2024-08-14T23:59:59Z", "xmlid": "mms2_dce_gsm(2)"}, "name": "e_gsm", "size": "3", "start_date": "2015-09-01T00:00:10Z", "stop_date": "2024-08-14T23:59:59Z", "units": "mV/m", "xmlid": "mms2_dce_gsm"}, "mms2_dce_para": {"__spz_name__": "e_para", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_dce_para", "dataset": "mms2-edp-dce", "display_type": "timeseries", "is_public": "True", "mms2_dce_para0": {"__spz_name__": "e_para", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_dce_para(0)", "dataset": "mms2-edp-dce", "index1": "0", "is_public": "True", "name": "e_para", "parameter": "mms2_dce_para", "start_date": "2015-09-01T00:00:10Z", "stop_date": "2024-08-14T23:59:59Z", "xmlid": "mms2_dce_para(0)"}, "mms2_dce_para1": {"__spz_name__": "e_perp", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_dce_para(1)", "dataset": "mms2-edp-dce", "index1": "1", "is_public": "True", "name": "e_perp", "parameter": "mms2_dce_para", "start_date": "2015-09-01T00:00:10Z", "stop_date": "2024-08-14T23:59:59Z", "xmlid": "mms2_dce_para(1)"}, "name": "e_para", "size": "2", "start_date": "2015-09-01T00:00:10Z", "stop_date": "2024-08-14T23:59:59Z", "units": "mV/m", "xmlid": "mms2_dce_para"}, "mms2_edp_dce_qual": {"__spz_name__": "dce : qual", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_edp_dce_qual", "dataset": "mms2-edp-dce", "description": "Quality indicator (3 good), (2 ok data, use with some caution), (1 bad data, use with caution), (0 Really bad data or no data at all)", "display_type": "timeseries", "is_public": "True", "name": "dce : qual", "start_date": "2015-09-01T00:00:10Z", "stop_date": "2024-08-14T23:59:59Z", "xmlid": "mms2_edp_dce_qual"}, "name": "dc e-field", "processing_level": "Calibrated", "sampling": "0.03S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MMS/MMS2/EDP/mms2-edp-dce", "start_date": "2015-09-01T00:00:10Z", "stop_date": "2024-08-14T23:59:59Z", "xmlid": "mms2-edp-dce"}, "mms2_edp_scpot": {"__spz_name__": "scpot", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mms2-edp-scpot", "att": "auto/mms2-edp-scpot", "dataSource": "LASP", "desc": "sc potential / fast / l2
Sampling: 0.03S
Provider: LASP", "is_public": "True", "lastModificationDate": "2024-10-07T05:31:44Z", "lastUpdate": "2024-10-07T05:31:42Z", "measurement_type": "ElectricField", "mms2_edp_scpot": {"__spz_name__": "sc pot", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_edp_scpot", "dataset": "mms2-edp-scpot", "display_type": "timeseries", "is_public": "True", "name": "sc pot", "start_date": "2015-06-22T17:52:58Z", "stop_date": "2024-09-29T21:48:56Z", "units": "V", "xmlid": "mms2_edp_scpot"}, "mms2_edp_scpot_qual": {"__spz_name__": "sc pot : qual", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_edp_scpot_qual", "dataset": "mms2-edp-scpot", "description": "Quality indicator (3 good), (2 ok data, use with some caution), (1 bad data, use with caution), (0 Really bad data or no data at all)", "display_type": "timeseries", "is_public": "True", "name": "sc pot : qual", "start_date": "2015-06-22T17:52:58Z", "stop_date": "2024-09-29T21:48:56Z", "xmlid": "mms2_edp_scpot_qual"}, "name": "scpot", "processing_level": "Calibrated", "sampling": "0.03S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MMS/MMS2/EDP/mms2-edp-scpot", "start_date": "2015-06-22T17:52:58Z", "stop_date": "2024-09-29T21:48:56Z", "xmlid": "mms2-edp-scpot"}, "name": "fast", "xmlid": "mms2-edp-fast"}, "is_public": "True", "name": "EDP", "survey": {"__spz_name__": "survey", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "mms2-edp-srvy", "is_public": "True", "mms2_edp_hfesp": {"__spz_name__": "e spectral density", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mms2-edp-hfesp", "att": "auto/mms2-edp-hfesp", "dataSource": "LASP", "desc": "ac electric field spectral density / srvy / l2
Sampling: 16S
Provider: LASP", "is_public": "True", "lastModificationDate": "2024-10-07T05:31:37Z", "lastUpdate": "2024-10-07T05:31:36Z", "measurement_type": "ElectricField", "mms2_edp_espec": {"__spz_name__": "e spec dens", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_edp_espec", "dataset": "mms2-edp-hfesp", "display_type": "spectrogram", "is_public": "True", "name": "e spec dens", "start_date": "2015-09-01T00:00:14Z", "stop_date": "2024-09-30T05:26:42Z", "units": "(V/m)\u00b2/Hz", "xmlid": "mms2_edp_espec"}, "name": "e spectral density", "processing_level": "Calibrated", "sampling": "16S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MMS/MMS2/EDP/mms2-edp-hfesp", "start_date": "2015-09-01T00:00:14Z", "stop_date": "2024-09-30T05:26:42Z", "xmlid": "mms2-edp-hfesp"}, "name": "survey", "xmlid": "mms2-edp-srvy"}, "xmlid": "MMS2_edp"}, "Ephemeris": {"__spz_name__": "Ephemeris", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "MMS2_ephemeris", "att": "auto/MMS2_ephemeris", "desc": "", "is_public": "True", "mms2_orb_t89d": {"__spz_name__": "orbit t89d", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mms2-orb-t89d", "att": "auto/mms2-orb-t89d", "dataSource": "LANL", "desc": "
Sampling: 30S
Provider: LANL", "is_public": "True", "lastModificationDate": "2024-10-07T05:33:33Z", "lastUpdate": "2024-10-07T05:33:32Z", "measurement_type": "Ephemeris", "mms2_r": {"__spz_name__": "distance mms2-earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_r", "dataset": "mms2-orb-t89d", "display_type": "timeseries", "is_public": "True", "name": "distance mms2-earth", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "ucd": "pos.distance;instr.obsty", "units": "Re", "xmlid": "mms2_r"}, "mms2_xyz_gse": {"__spz_name__": "xyz_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_xyz_gse", "dataset": "mms2-orb-t89d", "description": "Spacecraft position in GSE", "display_type": "timeseries", "is_public": "True", "mms2_xyz_gse0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_xyz_gse(0)", "dataset": "mms2-orb-t89d", "index1": "0", "is_public": "True", "name": "x", "parameter": "mms2_xyz_gse", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "mms2_xyz_gse(0)"}, "mms2_xyz_gse1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_xyz_gse(1)", "dataset": "mms2-orb-t89d", "index1": "1", "is_public": "True", "name": "y", "parameter": "mms2_xyz_gse", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "mms2_xyz_gse(1)"}, "mms2_xyz_gse2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_xyz_gse(2)", "dataset": "mms2-orb-t89d", "index1": "2", "is_public": "True", "name": "z", "parameter": "mms2_xyz_gse", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "mms2_xyz_gse(2)"}, "name": "xyz_gse", "size": "3", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "Re", "xmlid": "mms2_xyz_gse"}, "mms2_xyz_gsm": {"__spz_name__": "xyz_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_xyz_gsm", "dataset": "mms2-orb-t89d", "description": "Spacecraft position in GSM", "display_type": "timeseries", "is_public": "True", "mms2_xyz_gsm0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_xyz_gsm(0)", "dataset": "mms2-orb-t89d", "index1": "0", "is_public": "True", "name": "x", "parameter": "mms2_xyz_gsm", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "mms2_xyz_gsm(0)"}, "mms2_xyz_gsm1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_xyz_gsm(1)", "dataset": "mms2-orb-t89d", "index1": "1", "is_public": "True", "name": "y", "parameter": "mms2_xyz_gsm", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "mms2_xyz_gsm(1)"}, "mms2_xyz_gsm2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_xyz_gsm(2)", "dataset": "mms2-orb-t89d", "index1": "2", "is_public": "True", "name": "z", "parameter": "mms2_xyz_gsm", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "mms2_xyz_gsm(2)"}, "name": "xyz_gsm", "size": "3", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "Re", "xmlid": "mms2_xyz_gsm"}, "name": "orbit t89d", "processing_level": "Calibrated", "sampling": "30S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MMS/MMS2/Ephemeris/mms2-orb-t89d", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "mms2-orb-t89d"}, "name": "Ephemeris", "xmlid": "MMS2_ephemeris"}, "FGM": {"__spz_name__": "FGM", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "MMS2_fgm", "att": "auto/MMS2_fgm", "desc": "Fluxgate Magnetometer
Magnetometer", "is_public": "True", "mms2_fgm_brst": {"__spz_name__": "burst", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mms2-fgm-brst", "att": "auto/mms2-fgm-brst", "dataSource": "LASP", "desc": "burst
Sampling: 0.01S
Provider: LASP", "is_public": "True", "lastModificationDate": "2024-10-04T05:49:35Z", "lastUpdate": "2024-08-13T11:54:33Z", "measurement_type": "MagneticField", "mms2_brst_bgse": {"__spz_name__": "b_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_brst_bgse", "dataset": "mms2-fgm-brst", "display_type": "timeseries", "is_public": "True", "mms2_brst_bgse0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_bgse(0)", "dataset": "mms2-fgm-brst", "index1": "0", "is_public": "True", "name": "bx", "parameter": "mms2_brst_bgse", "start_date": "2015-09-01T12:11:14Z", "stop_date": "2024-06-30T17:58:32Z", "xmlid": "mms2_brst_bgse(0)"}, "mms2_brst_bgse1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_bgse(1)", "dataset": "mms2-fgm-brst", "index1": "1", "is_public": "True", "name": "by", "parameter": "mms2_brst_bgse", "start_date": "2015-09-01T12:11:14Z", "stop_date": "2024-06-30T17:58:32Z", "xmlid": "mms2_brst_bgse(1)"}, "mms2_brst_bgse2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_bgse(2)", "dataset": "mms2-fgm-brst", "index1": "2", "is_public": "True", "name": "bz", "parameter": "mms2_brst_bgse", "start_date": "2015-09-01T12:11:14Z", "stop_date": "2024-06-30T17:58:32Z", "xmlid": "mms2_brst_bgse(2)"}, "name": "b_gse", "size": "3", "start_date": "2015-09-01T12:11:14Z", "stop_date": "2024-06-30T17:58:32Z", "units": "nT", "xmlid": "mms2_brst_bgse"}, "mms2_brst_bgsm": {"__spz_name__": "b_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_brst_bgsm", "dataset": "mms2-fgm-brst", "display_type": "timeseries", "is_public": "True", "mms2_brst_bgsm0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_bgsm(0)", "dataset": "mms2-fgm-brst", "index1": "0", "is_public": "True", "name": "bx", "parameter": "mms2_brst_bgsm", "start_date": "2015-09-01T12:11:14Z", "stop_date": "2024-06-30T17:58:32Z", "xmlid": "mms2_brst_bgsm(0)"}, "mms2_brst_bgsm1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_bgsm(1)", "dataset": "mms2-fgm-brst", "index1": "1", "is_public": "True", "name": "by", "parameter": "mms2_brst_bgsm", "start_date": "2015-09-01T12:11:14Z", "stop_date": "2024-06-30T17:58:32Z", "xmlid": "mms2_brst_bgsm(1)"}, "mms2_brst_bgsm2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_bgsm(2)", "dataset": "mms2-fgm-brst", "index1": "2", "is_public": "True", "name": "bz", "parameter": "mms2_brst_bgsm", "start_date": "2015-09-01T12:11:14Z", "stop_date": "2024-06-30T17:58:32Z", "xmlid": "mms2_brst_bgsm(2)"}, "name": "b_gsm", "size": "3", "start_date": "2015-09-01T12:11:14Z", "stop_date": "2024-06-30T17:58:32Z", "units": "nT", "xmlid": "mms2_brst_bgsm"}, "mms2_brst_btot": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_brst_btot", "dataset": "mms2-fgm-brst", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "2015-09-01T12:11:14Z", "stop_date": "2024-06-30T17:58:32Z", "units": "nT", "xmlid": "mms2_brst_btot"}, "name": "burst", "processing_level": "Calibrated", "sampling": "0.01S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MMS/MMS2/FGM/mms2-fgm-brst", "start_date": "2015-09-01T12:11:14Z", "stop_date": "2024-06-30T17:58:32Z", "xmlid": "mms2-fgm-brst"}, "mms2_fgm_srvy": {"__spz_name__": "survey", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mms2-fgm-srvy", "att": "auto/mms2-fgm-srvy", "dataSource": "LASP", "desc": "survey
MinSampling: 0.0625S; MaxSampling: 0.125S
Provider: LASP", "is_public": "True", "lastModificationDate": "2024-10-07T05:32:47Z", "lastUpdate": "2024-10-07T05:32:44Z", "maxSampling": "0.125S", "measurement_type": "MagneticField", "mms2_b_gse": {"__spz_name__": "b_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_b_gse", "dataset": "mms2-fgm-srvy", "display_type": "timeseries", "is_public": "True", "mms2_b_gse0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_b_gse(0)", "dataset": "mms2-fgm-srvy", "index1": "0", "is_public": "True", "name": "bx", "parameter": "mms2_b_gse", "start_date": "2015-09-01T00:00:03Z", "stop_date": "2024-09-02T00:00:03Z", "xmlid": "mms2_b_gse(0)"}, "mms2_b_gse1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_b_gse(1)", "dataset": "mms2-fgm-srvy", "index1": "1", "is_public": "True", "name": "by", "parameter": "mms2_b_gse", "start_date": "2015-09-01T00:00:03Z", "stop_date": "2024-09-02T00:00:03Z", "xmlid": "mms2_b_gse(1)"}, "mms2_b_gse2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_b_gse(2)", "dataset": "mms2-fgm-srvy", "index1": "2", "is_public": "True", "name": "bz", "parameter": "mms2_b_gse", "start_date": "2015-09-01T00:00:03Z", "stop_date": "2024-09-02T00:00:03Z", "xmlid": "mms2_b_gse(2)"}, "name": "b_gse", "size": "3", "start_date": "2015-09-01T00:00:03Z", "stop_date": "2024-09-02T00:00:03Z", "units": "nT", "xmlid": "mms2_b_gse"}, "mms2_b_gsm": {"__spz_name__": "b_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_b_gsm", "dataset": "mms2-fgm-srvy", "display_type": "timeseries", "is_public": "True", "mms2_b_gsm0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_b_gsm(0)", "dataset": "mms2-fgm-srvy", "index1": "0", "is_public": "True", "name": "bx", "parameter": "mms2_b_gsm", "start_date": "2015-09-01T00:00:03Z", "stop_date": "2024-09-02T00:00:03Z", "xmlid": "mms2_b_gsm(0)"}, "mms2_b_gsm1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_b_gsm(1)", "dataset": "mms2-fgm-srvy", "index1": "1", "is_public": "True", "name": "by", "parameter": "mms2_b_gsm", "start_date": "2015-09-01T00:00:03Z", "stop_date": "2024-09-02T00:00:03Z", "xmlid": "mms2_b_gsm(1)"}, "mms2_b_gsm2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_b_gsm(2)", "dataset": "mms2-fgm-srvy", "index1": "2", "is_public": "True", "name": "bz", "parameter": "mms2_b_gsm", "start_date": "2015-09-01T00:00:03Z", "stop_date": "2024-09-02T00:00:03Z", "xmlid": "mms2_b_gsm(2)"}, "name": "b_gsm", "size": "3", "start_date": "2015-09-01T00:00:03Z", "stop_date": "2024-09-02T00:00:03Z", "units": "nT", "xmlid": "mms2_b_gsm"}, "mms2_b_tot": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_b_tot", "dataset": "mms2-fgm-srvy", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "2015-09-01T00:00:03Z", "stop_date": "2024-09-02T00:00:03Z", "units": "nT", "xmlid": "mms2_b_tot"}, "mms2_pres_m": {"__spz_name__": "pressure_b", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_pres_m", "dataset": "mms2-fgm-srvy", "display_type": "timeseries", "is_public": "True", "name": "pressure_b", "start_date": "2015-09-01T00:00:03Z", "stop_date": "2024-09-02T00:00:03Z", "units": "nPa", "xmlid": "mms2_pres_m"}, "name": "survey", "processing_level": "Calibrated", "sampling": "0.0625S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MMS/MMS2/FGM/mms2-fgm-srvy", "start_date": "2015-09-01T00:00:03Z", "stop_date": "2024-09-02T00:00:03Z", "xmlid": "mms2-fgm-srvy"}, "name": "FGM", "xmlid": "MMS2_fgm"}, "FPI": {"__spz_name__": "FPI", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "MMS2_fpi", "att": "auto/MMS2_fpi", "burst_mode": {"__spz_name__": "burst mode", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "mms2-fpi-brst", "is_public": "True", "mms2_fpi_brst_current": {"PriorID": "mms2-fpi-brst.desm", "__spz_name__": "electric current", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mms2-fpi-brst.current", "att": "auto/mms2-fpi-brst.current", "dataSource": "LASP", "desc": "electric current : burst mode
Sampling: 0.03S
Provider: LASP", "is_public": "True", "lastModificationDate": "2024-10-04T06:01:24Z", "lastUpdate": "2024-10-02T11:02:31Z", "measurement_type": "ThermalPlasma", "mms2_brst_jgse": {"__spz_name__": "j_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_brst_jgse", "dataset": "mms2-fpi-brst.current", "description": "Electric current = 1.6e-10*(mms2_brst_desm_n+mms2_brst_dism_n)*0.5*(mms2_brst_dism_v-mms2_brst_desm_v)", "display_type": "timeseries", "is_public": "True", "mms2_brst_jgse0": {"__spz_name__": "jx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_jgse(0)", "dataset": "mms2-fpi-brst.current", "index1": "0", "is_public": "True", "name": "jx", "parameter": "mms2_brst_jgse", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2_brst_jgse(0)"}, "mms2_brst_jgse1": {"__spz_name__": "jy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_jgse(1)", "dataset": "mms2-fpi-brst.current", "index1": "1", "is_public": "True", "name": "jy", "parameter": "mms2_brst_jgse", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2_brst_jgse(1)"}, "mms2_brst_jgse2": {"__spz_name__": "jz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_jgse(2)", "dataset": "mms2-fpi-brst.current", "index1": "2", "is_public": "True", "name": "jz", "parameter": "mms2_brst_jgse", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2_brst_jgse(2)"}, "name": "j_gse", "size": "3", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "units": "A/m\u00b2", "xmlid": "mms2_brst_jgse"}, "name": "electric current", "processing_level": "Calibrated", "sampling": "0.03S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MMS/MMS2/FPI/mms2-fpi-brst.current", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2-fpi-brst.current"}, "mms2_fpi_brst_desm": {"__spz_name__": "DES : electrons", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mms2-fpi-brst.desm", "att": "auto/mms2-fpi-brst.desm", "dataSource": "LASP", "desc": "Dual Electron Spectrometers : burst mode
Sampling: 0.03S
Provider: LASP", "is_public": "True", "lastModificationDate": "2024-10-04T06:01:24Z", "lastUpdate": "2024-10-02T11:02:31Z", "measurement_type": "ThermalPlasma", "mms2_brst_des_anti": {"__spz_name__": "elec eflux : anti", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_brst_des_anti", "dataset": "mms2-fpi-brst.desm", "display_type": "spectrogram", "is_public": "True", "name": "elec eflux : anti", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "units": "keV/(cm\u00b2-s-sr-keV)", "xmlid": "mms2_brst_des_anti"}, "mms2_brst_des_pahigh": {"__spz_name__": "pa dist : highen", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_brst_des_pahigh", "dataset": "mms2-fpi-brst.desm", "description": "High energy bin: 2 keV - 30 keV. \n Pitch-angle bin size: 6 deg. Note that pitch angles are calculated in the spacecraft frame; \n i.e., not shifted by the bulk velocity", "display_type": "spectrogram", "is_public": "True", "name": "pa dist : highen", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "units": "keV/(cm\u00b2-s-sr-keV)", "xmlid": "mms2_brst_des_pahigh"}, "mms2_brst_des_palow": {"__spz_name__": "pa dist : lowen", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_brst_des_palow", "dataset": "mms2-fpi-brst.desm", "description": "Low energy bin: 0 eV - 200 eV. \n Pitch-angle bin size: 6 deg. Note that pitch angles are calculated in the spacecraft frame; \n i.e., not shifted by the bulk velocity", "display_type": "spectrogram", "is_public": "True", "name": "pa dist : lowen", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "units": "keV/(cm\u00b2-s-sr-keV)", "xmlid": "mms2_brst_des_palow"}, "mms2_brst_des_pamid": {"__spz_name__": "pa dist : miden", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_brst_des_pamid", "dataset": "mms2-fpi-brst.desm", "description": "Mid energy bin: 200 eV - 2 keV. \n Pitch-angle bin size: 6 deg. Note that pitch angles are calculated in the spacecraft frame; \n i.e., not shifted by the bulk velocity", "display_type": "spectrogram", "is_public": "True", "name": "pa dist : miden", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "units": "keV/(cm\u00b2-s-sr-keV)", "xmlid": "mms2_brst_des_pamid"}, "mms2_brst_des_para": {"__spz_name__": "elec eflux : para", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_brst_des_para", "dataset": "mms2-fpi-brst.desm", "display_type": "spectrogram", "is_public": "True", "name": "elec eflux : para", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "units": "keV/(cm\u00b2-s-sr-keV)", "xmlid": "mms2_brst_des_para"}, "mms2_brst_des_perp": {"__spz_name__": "elec eflux : perp", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_brst_des_perp", "dataset": "mms2-fpi-brst.desm", "display_type": "spectrogram", "is_public": "True", "name": "elec eflux : perp", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "units": "keV/(cm\u00b2-s-sr-keV)", "xmlid": "mms2_brst_des_perp"}, "mms2_brst_desm_err": {"__spz_name__": "error flags", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_brst_desm_err", "dataset": "mms2-fpi-brst.desm", "display_type": "timeseries", "is_public": "True", "name": "error flags", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2_brst_desm_err"}, "mms2_brst_desm_hq": {"__spz_name__": "heatq_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_brst_desm_hq", "dataset": "mms2-fpi-brst.desm", "display_type": "timeseries", "is_public": "True", "mms2_brst_desm_hq0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_desm_hq(0)", "dataset": "mms2-fpi-brst.desm", "index1": "0", "is_public": "True", "name": "x", "parameter": "mms2_brst_desm_hq", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2_brst_desm_hq(0)"}, "mms2_brst_desm_hq1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_desm_hq(1)", "dataset": "mms2-fpi-brst.desm", "index1": "1", "is_public": "True", "name": "y", "parameter": "mms2_brst_desm_hq", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2_brst_desm_hq(1)"}, "mms2_brst_desm_hq2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_desm_hq(2)", "dataset": "mms2-fpi-brst.desm", "index1": "2", "is_public": "True", "name": "z", "parameter": "mms2_brst_desm_hq", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2_brst_desm_hq(2)"}, "name": "heatq_gse", "size": "3", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "ucd": "phys.pressure", "units": "mW/m\u00b2", "xmlid": "mms2_brst_desm_hq"}, "mms2_brst_desm_hqerr": {"__spz_name__": "heatq_gse : err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_brst_desm_hqerr", "dataset": "mms2-fpi-brst.desm", "display_type": "timeseries", "is_public": "True", "mms2_brst_desm_hqerr0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_desm_hqerr(0)", "dataset": "mms2-fpi-brst.desm", "index1": "0", "is_public": "True", "name": "x", "parameter": "mms2_brst_desm_hqerr", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2_brst_desm_hqerr(0)"}, "mms2_brst_desm_hqerr1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_desm_hqerr(1)", "dataset": "mms2-fpi-brst.desm", "index1": "1", "is_public": "True", "name": "y", "parameter": "mms2_brst_desm_hqerr", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2_brst_desm_hqerr(1)"}, "mms2_brst_desm_hqerr2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_desm_hqerr(2)", "dataset": "mms2-fpi-brst.desm", "index1": "2", "is_public": "True", "name": "z", "parameter": "mms2_brst_desm_hqerr", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2_brst_desm_hqerr(2)"}, "name": "heatq_gse : err", "size": "3", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "ucd": "phys.pressure", "units": "mW/m\u00b2", "xmlid": "mms2_brst_desm_hqerr"}, "mms2_brst_desm_n": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_brst_desm_n", "dataset": "mms2-fpi-brst.desm", "display_type": "timeseries", "is_public": "True", "name": "density", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "units": "cm\u207b\u00b3", "xmlid": "mms2_brst_desm_n"}, "mms2_brst_desm_nerr": {"__spz_name__": "density : err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_brst_desm_nerr", "dataset": "mms2-fpi-brst.desm", "display_type": "timeseries", "is_public": "True", "name": "density : err", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "units": "cm\u207b\u00b3", "xmlid": "mms2_brst_desm_nerr"}, "mms2_brst_desm_spom": {"__spz_name__": "elec eflux : omni", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_brst_desm_spom", "dataset": "mms2-fpi-brst.desm", "display_type": "spectrogram", "is_public": "True", "name": "elec eflux : omni", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "units": "keV/(cm\u00b2-s-sr-keV)", "xmlid": "mms2_brst_desm_spom"}, "mms2_brst_desm_t": {"__spz_name__": "temp_tensor_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_brst_desm_t", "dataset": "mms2-fpi-brst.desm", "display_type": "timeseries", "is_public": "True", "mms2_brst_desm_t0": {"__spz_name__": "xx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_desm_t(0)", "dataset": "mms2-fpi-brst.desm", "index1": "0", "is_public": "True", "name": "xx", "parameter": "mms2_brst_desm_t", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2_brst_desm_t(0)"}, "mms2_brst_desm_t1": {"__spz_name__": "xy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_desm_t(1)", "dataset": "mms2-fpi-brst.desm", "index1": "1", "is_public": "True", "name": "xy", "parameter": "mms2_brst_desm_t", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2_brst_desm_t(1)"}, "mms2_brst_desm_t2": {"__spz_name__": "xz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_desm_t(2)", "dataset": "mms2-fpi-brst.desm", "index1": "2", "is_public": "True", "name": "xz", "parameter": "mms2_brst_desm_t", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2_brst_desm_t(2)"}, "mms2_brst_desm_t3": {"__spz_name__": "yx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_desm_t(3)", "dataset": "mms2-fpi-brst.desm", "index1": "3", "is_public": "True", "name": "yx", "parameter": "mms2_brst_desm_t", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2_brst_desm_t(3)"}, "mms2_brst_desm_t4": {"__spz_name__": "yy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_desm_t(4)", "dataset": "mms2-fpi-brst.desm", "index1": "4", "is_public": "True", "name": "yy", "parameter": "mms2_brst_desm_t", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2_brst_desm_t(4)"}, "mms2_brst_desm_t5": {"__spz_name__": "yz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_desm_t(5)", "dataset": "mms2-fpi-brst.desm", "index1": "5", "is_public": "True", "name": "yz", "parameter": "mms2_brst_desm_t", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2_brst_desm_t(5)"}, "mms2_brst_desm_t6": {"__spz_name__": "zx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_desm_t(6)", "dataset": "mms2-fpi-brst.desm", "index1": "6", "is_public": "True", "name": "zx", "parameter": "mms2_brst_desm_t", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2_brst_desm_t(6)"}, "mms2_brst_desm_t7": {"__spz_name__": "zy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_desm_t(7)", "dataset": "mms2-fpi-brst.desm", "index1": "7", "is_public": "True", "name": "zy", "parameter": "mms2_brst_desm_t", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2_brst_desm_t(7)"}, "mms2_brst_desm_t8": {"__spz_name__": "zz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_desm_t(8)", "dataset": "mms2-fpi-brst.desm", "index1": "8", "is_public": "True", "name": "zz", "parameter": "mms2_brst_desm_t", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2_brst_desm_t(8)"}, "name": "temp_tensor_gse", "size": "9", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "units": "eV", "xmlid": "mms2_brst_desm_t"}, "mms2_brst_desm_tpar": {"__spz_name__": "t_para", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_brst_desm_tpar", "dataset": "mms2-fpi-brst.desm", "display_type": "timeseries", "is_public": "True", "name": "t_para", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "units": "eV", "xmlid": "mms2_brst_desm_tpar"}, "mms2_brst_desm_tperp": {"__spz_name__": "t_perp", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_brst_desm_tperp", "dataset": "mms2-fpi-brst.desm", "display_type": "timeseries", "is_public": "True", "name": "t_perp", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "units": "eV", "xmlid": "mms2_brst_desm_tperp"}, "mms2_brst_desm_v": {"__spz_name__": "v_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_brst_desm_v", "dataset": "mms2-fpi-brst.desm", "display_type": "timeseries", "is_public": "True", "mms2_brst_desm_v0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_desm_v(0)", "dataset": "mms2-fpi-brst.desm", "index1": "0", "is_public": "True", "name": "vx", "parameter": "mms2_brst_desm_v", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2_brst_desm_v(0)"}, "mms2_brst_desm_v1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_desm_v(1)", "dataset": "mms2-fpi-brst.desm", "index1": "1", "is_public": "True", "name": "vy", "parameter": "mms2_brst_desm_v", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2_brst_desm_v(1)"}, "mms2_brst_desm_v2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_desm_v(2)", "dataset": "mms2-fpi-brst.desm", "index1": "2", "is_public": "True", "name": "vz", "parameter": "mms2_brst_desm_v", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2_brst_desm_v(2)"}, "name": "v_gse", "size": "3", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "units": "km/s", "xmlid": "mms2_brst_desm_v"}, "mms2_brst_desm_verr": {"__spz_name__": "v_gse : err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_brst_desm_verr", "dataset": "mms2-fpi-brst.desm", "display_type": "timeseries", "is_public": "True", "mms2_brst_desm_verr0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_desm_verr(0)", "dataset": "mms2-fpi-brst.desm", "index1": "0", "is_public": "True", "name": "vx", "parameter": "mms2_brst_desm_verr", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2_brst_desm_verr(0)"}, "mms2_brst_desm_verr1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_desm_verr(1)", "dataset": "mms2-fpi-brst.desm", "index1": "1", "is_public": "True", "name": "vy", "parameter": "mms2_brst_desm_verr", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2_brst_desm_verr(1)"}, "mms2_brst_desm_verr2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_desm_verr(2)", "dataset": "mms2-fpi-brst.desm", "index1": "2", "is_public": "True", "name": "vz", "parameter": "mms2_brst_desm_verr", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2_brst_desm_verr(2)"}, "name": "v_gse : err", "size": "3", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "units": "km/s", "xmlid": "mms2_brst_desm_verr"}, "mms2_brst_desmpres": {"__spz_name__": "press_tensor_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_brst_desmpres", "dataset": "mms2-fpi-brst.desm", "display_type": "timeseries", "is_public": "True", "mms2_brst_desmpres0": {"__spz_name__": "xx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_desmpres(0)", "dataset": "mms2-fpi-brst.desm", "index1": "0", "is_public": "True", "name": "xx", "parameter": "mms2_brst_desmpres", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2_brst_desmpres(0)"}, "mms2_brst_desmpres1": {"__spz_name__": "xy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_desmpres(1)", "dataset": "mms2-fpi-brst.desm", "index1": "1", "is_public": "True", "name": "xy", "parameter": "mms2_brst_desmpres", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2_brst_desmpres(1)"}, "mms2_brst_desmpres2": {"__spz_name__": "xz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_desmpres(2)", "dataset": "mms2-fpi-brst.desm", "index1": "2", "is_public": "True", "name": "xz", "parameter": "mms2_brst_desmpres", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2_brst_desmpres(2)"}, "mms2_brst_desmpres3": {"__spz_name__": "yx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_desmpres(3)", "dataset": "mms2-fpi-brst.desm", "index1": "3", "is_public": "True", "name": "yx", "parameter": "mms2_brst_desmpres", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2_brst_desmpres(3)"}, "mms2_brst_desmpres4": {"__spz_name__": "yy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_desmpres(4)", "dataset": "mms2-fpi-brst.desm", "index1": "4", "is_public": "True", "name": "yy", "parameter": "mms2_brst_desmpres", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2_brst_desmpres(4)"}, "mms2_brst_desmpres5": {"__spz_name__": "yz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_desmpres(5)", "dataset": "mms2-fpi-brst.desm", "index1": "5", "is_public": "True", "name": "yz", "parameter": "mms2_brst_desmpres", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2_brst_desmpres(5)"}, "mms2_brst_desmpres6": {"__spz_name__": "zx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_desmpres(6)", "dataset": "mms2-fpi-brst.desm", "index1": "6", "is_public": "True", "name": "zx", "parameter": "mms2_brst_desmpres", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2_brst_desmpres(6)"}, "mms2_brst_desmpres7": {"__spz_name__": "zy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_desmpres(7)", "dataset": "mms2-fpi-brst.desm", "index1": "7", "is_public": "True", "name": "zy", "parameter": "mms2_brst_desmpres", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2_brst_desmpres(7)"}, "mms2_brst_desmpres8": {"__spz_name__": "zz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_desmpres(8)", "dataset": "mms2-fpi-brst.desm", "index1": "8", "is_public": "True", "name": "zz", "parameter": "mms2_brst_desmpres", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2_brst_desmpres(8)"}, "name": "press_tensor_gse", "size": "9", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "ucd": "phys.pressure", "units": "nPa", "xmlid": "mms2_brst_desmpres"}, "mms2_brst_desmpreserr": {"__spz_name__": "press_tensor_gse : err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_brst_desmpreserr", "dataset": "mms2-fpi-brst.desm", "display_type": "timeseries", "is_public": "True", "mms2_brst_desmpreserr0": {"__spz_name__": "xx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_desmpreserr(0)", "dataset": "mms2-fpi-brst.desm", "index1": "0", "is_public": "True", "name": "xx", "parameter": "mms2_brst_desmpreserr", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2_brst_desmpreserr(0)"}, "mms2_brst_desmpreserr1": {"__spz_name__": "xy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_desmpreserr(1)", "dataset": "mms2-fpi-brst.desm", "index1": "1", "is_public": "True", "name": "xy", "parameter": "mms2_brst_desmpreserr", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2_brst_desmpreserr(1)"}, "mms2_brst_desmpreserr2": {"__spz_name__": "xz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_desmpreserr(2)", "dataset": "mms2-fpi-brst.desm", "index1": "2", "is_public": "True", "name": "xz", "parameter": "mms2_brst_desmpreserr", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2_brst_desmpreserr(2)"}, "mms2_brst_desmpreserr3": {"__spz_name__": "yx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_desmpreserr(3)", "dataset": "mms2-fpi-brst.desm", "index1": "3", "is_public": "True", "name": "yx", "parameter": "mms2_brst_desmpreserr", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2_brst_desmpreserr(3)"}, "mms2_brst_desmpreserr4": {"__spz_name__": "yy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_desmpreserr(4)", "dataset": "mms2-fpi-brst.desm", "index1": "4", "is_public": "True", "name": "yy", "parameter": "mms2_brst_desmpreserr", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2_brst_desmpreserr(4)"}, "mms2_brst_desmpreserr5": {"__spz_name__": "yz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_desmpreserr(5)", "dataset": "mms2-fpi-brst.desm", "index1": "5", "is_public": "True", "name": "yz", "parameter": "mms2_brst_desmpreserr", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2_brst_desmpreserr(5)"}, "mms2_brst_desmpreserr6": {"__spz_name__": "zx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_desmpreserr(6)", "dataset": "mms2-fpi-brst.desm", "index1": "6", "is_public": "True", "name": "zx", "parameter": "mms2_brst_desmpreserr", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2_brst_desmpreserr(6)"}, "mms2_brst_desmpreserr7": {"__spz_name__": "zy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_desmpreserr(7)", "dataset": "mms2-fpi-brst.desm", "index1": "7", "is_public": "True", "name": "zy", "parameter": "mms2_brst_desmpreserr", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2_brst_desmpreserr(7)"}, "mms2_brst_desmpreserr8": {"__spz_name__": "zz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_desmpreserr(8)", "dataset": "mms2-fpi-brst.desm", "index1": "8", "is_public": "True", "name": "zz", "parameter": "mms2_brst_desmpreserr", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2_brst_desmpreserr(8)"}, "name": "press_tensor_gse : err", "size": "9", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "ucd": "phys.pressure", "units": "nPa", "xmlid": "mms2_brst_desmpreserr"}, "name": "DES : electrons", "processing_level": "Calibrated", "sampling": "0.03S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MMS/MMS2/FPI/mms2-fpi-brst.desm", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2-fpi-brst.desm"}, "mms2_fpi_brst_dism": {"__spz_name__": "DIS : ions", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mms2-fpi-brst.dism", "att": "auto/mms2-fpi-brst.dism", "dataSource": "LASP", "desc": "Dual Ion Spectrometers : burst mode
Sampling: 0.15S
Provider: LASP", "is_public": "True", "lastModificationDate": "2024-10-04T06:14:25Z", "lastUpdate": "2024-10-02T12:13:59Z", "measurement_type": "MagneticField", "mms2_brst_dis_err": {"__spz_name__": "error flags", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_brst_dis_err", "dataset": "mms2-fpi-brst.dism", "display_type": "timeseries", "is_public": "True", "name": "error flags", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2_brst_dis_err"}, "mms2_brst_dis_heatq": {"__spz_name__": "heatq_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_brst_dis_heatq", "dataset": "mms2-fpi-brst.dism", "display_type": "timeseries", "is_public": "True", "mms2_brst_dis_heatq0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_dis_heatq(0)", "dataset": "mms2-fpi-brst.dism", "index1": "0", "is_public": "True", "name": "x", "parameter": "mms2_brst_dis_heatq", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2_brst_dis_heatq(0)"}, "mms2_brst_dis_heatq1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_dis_heatq(1)", "dataset": "mms2-fpi-brst.dism", "index1": "1", "is_public": "True", "name": "y", "parameter": "mms2_brst_dis_heatq", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2_brst_dis_heatq(1)"}, "mms2_brst_dis_heatq2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_dis_heatq(2)", "dataset": "mms2-fpi-brst.dism", "index1": "2", "is_public": "True", "name": "z", "parameter": "mms2_brst_dis_heatq", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2_brst_dis_heatq(2)"}, "name": "heatq_gse", "size": "3", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "ucd": "phys.pressure", "units": "mW/m\u00b2", "xmlid": "mms2_brst_dis_heatq"}, "mms2_brst_dis_heatqerr": {"__spz_name__": "heatq : err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_brst_dis_heatqerr", "dataset": "mms2-fpi-brst.dism", "display_type": "timeseries", "is_public": "True", "mms2_brst_dis_heatqerr0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_dis_heatqerr(0)", "dataset": "mms2-fpi-brst.dism", "index1": "0", "is_public": "True", "name": "x", "parameter": "mms2_brst_dis_heatqerr", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2_brst_dis_heatqerr(0)"}, "mms2_brst_dis_heatqerr1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_dis_heatqerr(1)", "dataset": "mms2-fpi-brst.dism", "index1": "1", "is_public": "True", "name": "y", "parameter": "mms2_brst_dis_heatqerr", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2_brst_dis_heatqerr(1)"}, "mms2_brst_dis_heatqerr2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_dis_heatqerr(2)", "dataset": "mms2-fpi-brst.dism", "index1": "2", "is_public": "True", "name": "z", "parameter": "mms2_brst_dis_heatqerr", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2_brst_dis_heatqerr(2)"}, "name": "heatq : err", "size": "3", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "ucd": "phys.pressure", "units": "mW/m\u00b2", "xmlid": "mms2_brst_dis_heatqerr"}, "mms2_brst_dis_n": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_brst_dis_n", "dataset": "mms2-fpi-brst.dism", "display_type": "timeseries", "is_public": "True", "name": "density", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "units": "cm\u207b\u00b3", "xmlid": "mms2_brst_dis_n"}, "mms2_brst_dis_nerr": {"__spz_name__": "density : err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_brst_dis_nerr", "dataset": "mms2-fpi-brst.dism", "display_type": "timeseries", "is_public": "True", "name": "density : err", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "units": "cm\u207b\u00b3", "xmlid": "mms2_brst_dis_nerr"}, "mms2_brst_dis_omni": {"__spz_name__": "ion eflux : omni", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_brst_dis_omni", "dataset": "mms2-fpi-brst.dism", "display_type": "spectrogram", "is_public": "True", "name": "ion eflux : omni", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "units": "keV/(cm\u00b2-s-sr-keV)", "xmlid": "mms2_brst_dis_omni"}, "mms2_brst_dis_tpara": {"__spz_name__": "t_para", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_brst_dis_tpara", "dataset": "mms2-fpi-brst.dism", "display_type": "timeseries", "is_public": "True", "name": "t_para", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "units": "eV", "xmlid": "mms2_brst_dis_tpara"}, "mms2_brst_dis_tperp": {"__spz_name__": "t_perp", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_brst_dis_tperp", "dataset": "mms2-fpi-brst.dism", "display_type": "timeseries", "is_public": "True", "name": "t_perp", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "units": "eV", "xmlid": "mms2_brst_dis_tperp"}, "mms2_brst_dis_verr": {"__spz_name__": "v_gse : err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_brst_dis_verr", "dataset": "mms2-fpi-brst.dism", "display_type": "timeseries", "is_public": "True", "mms2_brst_dis_verr0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_dis_verr(0)", "dataset": "mms2-fpi-brst.dism", "index1": "0", "is_public": "True", "name": "vx", "parameter": "mms2_brst_dis_verr", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2_brst_dis_verr(0)"}, "mms2_brst_dis_verr1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_dis_verr(1)", "dataset": "mms2-fpi-brst.dism", "index1": "1", "is_public": "True", "name": "vy", "parameter": "mms2_brst_dis_verr", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2_brst_dis_verr(1)"}, "mms2_brst_dis_verr2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_dis_verr(2)", "dataset": "mms2-fpi-brst.dism", "index1": "2", "is_public": "True", "name": "vz", "parameter": "mms2_brst_dis_verr", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2_brst_dis_verr(2)"}, "name": "v_gse : err", "size": "3", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "units": "km/s", "xmlid": "mms2_brst_dis_verr"}, "mms2_brst_dis_vgse": {"__spz_name__": "v_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_brst_dis_vgse", "dataset": "mms2-fpi-brst.dism", "display_type": "timeseries", "is_public": "True", "mms2_brst_dis_vgse0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_dis_vgse(0)", "dataset": "mms2-fpi-brst.dism", "index1": "0", "is_public": "True", "name": "vx", "parameter": "mms2_brst_dis_vgse", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2_brst_dis_vgse(0)"}, "mms2_brst_dis_vgse1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_dis_vgse(1)", "dataset": "mms2-fpi-brst.dism", "index1": "1", "is_public": "True", "name": "vy", "parameter": "mms2_brst_dis_vgse", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2_brst_dis_vgse(1)"}, "mms2_brst_dis_vgse2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_dis_vgse(2)", "dataset": "mms2-fpi-brst.dism", "index1": "2", "is_public": "True", "name": "vz", "parameter": "mms2_brst_dis_vgse", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2_brst_dis_vgse(2)"}, "name": "v_gse", "size": "3", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "units": "km/s", "xmlid": "mms2_brst_dis_vgse"}, "mms2_brst_dispres": {"__spz_name__": "press_tensor_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_brst_dispres", "dataset": "mms2-fpi-brst.dism", "display_type": "timeseries", "is_public": "True", "mms2_brst_dispres0": {"__spz_name__": "xx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_dispres(0)", "dataset": "mms2-fpi-brst.dism", "index1": "0", "is_public": "True", "name": "xx", "parameter": "mms2_brst_dispres", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2_brst_dispres(0)"}, "mms2_brst_dispres1": {"__spz_name__": "xy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_dispres(1)", "dataset": "mms2-fpi-brst.dism", "index1": "1", "is_public": "True", "name": "xy", "parameter": "mms2_brst_dispres", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2_brst_dispres(1)"}, "mms2_brst_dispres2": {"__spz_name__": "xz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_dispres(2)", "dataset": "mms2-fpi-brst.dism", "index1": "2", "is_public": "True", "name": "xz", "parameter": "mms2_brst_dispres", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2_brst_dispres(2)"}, "mms2_brst_dispres3": {"__spz_name__": "yx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_dispres(3)", "dataset": "mms2-fpi-brst.dism", "index1": "3", "is_public": "True", "name": "yx", "parameter": "mms2_brst_dispres", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2_brst_dispres(3)"}, "mms2_brst_dispres4": {"__spz_name__": "yy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_dispres(4)", "dataset": "mms2-fpi-brst.dism", "index1": "4", "is_public": "True", "name": "yy", "parameter": "mms2_brst_dispres", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2_brst_dispres(4)"}, "mms2_brst_dispres5": {"__spz_name__": "yz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_dispres(5)", "dataset": "mms2-fpi-brst.dism", "index1": "5", "is_public": "True", "name": "yz", "parameter": "mms2_brst_dispres", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2_brst_dispres(5)"}, "mms2_brst_dispres6": {"__spz_name__": "zx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_dispres(6)", "dataset": "mms2-fpi-brst.dism", "index1": "6", "is_public": "True", "name": "zx", "parameter": "mms2_brst_dispres", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2_brst_dispres(6)"}, "mms2_brst_dispres7": {"__spz_name__": "zy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_dispres(7)", "dataset": "mms2-fpi-brst.dism", "index1": "7", "is_public": "True", "name": "zy", "parameter": "mms2_brst_dispres", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2_brst_dispres(7)"}, "mms2_brst_dispres8": {"__spz_name__": "zz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_dispres(8)", "dataset": "mms2-fpi-brst.dism", "index1": "8", "is_public": "True", "name": "zz", "parameter": "mms2_brst_dispres", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2_brst_dispres(8)"}, "name": "press_tensor_gse", "size": "9", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "ucd": "phys.pressure", "units": "nPa", "xmlid": "mms2_brst_dispres"}, "mms2_brst_dispreserr": {"__spz_name__": "press_tensor_gse : err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_brst_dispreserr", "dataset": "mms2-fpi-brst.dism", "display_type": "timeseries", "is_public": "True", "mms2_brst_dispreserr0": {"__spz_name__": "xx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_dispreserr(0)", "dataset": "mms2-fpi-brst.dism", "index1": "0", "is_public": "True", "name": "xx", "parameter": "mms2_brst_dispreserr", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2_brst_dispreserr(0)"}, "mms2_brst_dispreserr1": {"__spz_name__": "xy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_dispreserr(1)", "dataset": "mms2-fpi-brst.dism", "index1": "1", "is_public": "True", "name": "xy", "parameter": "mms2_brst_dispreserr", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2_brst_dispreserr(1)"}, "mms2_brst_dispreserr2": {"__spz_name__": "xz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_dispreserr(2)", "dataset": "mms2-fpi-brst.dism", "index1": "2", "is_public": "True", "name": "xz", "parameter": "mms2_brst_dispreserr", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2_brst_dispreserr(2)"}, "mms2_brst_dispreserr3": {"__spz_name__": "yx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_dispreserr(3)", "dataset": "mms2-fpi-brst.dism", "index1": "3", "is_public": "True", "name": "yx", "parameter": "mms2_brst_dispreserr", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2_brst_dispreserr(3)"}, "mms2_brst_dispreserr4": {"__spz_name__": "yy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_dispreserr(4)", "dataset": "mms2-fpi-brst.dism", "index1": "4", "is_public": "True", "name": "yy", "parameter": "mms2_brst_dispreserr", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2_brst_dispreserr(4)"}, "mms2_brst_dispreserr5": {"__spz_name__": "yz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_dispreserr(5)", "dataset": "mms2-fpi-brst.dism", "index1": "5", "is_public": "True", "name": "yz", "parameter": "mms2_brst_dispreserr", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2_brst_dispreserr(5)"}, "mms2_brst_dispreserr6": {"__spz_name__": "zx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_dispreserr(6)", "dataset": "mms2-fpi-brst.dism", "index1": "6", "is_public": "True", "name": "zx", "parameter": "mms2_brst_dispreserr", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2_brst_dispreserr(6)"}, "mms2_brst_dispreserr7": {"__spz_name__": "zy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_dispreserr(7)", "dataset": "mms2-fpi-brst.dism", "index1": "7", "is_public": "True", "name": "zy", "parameter": "mms2_brst_dispreserr", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2_brst_dispreserr(7)"}, "mms2_brst_dispreserr8": {"__spz_name__": "zz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_brst_dispreserr(8)", "dataset": "mms2-fpi-brst.dism", "index1": "8", "is_public": "True", "name": "zz", "parameter": "mms2_brst_dispreserr", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2_brst_dispreserr(8)"}, "name": "press_tensor_gse : err", "size": "9", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "ucd": "phys.pressure", "units": "nPa", "xmlid": "mms2_brst_dispreserr"}, "name": "DIS : ions", "processing_level": "Calibrated", "sampling": "0.15S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MMS/MMS2/FPI/mms2-fpi-brst.dism", "start_date": "2015-06-22T17:56:25Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms2-fpi-brst.dism"}, "name": "burst mode", "xmlid": "mms2-fpi-brst"}, "desc": "Fast Plasma Investigation
ElectrostaticAnalyser", "fast_mode": {"__spz_name__": "fast mode", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "mms2-fpi-fast", "is_public": "True", "mms2_fpi_current": {"PriorID": "mms2-fpi-desmoms", "__spz_name__": "electric current", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mms2-fpi-current", "att": "auto/mms2-fpi-current", "dataSource": "LASP", "desc": "electric current : fast mode
Sampling: 4.5S
Provider: LASP", "is_public": "True", "lastModificationDate": "2024-10-07T05:33:25Z", "lastUpdate": "2024-10-07T05:33:24Z", "measurement_type": "ThermalPlasma", "mms2_fast_jgse": {"__spz_name__": "j_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_fast_jgse", "dataset": "mms2-fpi-current", "description": "Electric current = 1.6e-10*(mms2_des_ne+mms2_dis_ni)*0.5*(mms2_dis_vgse-mms2_des_vgse)", "display_type": "timeseries", "is_public": "True", "mms2_fast_jgse0": {"__spz_name__": "jx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_fast_jgse(0)", "dataset": "mms2-fpi-current", "index1": "0", "is_public": "True", "name": "jx", "parameter": "mms2_fast_jgse", "start_date": "2015-06-22T17:46:20Z", "stop_date": "2024-08-14T00:58:50Z", "xmlid": "mms2_fast_jgse(0)"}, "mms2_fast_jgse1": {"__spz_name__": "jy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_fast_jgse(1)", "dataset": "mms2-fpi-current", "index1": "1", "is_public": "True", "name": "jy", "parameter": "mms2_fast_jgse", "start_date": "2015-06-22T17:46:20Z", "stop_date": "2024-08-14T00:58:50Z", "xmlid": "mms2_fast_jgse(1)"}, "mms2_fast_jgse2": {"__spz_name__": "jz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_fast_jgse(2)", "dataset": "mms2-fpi-current", "index1": "2", "is_public": "True", "name": "jz", "parameter": "mms2_fast_jgse", "start_date": "2015-06-22T17:46:20Z", "stop_date": "2024-08-14T00:58:50Z", "xmlid": "mms2_fast_jgse(2)"}, "name": "j_gse", "size": "3", "start_date": "2015-06-22T17:46:20Z", "stop_date": "2024-08-14T00:58:50Z", "units": "A/m\u00b2", "xmlid": "mms2_fast_jgse"}, "name": "electric current", "processing_level": "Calibrated", "sampling": "4.5S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MMS/MMS2/FPI/mms2-fpi-current", "start_date": "2015-06-22T17:46:20Z", "stop_date": "2024-08-14T00:58:50Z", "xmlid": "mms2-fpi-current"}, "mms2_fpi_desmoms": {"__spz_name__": "DES : electrons", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mms2-fpi-desmoms", "att": "auto/mms2-fpi-desmoms", "dataSource": "LASP", "desc": "Dual Electron Spectrometers : fast mode
Sampling: 4.5S
Provider: LASP", "is_public": "True", "lastModificationDate": "2024-10-07T05:33:25Z", "lastUpdate": "2024-10-07T05:33:24Z", "measurement_type": "MagneticField", "mms2_des_anti": {"__spz_name__": "elec eflux : anti", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_des_anti", "dataset": "mms2-fpi-desmoms", "display_type": "spectrogram", "is_public": "True", "name": "elec eflux : anti", "start_date": "2015-06-22T17:46:20Z", "stop_date": "2024-08-14T00:58:50Z", "units": "keV/(cm\u00b2-s-sr-keV)", "xmlid": "mms2_des_anti"}, "mms2_des_heatq": {"__spz_name__": "heatq_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_des_heatq", "dataset": "mms2-fpi-desmoms", "display_type": "timeseries", "is_public": "True", "mms2_des_heatq0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_des_heatq(0)", "dataset": "mms2-fpi-desmoms", "index1": "0", "is_public": "True", "name": "x", "parameter": "mms2_des_heatq", "start_date": "2015-06-22T17:46:20Z", "stop_date": "2024-08-14T00:58:50Z", "xmlid": "mms2_des_heatq(0)"}, "mms2_des_heatq1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_des_heatq(1)", "dataset": "mms2-fpi-desmoms", "index1": "1", "is_public": "True", "name": "y", "parameter": "mms2_des_heatq", "start_date": "2015-06-22T17:46:20Z", "stop_date": "2024-08-14T00:58:50Z", "xmlid": "mms2_des_heatq(1)"}, "mms2_des_heatq2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_des_heatq(2)", "dataset": "mms2-fpi-desmoms", "index1": "2", "is_public": "True", "name": "z", "parameter": "mms2_des_heatq", "start_date": "2015-06-22T17:46:20Z", "stop_date": "2024-08-14T00:58:50Z", "xmlid": "mms2_des_heatq(2)"}, "name": "heatq_gse", "size": "3", "start_date": "2015-06-22T17:46:20Z", "stop_date": "2024-08-14T00:58:50Z", "ucd": "phys.pressure", "units": "mW/m\u00b2", "xmlid": "mms2_des_heatq"}, "mms2_des_ne": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_des_ne", "dataset": "mms2-fpi-desmoms", "display_type": "timeseries", "is_public": "True", "name": "density", "start_date": "2015-06-22T17:46:20Z", "stop_date": "2024-08-14T00:58:50Z", "units": "cm\u207b\u00b3", "xmlid": "mms2_des_ne"}, "mms2_des_ne_err": {"__spz_name__": "density : err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_des_ne_err", "dataset": "mms2-fpi-desmoms", "display_type": "timeseries", "is_public": "True", "name": "density : err", "start_date": "2015-06-22T17:46:20Z", "stop_date": "2024-08-14T00:58:50Z", "units": "cm\u207b\u00b3", "xmlid": "mms2_des_ne_err"}, "mms2_des_omni": {"__spz_name__": "elec eflux : omni", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_des_omni", "dataset": "mms2-fpi-desmoms", "display_type": "spectrogram", "is_public": "True", "name": "elec eflux : omni", "start_date": "2015-06-22T17:46:20Z", "stop_date": "2024-08-14T00:58:50Z", "units": "keV/(cm\u00b2-s-sr-keV)", "xmlid": "mms2_des_omni"}, "mms2_des_pahigh": {"__spz_name__": "pa dist : highen", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_des_pahigh", "dataset": "mms2-fpi-desmoms", "description": "High energy bin: 2 keV - 30 keV. \n Pitch-angle bin size: 6 deg. Note that pitch angles are calculated in the spacecraft frame; \n i.e., not shifted by the bulk velocity", "display_type": "spectrogram", "is_public": "True", "name": "pa dist : highen", "start_date": "2015-06-22T17:46:20Z", "stop_date": "2024-08-14T00:58:50Z", "units": "keV/(cm\u00b2-s-sr-keV)", "xmlid": "mms2_des_pahigh"}, "mms2_des_palow": {"__spz_name__": "pa dist : lowen", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_des_palow", "dataset": "mms2-fpi-desmoms", "description": "Low energy bin: 0 eV - 200 eV. \n Pitch-angle bin size: 6 deg. Note that pitch angles are calculated in the spacecraft frame; \n i.e., not shifted by the bulk velocity", "display_type": "spectrogram", "is_public": "True", "name": "pa dist : lowen", "start_date": "2015-06-22T17:46:20Z", "stop_date": "2024-08-14T00:58:50Z", "units": "keV/(cm\u00b2-s-sr-keV)", "xmlid": "mms2_des_palow"}, "mms2_des_pamid": {"__spz_name__": "pa dist : miden", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_des_pamid", "dataset": "mms2-fpi-desmoms", "description": "Mid energy bin: 200 eV - 2 keV. \n Pitch-angle bin size: 6 deg. Note that pitch angles are calculated in the spacecraft frame; \n i.e., not shifted by the bulk velocity", "display_type": "spectrogram", "is_public": "True", "name": "pa dist : miden", "start_date": "2015-06-22T17:46:20Z", "stop_date": "2024-08-14T00:58:50Z", "units": "keV/(cm\u00b2-s-sr-keV)", "xmlid": "mms2_des_pamid"}, "mms2_des_para": {"__spz_name__": "elec eflux : para", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_des_para", "dataset": "mms2-fpi-desmoms", "display_type": "spectrogram", "is_public": "True", "name": "elec eflux : para", "start_date": "2015-06-22T17:46:20Z", "stop_date": "2024-08-14T00:58:50Z", "units": "keV/(cm\u00b2-s-sr-keV)", "xmlid": "mms2_des_para"}, "mms2_des_perp": {"__spz_name__": "elec eflux : perp", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_des_perp", "dataset": "mms2-fpi-desmoms", "display_type": "spectrogram", "is_public": "True", "name": "elec eflux : perp", "start_date": "2015-06-22T17:46:20Z", "stop_date": "2024-08-14T00:58:50Z", "units": "keV/(cm\u00b2-s-sr-keV)", "xmlid": "mms2_des_perp"}, "mms2_des_press": {"__spz_name__": "pressure_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_des_press", "dataset": "mms2-fpi-desmoms", "display_type": "timeseries", "is_public": "True", "mms2_des_press0": {"__spz_name__": "xx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_des_press(0)", "dataset": "mms2-fpi-desmoms", "index1": "0", "is_public": "True", "name": "xx", "parameter": "mms2_des_press", "start_date": "2015-06-22T17:46:20Z", "stop_date": "2024-08-14T00:58:50Z", "xmlid": "mms2_des_press(0)"}, "mms2_des_press1": {"__spz_name__": "xy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_des_press(1)", "dataset": "mms2-fpi-desmoms", "index1": "1", "is_public": "True", "name": "xy", "parameter": "mms2_des_press", "start_date": "2015-06-22T17:46:20Z", "stop_date": "2024-08-14T00:58:50Z", "xmlid": "mms2_des_press(1)"}, "mms2_des_press2": {"__spz_name__": "xz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_des_press(2)", "dataset": "mms2-fpi-desmoms", "index1": "2", "is_public": "True", "name": "xz", "parameter": "mms2_des_press", "start_date": "2015-06-22T17:46:20Z", "stop_date": "2024-08-14T00:58:50Z", "xmlid": "mms2_des_press(2)"}, "mms2_des_press3": {"__spz_name__": "yx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_des_press(3)", "dataset": "mms2-fpi-desmoms", "index1": "3", "is_public": "True", "name": "yx", "parameter": "mms2_des_press", "start_date": "2015-06-22T17:46:20Z", "stop_date": "2024-08-14T00:58:50Z", "xmlid": "mms2_des_press(3)"}, "mms2_des_press4": {"__spz_name__": "yy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_des_press(4)", "dataset": "mms2-fpi-desmoms", "index1": "4", "is_public": "True", "name": "yy", "parameter": "mms2_des_press", "start_date": "2015-06-22T17:46:20Z", "stop_date": "2024-08-14T00:58:50Z", "xmlid": "mms2_des_press(4)"}, "mms2_des_press5": {"__spz_name__": "yz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_des_press(5)", "dataset": "mms2-fpi-desmoms", "index1": "5", "is_public": "True", "name": "yz", "parameter": "mms2_des_press", "start_date": "2015-06-22T17:46:20Z", "stop_date": "2024-08-14T00:58:50Z", "xmlid": "mms2_des_press(5)"}, "mms2_des_press6": {"__spz_name__": "zx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_des_press(6)", "dataset": "mms2-fpi-desmoms", "index1": "6", "is_public": "True", "name": "zx", "parameter": "mms2_des_press", "start_date": "2015-06-22T17:46:20Z", "stop_date": "2024-08-14T00:58:50Z", "xmlid": "mms2_des_press(6)"}, "mms2_des_press7": {"__spz_name__": "zy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_des_press(7)", "dataset": "mms2-fpi-desmoms", "index1": "7", "is_public": "True", "name": "zy", "parameter": "mms2_des_press", "start_date": "2015-06-22T17:46:20Z", "stop_date": "2024-08-14T00:58:50Z", "xmlid": "mms2_des_press(7)"}, "mms2_des_press8": {"__spz_name__": "zz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_des_press(8)", "dataset": "mms2-fpi-desmoms", "index1": "8", "is_public": "True", "name": "zz", "parameter": "mms2_des_press", "start_date": "2015-06-22T17:46:20Z", "stop_date": "2024-08-14T00:58:50Z", "xmlid": "mms2_des_press(8)"}, "name": "pressure_gse", "size": "9", "start_date": "2015-06-22T17:46:20Z", "stop_date": "2024-08-14T00:58:50Z", "ucd": "phys.pressure", "units": "nPa", "xmlid": "mms2_des_press"}, "mms2_des_tpara": {"__spz_name__": "t_para", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_des_tpara", "dataset": "mms2-fpi-desmoms", "display_type": "timeseries", "is_public": "True", "name": "t_para", "start_date": "2015-06-22T17:46:20Z", "stop_date": "2024-08-14T00:58:50Z", "units": "eV", "xmlid": "mms2_des_tpara"}, "mms2_des_tperp": {"__spz_name__": "t_perp", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_des_tperp", "dataset": "mms2-fpi-desmoms", "display_type": "timeseries", "is_public": "True", "name": "t_perp", "start_date": "2015-06-22T17:46:20Z", "stop_date": "2024-08-14T00:58:50Z", "units": "eV", "xmlid": "mms2_des_tperp"}, "mms2_des_v_err": {"__spz_name__": "v_gse : err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_des_v_err", "dataset": "mms2-fpi-desmoms", "display_type": "timeseries", "is_public": "True", "mms2_des_v_err0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_des_v_err(0)", "dataset": "mms2-fpi-desmoms", "index1": "0", "is_public": "True", "name": "vx", "parameter": "mms2_des_v_err", "start_date": "2015-06-22T17:46:20Z", "stop_date": "2024-08-14T00:58:50Z", "xmlid": "mms2_des_v_err(0)"}, "mms2_des_v_err1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_des_v_err(1)", "dataset": "mms2-fpi-desmoms", "index1": "1", "is_public": "True", "name": "vy", "parameter": "mms2_des_v_err", "start_date": "2015-06-22T17:46:20Z", "stop_date": "2024-08-14T00:58:50Z", "xmlid": "mms2_des_v_err(1)"}, "mms2_des_v_err2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_des_v_err(2)", "dataset": "mms2-fpi-desmoms", "index1": "2", "is_public": "True", "name": "vz", "parameter": "mms2_des_v_err", "start_date": "2015-06-22T17:46:20Z", "stop_date": "2024-08-14T00:58:50Z", "xmlid": "mms2_des_v_err(2)"}, "name": "v_gse : err", "size": "3", "start_date": "2015-06-22T17:46:20Z", "stop_date": "2024-08-14T00:58:50Z", "units": "km/s", "xmlid": "mms2_des_v_err"}, "mms2_des_vgse": {"__spz_name__": "v_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_des_vgse", "dataset": "mms2-fpi-desmoms", "display_type": "timeseries", "is_public": "True", "mms2_des_vgse0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_des_vgse(0)", "dataset": "mms2-fpi-desmoms", "index1": "0", "is_public": "True", "name": "vx", "parameter": "mms2_des_vgse", "start_date": "2015-06-22T17:46:20Z", "stop_date": "2024-08-14T00:58:50Z", "xmlid": "mms2_des_vgse(0)"}, "mms2_des_vgse1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_des_vgse(1)", "dataset": "mms2-fpi-desmoms", "index1": "1", "is_public": "True", "name": "vy", "parameter": "mms2_des_vgse", "start_date": "2015-06-22T17:46:20Z", "stop_date": "2024-08-14T00:58:50Z", "xmlid": "mms2_des_vgse(1)"}, "mms2_des_vgse2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_des_vgse(2)", "dataset": "mms2-fpi-desmoms", "index1": "2", "is_public": "True", "name": "vz", "parameter": "mms2_des_vgse", "start_date": "2015-06-22T17:46:20Z", "stop_date": "2024-08-14T00:58:50Z", "xmlid": "mms2_des_vgse(2)"}, "name": "v_gse", "size": "3", "start_date": "2015-06-22T17:46:20Z", "stop_date": "2024-08-14T00:58:50Z", "units": "km/s", "xmlid": "mms2_des_vgse"}, "name": "DES : electrons", "processing_level": "Calibrated", "sampling": "4.5S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MMS/MMS2/FPI/mms2-fpi-desmoms", "start_date": "2015-06-22T17:46:20Z", "stop_date": "2024-08-14T00:58:50Z", "xmlid": "mms2-fpi-desmoms"}, "mms2_fpi_dismoms": {"__spz_name__": "DIS : ions", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mms2-fpi-dismoms", "att": "auto/mms2-fpi-dismoms", "dataSource": "LASP", "desc": "Dual Ion Spectrometers : fast mode
Sampling: 4.5S
Provider: LASP", "is_public": "True", "lastModificationDate": "2024-10-07T05:33:26Z", "lastUpdate": "2024-10-07T05:33:26Z", "measurement_type": "MagneticField", "mms2_dis_heatq": {"__spz_name__": "heatq_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_dis_heatq", "dataset": "mms2-fpi-dismoms", "display_type": "timeseries", "is_public": "True", "mms2_dis_heatq0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_dis_heatq(0)", "dataset": "mms2-fpi-dismoms", "index1": "0", "is_public": "True", "name": "x", "parameter": "mms2_dis_heatq", "start_date": "2015-06-22T17:46:20Z", "stop_date": "2024-08-14T00:58:50Z", "xmlid": "mms2_dis_heatq(0)"}, "mms2_dis_heatq1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_dis_heatq(1)", "dataset": "mms2-fpi-dismoms", "index1": "1", "is_public": "True", "name": "y", "parameter": "mms2_dis_heatq", "start_date": "2015-06-22T17:46:20Z", "stop_date": "2024-08-14T00:58:50Z", "xmlid": "mms2_dis_heatq(1)"}, "mms2_dis_heatq2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_dis_heatq(2)", "dataset": "mms2-fpi-dismoms", "index1": "2", "is_public": "True", "name": "z", "parameter": "mms2_dis_heatq", "start_date": "2015-06-22T17:46:20Z", "stop_date": "2024-08-14T00:58:50Z", "xmlid": "mms2_dis_heatq(2)"}, "name": "heatq_gse", "size": "3", "start_date": "2015-06-22T17:46:20Z", "stop_date": "2024-08-14T00:58:50Z", "ucd": "phys.pressure", "units": "mW/m\u00b2", "xmlid": "mms2_dis_heatq"}, "mms2_dis_ni": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_dis_ni", "dataset": "mms2-fpi-dismoms", "display_type": "timeseries", "is_public": "True", "name": "density", "start_date": "2015-06-22T17:46:20Z", "stop_date": "2024-08-14T00:58:50Z", "units": "cm\u207b\u00b3", "xmlid": "mms2_dis_ni"}, "mms2_dis_ni_err": {"__spz_name__": "density : err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_dis_ni_err", "dataset": "mms2-fpi-dismoms", "display_type": "timeseries", "is_public": "True", "name": "density : err", "start_date": "2015-06-22T17:46:20Z", "stop_date": "2024-08-14T00:58:50Z", "units": "cm\u207b\u00b3", "xmlid": "mms2_dis_ni_err"}, "mms2_dis_omni": {"__spz_name__": "ion eflux : omni", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_dis_omni", "dataset": "mms2-fpi-dismoms", "display_type": "spectrogram", "is_public": "True", "name": "ion eflux : omni", "start_date": "2015-06-22T17:46:20Z", "stop_date": "2024-08-14T00:58:50Z", "units": "keV/(cm\u00b2-s-sr-keV)", "xmlid": "mms2_dis_omni"}, "mms2_dis_press": {"__spz_name__": "pressure_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_dis_press", "dataset": "mms2-fpi-dismoms", "display_type": "timeseries", "is_public": "True", "mms2_dis_press0": {"__spz_name__": "xx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_dis_press(0)", "dataset": "mms2-fpi-dismoms", "index1": "0", "is_public": "True", "name": "xx", "parameter": "mms2_dis_press", "start_date": "2015-06-22T17:46:20Z", "stop_date": "2024-08-14T00:58:50Z", "xmlid": "mms2_dis_press(0)"}, "mms2_dis_press1": {"__spz_name__": "xy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_dis_press(1)", "dataset": "mms2-fpi-dismoms", "index1": "1", "is_public": "True", "name": "xy", "parameter": "mms2_dis_press", "start_date": "2015-06-22T17:46:20Z", "stop_date": "2024-08-14T00:58:50Z", "xmlid": "mms2_dis_press(1)"}, "mms2_dis_press2": {"__spz_name__": "xz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_dis_press(2)", "dataset": "mms2-fpi-dismoms", "index1": "2", "is_public": "True", "name": "xz", "parameter": "mms2_dis_press", "start_date": "2015-06-22T17:46:20Z", "stop_date": "2024-08-14T00:58:50Z", "xmlid": "mms2_dis_press(2)"}, "mms2_dis_press3": {"__spz_name__": "yx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_dis_press(3)", "dataset": "mms2-fpi-dismoms", "index1": "3", "is_public": "True", "name": "yx", "parameter": "mms2_dis_press", "start_date": "2015-06-22T17:46:20Z", "stop_date": "2024-08-14T00:58:50Z", "xmlid": "mms2_dis_press(3)"}, "mms2_dis_press4": {"__spz_name__": "yy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_dis_press(4)", "dataset": "mms2-fpi-dismoms", "index1": "4", "is_public": "True", "name": "yy", "parameter": "mms2_dis_press", "start_date": "2015-06-22T17:46:20Z", "stop_date": "2024-08-14T00:58:50Z", "xmlid": "mms2_dis_press(4)"}, "mms2_dis_press5": {"__spz_name__": "yz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_dis_press(5)", "dataset": "mms2-fpi-dismoms", "index1": "5", "is_public": "True", "name": "yz", "parameter": "mms2_dis_press", "start_date": "2015-06-22T17:46:20Z", "stop_date": "2024-08-14T00:58:50Z", "xmlid": "mms2_dis_press(5)"}, "mms2_dis_press6": {"__spz_name__": "zx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_dis_press(6)", "dataset": "mms2-fpi-dismoms", "index1": "6", "is_public": "True", "name": "zx", "parameter": "mms2_dis_press", "start_date": "2015-06-22T17:46:20Z", "stop_date": "2024-08-14T00:58:50Z", "xmlid": "mms2_dis_press(6)"}, "mms2_dis_press7": {"__spz_name__": "zy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_dis_press(7)", "dataset": "mms2-fpi-dismoms", "index1": "7", "is_public": "True", "name": "zy", "parameter": "mms2_dis_press", "start_date": "2015-06-22T17:46:20Z", "stop_date": "2024-08-14T00:58:50Z", "xmlid": "mms2_dis_press(7)"}, "mms2_dis_press8": {"__spz_name__": "zz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_dis_press(8)", "dataset": "mms2-fpi-dismoms", "index1": "8", "is_public": "True", "name": "zz", "parameter": "mms2_dis_press", "start_date": "2015-06-22T17:46:20Z", "stop_date": "2024-08-14T00:58:50Z", "xmlid": "mms2_dis_press(8)"}, "name": "pressure_gse", "size": "9", "start_date": "2015-06-22T17:46:20Z", "stop_date": "2024-08-14T00:58:50Z", "ucd": "phys.pressure", "units": "nPa", "xmlid": "mms2_dis_press"}, "mms2_dis_tpara": {"__spz_name__": "t_para", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_dis_tpara", "dataset": "mms2-fpi-dismoms", "display_type": "timeseries", "is_public": "True", "name": "t_para", "start_date": "2015-06-22T17:46:20Z", "stop_date": "2024-08-14T00:58:50Z", "units": "eV", "xmlid": "mms2_dis_tpara"}, "mms2_dis_tperp": {"__spz_name__": "t_perp", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_dis_tperp", "dataset": "mms2-fpi-dismoms", "display_type": "timeseries", "is_public": "True", "name": "t_perp", "start_date": "2015-06-22T17:46:20Z", "stop_date": "2024-08-14T00:58:50Z", "units": "eV", "xmlid": "mms2_dis_tperp"}, "mms2_dis_v_err": {"__spz_name__": "v_gse : err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_dis_v_err", "dataset": "mms2-fpi-dismoms", "display_type": "timeseries", "is_public": "True", "mms2_dis_v_err0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_dis_v_err(0)", "dataset": "mms2-fpi-dismoms", "index1": "0", "is_public": "True", "name": "vx", "parameter": "mms2_dis_v_err", "start_date": "2015-06-22T17:46:20Z", "stop_date": "2024-08-14T00:58:50Z", "xmlid": "mms2_dis_v_err(0)"}, "mms2_dis_v_err1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_dis_v_err(1)", "dataset": "mms2-fpi-dismoms", "index1": "1", "is_public": "True", "name": "vy", "parameter": "mms2_dis_v_err", "start_date": "2015-06-22T17:46:20Z", "stop_date": "2024-08-14T00:58:50Z", "xmlid": "mms2_dis_v_err(1)"}, "mms2_dis_v_err2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_dis_v_err(2)", "dataset": "mms2-fpi-dismoms", "index1": "2", "is_public": "True", "name": "vz", "parameter": "mms2_dis_v_err", "start_date": "2015-06-22T17:46:20Z", "stop_date": "2024-08-14T00:58:50Z", "xmlid": "mms2_dis_v_err(2)"}, "name": "v_gse : err", "size": "3", "start_date": "2015-06-22T17:46:20Z", "stop_date": "2024-08-14T00:58:50Z", "units": "km/s", "xmlid": "mms2_dis_v_err"}, "mms2_dis_vgse": {"__spz_name__": "v_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_dis_vgse", "dataset": "mms2-fpi-dismoms", "display_type": "timeseries", "is_public": "True", "mms2_dis_vgse0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_dis_vgse(0)", "dataset": "mms2-fpi-dismoms", "index1": "0", "is_public": "True", "name": "vx", "parameter": "mms2_dis_vgse", "start_date": "2015-06-22T17:46:20Z", "stop_date": "2024-08-14T00:58:50Z", "xmlid": "mms2_dis_vgse(0)"}, "mms2_dis_vgse1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_dis_vgse(1)", "dataset": "mms2-fpi-dismoms", "index1": "1", "is_public": "True", "name": "vy", "parameter": "mms2_dis_vgse", "start_date": "2015-06-22T17:46:20Z", "stop_date": "2024-08-14T00:58:50Z", "xmlid": "mms2_dis_vgse(1)"}, "mms2_dis_vgse2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms2_dis_vgse(2)", "dataset": "mms2-fpi-dismoms", "index1": "2", "is_public": "True", "name": "vz", "parameter": "mms2_dis_vgse", "start_date": "2015-06-22T17:46:20Z", "stop_date": "2024-08-14T00:58:50Z", "xmlid": "mms2_dis_vgse(2)"}, "name": "v_gse", "size": "3", "start_date": "2015-06-22T17:46:20Z", "stop_date": "2024-08-14T00:58:50Z", "units": "km/s", "xmlid": "mms2_dis_vgse"}, "name": "DIS : ions", "processing_level": "Calibrated", "sampling": "4.5S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MMS/MMS2/FPI/mms2-fpi-dismoms", "start_date": "2015-06-22T17:46:20Z", "stop_date": "2024-08-14T00:58:50Z", "xmlid": "mms2-fpi-dismoms"}, "name": "fast mode", "xmlid": "mms2-fpi-fast"}, "is_public": "True", "name": "FPI", "xmlid": "MMS2_fpi"}, "HPCA": {"__spz_name__": "HPCA", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "MMS2_hpca", "att": "auto/MMS2_hpca", "desc": "Hot Plasma Composition Analyzer
MassSpectrometer", "is_public": "True", "mms2_hpca_brst": {"__spz_name__": "ion energy flux : burst mode", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mms2-hpca-brst", "att": "auto/mms2-hpca-brst", "dataSource": "IRAP", "desc": "ion flux spectrograms : burst mode
Sampling: 0.625S
Provider: IRAP", "is_public": "True", "lastModificationDate": "2024-10-04T06:28:15Z", "lastUpdate": "2024-04-15T14:49:51Z", "measurement_type": "IonComposition", "mms2_hpca_heefl": {"__spz_name__": "he++ eflux : 2D energy/polar", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_hpca_heefl", "dataset": "mms2-hpca-brst", "description": "He++ Flux for all elevation anodes accross all energies", "display_type": "spectrogram", "is_public": "True", "name": "he++ eflux : 2D energy/polar", "start_date": "2015-07-03T02:16:12Z", "stop_date": "2023-09-19T05:15:42Z", "units": "keV/((cm\u00b2-s-sr-keV))", "xmlid": "mms2_hpca_heefl"}, "mms2_hpca_heefl_elevation": {"__spz_name__": "he++ eflux : sum on elevations", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_hpca_heefl_elevation", "dataset": "mms2-hpca-brst", "description": "He++ Flux for all energies", "display_type": "spectrogram", "is_public": "True", "name": "he++ eflux : sum on elevations", "start_date": "2015-07-03T02:16:12Z", "stop_date": "2023-09-19T05:15:42Z", "units": "keV/((cm\u00b2-s-sr-keV))", "xmlid": "mms2_hpca_heefl_elevation"}, "mms2_hpca_heeq": {"__spz_name__": "he++ eflux quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_hpca_heeq", "dataset": "mms2-hpca-brst", "display_type": "timeseries", "is_public": "True", "name": "he++ eflux quality", "start_date": "2015-07-03T02:16:12Z", "stop_date": "2023-09-19T05:15:42Z", "xmlid": "mms2_hpca_heeq"}, "mms2_hpca_hefl": {"__spz_name__": "he+ eflux : 2D energy/polar", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_hpca_hefl", "dataset": "mms2-hpca-brst", "description": "He Flux for all elevation anodes accross all energies", "display_type": "spectrogram", "is_public": "True", "name": "he+ eflux : 2D energy/polar", "start_date": "2015-07-03T02:16:12Z", "stop_date": "2023-09-19T05:15:42Z", "units": "keV/((cm\u00b2-s-sr-keV))", "xmlid": "mms2_hpca_hefl"}, "mms2_hpca_hefl_elevation": {"__spz_name__": "he+ eflux : sum on elevations", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_hpca_hefl_elevation", "dataset": "mms2-hpca-brst", "description": "He Flux for all energies", "display_type": "spectrogram", "is_public": "True", "name": "he+ eflux : sum on elevations", "start_date": "2015-07-03T02:16:12Z", "stop_date": "2023-09-19T05:15:42Z", "units": "keV/((cm\u00b2-s-sr-keV))", "xmlid": "mms2_hpca_hefl_elevation"}, "mms2_hpca_heq": {"__spz_name__": "he+ eflux quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_hpca_heq", "dataset": "mms2-hpca-brst", "display_type": "timeseries", "is_public": "True", "name": "he+ eflux quality", "start_date": "2015-07-03T02:16:12Z", "stop_date": "2023-09-19T05:15:42Z", "xmlid": "mms2_hpca_heq"}, "mms2_hpca_hfl": {"__spz_name__": "h+ eflux : 2D energy/polar", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_hpca_hfl", "dataset": "mms2-hpca-brst", "description": "H+ Flux for all elevation anodes accross all energies", "display_type": "spectrogram", "is_public": "True", "name": "h+ eflux : 2D energy/polar", "start_date": "2015-07-03T02:16:12Z", "stop_date": "2023-09-19T05:15:42Z", "units": "keV/((cm\u00b2-s-sr-keV))", "xmlid": "mms2_hpca_hfl"}, "mms2_hpca_hfl_elevation": {"__spz_name__": "h+ eflux : sum on elevations", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_hpca_hfl_elevation", "dataset": "mms2-hpca-brst", "description": "H+ Flux for all energies", "display_type": "spectrogram", "is_public": "True", "name": "h+ eflux : sum on elevations", "start_date": "2015-07-03T02:16:12Z", "stop_date": "2023-09-19T05:15:42Z", "units": "keV/((cm\u00b2-s-sr-keV))", "xmlid": "mms2_hpca_hfl_elevation"}, "mms2_hpca_hq": {"__spz_name__": "h+ eflux quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_hpca_hq", "dataset": "mms2-hpca-brst", "display_type": "timeseries", "is_public": "True", "name": "h+ eflux quality", "start_date": "2015-07-03T02:16:12Z", "stop_date": "2023-09-19T05:15:42Z", "xmlid": "mms2_hpca_hq"}, "mms2_hpca_ofl": {"__spz_name__": "o+ eflux : 2D energy/polar", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_hpca_ofl", "dataset": "mms2-hpca-brst", "description": "O+ Flux for all elevation anodes accross all energies", "display_type": "spectrogram", "is_public": "True", "name": "o+ eflux : 2D energy/polar", "start_date": "2015-07-03T02:16:12Z", "stop_date": "2023-09-19T05:15:42Z", "units": "keV/((cm\u00b2-s-sr-keV))", "xmlid": "mms2_hpca_ofl"}, "mms2_hpca_ofl_elevation": {"__spz_name__": "o+ eflux : sum on elevations", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_hpca_ofl_elevation", "dataset": "mms2-hpca-brst", "description": "O+ Flux for all energies", "display_type": "spectrogram", "is_public": "True", "name": "o+ eflux : sum on elevations", "start_date": "2015-07-03T02:16:12Z", "stop_date": "2023-09-19T05:15:42Z", "units": "keV/((cm\u00b2-s-sr-keV))", "xmlid": "mms2_hpca_ofl_elevation"}, "mms2_hpca_oq": {"__spz_name__": "o+ eflux quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms2_hpca_oq", "dataset": "mms2-hpca-brst", "display_type": "timeseries", "is_public": "True", "name": "o+ eflux quality", "start_date": "2015-07-03T02:16:12Z", "stop_date": "2023-09-19T05:15:42Z", "xmlid": "mms2_hpca_oq"}, "name": "ion energy flux : burst mode", "processing_level": "Calibrated", "sampling": "0.625S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MMS/MMS2/HPCA/mms2-hpca-brst", "start_date": "2015-07-03T02:16:12Z", "stop_date": "2023-09-19T05:15:42Z", "xmlid": "mms2-hpca-brst"}, "name": "HPCA", "xmlid": "MMS2_hpca"}, "__spz_name__": "MMS2", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "MMS2", "att": "auto/MMS2", "desc": "Magnetospheric Multiscale Mission #2
2015-09-01T00:00:00", "is_public": "True", "name": "MMS2", "target": "Earth.Magnetosphere", "xmlid": "MMS2"}, "MMS3": {"Analytical_Models": {"__spz_name__": "Analytical Models", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "MMS3_models", "att": "auto/MMS3_models", "desc": "", "is_public": "True", "mms3_msph_models": {"PriorID": "mms3-orb-t89d", "__spz_name__": "distance to neutral sheet", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mms3-msph-models", "att": "auto/mms3-msph-models", "dataSource": "IRAP", "desc": "Distance to model neutral sheet
Sampling: 1M
Provider: IRAP", "dz_fairfield70_mms3_xyz_gse": {"__spz_name__": "dZ Fairfield70", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "dz_fairfield70_mms3_xyz_gse", "dataset": "mms3-msph-models", "description": "Distance (Re) from s/c location to Fairfield1970 neutral sheet position. Depends on spacecraft location in SM coordinates and dipole tilt angle. Valid for Ysm less than 15 Re.", "is_public": "True", "name": "dZ Fairfield70", "predefined": "1", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "template": "dz_fairfield70_##ORBIT##", "units": "Re", "xmlid": "dz_fairfield70_mms3_xyz_gse"}, "dz_fairfield80_mms3_xyz_gse": {"__spz_name__": "dZ Fairfield80", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "dz_fairfield80_mms3_xyz_gse", "dataset": "mms3-msph-models", "description": "Distance (Re) from s/c location to Fairfield1980 neutral sheet position. Depends on spacecraft location in SM coordinates and dipole tilt angle.", "is_public": "True", "name": "dZ Fairfield80", "predefined": "1", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "template": "dz_fairfield80_##ORBIT##", "units": "Re", "xmlid": "dz_fairfield80_mms3_xyz_gse"}, "is_public": "True", "lastModificationDate": "2024-10-07T05:33:33Z", "lastUpdate": "2024-10-07T05:33:33Z", "measurement_type": "Ephemeris", "name": "distance to neutral sheet", "processing_level": "Calibrated", "sampling": "1M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MMS/MMS3/Models/mms3-msph-models", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "target": "Earth", "xmlid": "mms3-msph-models"}, "mms3_t96_model": {"PriorID": "mms3-orb-t89d", "__spz_name__": "T96 field model", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mms3-t96-model", "att": "auto/mms3-t96-model", "b_t96gse_mms3_xyz_gse": {"__spz_name__": "b_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_t96gse_mms3_xyz_gse", "b_t96gse_mms3_xyz_gse0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gse_mms3_xyz_gse(0)", "dataset": "mms3-t96-model", "index1": "0", "is_public": "True", "name": "bx", "parameter": "b_t96gse_mms3_xyz_gse", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "b_t96gse_mms3_xyz_gse(0)"}, "b_t96gse_mms3_xyz_gse1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gse_mms3_xyz_gse(1)", "dataset": "mms3-t96-model", "index1": "1", "is_public": "True", "name": "by", "parameter": "b_t96gse_mms3_xyz_gse", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "b_t96gse_mms3_xyz_gse(1)"}, "b_t96gse_mms3_xyz_gse2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gse_mms3_xyz_gse(2)", "dataset": "mms3-t96-model", "index1": "2", "is_public": "True", "name": "bz", "parameter": "b_t96gse_mms3_xyz_gse", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "b_t96gse_mms3_xyz_gse(2)"}, "dataset": "mms3-t96-model", "is_public": "True", "name": "b_gse", "predefined": "1", "size": "3", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "template": "b_t96gse_##ORBIT##", "units": "nT", "xmlid": "b_t96gse_mms3_xyz_gse"}, "b_t96gsm_mms3_xyz_gse": {"__spz_name__": "b_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_t96gsm_mms3_xyz_gse", "b_t96gsm_mms3_xyz_gse0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gsm_mms3_xyz_gse(0)", "dataset": "mms3-t96-model", "index1": "0", "is_public": "True", "name": "bx", "parameter": "b_t96gsm_mms3_xyz_gse", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "b_t96gsm_mms3_xyz_gse(0)"}, "b_t96gsm_mms3_xyz_gse1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gsm_mms3_xyz_gse(1)", "dataset": "mms3-t96-model", "index1": "1", "is_public": "True", "name": "by", "parameter": "b_t96gsm_mms3_xyz_gse", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "b_t96gsm_mms3_xyz_gse(1)"}, "b_t96gsm_mms3_xyz_gse2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gsm_mms3_xyz_gse(2)", "dataset": "mms3-t96-model", "index1": "2", "is_public": "True", "name": "bz", "parameter": "b_t96gsm_mms3_xyz_gse", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "b_t96gsm_mms3_xyz_gse(2)"}, "dataset": "mms3-t96-model", "is_public": "True", "name": "b_gsm", "predefined": "1", "size": "3", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "template": "b_t96gsm_##ORBIT##", "units": "nT", "xmlid": "b_t96gsm_mms3_xyz_gse"}, "b_t96tot_mms3_xyz_gse": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_t96tot_mms3_xyz_gse", "dataset": "mms3-t96-model", "is_public": "True", "name": "|b|", "predefined": "1", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "template": "b_t96tot_##ORBIT##", "units": "nT", "xmlid": "b_t96tot_mms3_xyz_gse"}, "dataSource": "IRAP", "desc": "Tsyganenko96 geomagnetospheric magnetic field model
Sampling: 1M
Provider: IRAP", "is_public": "True", "lastModificationDate": "2024-10-07T05:33:33Z", "lastUpdate": "2024-10-07T05:33:33Z", "measurement_type": "MagneticField", "name": "T96 field model", "processing_level": "Calibrated", "sampling": "1M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MMS/MMS3/Models/mms3-t96-model", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "target": "Earth", "xmlid": "mms3-t96-model"}, "name": "Analytical Models", "xmlid": "MMS3_models"}, "EDP": {"__spz_name__": "EDP", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "MMS3_edp", "att": "auto/MMS3_edp", "desc": "Electric field Double Probe
DoubleSphere", "fast": {"__spz_name__": "fast", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "mms3-edp-fast", "is_public": "True", "mms3_edp_dce": {"__spz_name__": "dc e-field", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mms3-edp-dce", "att": "auto/mms3-edp-dce", "dataSource": "LASP", "desc": "dc electric field / fast / l2
Sampling: 0.03S
Provider: LASP", "is_public": "True", "lastModificationDate": "2024-10-07T05:31:58Z", "lastUpdate": "2024-10-07T05:31:54Z", "measurement_type": "ElectricField", "mms3_dce_err": {"__spz_name__": "e : error", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_dce_err", "dataset": "mms3-edp-dce", "display_type": "timeseries", "is_public": "True", "mms3_dce_err0": {"__spz_name__": "ex", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_dce_err(0)", "dataset": "mms3-edp-dce", "index1": "0", "is_public": "True", "name": "ex", "parameter": "mms3_dce_err", "start_date": "2015-09-01T00:00:10Z", "stop_date": "2024-08-14T23:59:59Z", "xmlid": "mms3_dce_err(0)"}, "mms3_dce_err1": {"__spz_name__": "ey", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_dce_err(1)", "dataset": "mms3-edp-dce", "index1": "1", "is_public": "True", "name": "ey", "parameter": "mms3_dce_err", "start_date": "2015-09-01T00:00:10Z", "stop_date": "2024-08-14T23:59:59Z", "xmlid": "mms3_dce_err(1)"}, "mms3_dce_err2": {"__spz_name__": "ez", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_dce_err(2)", "dataset": "mms3-edp-dce", "index1": "2", "is_public": "True", "name": "ez", "parameter": "mms3_dce_err", "start_date": "2015-09-01T00:00:10Z", "stop_date": "2024-08-14T23:59:59Z", "xmlid": "mms3_dce_err(2)"}, "name": "e : error", "size": "3", "start_date": "2015-09-01T00:00:10Z", "stop_date": "2024-08-14T23:59:59Z", "units": "mV/m", "xmlid": "mms3_dce_err"}, "mms3_dce_gse": {"__spz_name__": "e_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_dce_gse", "dataset": "mms3-edp-dce", "display_type": "timeseries", "is_public": "True", "mms3_dce_gse0": {"__spz_name__": "ex", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_dce_gse(0)", "dataset": "mms3-edp-dce", "index1": "0", "is_public": "True", "name": "ex", "parameter": "mms3_dce_gse", "start_date": "2015-09-01T00:00:10Z", "stop_date": "2024-08-14T23:59:59Z", "xmlid": "mms3_dce_gse(0)"}, "mms3_dce_gse1": {"__spz_name__": "ey", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_dce_gse(1)", "dataset": "mms3-edp-dce", "index1": "1", "is_public": "True", "name": "ey", "parameter": "mms3_dce_gse", "start_date": "2015-09-01T00:00:10Z", "stop_date": "2024-08-14T23:59:59Z", "xmlid": "mms3_dce_gse(1)"}, "mms3_dce_gse2": {"__spz_name__": "ez", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_dce_gse(2)", "dataset": "mms3-edp-dce", "index1": "2", "is_public": "True", "name": "ez", "parameter": "mms3_dce_gse", "start_date": "2015-09-01T00:00:10Z", "stop_date": "2024-08-14T23:59:59Z", "xmlid": "mms3_dce_gse(2)"}, "name": "e_gse", "size": "3", "start_date": "2015-09-01T00:00:10Z", "stop_date": "2024-08-14T23:59:59Z", "units": "mV/m", "xmlid": "mms3_dce_gse"}, "mms3_dce_gsm": {"__spz_name__": "e_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_dce_gsm", "dataset": "mms3-edp-dce", "display_type": "timeseries", "is_public": "True", "mms3_dce_gsm0": {"__spz_name__": "ex", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_dce_gsm(0)", "dataset": "mms3-edp-dce", "index1": "0", "is_public": "True", "name": "ex", "parameter": "mms3_dce_gsm", "start_date": "2015-09-01T00:00:10Z", "stop_date": "2024-08-14T23:59:59Z", "xmlid": "mms3_dce_gsm(0)"}, "mms3_dce_gsm1": {"__spz_name__": "ey", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_dce_gsm(1)", "dataset": "mms3-edp-dce", "index1": "1", "is_public": "True", "name": "ey", "parameter": "mms3_dce_gsm", "start_date": "2015-09-01T00:00:10Z", "stop_date": "2024-08-14T23:59:59Z", "xmlid": "mms3_dce_gsm(1)"}, "mms3_dce_gsm2": {"__spz_name__": "ez", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_dce_gsm(2)", "dataset": "mms3-edp-dce", "index1": "2", "is_public": "True", "name": "ez", "parameter": "mms3_dce_gsm", "start_date": "2015-09-01T00:00:10Z", "stop_date": "2024-08-14T23:59:59Z", "xmlid": "mms3_dce_gsm(2)"}, "name": "e_gsm", "size": "3", "start_date": "2015-09-01T00:00:10Z", "stop_date": "2024-08-14T23:59:59Z", "units": "mV/m", "xmlid": "mms3_dce_gsm"}, "mms3_dce_para": {"__spz_name__": "e_para", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_dce_para", "dataset": "mms3-edp-dce", "display_type": "timeseries", "is_public": "True", "mms3_dce_para0": {"__spz_name__": "e_para", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_dce_para(0)", "dataset": "mms3-edp-dce", "index1": "0", "is_public": "True", "name": "e_para", "parameter": "mms3_dce_para", "start_date": "2015-09-01T00:00:10Z", "stop_date": "2024-08-14T23:59:59Z", "xmlid": "mms3_dce_para(0)"}, "mms3_dce_para1": {"__spz_name__": "e_perp", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_dce_para(1)", "dataset": "mms3-edp-dce", "index1": "1", "is_public": "True", "name": "e_perp", "parameter": "mms3_dce_para", "start_date": "2015-09-01T00:00:10Z", "stop_date": "2024-08-14T23:59:59Z", "xmlid": "mms3_dce_para(1)"}, "name": "e_para", "size": "2", "start_date": "2015-09-01T00:00:10Z", "stop_date": "2024-08-14T23:59:59Z", "units": "mV/m", "xmlid": "mms3_dce_para"}, "mms3_edp_dce_qual": {"__spz_name__": "dce : qual", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_edp_dce_qual", "dataset": "mms3-edp-dce", "description": "Quality indicator (3 good), (2 ok data, use with some caution), (1 bad data, use with caution), (0 Really bad data or no data at all)", "display_type": "timeseries", "is_public": "True", "name": "dce : qual", "start_date": "2015-09-01T00:00:10Z", "stop_date": "2024-08-14T23:59:59Z", "xmlid": "mms3_edp_dce_qual"}, "name": "dc e-field", "processing_level": "Calibrated", "sampling": "0.03S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MMS/MMS3/EDP/mms3-edp-dce", "start_date": "2015-09-01T00:00:10Z", "stop_date": "2024-08-14T23:59:59Z", "xmlid": "mms3-edp-dce"}, "mms3_edp_scpot": {"__spz_name__": "scpot", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mms3-edp-scpot", "att": "auto/mms3-edp-scpot", "dataSource": "LASP", "desc": "sc potential / fast / l2
Sampling: 0.03S
Provider: LASP", "is_public": "True", "lastModificationDate": "2024-10-07T05:32:05Z", "lastUpdate": "2024-10-07T05:32:03Z", "measurement_type": "ElectricField", "mms3_edp_scpot": {"__spz_name__": "sc pot", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_edp_scpot", "dataset": "mms3-edp-scpot", "display_type": "timeseries", "is_public": "True", "name": "sc pot", "start_date": "2015-06-22T17:53:58Z", "stop_date": "2024-09-29T21:46:43Z", "units": "V", "xmlid": "mms3_edp_scpot"}, "mms3_edp_scpot_qual": {"__spz_name__": "sc pot : qual", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_edp_scpot_qual", "dataset": "mms3-edp-scpot", "description": "Quality indicator (3 good), (2 ok data, use with some caution), (1 bad data, use with caution), (0 Really bad data or no data at all)", "display_type": "timeseries", "is_public": "True", "name": "sc pot : qual", "start_date": "2015-06-22T17:53:58Z", "stop_date": "2024-09-29T21:46:43Z", "xmlid": "mms3_edp_scpot_qual"}, "name": "scpot", "processing_level": "Calibrated", "sampling": "0.03S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MMS/MMS3/EDP/mms3-edp-scpot", "start_date": "2015-06-22T17:53:58Z", "stop_date": "2024-09-29T21:46:43Z", "xmlid": "mms3-edp-scpot"}, "name": "fast", "xmlid": "mms3-edp-fast"}, "is_public": "True", "name": "EDP", "survey": {"__spz_name__": "survey", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "mms3-edp-srvy", "is_public": "True", "mms3_edp_hfesp": {"__spz_name__": "e spectral density", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mms3-edp-hfesp", "att": "auto/mms3-edp-hfesp", "dataSource": "LASP", "desc": "ac electric field spectral density / srvy / l2
Sampling: 16S
Provider: LASP", "is_public": "True", "lastModificationDate": "2024-10-07T05:31:45Z", "lastUpdate": "2024-10-07T05:31:44Z", "measurement_type": "ElectricField", "mms3_edp_espec": {"__spz_name__": "e spec dens", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_edp_espec", "dataset": "mms3-edp-hfesp", "display_type": "spectrogram", "is_public": "True", "name": "e spec dens", "start_date": "2015-09-01T00:00:14Z", "stop_date": "2024-09-30T07:21:39Z", "units": "(V/m)\u00b2/Hz", "xmlid": "mms3_edp_espec"}, "name": "e spectral density", "processing_level": "Calibrated", "sampling": "16S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MMS/MMS3/EDP/mms3-edp-hfesp", "start_date": "2015-09-01T00:00:14Z", "stop_date": "2024-09-30T07:21:39Z", "xmlid": "mms3-edp-hfesp"}, "name": "survey", "xmlid": "mms3-edp-srvy"}, "xmlid": "MMS3_edp"}, "Ephemeris": {"__spz_name__": "Ephemeris", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "MMS3_ephemeris", "att": "auto/MMS3_ephemeris", "desc": "", "is_public": "True", "mms3_orb_t89d": {"__spz_name__": "orbit t89d", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mms3-orb-t89d", "att": "auto/mms3-orb-t89d", "dataSource": "LANL", "desc": "
Sampling: 30S
Provider: LANL", "is_public": "True", "lastModificationDate": "2024-10-07T05:33:33Z", "lastUpdate": "2024-10-07T05:33:33Z", "measurement_type": "Ephemeris", "mms3_r": {"__spz_name__": "distance mms3-earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_r", "dataset": "mms3-orb-t89d", "display_type": "timeseries", "is_public": "True", "name": "distance mms3-earth", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "ucd": "pos.distance;instr.obsty", "units": "Re", "xmlid": "mms3_r"}, "mms3_xyz_gse": {"__spz_name__": "xyz_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_xyz_gse", "dataset": "mms3-orb-t89d", "description": "Spacecraft position in GSE", "display_type": "timeseries", "is_public": "True", "mms3_xyz_gse0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_xyz_gse(0)", "dataset": "mms3-orb-t89d", "index1": "0", "is_public": "True", "name": "x", "parameter": "mms3_xyz_gse", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "mms3_xyz_gse(0)"}, "mms3_xyz_gse1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_xyz_gse(1)", "dataset": "mms3-orb-t89d", "index1": "1", "is_public": "True", "name": "y", "parameter": "mms3_xyz_gse", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "mms3_xyz_gse(1)"}, "mms3_xyz_gse2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_xyz_gse(2)", "dataset": "mms3-orb-t89d", "index1": "2", "is_public": "True", "name": "z", "parameter": "mms3_xyz_gse", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "mms3_xyz_gse(2)"}, "name": "xyz_gse", "size": "3", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "Re", "xmlid": "mms3_xyz_gse"}, "mms3_xyz_gsm": {"__spz_name__": "xyz_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_xyz_gsm", "dataset": "mms3-orb-t89d", "description": "Spacecraft position in GSM", "display_type": "timeseries", "is_public": "True", "mms3_xyz_gsm0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_xyz_gsm(0)", "dataset": "mms3-orb-t89d", "index1": "0", "is_public": "True", "name": "x", "parameter": "mms3_xyz_gsm", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "mms3_xyz_gsm(0)"}, "mms3_xyz_gsm1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_xyz_gsm(1)", "dataset": "mms3-orb-t89d", "index1": "1", "is_public": "True", "name": "y", "parameter": "mms3_xyz_gsm", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "mms3_xyz_gsm(1)"}, "mms3_xyz_gsm2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_xyz_gsm(2)", "dataset": "mms3-orb-t89d", "index1": "2", "is_public": "True", "name": "z", "parameter": "mms3_xyz_gsm", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "mms3_xyz_gsm(2)"}, "name": "xyz_gsm", "size": "3", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "Re", "xmlid": "mms3_xyz_gsm"}, "name": "orbit t89d", "processing_level": "Calibrated", "sampling": "30S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MMS/MMS3/Ephemeris/mms3-orb-t89d", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "mms3-orb-t89d"}, "name": "Ephemeris", "xmlid": "MMS3_ephemeris"}, "FGM": {"__spz_name__": "FGM", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "MMS3_fgm", "att": "auto/MMS3_fgm", "desc": "Fluxgate Magnetometer
Magnetometer", "is_public": "True", "mms3_fgm_brst": {"__spz_name__": "burst", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mms3-fgm-brst", "att": "auto/mms3-fgm-brst", "dataSource": "LASP", "desc": "burst
Sampling: 0.01S
Provider: LASP", "is_public": "True", "lastModificationDate": "2024-10-04T05:53:35Z", "lastUpdate": "2024-08-13T12:23:51Z", "measurement_type": "MagneticField", "mms3_brst_bgse": {"__spz_name__": "b_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_brst_bgse", "dataset": "mms3-fgm-brst", "display_type": "timeseries", "is_public": "True", "mms3_brst_bgse0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_bgse(0)", "dataset": "mms3-fgm-brst", "index1": "0", "is_public": "True", "name": "bx", "parameter": "mms3_brst_bgse", "start_date": "2015-09-01T12:11:14Z", "stop_date": "2024-06-30T17:58:32Z", "xmlid": "mms3_brst_bgse(0)"}, "mms3_brst_bgse1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_bgse(1)", "dataset": "mms3-fgm-brst", "index1": "1", "is_public": "True", "name": "by", "parameter": "mms3_brst_bgse", "start_date": "2015-09-01T12:11:14Z", "stop_date": "2024-06-30T17:58:32Z", "xmlid": "mms3_brst_bgse(1)"}, "mms3_brst_bgse2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_bgse(2)", "dataset": "mms3-fgm-brst", "index1": "2", "is_public": "True", "name": "bz", "parameter": "mms3_brst_bgse", "start_date": "2015-09-01T12:11:14Z", "stop_date": "2024-06-30T17:58:32Z", "xmlid": "mms3_brst_bgse(2)"}, "name": "b_gse", "size": "3", "start_date": "2015-09-01T12:11:14Z", "stop_date": "2024-06-30T17:58:32Z", "units": "nT", "xmlid": "mms3_brst_bgse"}, "mms3_brst_bgsm": {"__spz_name__": "b_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_brst_bgsm", "dataset": "mms3-fgm-brst", "display_type": "timeseries", "is_public": "True", "mms3_brst_bgsm0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_bgsm(0)", "dataset": "mms3-fgm-brst", "index1": "0", "is_public": "True", "name": "bx", "parameter": "mms3_brst_bgsm", "start_date": "2015-09-01T12:11:14Z", "stop_date": "2024-06-30T17:58:32Z", "xmlid": "mms3_brst_bgsm(0)"}, "mms3_brst_bgsm1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_bgsm(1)", "dataset": "mms3-fgm-brst", "index1": "1", "is_public": "True", "name": "by", "parameter": "mms3_brst_bgsm", "start_date": "2015-09-01T12:11:14Z", "stop_date": "2024-06-30T17:58:32Z", "xmlid": "mms3_brst_bgsm(1)"}, "mms3_brst_bgsm2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_bgsm(2)", "dataset": "mms3-fgm-brst", "index1": "2", "is_public": "True", "name": "bz", "parameter": "mms3_brst_bgsm", "start_date": "2015-09-01T12:11:14Z", "stop_date": "2024-06-30T17:58:32Z", "xmlid": "mms3_brst_bgsm(2)"}, "name": "b_gsm", "size": "3", "start_date": "2015-09-01T12:11:14Z", "stop_date": "2024-06-30T17:58:32Z", "units": "nT", "xmlid": "mms3_brst_bgsm"}, "mms3_brst_btot": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_brst_btot", "dataset": "mms3-fgm-brst", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "2015-09-01T12:11:14Z", "stop_date": "2024-06-30T17:58:32Z", "units": "nT", "xmlid": "mms3_brst_btot"}, "name": "burst", "processing_level": "Calibrated", "sampling": "0.01S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MMS/MMS3/FGM/mms3-fgm-brst", "start_date": "2015-09-01T12:11:14Z", "stop_date": "2024-06-30T17:58:32Z", "xmlid": "mms3-fgm-brst"}, "mms3_fgm_srvy": {"__spz_name__": "survey", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mms3-fgm-srvy", "att": "auto/mms3-fgm-srvy", "dataSource": "LASP", "desc": "survey
MinSampling: 0.0625S; MaxSampling: 0.125S
Provider: LASP", "is_public": "True", "lastModificationDate": "2024-10-07T05:32:59Z", "lastUpdate": "2024-10-07T05:32:56Z", "maxSampling": "0.125S", "measurement_type": "MagneticField", "mms3_b_gse": {"__spz_name__": "b_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_b_gse", "dataset": "mms3-fgm-srvy", "display_type": "timeseries", "is_public": "True", "mms3_b_gse0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_b_gse(0)", "dataset": "mms3-fgm-srvy", "index1": "0", "is_public": "True", "name": "bx", "parameter": "mms3_b_gse", "start_date": "2015-09-01T00:00:06Z", "stop_date": "2024-09-02T00:00:01Z", "xmlid": "mms3_b_gse(0)"}, "mms3_b_gse1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_b_gse(1)", "dataset": "mms3-fgm-srvy", "index1": "1", "is_public": "True", "name": "by", "parameter": "mms3_b_gse", "start_date": "2015-09-01T00:00:06Z", "stop_date": "2024-09-02T00:00:01Z", "xmlid": "mms3_b_gse(1)"}, "mms3_b_gse2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_b_gse(2)", "dataset": "mms3-fgm-srvy", "index1": "2", "is_public": "True", "name": "bz", "parameter": "mms3_b_gse", "start_date": "2015-09-01T00:00:06Z", "stop_date": "2024-09-02T00:00:01Z", "xmlid": "mms3_b_gse(2)"}, "name": "b_gse", "size": "3", "start_date": "2015-09-01T00:00:06Z", "stop_date": "2024-09-02T00:00:01Z", "units": "nT", "xmlid": "mms3_b_gse"}, "mms3_b_gsm": {"__spz_name__": "b_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_b_gsm", "dataset": "mms3-fgm-srvy", "display_type": "timeseries", "is_public": "True", "mms3_b_gsm0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_b_gsm(0)", "dataset": "mms3-fgm-srvy", "index1": "0", "is_public": "True", "name": "bx", "parameter": "mms3_b_gsm", "start_date": "2015-09-01T00:00:06Z", "stop_date": "2024-09-02T00:00:01Z", "xmlid": "mms3_b_gsm(0)"}, "mms3_b_gsm1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_b_gsm(1)", "dataset": "mms3-fgm-srvy", "index1": "1", "is_public": "True", "name": "by", "parameter": "mms3_b_gsm", "start_date": "2015-09-01T00:00:06Z", "stop_date": "2024-09-02T00:00:01Z", "xmlid": "mms3_b_gsm(1)"}, "mms3_b_gsm2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_b_gsm(2)", "dataset": "mms3-fgm-srvy", "index1": "2", "is_public": "True", "name": "bz", "parameter": "mms3_b_gsm", "start_date": "2015-09-01T00:00:06Z", "stop_date": "2024-09-02T00:00:01Z", "xmlid": "mms3_b_gsm(2)"}, "name": "b_gsm", "size": "3", "start_date": "2015-09-01T00:00:06Z", "stop_date": "2024-09-02T00:00:01Z", "units": "nT", "xmlid": "mms3_b_gsm"}, "mms3_b_tot": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_b_tot", "dataset": "mms3-fgm-srvy", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "2015-09-01T00:00:06Z", "stop_date": "2024-09-02T00:00:01Z", "units": "nT", "xmlid": "mms3_b_tot"}, "mms3_pres_m": {"__spz_name__": "pressure_b", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_pres_m", "dataset": "mms3-fgm-srvy", "display_type": "timeseries", "is_public": "True", "name": "pressure_b", "start_date": "2015-09-01T00:00:06Z", "stop_date": "2024-09-02T00:00:01Z", "units": "nPa", "xmlid": "mms3_pres_m"}, "name": "survey", "processing_level": "Calibrated", "sampling": "0.0625S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MMS/MMS3/FGM/mms3-fgm-srvy", "start_date": "2015-09-01T00:00:06Z", "stop_date": "2024-09-02T00:00:01Z", "xmlid": "mms3-fgm-srvy"}, "name": "FGM", "xmlid": "MMS3_fgm"}, "FPI": {"__spz_name__": "FPI", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "MMS3_fpi", "att": "auto/MMS3_fpi", "burst_mode": {"__spz_name__": "burst mode", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "mms3-fpi-brst", "is_public": "True", "mms3_fpi_brst_current": {"PriorID": "mms3-fpi-brst.desm", "__spz_name__": "electric current", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mms3-fpi-brst.current", "att": "auto/mms3-fpi-brst.current", "dataSource": "LASP", "desc": "electric current : burst mode
Sampling: 0.03S
Provider: LASP", "is_public": "True", "lastModificationDate": "2024-10-04T06:05:41Z", "lastUpdate": "2024-10-02T11:31:33Z", "measurement_type": "ThermalPlasma", "mms3_brst_jgse": {"__spz_name__": "j_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_brst_jgse", "dataset": "mms3-fpi-brst.current", "description": "Electric current = 1.6e-10*(mms3_brst_desm_n+mms3_brst_dism_n)*0.5*(mms3_brst_dism_v-mms3_brst_desm_v)", "display_type": "timeseries", "is_public": "True", "mms3_brst_jgse0": {"__spz_name__": "jx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_jgse(0)", "dataset": "mms3-fpi-brst.current", "index1": "0", "is_public": "True", "name": "jx", "parameter": "mms3_brst_jgse", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3_brst_jgse(0)"}, "mms3_brst_jgse1": {"__spz_name__": "jy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_jgse(1)", "dataset": "mms3-fpi-brst.current", "index1": "1", "is_public": "True", "name": "jy", "parameter": "mms3_brst_jgse", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3_brst_jgse(1)"}, "mms3_brst_jgse2": {"__spz_name__": "jz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_jgse(2)", "dataset": "mms3-fpi-brst.current", "index1": "2", "is_public": "True", "name": "jz", "parameter": "mms3_brst_jgse", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3_brst_jgse(2)"}, "name": "j_gse", "size": "3", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "units": "A/m\u00b2", "xmlid": "mms3_brst_jgse"}, "name": "electric current", "processing_level": "Calibrated", "sampling": "0.03S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MMS/MMS3/FPI/mms3-fpi-brst.current", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3-fpi-brst.current"}, "mms3_fpi_brst_desm": {"__spz_name__": "DES : electrons", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mms3-fpi-brst.desm", "att": "auto/mms3-fpi-brst.desm", "dataSource": "LASP", "desc": "Dual Electron Spectrometers : burst mode
Sampling: 0.03S
Provider: LASP", "is_public": "True", "lastModificationDate": "2024-10-04T06:05:41Z", "lastUpdate": "2024-10-02T11:31:33Z", "measurement_type": "ThermalPlasma", "mms3_brst_des_anti": {"__spz_name__": "elec eflux : anti", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_brst_des_anti", "dataset": "mms3-fpi-brst.desm", "display_type": "spectrogram", "is_public": "True", "name": "elec eflux : anti", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "units": "keV/(cm\u00b2-s-sr-keV)", "xmlid": "mms3_brst_des_anti"}, "mms3_brst_des_pahigh": {"__spz_name__": "pa dist : highen", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_brst_des_pahigh", "dataset": "mms3-fpi-brst.desm", "description": "High energy bin: 2 keV - 30 keV. \n Pitch-angle bin size: 6 deg. Note that pitch angles are calculated in the spacecraft frame; \n i.e., not shifted by the bulk velocity", "display_type": "spectrogram", "is_public": "True", "name": "pa dist : highen", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "units": "keV/(cm\u00b2-s-sr-keV)", "xmlid": "mms3_brst_des_pahigh"}, "mms3_brst_des_palow": {"__spz_name__": "pa dist : lowen", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_brst_des_palow", "dataset": "mms3-fpi-brst.desm", "description": "Low energy bin: 0 eV - 200 eV. \n Pitch-angle bin size: 6 deg. Note that pitch angles are calculated in the spacecraft frame; \n i.e., not shifted by the bulk velocity", "display_type": "spectrogram", "is_public": "True", "name": "pa dist : lowen", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "units": "keV/(cm\u00b2-s-sr-keV)", "xmlid": "mms3_brst_des_palow"}, "mms3_brst_des_pamid": {"__spz_name__": "pa dist : miden", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_brst_des_pamid", "dataset": "mms3-fpi-brst.desm", "description": "Mid energy bin: 200 eV - 2 keV. \n Pitch-angle bin size: 6 deg. Note that pitch angles are calculated in the spacecraft frame; \n i.e., not shifted by the bulk velocity", "display_type": "spectrogram", "is_public": "True", "name": "pa dist : miden", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "units": "keV/(cm\u00b2-s-sr-keV)", "xmlid": "mms3_brst_des_pamid"}, "mms3_brst_des_para": {"__spz_name__": "elec eflux : para", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_brst_des_para", "dataset": "mms3-fpi-brst.desm", "display_type": "spectrogram", "is_public": "True", "name": "elec eflux : para", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "units": "keV/(cm\u00b2-s-sr-keV)", "xmlid": "mms3_brst_des_para"}, "mms3_brst_des_perp": {"__spz_name__": "elec eflux : perp", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_brst_des_perp", "dataset": "mms3-fpi-brst.desm", "display_type": "spectrogram", "is_public": "True", "name": "elec eflux : perp", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "units": "keV/(cm\u00b2-s-sr-keV)", "xmlid": "mms3_brst_des_perp"}, "mms3_brst_desm_err": {"__spz_name__": "error flags", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_brst_desm_err", "dataset": "mms3-fpi-brst.desm", "display_type": "timeseries", "is_public": "True", "name": "error flags", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3_brst_desm_err"}, "mms3_brst_desm_hq": {"__spz_name__": "heatq_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_brst_desm_hq", "dataset": "mms3-fpi-brst.desm", "display_type": "timeseries", "is_public": "True", "mms3_brst_desm_hq0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_desm_hq(0)", "dataset": "mms3-fpi-brst.desm", "index1": "0", "is_public": "True", "name": "x", "parameter": "mms3_brst_desm_hq", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3_brst_desm_hq(0)"}, "mms3_brst_desm_hq1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_desm_hq(1)", "dataset": "mms3-fpi-brst.desm", "index1": "1", "is_public": "True", "name": "y", "parameter": "mms3_brst_desm_hq", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3_brst_desm_hq(1)"}, "mms3_brst_desm_hq2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_desm_hq(2)", "dataset": "mms3-fpi-brst.desm", "index1": "2", "is_public": "True", "name": "z", "parameter": "mms3_brst_desm_hq", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3_brst_desm_hq(2)"}, "name": "heatq_gse", "size": "3", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "ucd": "phys.pressure", "units": "mW/m\u00b2", "xmlid": "mms3_brst_desm_hq"}, "mms3_brst_desm_hqerr": {"__spz_name__": "heatq_gse : err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_brst_desm_hqerr", "dataset": "mms3-fpi-brst.desm", "display_type": "timeseries", "is_public": "True", "mms3_brst_desm_hqerr0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_desm_hqerr(0)", "dataset": "mms3-fpi-brst.desm", "index1": "0", "is_public": "True", "name": "x", "parameter": "mms3_brst_desm_hqerr", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3_brst_desm_hqerr(0)"}, "mms3_brst_desm_hqerr1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_desm_hqerr(1)", "dataset": "mms3-fpi-brst.desm", "index1": "1", "is_public": "True", "name": "y", "parameter": "mms3_brst_desm_hqerr", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3_brst_desm_hqerr(1)"}, "mms3_brst_desm_hqerr2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_desm_hqerr(2)", "dataset": "mms3-fpi-brst.desm", "index1": "2", "is_public": "True", "name": "z", "parameter": "mms3_brst_desm_hqerr", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3_brst_desm_hqerr(2)"}, "name": "heatq_gse : err", "size": "3", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "ucd": "phys.pressure", "units": "mW/m\u00b2", "xmlid": "mms3_brst_desm_hqerr"}, "mms3_brst_desm_n": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_brst_desm_n", "dataset": "mms3-fpi-brst.desm", "display_type": "timeseries", "is_public": "True", "name": "density", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "units": "cm\u207b\u00b3", "xmlid": "mms3_brst_desm_n"}, "mms3_brst_desm_nerr": {"__spz_name__": "density : err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_brst_desm_nerr", "dataset": "mms3-fpi-brst.desm", "display_type": "timeseries", "is_public": "True", "name": "density : err", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "units": "cm\u207b\u00b3", "xmlid": "mms3_brst_desm_nerr"}, "mms3_brst_desm_spom": {"__spz_name__": "elec eflux : omni", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_brst_desm_spom", "dataset": "mms3-fpi-brst.desm", "display_type": "spectrogram", "is_public": "True", "name": "elec eflux : omni", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "units": "keV/(cm\u00b2-s-sr-keV)", "xmlid": "mms3_brst_desm_spom"}, "mms3_brst_desm_t": {"__spz_name__": "temp_tensor_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_brst_desm_t", "dataset": "mms3-fpi-brst.desm", "display_type": "timeseries", "is_public": "True", "mms3_brst_desm_t0": {"__spz_name__": "xx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_desm_t(0)", "dataset": "mms3-fpi-brst.desm", "index1": "0", "is_public": "True", "name": "xx", "parameter": "mms3_brst_desm_t", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3_brst_desm_t(0)"}, "mms3_brst_desm_t1": {"__spz_name__": "xy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_desm_t(1)", "dataset": "mms3-fpi-brst.desm", "index1": "1", "is_public": "True", "name": "xy", "parameter": "mms3_brst_desm_t", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3_brst_desm_t(1)"}, "mms3_brst_desm_t2": {"__spz_name__": "xz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_desm_t(2)", "dataset": "mms3-fpi-brst.desm", "index1": "2", "is_public": "True", "name": "xz", "parameter": "mms3_brst_desm_t", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3_brst_desm_t(2)"}, "mms3_brst_desm_t3": {"__spz_name__": "yx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_desm_t(3)", "dataset": "mms3-fpi-brst.desm", "index1": "3", "is_public": "True", "name": "yx", "parameter": "mms3_brst_desm_t", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3_brst_desm_t(3)"}, "mms3_brst_desm_t4": {"__spz_name__": "yy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_desm_t(4)", "dataset": "mms3-fpi-brst.desm", "index1": "4", "is_public": "True", "name": "yy", "parameter": "mms3_brst_desm_t", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3_brst_desm_t(4)"}, "mms3_brst_desm_t5": {"__spz_name__": "yz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_desm_t(5)", "dataset": "mms3-fpi-brst.desm", "index1": "5", "is_public": "True", "name": "yz", "parameter": "mms3_brst_desm_t", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3_brst_desm_t(5)"}, "mms3_brst_desm_t6": {"__spz_name__": "zx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_desm_t(6)", "dataset": "mms3-fpi-brst.desm", "index1": "6", "is_public": "True", "name": "zx", "parameter": "mms3_brst_desm_t", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3_brst_desm_t(6)"}, "mms3_brst_desm_t7": {"__spz_name__": "zy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_desm_t(7)", "dataset": "mms3-fpi-brst.desm", "index1": "7", "is_public": "True", "name": "zy", "parameter": "mms3_brst_desm_t", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3_brst_desm_t(7)"}, "mms3_brst_desm_t8": {"__spz_name__": "zz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_desm_t(8)", "dataset": "mms3-fpi-brst.desm", "index1": "8", "is_public": "True", "name": "zz", "parameter": "mms3_brst_desm_t", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3_brst_desm_t(8)"}, "name": "temp_tensor_gse", "size": "9", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "units": "eV", "xmlid": "mms3_brst_desm_t"}, "mms3_brst_desm_tpar": {"__spz_name__": "t_para", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_brst_desm_tpar", "dataset": "mms3-fpi-brst.desm", "display_type": "timeseries", "is_public": "True", "name": "t_para", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "units": "eV", "xmlid": "mms3_brst_desm_tpar"}, "mms3_brst_desm_tperp": {"__spz_name__": "t_perp", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_brst_desm_tperp", "dataset": "mms3-fpi-brst.desm", "display_type": "timeseries", "is_public": "True", "name": "t_perp", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "units": "eV", "xmlid": "mms3_brst_desm_tperp"}, "mms3_brst_desm_v": {"__spz_name__": "v_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_brst_desm_v", "dataset": "mms3-fpi-brst.desm", "display_type": "timeseries", "is_public": "True", "mms3_brst_desm_v0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_desm_v(0)", "dataset": "mms3-fpi-brst.desm", "index1": "0", "is_public": "True", "name": "vx", "parameter": "mms3_brst_desm_v", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3_brst_desm_v(0)"}, "mms3_brst_desm_v1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_desm_v(1)", "dataset": "mms3-fpi-brst.desm", "index1": "1", "is_public": "True", "name": "vy", "parameter": "mms3_brst_desm_v", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3_brst_desm_v(1)"}, "mms3_brst_desm_v2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_desm_v(2)", "dataset": "mms3-fpi-brst.desm", "index1": "2", "is_public": "True", "name": "vz", "parameter": "mms3_brst_desm_v", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3_brst_desm_v(2)"}, "name": "v_gse", "size": "3", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "units": "km/s", "xmlid": "mms3_brst_desm_v"}, "mms3_brst_desm_verr": {"__spz_name__": "v_gse : err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_brst_desm_verr", "dataset": "mms3-fpi-brst.desm", "display_type": "timeseries", "is_public": "True", "mms3_brst_desm_verr0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_desm_verr(0)", "dataset": "mms3-fpi-brst.desm", "index1": "0", "is_public": "True", "name": "vx", "parameter": "mms3_brst_desm_verr", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3_brst_desm_verr(0)"}, "mms3_brst_desm_verr1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_desm_verr(1)", "dataset": "mms3-fpi-brst.desm", "index1": "1", "is_public": "True", "name": "vy", "parameter": "mms3_brst_desm_verr", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3_brst_desm_verr(1)"}, "mms3_brst_desm_verr2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_desm_verr(2)", "dataset": "mms3-fpi-brst.desm", "index1": "2", "is_public": "True", "name": "vz", "parameter": "mms3_brst_desm_verr", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3_brst_desm_verr(2)"}, "name": "v_gse : err", "size": "3", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "units": "km/s", "xmlid": "mms3_brst_desm_verr"}, "mms3_brst_desmpres": {"__spz_name__": "press_tensor_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_brst_desmpres", "dataset": "mms3-fpi-brst.desm", "display_type": "timeseries", "is_public": "True", "mms3_brst_desmpres0": {"__spz_name__": "xx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_desmpres(0)", "dataset": "mms3-fpi-brst.desm", "index1": "0", "is_public": "True", "name": "xx", "parameter": "mms3_brst_desmpres", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3_brst_desmpres(0)"}, "mms3_brst_desmpres1": {"__spz_name__": "xy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_desmpres(1)", "dataset": "mms3-fpi-brst.desm", "index1": "1", "is_public": "True", "name": "xy", "parameter": "mms3_brst_desmpres", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3_brst_desmpres(1)"}, "mms3_brst_desmpres2": {"__spz_name__": "xz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_desmpres(2)", "dataset": "mms3-fpi-brst.desm", "index1": "2", "is_public": "True", "name": "xz", "parameter": "mms3_brst_desmpres", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3_brst_desmpres(2)"}, "mms3_brst_desmpres3": {"__spz_name__": "yx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_desmpres(3)", "dataset": "mms3-fpi-brst.desm", "index1": "3", "is_public": "True", "name": "yx", "parameter": "mms3_brst_desmpres", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3_brst_desmpres(3)"}, "mms3_brst_desmpres4": {"__spz_name__": "yy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_desmpres(4)", "dataset": "mms3-fpi-brst.desm", "index1": "4", "is_public": "True", "name": "yy", "parameter": "mms3_brst_desmpres", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3_brst_desmpres(4)"}, "mms3_brst_desmpres5": {"__spz_name__": "yz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_desmpres(5)", "dataset": "mms3-fpi-brst.desm", "index1": "5", "is_public": "True", "name": "yz", "parameter": "mms3_brst_desmpres", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3_brst_desmpres(5)"}, "mms3_brst_desmpres6": {"__spz_name__": "zx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_desmpres(6)", "dataset": "mms3-fpi-brst.desm", "index1": "6", "is_public": "True", "name": "zx", "parameter": "mms3_brst_desmpres", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3_brst_desmpres(6)"}, "mms3_brst_desmpres7": {"__spz_name__": "zy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_desmpres(7)", "dataset": "mms3-fpi-brst.desm", "index1": "7", "is_public": "True", "name": "zy", "parameter": "mms3_brst_desmpres", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3_brst_desmpres(7)"}, "mms3_brst_desmpres8": {"__spz_name__": "zz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_desmpres(8)", "dataset": "mms3-fpi-brst.desm", "index1": "8", "is_public": "True", "name": "zz", "parameter": "mms3_brst_desmpres", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3_brst_desmpres(8)"}, "name": "press_tensor_gse", "size": "9", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "ucd": "phys.pressure", "units": "nPa", "xmlid": "mms3_brst_desmpres"}, "mms3_brst_desmpreserr": {"__spz_name__": "press_tensor_gse : err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_brst_desmpreserr", "dataset": "mms3-fpi-brst.desm", "display_type": "timeseries", "is_public": "True", "mms3_brst_desmpreserr0": {"__spz_name__": "xx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_desmpreserr(0)", "dataset": "mms3-fpi-brst.desm", "index1": "0", "is_public": "True", "name": "xx", "parameter": "mms3_brst_desmpreserr", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3_brst_desmpreserr(0)"}, "mms3_brst_desmpreserr1": {"__spz_name__": "xy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_desmpreserr(1)", "dataset": "mms3-fpi-brst.desm", "index1": "1", "is_public": "True", "name": "xy", "parameter": "mms3_brst_desmpreserr", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3_brst_desmpreserr(1)"}, "mms3_brst_desmpreserr2": {"__spz_name__": "xz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_desmpreserr(2)", "dataset": "mms3-fpi-brst.desm", "index1": "2", "is_public": "True", "name": "xz", "parameter": "mms3_brst_desmpreserr", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3_brst_desmpreserr(2)"}, "mms3_brst_desmpreserr3": {"__spz_name__": "yx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_desmpreserr(3)", "dataset": "mms3-fpi-brst.desm", "index1": "3", "is_public": "True", "name": "yx", "parameter": "mms3_brst_desmpreserr", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3_brst_desmpreserr(3)"}, "mms3_brst_desmpreserr4": {"__spz_name__": "yy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_desmpreserr(4)", "dataset": "mms3-fpi-brst.desm", "index1": "4", "is_public": "True", "name": "yy", "parameter": "mms3_brst_desmpreserr", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3_brst_desmpreserr(4)"}, "mms3_brst_desmpreserr5": {"__spz_name__": "yz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_desmpreserr(5)", "dataset": "mms3-fpi-brst.desm", "index1": "5", "is_public": "True", "name": "yz", "parameter": "mms3_brst_desmpreserr", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3_brst_desmpreserr(5)"}, "mms3_brst_desmpreserr6": {"__spz_name__": "zx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_desmpreserr(6)", "dataset": "mms3-fpi-brst.desm", "index1": "6", "is_public": "True", "name": "zx", "parameter": "mms3_brst_desmpreserr", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3_brst_desmpreserr(6)"}, "mms3_brst_desmpreserr7": {"__spz_name__": "zy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_desmpreserr(7)", "dataset": "mms3-fpi-brst.desm", "index1": "7", "is_public": "True", "name": "zy", "parameter": "mms3_brst_desmpreserr", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3_brst_desmpreserr(7)"}, "mms3_brst_desmpreserr8": {"__spz_name__": "zz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_desmpreserr(8)", "dataset": "mms3-fpi-brst.desm", "index1": "8", "is_public": "True", "name": "zz", "parameter": "mms3_brst_desmpreserr", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3_brst_desmpreserr(8)"}, "name": "press_tensor_gse : err", "size": "9", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "ucd": "phys.pressure", "units": "nPa", "xmlid": "mms3_brst_desmpreserr"}, "name": "DES : electrons", "processing_level": "Calibrated", "sampling": "0.03S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MMS/MMS3/FPI/mms3-fpi-brst.desm", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3-fpi-brst.desm"}, "mms3_fpi_brst_dism": {"__spz_name__": "DIS : ions", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mms3-fpi-brst.dism", "att": "auto/mms3-fpi-brst.dism", "dataSource": "LASP", "desc": "Dual Ion Spectrometers : burst mode
Sampling: 0.15S
Provider: LASP", "is_public": "True", "lastModificationDate": "2024-10-04T06:17:53Z", "lastUpdate": "2024-10-02T12:34:08Z", "measurement_type": "MagneticField", "mms3_brst_dis_err": {"__spz_name__": "error flags", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_brst_dis_err", "dataset": "mms3-fpi-brst.dism", "display_type": "timeseries", "is_public": "True", "name": "error flags", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3_brst_dis_err"}, "mms3_brst_dis_heatq": {"__spz_name__": "heatq_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_brst_dis_heatq", "dataset": "mms3-fpi-brst.dism", "display_type": "timeseries", "is_public": "True", "mms3_brst_dis_heatq0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_dis_heatq(0)", "dataset": "mms3-fpi-brst.dism", "index1": "0", "is_public": "True", "name": "x", "parameter": "mms3_brst_dis_heatq", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3_brst_dis_heatq(0)"}, "mms3_brst_dis_heatq1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_dis_heatq(1)", "dataset": "mms3-fpi-brst.dism", "index1": "1", "is_public": "True", "name": "y", "parameter": "mms3_brst_dis_heatq", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3_brst_dis_heatq(1)"}, "mms3_brst_dis_heatq2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_dis_heatq(2)", "dataset": "mms3-fpi-brst.dism", "index1": "2", "is_public": "True", "name": "z", "parameter": "mms3_brst_dis_heatq", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3_brst_dis_heatq(2)"}, "name": "heatq_gse", "size": "3", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "ucd": "phys.pressure", "units": "mW/m\u00b2", "xmlid": "mms3_brst_dis_heatq"}, "mms3_brst_dis_heatqerr": {"__spz_name__": "heatq : err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_brst_dis_heatqerr", "dataset": "mms3-fpi-brst.dism", "display_type": "timeseries", "is_public": "True", "mms3_brst_dis_heatqerr0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_dis_heatqerr(0)", "dataset": "mms3-fpi-brst.dism", "index1": "0", "is_public": "True", "name": "x", "parameter": "mms3_brst_dis_heatqerr", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3_brst_dis_heatqerr(0)"}, "mms3_brst_dis_heatqerr1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_dis_heatqerr(1)", "dataset": "mms3-fpi-brst.dism", "index1": "1", "is_public": "True", "name": "y", "parameter": "mms3_brst_dis_heatqerr", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3_brst_dis_heatqerr(1)"}, "mms3_brst_dis_heatqerr2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_dis_heatqerr(2)", "dataset": "mms3-fpi-brst.dism", "index1": "2", "is_public": "True", "name": "z", "parameter": "mms3_brst_dis_heatqerr", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3_brst_dis_heatqerr(2)"}, "name": "heatq : err", "size": "3", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "ucd": "phys.pressure", "units": "mW/m\u00b2", "xmlid": "mms3_brst_dis_heatqerr"}, "mms3_brst_dis_n": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_brst_dis_n", "dataset": "mms3-fpi-brst.dism", "display_type": "timeseries", "is_public": "True", "name": "density", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "units": "cm\u207b\u00b3", "xmlid": "mms3_brst_dis_n"}, "mms3_brst_dis_nerr": {"__spz_name__": "density : err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_brst_dis_nerr", "dataset": "mms3-fpi-brst.dism", "display_type": "timeseries", "is_public": "True", "name": "density : err", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "units": "cm\u207b\u00b3", "xmlid": "mms3_brst_dis_nerr"}, "mms3_brst_dis_omni": {"__spz_name__": "ion eflux : omni", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_brst_dis_omni", "dataset": "mms3-fpi-brst.dism", "display_type": "spectrogram", "is_public": "True", "name": "ion eflux : omni", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "units": "keV/(cm\u00b2-s-sr-keV)", "xmlid": "mms3_brst_dis_omni"}, "mms3_brst_dis_tpara": {"__spz_name__": "t_para", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_brst_dis_tpara", "dataset": "mms3-fpi-brst.dism", "display_type": "timeseries", "is_public": "True", "name": "t_para", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "units": "eV", "xmlid": "mms3_brst_dis_tpara"}, "mms3_brst_dis_tperp": {"__spz_name__": "t_perp", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_brst_dis_tperp", "dataset": "mms3-fpi-brst.dism", "display_type": "timeseries", "is_public": "True", "name": "t_perp", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "units": "eV", "xmlid": "mms3_brst_dis_tperp"}, "mms3_brst_dis_verr": {"__spz_name__": "v_gse : err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_brst_dis_verr", "dataset": "mms3-fpi-brst.dism", "display_type": "timeseries", "is_public": "True", "mms3_brst_dis_verr0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_dis_verr(0)", "dataset": "mms3-fpi-brst.dism", "index1": "0", "is_public": "True", "name": "vx", "parameter": "mms3_brst_dis_verr", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3_brst_dis_verr(0)"}, "mms3_brst_dis_verr1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_dis_verr(1)", "dataset": "mms3-fpi-brst.dism", "index1": "1", "is_public": "True", "name": "vy", "parameter": "mms3_brst_dis_verr", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3_brst_dis_verr(1)"}, "mms3_brst_dis_verr2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_dis_verr(2)", "dataset": "mms3-fpi-brst.dism", "index1": "2", "is_public": "True", "name": "vz", "parameter": "mms3_brst_dis_verr", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3_brst_dis_verr(2)"}, "name": "v_gse : err", "size": "3", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "units": "km/s", "xmlid": "mms3_brst_dis_verr"}, "mms3_brst_dis_vgse": {"__spz_name__": "v_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_brst_dis_vgse", "dataset": "mms3-fpi-brst.dism", "display_type": "timeseries", "is_public": "True", "mms3_brst_dis_vgse0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_dis_vgse(0)", "dataset": "mms3-fpi-brst.dism", "index1": "0", "is_public": "True", "name": "vx", "parameter": "mms3_brst_dis_vgse", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3_brst_dis_vgse(0)"}, "mms3_brst_dis_vgse1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_dis_vgse(1)", "dataset": "mms3-fpi-brst.dism", "index1": "1", "is_public": "True", "name": "vy", "parameter": "mms3_brst_dis_vgse", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3_brst_dis_vgse(1)"}, "mms3_brst_dis_vgse2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_dis_vgse(2)", "dataset": "mms3-fpi-brst.dism", "index1": "2", "is_public": "True", "name": "vz", "parameter": "mms3_brst_dis_vgse", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3_brst_dis_vgse(2)"}, "name": "v_gse", "size": "3", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "units": "km/s", "xmlid": "mms3_brst_dis_vgse"}, "mms3_brst_dispres": {"__spz_name__": "press_tensor_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_brst_dispres", "dataset": "mms3-fpi-brst.dism", "display_type": "timeseries", "is_public": "True", "mms3_brst_dispres0": {"__spz_name__": "xx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_dispres(0)", "dataset": "mms3-fpi-brst.dism", "index1": "0", "is_public": "True", "name": "xx", "parameter": "mms3_brst_dispres", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3_brst_dispres(0)"}, "mms3_brst_dispres1": {"__spz_name__": "xy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_dispres(1)", "dataset": "mms3-fpi-brst.dism", "index1": "1", "is_public": "True", "name": "xy", "parameter": "mms3_brst_dispres", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3_brst_dispres(1)"}, "mms3_brst_dispres2": {"__spz_name__": "xz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_dispres(2)", "dataset": "mms3-fpi-brst.dism", "index1": "2", "is_public": "True", "name": "xz", "parameter": "mms3_brst_dispres", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3_brst_dispres(2)"}, "mms3_brst_dispres3": {"__spz_name__": "yx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_dispres(3)", "dataset": "mms3-fpi-brst.dism", "index1": "3", "is_public": "True", "name": "yx", "parameter": "mms3_brst_dispres", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3_brst_dispres(3)"}, "mms3_brst_dispres4": {"__spz_name__": "yy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_dispres(4)", "dataset": "mms3-fpi-brst.dism", "index1": "4", "is_public": "True", "name": "yy", "parameter": "mms3_brst_dispres", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3_brst_dispres(4)"}, "mms3_brst_dispres5": {"__spz_name__": "yz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_dispres(5)", "dataset": "mms3-fpi-brst.dism", "index1": "5", "is_public": "True", "name": "yz", "parameter": "mms3_brst_dispres", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3_brst_dispres(5)"}, "mms3_brst_dispres6": {"__spz_name__": "zx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_dispres(6)", "dataset": "mms3-fpi-brst.dism", "index1": "6", "is_public": "True", "name": "zx", "parameter": "mms3_brst_dispres", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3_brst_dispres(6)"}, "mms3_brst_dispres7": {"__spz_name__": "zy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_dispres(7)", "dataset": "mms3-fpi-brst.dism", "index1": "7", "is_public": "True", "name": "zy", "parameter": "mms3_brst_dispres", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3_brst_dispres(7)"}, "mms3_brst_dispres8": {"__spz_name__": "zz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_dispres(8)", "dataset": "mms3-fpi-brst.dism", "index1": "8", "is_public": "True", "name": "zz", "parameter": "mms3_brst_dispres", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3_brst_dispres(8)"}, "name": "press_tensor_gse", "size": "9", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "ucd": "phys.pressure", "units": "nPa", "xmlid": "mms3_brst_dispres"}, "mms3_brst_dispreserr": {"__spz_name__": "press_tensor_gse : err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_brst_dispreserr", "dataset": "mms3-fpi-brst.dism", "display_type": "timeseries", "is_public": "True", "mms3_brst_dispreserr0": {"__spz_name__": "xx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_dispreserr(0)", "dataset": "mms3-fpi-brst.dism", "index1": "0", "is_public": "True", "name": "xx", "parameter": "mms3_brst_dispreserr", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3_brst_dispreserr(0)"}, "mms3_brst_dispreserr1": {"__spz_name__": "xy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_dispreserr(1)", "dataset": "mms3-fpi-brst.dism", "index1": "1", "is_public": "True", "name": "xy", "parameter": "mms3_brst_dispreserr", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3_brst_dispreserr(1)"}, "mms3_brst_dispreserr2": {"__spz_name__": "xz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_dispreserr(2)", "dataset": "mms3-fpi-brst.dism", "index1": "2", "is_public": "True", "name": "xz", "parameter": "mms3_brst_dispreserr", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3_brst_dispreserr(2)"}, "mms3_brst_dispreserr3": {"__spz_name__": "yx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_dispreserr(3)", "dataset": "mms3-fpi-brst.dism", "index1": "3", "is_public": "True", "name": "yx", "parameter": "mms3_brst_dispreserr", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3_brst_dispreserr(3)"}, "mms3_brst_dispreserr4": {"__spz_name__": "yy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_dispreserr(4)", "dataset": "mms3-fpi-brst.dism", "index1": "4", "is_public": "True", "name": "yy", "parameter": "mms3_brst_dispreserr", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3_brst_dispreserr(4)"}, "mms3_brst_dispreserr5": {"__spz_name__": "yz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_dispreserr(5)", "dataset": "mms3-fpi-brst.dism", "index1": "5", "is_public": "True", "name": "yz", "parameter": "mms3_brst_dispreserr", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3_brst_dispreserr(5)"}, "mms3_brst_dispreserr6": {"__spz_name__": "zx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_dispreserr(6)", "dataset": "mms3-fpi-brst.dism", "index1": "6", "is_public": "True", "name": "zx", "parameter": "mms3_brst_dispreserr", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3_brst_dispreserr(6)"}, "mms3_brst_dispreserr7": {"__spz_name__": "zy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_dispreserr(7)", "dataset": "mms3-fpi-brst.dism", "index1": "7", "is_public": "True", "name": "zy", "parameter": "mms3_brst_dispreserr", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3_brst_dispreserr(7)"}, "mms3_brst_dispreserr8": {"__spz_name__": "zz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_brst_dispreserr(8)", "dataset": "mms3-fpi-brst.dism", "index1": "8", "is_public": "True", "name": "zz", "parameter": "mms3_brst_dispreserr", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3_brst_dispreserr(8)"}, "name": "press_tensor_gse : err", "size": "9", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "ucd": "phys.pressure", "units": "nPa", "xmlid": "mms3_brst_dispreserr"}, "name": "DIS : ions", "processing_level": "Calibrated", "sampling": "0.15S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MMS/MMS3/FPI/mms3-fpi-brst.dism", "start_date": "2015-05-06T00:00:00Z", "stop_date": "2024-06-30T23:00:22Z", "xmlid": "mms3-fpi-brst.dism"}, "name": "burst mode", "xmlid": "mms3-fpi-brst"}, "desc": "Fast Plasma Investigation
ElectrostaticAnalyser", "fast_mode": {"__spz_name__": "fast mode", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "mms3-fpi-fast", "is_public": "True", "mms3_fpi_current": {"PriorID": "mms3-fpi-desmoms", "__spz_name__": "electric current", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mms3-fpi-current", "att": "auto/mms3-fpi-current", "dataSource": "LASP", "desc": "electric current : fast mode
Sampling: 4.5S
Provider: LASP", "is_public": "True", "lastModificationDate": "2024-10-07T05:33:27Z", "lastUpdate": "2024-10-07T05:33:27Z", "measurement_type": "ThermalPlasma", "mms3_fast_jgse": {"__spz_name__": "j_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_fast_jgse", "dataset": "mms3-fpi-current", "description": "Electric current = 1.6e-10*(mms3_des_ne+mms3_dis_ni)*0.5*(mms3_dis_vgse-mms3_des_vgse)", "display_type": "timeseries", "is_public": "True", "mms3_fast_jgse0": {"__spz_name__": "jx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_fast_jgse(0)", "dataset": "mms3-fpi-current", "index1": "0", "is_public": "True", "name": "jx", "parameter": "mms3_fast_jgse", "start_date": "2015-05-06T00:00:01Z", "stop_date": "2024-08-14T00:57:17Z", "xmlid": "mms3_fast_jgse(0)"}, "mms3_fast_jgse1": {"__spz_name__": "jy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_fast_jgse(1)", "dataset": "mms3-fpi-current", "index1": "1", "is_public": "True", "name": "jy", "parameter": "mms3_fast_jgse", "start_date": "2015-05-06T00:00:01Z", "stop_date": "2024-08-14T00:57:17Z", "xmlid": "mms3_fast_jgse(1)"}, "mms3_fast_jgse2": {"__spz_name__": "jz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_fast_jgse(2)", "dataset": "mms3-fpi-current", "index1": "2", "is_public": "True", "name": "jz", "parameter": "mms3_fast_jgse", "start_date": "2015-05-06T00:00:01Z", "stop_date": "2024-08-14T00:57:17Z", "xmlid": "mms3_fast_jgse(2)"}, "name": "j_gse", "size": "3", "start_date": "2015-05-06T00:00:01Z", "stop_date": "2024-08-14T00:57:17Z", "units": "A/m\u00b2", "xmlid": "mms3_fast_jgse"}, "name": "electric current", "processing_level": "Calibrated", "sampling": "4.5S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MMS/MMS3/FPI/mms3-fpi-current", "start_date": "2015-05-06T00:00:01Z", "stop_date": "2024-08-14T00:57:17Z", "xmlid": "mms3-fpi-current"}, "mms3_fpi_desmoms": {"__spz_name__": "DES : electrons", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mms3-fpi-desmoms", "att": "auto/mms3-fpi-desmoms", "dataSource": "LASP", "desc": "Dual Electron Spectrometers : fast mode
Sampling: 4.5S
Provider: LASP", "is_public": "True", "lastModificationDate": "2024-10-07T05:33:27Z", "lastUpdate": "2024-10-07T05:33:27Z", "measurement_type": "MagneticField", "mms3_des_anti": {"__spz_name__": "elec eflux : anti", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_des_anti", "dataset": "mms3-fpi-desmoms", "display_type": "spectrogram", "is_public": "True", "name": "elec eflux : anti", "start_date": "2015-05-06T00:00:01Z", "stop_date": "2024-08-14T00:57:17Z", "units": "keV/(cm\u00b2-s-sr-keV)", "xmlid": "mms3_des_anti"}, "mms3_des_heatq": {"__spz_name__": "heatq_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_des_heatq", "dataset": "mms3-fpi-desmoms", "display_type": "timeseries", "is_public": "True", "mms3_des_heatq0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_des_heatq(0)", "dataset": "mms3-fpi-desmoms", "index1": "0", "is_public": "True", "name": "x", "parameter": "mms3_des_heatq", "start_date": "2015-05-06T00:00:01Z", "stop_date": "2024-08-14T00:57:17Z", "xmlid": "mms3_des_heatq(0)"}, "mms3_des_heatq1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_des_heatq(1)", "dataset": "mms3-fpi-desmoms", "index1": "1", "is_public": "True", "name": "y", "parameter": "mms3_des_heatq", "start_date": "2015-05-06T00:00:01Z", "stop_date": "2024-08-14T00:57:17Z", "xmlid": "mms3_des_heatq(1)"}, "mms3_des_heatq2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_des_heatq(2)", "dataset": "mms3-fpi-desmoms", "index1": "2", "is_public": "True", "name": "z", "parameter": "mms3_des_heatq", "start_date": "2015-05-06T00:00:01Z", "stop_date": "2024-08-14T00:57:17Z", "xmlid": "mms3_des_heatq(2)"}, "name": "heatq_gse", "size": "3", "start_date": "2015-05-06T00:00:01Z", "stop_date": "2024-08-14T00:57:17Z", "ucd": "phys.pressure", "units": "mW/m\u00b2", "xmlid": "mms3_des_heatq"}, "mms3_des_ne": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_des_ne", "dataset": "mms3-fpi-desmoms", "display_type": "timeseries", "is_public": "True", "name": "density", "start_date": "2015-05-06T00:00:01Z", "stop_date": "2024-08-14T00:57:17Z", "units": "cm\u207b\u00b3", "xmlid": "mms3_des_ne"}, "mms3_des_ne_err": {"__spz_name__": "density : err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_des_ne_err", "dataset": "mms3-fpi-desmoms", "display_type": "timeseries", "is_public": "True", "name": "density : err", "start_date": "2015-05-06T00:00:01Z", "stop_date": "2024-08-14T00:57:17Z", "units": "cm\u207b\u00b3", "xmlid": "mms3_des_ne_err"}, "mms3_des_omni": {"__spz_name__": "elec eflux : omni", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_des_omni", "dataset": "mms3-fpi-desmoms", "display_type": "spectrogram", "is_public": "True", "name": "elec eflux : omni", "start_date": "2015-05-06T00:00:01Z", "stop_date": "2024-08-14T00:57:17Z", "units": "keV/(cm\u00b2-s-sr-keV)", "xmlid": "mms3_des_omni"}, "mms3_des_pahigh": {"__spz_name__": "pa dist : highen", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_des_pahigh", "dataset": "mms3-fpi-desmoms", "description": "High energy bin: 2 keV - 30 keV. \n Pitch-angle bin size: 6 deg. Note that pitch angles are calculated in the spacecraft frame; \n i.e., not shifted by the bulk velocity", "display_type": "spectrogram", "is_public": "True", "name": "pa dist : highen", "start_date": "2015-05-06T00:00:01Z", "stop_date": "2024-08-14T00:57:17Z", "units": "keV/(cm\u00b2-s-sr-keV)", "xmlid": "mms3_des_pahigh"}, "mms3_des_palow": {"__spz_name__": "pa dist : lowen", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_des_palow", "dataset": "mms3-fpi-desmoms", "description": "Low energy bin: 0 eV - 200 eV. \n Pitch-angle bin size: 6 deg. Note that pitch angles are calculated in the spacecraft frame; \n i.e., not shifted by the bulk velocity", "display_type": "spectrogram", "is_public": "True", "name": "pa dist : lowen", "start_date": "2015-05-06T00:00:01Z", "stop_date": "2024-08-14T00:57:17Z", "units": "keV/(cm\u00b2-s-sr-keV)", "xmlid": "mms3_des_palow"}, "mms3_des_pamid": {"__spz_name__": "pa dist : miden", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_des_pamid", "dataset": "mms3-fpi-desmoms", "description": "Mid energy bin: 200 eV - 2 keV. \n Pitch-angle bin size: 6 deg. Note that pitch angles are calculated in the spacecraft frame; \n i.e., not shifted by the bulk velocity", "display_type": "spectrogram", "is_public": "True", "name": "pa dist : miden", "start_date": "2015-05-06T00:00:01Z", "stop_date": "2024-08-14T00:57:17Z", "units": "keV/(cm\u00b2-s-sr-keV)", "xmlid": "mms3_des_pamid"}, "mms3_des_para": {"__spz_name__": "elec eflux : para", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_des_para", "dataset": "mms3-fpi-desmoms", "display_type": "spectrogram", "is_public": "True", "name": "elec eflux : para", "start_date": "2015-05-06T00:00:01Z", "stop_date": "2024-08-14T00:57:17Z", "units": "keV/(cm\u00b2-s-sr-keV)", "xmlid": "mms3_des_para"}, "mms3_des_perp": {"__spz_name__": "elec eflux : perp", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_des_perp", "dataset": "mms3-fpi-desmoms", "display_type": "spectrogram", "is_public": "True", "name": "elec eflux : perp", "start_date": "2015-05-06T00:00:01Z", "stop_date": "2024-08-14T00:57:17Z", "units": "keV/(cm\u00b2-s-sr-keV)", "xmlid": "mms3_des_perp"}, "mms3_des_press": {"__spz_name__": "pressure_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_des_press", "dataset": "mms3-fpi-desmoms", "display_type": "timeseries", "is_public": "True", "mms3_des_press0": {"__spz_name__": "xx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_des_press(0)", "dataset": "mms3-fpi-desmoms", "index1": "0", "is_public": "True", "name": "xx", "parameter": "mms3_des_press", "start_date": "2015-05-06T00:00:01Z", "stop_date": "2024-08-14T00:57:17Z", "xmlid": "mms3_des_press(0)"}, "mms3_des_press1": {"__spz_name__": "xy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_des_press(1)", "dataset": "mms3-fpi-desmoms", "index1": "1", "is_public": "True", "name": "xy", "parameter": "mms3_des_press", "start_date": "2015-05-06T00:00:01Z", "stop_date": "2024-08-14T00:57:17Z", "xmlid": "mms3_des_press(1)"}, "mms3_des_press2": {"__spz_name__": "xz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_des_press(2)", "dataset": "mms3-fpi-desmoms", "index1": "2", "is_public": "True", "name": "xz", "parameter": "mms3_des_press", "start_date": "2015-05-06T00:00:01Z", "stop_date": "2024-08-14T00:57:17Z", "xmlid": "mms3_des_press(2)"}, "mms3_des_press3": {"__spz_name__": "yx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_des_press(3)", "dataset": "mms3-fpi-desmoms", "index1": "3", "is_public": "True", "name": "yx", "parameter": "mms3_des_press", "start_date": "2015-05-06T00:00:01Z", "stop_date": "2024-08-14T00:57:17Z", "xmlid": "mms3_des_press(3)"}, "mms3_des_press4": {"__spz_name__": "yy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_des_press(4)", "dataset": "mms3-fpi-desmoms", "index1": "4", "is_public": "True", "name": "yy", "parameter": "mms3_des_press", "start_date": "2015-05-06T00:00:01Z", "stop_date": "2024-08-14T00:57:17Z", "xmlid": "mms3_des_press(4)"}, "mms3_des_press5": {"__spz_name__": "yz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_des_press(5)", "dataset": "mms3-fpi-desmoms", "index1": "5", "is_public": "True", "name": "yz", "parameter": "mms3_des_press", "start_date": "2015-05-06T00:00:01Z", "stop_date": "2024-08-14T00:57:17Z", "xmlid": "mms3_des_press(5)"}, "mms3_des_press6": {"__spz_name__": "zx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_des_press(6)", "dataset": "mms3-fpi-desmoms", "index1": "6", "is_public": "True", "name": "zx", "parameter": "mms3_des_press", "start_date": "2015-05-06T00:00:01Z", "stop_date": "2024-08-14T00:57:17Z", "xmlid": "mms3_des_press(6)"}, "mms3_des_press7": {"__spz_name__": "zy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_des_press(7)", "dataset": "mms3-fpi-desmoms", "index1": "7", "is_public": "True", "name": "zy", "parameter": "mms3_des_press", "start_date": "2015-05-06T00:00:01Z", "stop_date": "2024-08-14T00:57:17Z", "xmlid": "mms3_des_press(7)"}, "mms3_des_press8": {"__spz_name__": "zz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_des_press(8)", "dataset": "mms3-fpi-desmoms", "index1": "8", "is_public": "True", "name": "zz", "parameter": "mms3_des_press", "start_date": "2015-05-06T00:00:01Z", "stop_date": "2024-08-14T00:57:17Z", "xmlid": "mms3_des_press(8)"}, "name": "pressure_gse", "size": "9", "start_date": "2015-05-06T00:00:01Z", "stop_date": "2024-08-14T00:57:17Z", "ucd": "phys.pressure", "units": "nPa", "xmlid": "mms3_des_press"}, "mms3_des_tpara": {"__spz_name__": "t_para", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_des_tpara", "dataset": "mms3-fpi-desmoms", "display_type": "timeseries", "is_public": "True", "name": "t_para", "start_date": "2015-05-06T00:00:01Z", "stop_date": "2024-08-14T00:57:17Z", "units": "eV", "xmlid": "mms3_des_tpara"}, "mms3_des_tperp": {"__spz_name__": "t_perp", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_des_tperp", "dataset": "mms3-fpi-desmoms", "display_type": "timeseries", "is_public": "True", "name": "t_perp", "start_date": "2015-05-06T00:00:01Z", "stop_date": "2024-08-14T00:57:17Z", "units": "eV", "xmlid": "mms3_des_tperp"}, "mms3_des_v_err": {"__spz_name__": "v_gse : err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_des_v_err", "dataset": "mms3-fpi-desmoms", "display_type": "timeseries", "is_public": "True", "mms3_des_v_err0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_des_v_err(0)", "dataset": "mms3-fpi-desmoms", "index1": "0", "is_public": "True", "name": "vx", "parameter": "mms3_des_v_err", "start_date": "2015-05-06T00:00:01Z", "stop_date": "2024-08-14T00:57:17Z", "xmlid": "mms3_des_v_err(0)"}, "mms3_des_v_err1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_des_v_err(1)", "dataset": "mms3-fpi-desmoms", "index1": "1", "is_public": "True", "name": "vy", "parameter": "mms3_des_v_err", "start_date": "2015-05-06T00:00:01Z", "stop_date": "2024-08-14T00:57:17Z", "xmlid": "mms3_des_v_err(1)"}, "mms3_des_v_err2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_des_v_err(2)", "dataset": "mms3-fpi-desmoms", "index1": "2", "is_public": "True", "name": "vz", "parameter": "mms3_des_v_err", "start_date": "2015-05-06T00:00:01Z", "stop_date": "2024-08-14T00:57:17Z", "xmlid": "mms3_des_v_err(2)"}, "name": "v_gse : err", "size": "3", "start_date": "2015-05-06T00:00:01Z", "stop_date": "2024-08-14T00:57:17Z", "units": "km/s", "xmlid": "mms3_des_v_err"}, "mms3_des_vgse": {"__spz_name__": "v_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_des_vgse", "dataset": "mms3-fpi-desmoms", "display_type": "timeseries", "is_public": "True", "mms3_des_vgse0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_des_vgse(0)", "dataset": "mms3-fpi-desmoms", "index1": "0", "is_public": "True", "name": "vx", "parameter": "mms3_des_vgse", "start_date": "2015-05-06T00:00:01Z", "stop_date": "2024-08-14T00:57:17Z", "xmlid": "mms3_des_vgse(0)"}, "mms3_des_vgse1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_des_vgse(1)", "dataset": "mms3-fpi-desmoms", "index1": "1", "is_public": "True", "name": "vy", "parameter": "mms3_des_vgse", "start_date": "2015-05-06T00:00:01Z", "stop_date": "2024-08-14T00:57:17Z", "xmlid": "mms3_des_vgse(1)"}, "mms3_des_vgse2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_des_vgse(2)", "dataset": "mms3-fpi-desmoms", "index1": "2", "is_public": "True", "name": "vz", "parameter": "mms3_des_vgse", "start_date": "2015-05-06T00:00:01Z", "stop_date": "2024-08-14T00:57:17Z", "xmlid": "mms3_des_vgse(2)"}, "name": "v_gse", "size": "3", "start_date": "2015-05-06T00:00:01Z", "stop_date": "2024-08-14T00:57:17Z", "units": "km/s", "xmlid": "mms3_des_vgse"}, "name": "DES : electrons", "processing_level": "Calibrated", "sampling": "4.5S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MMS/MMS3/FPI/mms3-fpi-desmoms", "start_date": "2015-05-06T00:00:01Z", "stop_date": "2024-08-14T00:57:17Z", "xmlid": "mms3-fpi-desmoms"}, "mms3_fpi_dismoms": {"__spz_name__": "DIS : ions", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mms3-fpi-dismoms", "att": "auto/mms3-fpi-dismoms", "dataSource": "LASP", "desc": "Dual Ion Spectrometers : fast mode
Sampling: 4.5S
Provider: LASP", "is_public": "True", "lastModificationDate": "2024-10-07T05:33:28Z", "lastUpdate": "2024-10-07T05:33:28Z", "measurement_type": "MagneticField", "mms3_dis_heatq": {"__spz_name__": "heatq_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_dis_heatq", "dataset": "mms3-fpi-dismoms", "display_type": "timeseries", "is_public": "True", "mms3_dis_heatq0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_dis_heatq(0)", "dataset": "mms3-fpi-dismoms", "index1": "0", "is_public": "True", "name": "x", "parameter": "mms3_dis_heatq", "start_date": "2015-05-06T00:00:01Z", "stop_date": "2024-08-14T00:57:17Z", "xmlid": "mms3_dis_heatq(0)"}, "mms3_dis_heatq1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_dis_heatq(1)", "dataset": "mms3-fpi-dismoms", "index1": "1", "is_public": "True", "name": "y", "parameter": "mms3_dis_heatq", "start_date": "2015-05-06T00:00:01Z", "stop_date": "2024-08-14T00:57:17Z", "xmlid": "mms3_dis_heatq(1)"}, "mms3_dis_heatq2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_dis_heatq(2)", "dataset": "mms3-fpi-dismoms", "index1": "2", "is_public": "True", "name": "z", "parameter": "mms3_dis_heatq", "start_date": "2015-05-06T00:00:01Z", "stop_date": "2024-08-14T00:57:17Z", "xmlid": "mms3_dis_heatq(2)"}, "name": "heatq_gse", "size": "3", "start_date": "2015-05-06T00:00:01Z", "stop_date": "2024-08-14T00:57:17Z", "ucd": "phys.pressure", "units": "mW/m\u00b2", "xmlid": "mms3_dis_heatq"}, "mms3_dis_ni": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_dis_ni", "dataset": "mms3-fpi-dismoms", "display_type": "timeseries", "is_public": "True", "name": "density", "start_date": "2015-05-06T00:00:01Z", "stop_date": "2024-08-14T00:57:17Z", "units": "cm\u207b\u00b3", "xmlid": "mms3_dis_ni"}, "mms3_dis_ni_err": {"__spz_name__": "density : err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_dis_ni_err", "dataset": "mms3-fpi-dismoms", "display_type": "timeseries", "is_public": "True", "name": "density : err", "start_date": "2015-05-06T00:00:01Z", "stop_date": "2024-08-14T00:57:17Z", "units": "cm\u207b\u00b3", "xmlid": "mms3_dis_ni_err"}, "mms3_dis_omni": {"__spz_name__": "ion eflux : omni", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_dis_omni", "dataset": "mms3-fpi-dismoms", "display_type": "spectrogram", "is_public": "True", "name": "ion eflux : omni", "start_date": "2015-05-06T00:00:01Z", "stop_date": "2024-08-14T00:57:17Z", "units": "keV/(cm\u00b2-s-sr-keV)", "xmlid": "mms3_dis_omni"}, "mms3_dis_press": {"__spz_name__": "pressure_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_dis_press", "dataset": "mms3-fpi-dismoms", "display_type": "timeseries", "is_public": "True", "mms3_dis_press0": {"__spz_name__": "xx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_dis_press(0)", "dataset": "mms3-fpi-dismoms", "index1": "0", "is_public": "True", "name": "xx", "parameter": "mms3_dis_press", "start_date": "2015-05-06T00:00:01Z", "stop_date": "2024-08-14T00:57:17Z", "xmlid": "mms3_dis_press(0)"}, "mms3_dis_press1": {"__spz_name__": "xy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_dis_press(1)", "dataset": "mms3-fpi-dismoms", "index1": "1", "is_public": "True", "name": "xy", "parameter": "mms3_dis_press", "start_date": "2015-05-06T00:00:01Z", "stop_date": "2024-08-14T00:57:17Z", "xmlid": "mms3_dis_press(1)"}, "mms3_dis_press2": {"__spz_name__": "xz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_dis_press(2)", "dataset": "mms3-fpi-dismoms", "index1": "2", "is_public": "True", "name": "xz", "parameter": "mms3_dis_press", "start_date": "2015-05-06T00:00:01Z", "stop_date": "2024-08-14T00:57:17Z", "xmlid": "mms3_dis_press(2)"}, "mms3_dis_press3": {"__spz_name__": "yx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_dis_press(3)", "dataset": "mms3-fpi-dismoms", "index1": "3", "is_public": "True", "name": "yx", "parameter": "mms3_dis_press", "start_date": "2015-05-06T00:00:01Z", "stop_date": "2024-08-14T00:57:17Z", "xmlid": "mms3_dis_press(3)"}, "mms3_dis_press4": {"__spz_name__": "yy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_dis_press(4)", "dataset": "mms3-fpi-dismoms", "index1": "4", "is_public": "True", "name": "yy", "parameter": "mms3_dis_press", "start_date": "2015-05-06T00:00:01Z", "stop_date": "2024-08-14T00:57:17Z", "xmlid": "mms3_dis_press(4)"}, "mms3_dis_press5": {"__spz_name__": "yz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_dis_press(5)", "dataset": "mms3-fpi-dismoms", "index1": "5", "is_public": "True", "name": "yz", "parameter": "mms3_dis_press", "start_date": "2015-05-06T00:00:01Z", "stop_date": "2024-08-14T00:57:17Z", "xmlid": "mms3_dis_press(5)"}, "mms3_dis_press6": {"__spz_name__": "zx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_dis_press(6)", "dataset": "mms3-fpi-dismoms", "index1": "6", "is_public": "True", "name": "zx", "parameter": "mms3_dis_press", "start_date": "2015-05-06T00:00:01Z", "stop_date": "2024-08-14T00:57:17Z", "xmlid": "mms3_dis_press(6)"}, "mms3_dis_press7": {"__spz_name__": "zy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_dis_press(7)", "dataset": "mms3-fpi-dismoms", "index1": "7", "is_public": "True", "name": "zy", "parameter": "mms3_dis_press", "start_date": "2015-05-06T00:00:01Z", "stop_date": "2024-08-14T00:57:17Z", "xmlid": "mms3_dis_press(7)"}, "mms3_dis_press8": {"__spz_name__": "zz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_dis_press(8)", "dataset": "mms3-fpi-dismoms", "index1": "8", "is_public": "True", "name": "zz", "parameter": "mms3_dis_press", "start_date": "2015-05-06T00:00:01Z", "stop_date": "2024-08-14T00:57:17Z", "xmlid": "mms3_dis_press(8)"}, "name": "pressure_gse", "size": "9", "start_date": "2015-05-06T00:00:01Z", "stop_date": "2024-08-14T00:57:17Z", "ucd": "phys.pressure", "units": "nPa", "xmlid": "mms3_dis_press"}, "mms3_dis_tpara": {"__spz_name__": "t_para", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_dis_tpara", "dataset": "mms3-fpi-dismoms", "display_type": "timeseries", "is_public": "True", "name": "t_para", "start_date": "2015-05-06T00:00:01Z", "stop_date": "2024-08-14T00:57:17Z", "units": "eV", "xmlid": "mms3_dis_tpara"}, "mms3_dis_tperp": {"__spz_name__": "t_perp", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_dis_tperp", "dataset": "mms3-fpi-dismoms", "display_type": "timeseries", "is_public": "True", "name": "t_perp", "start_date": "2015-05-06T00:00:01Z", "stop_date": "2024-08-14T00:57:17Z", "units": "eV", "xmlid": "mms3_dis_tperp"}, "mms3_dis_v_err": {"__spz_name__": "v_gse : err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_dis_v_err", "dataset": "mms3-fpi-dismoms", "display_type": "timeseries", "is_public": "True", "mms3_dis_v_err0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_dis_v_err(0)", "dataset": "mms3-fpi-dismoms", "index1": "0", "is_public": "True", "name": "vx", "parameter": "mms3_dis_v_err", "start_date": "2015-05-06T00:00:01Z", "stop_date": "2024-08-14T00:57:17Z", "xmlid": "mms3_dis_v_err(0)"}, "mms3_dis_v_err1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_dis_v_err(1)", "dataset": "mms3-fpi-dismoms", "index1": "1", "is_public": "True", "name": "vy", "parameter": "mms3_dis_v_err", "start_date": "2015-05-06T00:00:01Z", "stop_date": "2024-08-14T00:57:17Z", "xmlid": "mms3_dis_v_err(1)"}, "mms3_dis_v_err2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_dis_v_err(2)", "dataset": "mms3-fpi-dismoms", "index1": "2", "is_public": "True", "name": "vz", "parameter": "mms3_dis_v_err", "start_date": "2015-05-06T00:00:01Z", "stop_date": "2024-08-14T00:57:17Z", "xmlid": "mms3_dis_v_err(2)"}, "name": "v_gse : err", "size": "3", "start_date": "2015-05-06T00:00:01Z", "stop_date": "2024-08-14T00:57:17Z", "units": "km/s", "xmlid": "mms3_dis_v_err"}, "mms3_dis_vgse": {"__spz_name__": "v_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_dis_vgse", "dataset": "mms3-fpi-dismoms", "display_type": "timeseries", "is_public": "True", "mms3_dis_vgse0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_dis_vgse(0)", "dataset": "mms3-fpi-dismoms", "index1": "0", "is_public": "True", "name": "vx", "parameter": "mms3_dis_vgse", "start_date": "2015-05-06T00:00:01Z", "stop_date": "2024-08-14T00:57:17Z", "xmlid": "mms3_dis_vgse(0)"}, "mms3_dis_vgse1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_dis_vgse(1)", "dataset": "mms3-fpi-dismoms", "index1": "1", "is_public": "True", "name": "vy", "parameter": "mms3_dis_vgse", "start_date": "2015-05-06T00:00:01Z", "stop_date": "2024-08-14T00:57:17Z", "xmlid": "mms3_dis_vgse(1)"}, "mms3_dis_vgse2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms3_dis_vgse(2)", "dataset": "mms3-fpi-dismoms", "index1": "2", "is_public": "True", "name": "vz", "parameter": "mms3_dis_vgse", "start_date": "2015-05-06T00:00:01Z", "stop_date": "2024-08-14T00:57:17Z", "xmlid": "mms3_dis_vgse(2)"}, "name": "v_gse", "size": "3", "start_date": "2015-05-06T00:00:01Z", "stop_date": "2024-08-14T00:57:17Z", "units": "km/s", "xmlid": "mms3_dis_vgse"}, "name": "DIS : ions", "processing_level": "Calibrated", "sampling": "4.5S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MMS/MMS3/FPI/mms3-fpi-dismoms", "start_date": "2015-05-06T00:00:01Z", "stop_date": "2024-08-14T00:57:17Z", "xmlid": "mms3-fpi-dismoms"}, "name": "fast mode", "xmlid": "mms3-fpi-fast"}, "is_public": "True", "name": "FPI", "xmlid": "MMS3_fpi"}, "HPCA": {"__spz_name__": "HPCA", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "MMS3_hpca", "att": "auto/MMS3_hpca", "desc": "Hot Plasma Composition Analyzer
MassSpectrometer", "is_public": "True", "mms3_hpca_brst": {"__spz_name__": "ion energy flux : burst", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mms3-hpca-brst", "att": "auto/mms3-hpca-brst", "dataSource": "LASP", "desc": "ion flux spectrograms : burst mode
Sampling: 0.625S
Provider: LASP", "is_public": "True", "lastModificationDate": "2024-10-04T06:31:33Z", "lastUpdate": "2024-04-16T13:55:08Z", "measurement_type": "IonComposition", "mms3_hpca_heefl": {"__spz_name__": "he++ eflux : 2D energy/polar", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_hpca_heefl", "dataset": "mms3-hpca-brst", "description": "He++ Flux for all elevation anodes accross all energies", "display_type": "spectrogram", "is_public": "True", "name": "he++ eflux : 2D energy/polar", "start_date": "2015-07-05T21:43:52Z", "stop_date": "2023-09-19T05:15:41Z", "units": "keV/((cm\u00b2-s-sr-keV))", "xmlid": "mms3_hpca_heefl"}, "mms3_hpca_heefl_elevation": {"__spz_name__": "he++ eflux : sum on elevations", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_hpca_heefl_elevation", "dataset": "mms3-hpca-brst", "description": "He++ Flux for all energies", "display_type": "spectrogram", "is_public": "True", "name": "he++ eflux : sum on elevations", "start_date": "2015-07-05T21:43:52Z", "stop_date": "2023-09-19T05:15:41Z", "units": "keV/((cm\u00b2-s-sr-keV))", "xmlid": "mms3_hpca_heefl_elevation"}, "mms3_hpca_heeq": {"__spz_name__": "he++ eflux quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_hpca_heeq", "dataset": "mms3-hpca-brst", "display_type": "timeseries", "is_public": "True", "name": "he++ eflux quality", "start_date": "2015-07-05T21:43:52Z", "stop_date": "2023-09-19T05:15:41Z", "xmlid": "mms3_hpca_heeq"}, "mms3_hpca_hefl": {"__spz_name__": "he+ eflux : 2D energy/polar", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_hpca_hefl", "dataset": "mms3-hpca-brst", "description": "He Flux for all elevation anodes accross all energies", "display_type": "spectrogram", "is_public": "True", "name": "he+ eflux : 2D energy/polar", "start_date": "2015-07-05T21:43:52Z", "stop_date": "2023-09-19T05:15:41Z", "units": "keV/((cm\u00b2-s-sr-keV))", "xmlid": "mms3_hpca_hefl"}, "mms3_hpca_hefl_elevation": {"__spz_name__": "he+ eflux : sum on elevations", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_hpca_hefl_elevation", "dataset": "mms3-hpca-brst", "description": "He Flux for all energies", "display_type": "spectrogram", "is_public": "True", "name": "he+ eflux : sum on elevations", "start_date": "2015-07-05T21:43:52Z", "stop_date": "2023-09-19T05:15:41Z", "units": "keV/((cm\u00b2-s-sr-keV))", "xmlid": "mms3_hpca_hefl_elevation"}, "mms3_hpca_heq": {"__spz_name__": "he+ eflux quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_hpca_heq", "dataset": "mms3-hpca-brst", "display_type": "timeseries", "is_public": "True", "name": "he+ eflux quality", "start_date": "2015-07-05T21:43:52Z", "stop_date": "2023-09-19T05:15:41Z", "xmlid": "mms3_hpca_heq"}, "mms3_hpca_hfl": {"__spz_name__": "h+ eflux : 2D energy/elevation", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_hpca_hfl", "dataset": "mms3-hpca-brst", "description": "H+ Flux for all elevation anodes across all energies", "display_type": "spectrogram", "is_public": "True", "name": "h+ eflux : 2D energy/elevation", "start_date": "2015-07-05T21:43:52Z", "stop_date": "2023-09-19T05:15:41Z", "units": "keV/((cm\u00b2-s-sr-keV))", "xmlid": "mms3_hpca_hfl"}, "mms3_hpca_hfl_elevation": {"__spz_name__": "h+ eflux : sum on elevations", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_hpca_hfl_elevation", "dataset": "mms3-hpca-brst", "description": "H+ Flux for all energies", "display_type": "spectrogram", "is_public": "True", "name": "h+ eflux : sum on elevations", "start_date": "2015-07-05T21:43:52Z", "stop_date": "2023-09-19T05:15:41Z", "units": "keV/((cm\u00b2-s-sr-keV))", "xmlid": "mms3_hpca_hfl_elevation"}, "mms3_hpca_hq": {"__spz_name__": "h+ eflux quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_hpca_hq", "dataset": "mms3-hpca-brst", "display_type": "timeseries", "is_public": "True", "name": "h+ eflux quality", "start_date": "2015-07-05T21:43:52Z", "stop_date": "2023-09-19T05:15:41Z", "xmlid": "mms3_hpca_hq"}, "mms3_hpca_ofl": {"__spz_name__": "o+ eflux : 2D energy/polar", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_hpca_ofl", "dataset": "mms3-hpca-brst", "description": "O+ Flux for all elevation anodes accross all energies", "display_type": "spectrogram", "is_public": "True", "name": "o+ eflux : 2D energy/polar", "start_date": "2015-07-05T21:43:52Z", "stop_date": "2023-09-19T05:15:41Z", "units": "keV/((cm\u00b2-s-sr-keV))", "xmlid": "mms3_hpca_ofl"}, "mms3_hpca_ofl_elevation": {"__spz_name__": "o+ eflux : sum on elevations", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_hpca_ofl_elevation", "dataset": "mms3-hpca-brst", "description": "O+ Flux for all energies", "display_type": "spectrogram", "is_public": "True", "name": "o+ eflux : sum on elevations", "start_date": "2015-07-05T21:43:52Z", "stop_date": "2023-09-19T05:15:41Z", "units": "keV/((cm\u00b2-s-sr-keV))", "xmlid": "mms3_hpca_ofl_elevation"}, "mms3_hpca_oq": {"__spz_name__": "o+ eflux quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms3_hpca_oq", "dataset": "mms3-hpca-brst", "display_type": "timeseries", "is_public": "True", "name": "o+ eflux quality", "start_date": "2015-07-05T21:43:52Z", "stop_date": "2023-09-19T05:15:41Z", "xmlid": "mms3_hpca_oq"}, "name": "ion energy flux : burst", "processing_level": "Calibrated", "sampling": "0.625S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MMS/MMS3/HPCA/mms3-hpca-brst", "start_date": "2015-07-05T21:43:52Z", "stop_date": "2023-09-19T05:15:41Z", "xmlid": "mms3-hpca-brst"}, "name": "HPCA", "xmlid": "MMS3_hpca"}, "__spz_name__": "MMS3", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "MMS3", "att": "auto/MMS3", "desc": "Magnetospheric Multiscale Mission #3
2015-09-01T00:00:00", "is_public": "True", "name": "MMS3", "target": "Earth.Magnetosphere", "xmlid": "MMS3"}, "MMS4": {"Analytical_Models": {"__spz_name__": "Analytical Models", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "MMS4_models", "att": "auto/MMS4_models", "desc": "", "is_public": "True", "mms4_msph_models": {"PriorID": "mms4-orb-t89d", "__spz_name__": "distance to neutral sheet", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mms4-msph-models", "att": "auto/mms4-msph-models", "dataSource": "IRAP", "desc": "Distance to model neutral sheet
Sampling: 1M
Provider: IRAP", "dz_fairfield70_mms4_xyz_gse": {"__spz_name__": "dZ Fairfield70", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "dz_fairfield70_mms4_xyz_gse", "dataset": "mms4-msph-models", "description": "Distance (Re) from s/c location to Fairfield1970 neutral sheet position. Depends on spacecraft location in SM coordinates and dipole tilt angle. Valid for Ysm less than 15 Re.", "is_public": "True", "name": "dZ Fairfield70", "predefined": "1", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "template": "dz_fairfield70_##ORBIT##", "units": "Re", "xmlid": "dz_fairfield70_mms4_xyz_gse"}, "dz_fairfield80_mms4_xyz_gse": {"__spz_name__": "dZ Fairfield80", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "dz_fairfield80_mms4_xyz_gse", "dataset": "mms4-msph-models", "description": "Distance (Re) from s/c location to Fairfield1980 neutral sheet position. Depends on spacecraft location in SM coordinates and dipole tilt angle.", "is_public": "True", "name": "dZ Fairfield80", "predefined": "1", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "template": "dz_fairfield80_##ORBIT##", "units": "Re", "xmlid": "dz_fairfield80_mms4_xyz_gse"}, "is_public": "True", "lastModificationDate": "2024-10-07T05:33:33Z", "lastUpdate": "2024-10-07T05:33:33Z", "measurement_type": "Ephemeris", "name": "distance to neutral sheet", "processing_level": "Calibrated", "sampling": "1M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MMS/MMS4/Models/mms4-msph-models", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "target": "Earth", "xmlid": "mms4-msph-models"}, "mms4_t96_model": {"PriorID": "mms4-orb-t89d", "__spz_name__": "T96 field model", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mms4-t96-model", "att": "auto/mms4-t96-model", "b_t96gse_mms4_xyz_gse": {"__spz_name__": "b_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_t96gse_mms4_xyz_gse", "b_t96gse_mms4_xyz_gse0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gse_mms4_xyz_gse(0)", "dataset": "mms4-t96-model", "index1": "0", "is_public": "True", "name": "bx", "parameter": "b_t96gse_mms4_xyz_gse", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "b_t96gse_mms4_xyz_gse(0)"}, "b_t96gse_mms4_xyz_gse1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gse_mms4_xyz_gse(1)", "dataset": "mms4-t96-model", "index1": "1", "is_public": "True", "name": "by", "parameter": "b_t96gse_mms4_xyz_gse", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "b_t96gse_mms4_xyz_gse(1)"}, "b_t96gse_mms4_xyz_gse2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gse_mms4_xyz_gse(2)", "dataset": "mms4-t96-model", "index1": "2", "is_public": "True", "name": "bz", "parameter": "b_t96gse_mms4_xyz_gse", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "b_t96gse_mms4_xyz_gse(2)"}, "dataset": "mms4-t96-model", "is_public": "True", "name": "b_gse", "predefined": "1", "size": "3", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "template": "b_t96gse_##ORBIT##", "units": "nT", "xmlid": "b_t96gse_mms4_xyz_gse"}, "b_t96gsm_mms4_xyz_gse": {"__spz_name__": "b_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_t96gsm_mms4_xyz_gse", "b_t96gsm_mms4_xyz_gse0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gsm_mms4_xyz_gse(0)", "dataset": "mms4-t96-model", "index1": "0", "is_public": "True", "name": "bx", "parameter": "b_t96gsm_mms4_xyz_gse", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "b_t96gsm_mms4_xyz_gse(0)"}, "b_t96gsm_mms4_xyz_gse1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gsm_mms4_xyz_gse(1)", "dataset": "mms4-t96-model", "index1": "1", "is_public": "True", "name": "by", "parameter": "b_t96gsm_mms4_xyz_gse", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "b_t96gsm_mms4_xyz_gse(1)"}, "b_t96gsm_mms4_xyz_gse2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gsm_mms4_xyz_gse(2)", "dataset": "mms4-t96-model", "index1": "2", "is_public": "True", "name": "bz", "parameter": "b_t96gsm_mms4_xyz_gse", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "b_t96gsm_mms4_xyz_gse(2)"}, "dataset": "mms4-t96-model", "is_public": "True", "name": "b_gsm", "predefined": "1", "size": "3", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "template": "b_t96gsm_##ORBIT##", "units": "nT", "xmlid": "b_t96gsm_mms4_xyz_gse"}, "b_t96tot_mms4_xyz_gse": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_t96tot_mms4_xyz_gse", "dataset": "mms4-t96-model", "is_public": "True", "name": "|b|", "predefined": "1", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "template": "b_t96tot_##ORBIT##", "units": "nT", "xmlid": "b_t96tot_mms4_xyz_gse"}, "dataSource": "IRAP", "desc": "Tsyganenko96 geomagnetospheric magnetic field model
Sampling: 1M
Provider: IRAP", "is_public": "True", "lastModificationDate": "2024-10-07T05:33:33Z", "lastUpdate": "2024-10-07T05:33:33Z", "measurement_type": "MagneticField", "name": "T96 field model", "processing_level": "Calibrated", "sampling": "1M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MMS/MMS4/Models/mms4-t96-model", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "target": "Earth", "xmlid": "mms4-t96-model"}, "name": "Analytical Models", "xmlid": "MMS4_models"}, "EDP": {"__spz_name__": "EDP", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "MMS4_edp", "att": "auto/MMS4_edp", "desc": "Electric field Double Probe
DoubleSphere", "fast": {"__spz_name__": "fast", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "mms4-edp-fast", "is_public": "True", "mms4_edp_dce": {"__spz_name__": "dc e-field", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mms4-edp-dce", "att": "auto/mms4-edp-dce", "dataSource": "LASP", "desc": "dc electric field / fast / l2
Sampling: 0.03S
Provider: LASP", "is_public": "True", "lastModificationDate": "2024-10-07T05:32:16Z", "lastUpdate": "2024-10-07T05:32:16Z", "measurement_type": "ElectricField", "mms4_dce_err": {"__spz_name__": "e : error", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_dce_err", "dataset": "mms4-edp-dce", "display_type": "timeseries", "is_public": "True", "mms4_dce_err0": {"__spz_name__": "ex", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_dce_err(0)", "dataset": "mms4-edp-dce", "index1": "0", "is_public": "True", "name": "ex", "parameter": "mms4_dce_err", "start_date": "2015-09-01T00:00:11Z", "stop_date": "2024-08-14T23:59:59Z", "xmlid": "mms4_dce_err(0)"}, "mms4_dce_err1": {"__spz_name__": "ey", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_dce_err(1)", "dataset": "mms4-edp-dce", "index1": "1", "is_public": "True", "name": "ey", "parameter": "mms4_dce_err", "start_date": "2015-09-01T00:00:11Z", "stop_date": "2024-08-14T23:59:59Z", "xmlid": "mms4_dce_err(1)"}, "mms4_dce_err2": {"__spz_name__": "ez", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_dce_err(2)", "dataset": "mms4-edp-dce", "index1": "2", "is_public": "True", "name": "ez", "parameter": "mms4_dce_err", "start_date": "2015-09-01T00:00:11Z", "stop_date": "2024-08-14T23:59:59Z", "xmlid": "mms4_dce_err(2)"}, "name": "e : error", "size": "3", "start_date": "2015-09-01T00:00:11Z", "stop_date": "2024-08-14T23:59:59Z", "units": "mV/m", "xmlid": "mms4_dce_err"}, "mms4_dce_gse": {"__spz_name__": "e_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_dce_gse", "dataset": "mms4-edp-dce", "display_type": "timeseries", "is_public": "True", "mms4_dce_gse0": {"__spz_name__": "ex", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_dce_gse(0)", "dataset": "mms4-edp-dce", "index1": "0", "is_public": "True", "name": "ex", "parameter": "mms4_dce_gse", "start_date": "2015-09-01T00:00:11Z", "stop_date": "2024-08-14T23:59:59Z", "xmlid": "mms4_dce_gse(0)"}, "mms4_dce_gse1": {"__spz_name__": "ey", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_dce_gse(1)", "dataset": "mms4-edp-dce", "index1": "1", "is_public": "True", "name": "ey", "parameter": "mms4_dce_gse", "start_date": "2015-09-01T00:00:11Z", "stop_date": "2024-08-14T23:59:59Z", "xmlid": "mms4_dce_gse(1)"}, "mms4_dce_gse2": {"__spz_name__": "ez", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_dce_gse(2)", "dataset": "mms4-edp-dce", "index1": "2", "is_public": "True", "name": "ez", "parameter": "mms4_dce_gse", "start_date": "2015-09-01T00:00:11Z", "stop_date": "2024-08-14T23:59:59Z", "xmlid": "mms4_dce_gse(2)"}, "name": "e_gse", "size": "3", "start_date": "2015-09-01T00:00:11Z", "stop_date": "2024-08-14T23:59:59Z", "units": "mV/m", "xmlid": "mms4_dce_gse"}, "mms4_dce_gsm": {"__spz_name__": "e_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_dce_gsm", "dataset": "mms4-edp-dce", "display_type": "timeseries", "is_public": "True", "mms4_dce_gsm0": {"__spz_name__": "ex", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_dce_gsm(0)", "dataset": "mms4-edp-dce", "index1": "0", "is_public": "True", "name": "ex", "parameter": "mms4_dce_gsm", "start_date": "2015-09-01T00:00:11Z", "stop_date": "2024-08-14T23:59:59Z", "xmlid": "mms4_dce_gsm(0)"}, "mms4_dce_gsm1": {"__spz_name__": "ey", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_dce_gsm(1)", "dataset": "mms4-edp-dce", "index1": "1", "is_public": "True", "name": "ey", "parameter": "mms4_dce_gsm", "start_date": "2015-09-01T00:00:11Z", "stop_date": "2024-08-14T23:59:59Z", "xmlid": "mms4_dce_gsm(1)"}, "mms4_dce_gsm2": {"__spz_name__": "ez", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_dce_gsm(2)", "dataset": "mms4-edp-dce", "index1": "2", "is_public": "True", "name": "ez", "parameter": "mms4_dce_gsm", "start_date": "2015-09-01T00:00:11Z", "stop_date": "2024-08-14T23:59:59Z", "xmlid": "mms4_dce_gsm(2)"}, "name": "e_gsm", "size": "3", "start_date": "2015-09-01T00:00:11Z", "stop_date": "2024-08-14T23:59:59Z", "units": "mV/m", "xmlid": "mms4_dce_gsm"}, "mms4_dce_para": {"__spz_name__": "e_para", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_dce_para", "dataset": "mms4-edp-dce", "display_type": "timeseries", "is_public": "True", "mms4_dce_para0": {"__spz_name__": "e_para", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_dce_para(0)", "dataset": "mms4-edp-dce", "index1": "0", "is_public": "True", "name": "e_para", "parameter": "mms4_dce_para", "start_date": "2015-09-01T00:00:11Z", "stop_date": "2024-08-14T23:59:59Z", "xmlid": "mms4_dce_para(0)"}, "mms4_dce_para1": {"__spz_name__": "e_perp", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_dce_para(1)", "dataset": "mms4-edp-dce", "index1": "1", "is_public": "True", "name": "e_perp", "parameter": "mms4_dce_para", "start_date": "2015-09-01T00:00:11Z", "stop_date": "2024-08-14T23:59:59Z", "xmlid": "mms4_dce_para(1)"}, "name": "e_para", "size": "2", "start_date": "2015-09-01T00:00:11Z", "stop_date": "2024-08-14T23:59:59Z", "units": "mV/m", "xmlid": "mms4_dce_para"}, "mms4_edp_dce_qual": {"__spz_name__": "dce : qual", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_edp_dce_qual", "dataset": "mms4-edp-dce", "description": "Quality indicator (3 good), (2 ok data, use with some caution), (1 bad data, use with caution), (0 Really bad data or no data at all)", "display_type": "timeseries", "is_public": "True", "name": "dce : qual", "start_date": "2015-09-01T00:00:11Z", "stop_date": "2024-08-14T23:59:59Z", "xmlid": "mms4_edp_dce_qual"}, "name": "dc e-field", "processing_level": "Calibrated", "sampling": "0.03S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MMS/MMS4/EDP/mms4-edp-dce", "start_date": "2015-09-01T00:00:11Z", "stop_date": "2024-08-14T23:59:59Z", "xmlid": "mms4-edp-dce"}, "mms4_edp_scpot": {"__spz_name__": "scpot", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mms4-edp-scpot", "att": "auto/mms4-edp-scpot", "dataSource": "LASP", "desc": "sc potential / fast / l2
Sampling: 0.03S
Provider: LASP", "is_public": "True", "lastModificationDate": "2024-10-07T05:32:23Z", "lastUpdate": "2024-10-07T05:32:22Z", "measurement_type": "ElectricField", "mms4_edp_scpot": {"__spz_name__": "sc pot", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_edp_scpot", "dataset": "mms4-edp-scpot", "display_type": "timeseries", "is_public": "True", "name": "sc pot", "start_date": "2015-07-28T13:51:37Z", "stop_date": "2024-09-30T00:04:19Z", "units": "V", "xmlid": "mms4_edp_scpot"}, "mms4_edp_scpot_qual": {"__spz_name__": "sc pot : qual", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_edp_scpot_qual", "dataset": "mms4-edp-scpot", "description": "Quality indicator (3 good), (2 ok data, use with some caution), (1 bad data, use with caution), (0 Really bad data or no data at all)", "display_type": "timeseries", "is_public": "True", "name": "sc pot : qual", "start_date": "2015-07-28T13:51:37Z", "stop_date": "2024-09-30T00:04:19Z", "xmlid": "mms4_edp_scpot_qual"}, "name": "scpot", "processing_level": "Calibrated", "sampling": "0.03S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MMS/MMS4/EDP/mms4-edp-scpot", "start_date": "2015-07-28T13:51:37Z", "stop_date": "2024-09-30T00:04:19Z", "xmlid": "mms4-edp-scpot"}, "name": "fast", "xmlid": "mms4-edp-fast"}, "is_public": "True", "name": "EDP", "survey": {"__spz_name__": "survey", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "mms4-edp-srvy", "is_public": "True", "mms4_edp_hfesp": {"__spz_name__": "e spectral density", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mms4-edp-hfesp", "att": "auto/mms4-edp-hfesp", "dataSource": "LASP", "desc": "ac electric field spectral density / srvy / l2
Sampling: 16S
Provider: LASP", "is_public": "True", "lastModificationDate": "2024-10-07T05:32:06Z", "lastUpdate": "2024-10-07T05:32:05Z", "measurement_type": "ElectricField", "mms4_edp_espec": {"__spz_name__": "e spec dens", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_edp_espec", "dataset": "mms4-edp-hfesp", "display_type": "spectrogram", "is_public": "True", "name": "e spec dens", "start_date": "2015-09-01T00:00:09Z", "stop_date": "2024-09-30T10:26:51Z", "units": "(V/m)\u00b2/Hz", "xmlid": "mms4_edp_espec"}, "name": "e spectral density", "processing_level": "Calibrated", "sampling": "16S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MMS/MMS4/EDP/mms4-edp-hfesp", "start_date": "2015-09-01T00:00:09Z", "stop_date": "2024-09-30T10:26:51Z", "xmlid": "mms4-edp-hfesp"}, "name": "survey", "xmlid": "mms4-edp-srvy"}, "xmlid": "MMS4_edp"}, "Ephemeris": {"__spz_name__": "Ephemeris", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "MMS4_ephemeris", "att": "auto/MMS4_ephemeris", "desc": "", "is_public": "True", "mms4_orb_t89d": {"__spz_name__": "orbit t89d", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mms4-orb-t89d", "att": "auto/mms4-orb-t89d", "dataSource": "LANL", "desc": "
Sampling: 30S
Provider: LANL", "is_public": "True", "lastModificationDate": "2024-10-07T05:33:33Z", "lastUpdate": "2024-10-07T05:33:33Z", "measurement_type": "Ephemeris", "mms4_r": {"__spz_name__": "distance mms4-earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_r", "dataset": "mms4-orb-t89d", "display_type": "timeseries", "is_public": "True", "name": "distance mms4-earth", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "ucd": "pos.distance;instr.obsty", "units": "Re", "xmlid": "mms4_r"}, "mms4_xyz_gse": {"__spz_name__": "xyz_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_xyz_gse", "dataset": "mms4-orb-t89d", "description": "Spacecraft position in GSE", "display_type": "timeseries", "is_public": "True", "mms4_xyz_gse0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_xyz_gse(0)", "dataset": "mms4-orb-t89d", "index1": "0", "is_public": "True", "name": "x", "parameter": "mms4_xyz_gse", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "mms4_xyz_gse(0)"}, "mms4_xyz_gse1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_xyz_gse(1)", "dataset": "mms4-orb-t89d", "index1": "1", "is_public": "True", "name": "y", "parameter": "mms4_xyz_gse", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "mms4_xyz_gse(1)"}, "mms4_xyz_gse2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_xyz_gse(2)", "dataset": "mms4-orb-t89d", "index1": "2", "is_public": "True", "name": "z", "parameter": "mms4_xyz_gse", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "mms4_xyz_gse(2)"}, "name": "xyz_gse", "size": "3", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "Re", "xmlid": "mms4_xyz_gse"}, "mms4_xyz_gsm": {"__spz_name__": "xyz_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_xyz_gsm", "dataset": "mms4-orb-t89d", "description": "Spacecraft position in GSM", "display_type": "timeseries", "is_public": "True", "mms4_xyz_gsm0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_xyz_gsm(0)", "dataset": "mms4-orb-t89d", "index1": "0", "is_public": "True", "name": "x", "parameter": "mms4_xyz_gsm", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "mms4_xyz_gsm(0)"}, "mms4_xyz_gsm1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_xyz_gsm(1)", "dataset": "mms4-orb-t89d", "index1": "1", "is_public": "True", "name": "y", "parameter": "mms4_xyz_gsm", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "mms4_xyz_gsm(1)"}, "mms4_xyz_gsm2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_xyz_gsm(2)", "dataset": "mms4-orb-t89d", "index1": "2", "is_public": "True", "name": "z", "parameter": "mms4_xyz_gsm", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "mms4_xyz_gsm(2)"}, "name": "xyz_gsm", "size": "3", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "Re", "xmlid": "mms4_xyz_gsm"}, "name": "orbit t89d", "processing_level": "Calibrated", "sampling": "30S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MMS/MMS4/Ephemeris/mms4-orb-t89d", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "mms4-orb-t89d"}, "name": "Ephemeris", "xmlid": "MMS4_ephemeris"}, "FGM": {"__spz_name__": "FGM", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "MMS4_fgm", "att": "auto/MMS4_fgm", "desc": "Fluxgate Magnetometer
Magnetometer", "is_public": "True", "mms4_fgm_brst": {"__spz_name__": "burst", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mms4-fgm-brst", "att": "auto/mms4-fgm-brst", "dataSource": "LASP", "desc": "burst
Sampling: 0.01S
Provider: LASP", "is_public": "True", "lastModificationDate": "2024-10-04T05:57:21Z", "lastUpdate": "2024-08-13T12:52:50Z", "measurement_type": "MagneticField", "mms4_brst_bgse": {"__spz_name__": "b_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_brst_bgse", "dataset": "mms4-fgm-brst", "display_type": "timeseries", "is_public": "True", "mms4_brst_bgse0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_bgse(0)", "dataset": "mms4-fgm-brst", "index1": "0", "is_public": "True", "name": "bx", "parameter": "mms4_brst_bgse", "start_date": "2015-09-01T12:11:14Z", "stop_date": "2024-06-30T17:58:32Z", "xmlid": "mms4_brst_bgse(0)"}, "mms4_brst_bgse1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_bgse(1)", "dataset": "mms4-fgm-brst", "index1": "1", "is_public": "True", "name": "by", "parameter": "mms4_brst_bgse", "start_date": "2015-09-01T12:11:14Z", "stop_date": "2024-06-30T17:58:32Z", "xmlid": "mms4_brst_bgse(1)"}, "mms4_brst_bgse2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_bgse(2)", "dataset": "mms4-fgm-brst", "index1": "2", "is_public": "True", "name": "bz", "parameter": "mms4_brst_bgse", "start_date": "2015-09-01T12:11:14Z", "stop_date": "2024-06-30T17:58:32Z", "xmlid": "mms4_brst_bgse(2)"}, "name": "b_gse", "size": "3", "start_date": "2015-09-01T12:11:14Z", "stop_date": "2024-06-30T17:58:32Z", "units": "nT", "xmlid": "mms4_brst_bgse"}, "mms4_brst_bgsm": {"__spz_name__": "b_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_brst_bgsm", "dataset": "mms4-fgm-brst", "display_type": "timeseries", "is_public": "True", "mms4_brst_bgsm0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_bgsm(0)", "dataset": "mms4-fgm-brst", "index1": "0", "is_public": "True", "name": "bx", "parameter": "mms4_brst_bgsm", "start_date": "2015-09-01T12:11:14Z", "stop_date": "2024-06-30T17:58:32Z", "xmlid": "mms4_brst_bgsm(0)"}, "mms4_brst_bgsm1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_bgsm(1)", "dataset": "mms4-fgm-brst", "index1": "1", "is_public": "True", "name": "by", "parameter": "mms4_brst_bgsm", "start_date": "2015-09-01T12:11:14Z", "stop_date": "2024-06-30T17:58:32Z", "xmlid": "mms4_brst_bgsm(1)"}, "mms4_brst_bgsm2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_bgsm(2)", "dataset": "mms4-fgm-brst", "index1": "2", "is_public": "True", "name": "bz", "parameter": "mms4_brst_bgsm", "start_date": "2015-09-01T12:11:14Z", "stop_date": "2024-06-30T17:58:32Z", "xmlid": "mms4_brst_bgsm(2)"}, "name": "b_gsm", "size": "3", "start_date": "2015-09-01T12:11:14Z", "stop_date": "2024-06-30T17:58:32Z", "units": "nT", "xmlid": "mms4_brst_bgsm"}, "mms4_brst_btot": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_brst_btot", "dataset": "mms4-fgm-brst", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "2015-09-01T12:11:14Z", "stop_date": "2024-06-30T17:58:32Z", "units": "nT", "xmlid": "mms4_brst_btot"}, "name": "burst", "processing_level": "Calibrated", "sampling": "0.01S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MMS/MMS4/FGM/mms4-fgm-brst", "start_date": "2015-09-01T12:11:14Z", "stop_date": "2024-06-30T17:58:32Z", "xmlid": "mms4-fgm-brst"}, "mms4_fgm_srvy": {"__spz_name__": "survey", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mms4-fgm-srvy", "att": "auto/mms4-fgm-srvy", "dataSource": "LASP", "desc": "survey
MinSampling: 0.0625S; MaxSampling: 0.125S
Provider: LASP", "is_public": "True", "lastModificationDate": "2024-10-07T05:33:22Z", "lastUpdate": "2024-10-07T05:33:19Z", "maxSampling": "0.125S", "measurement_type": "MagneticField", "mms4_b_gse": {"__spz_name__": "b_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_b_gse", "dataset": "mms4-fgm-srvy", "display_type": "timeseries", "is_public": "True", "mms4_b_gse0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_b_gse(0)", "dataset": "mms4-fgm-srvy", "index1": "0", "is_public": "True", "name": "bx", "parameter": "mms4_b_gse", "start_date": "2015-09-01T00:00:04Z", "stop_date": "2024-09-02T00:00:03Z", "xmlid": "mms4_b_gse(0)"}, "mms4_b_gse1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_b_gse(1)", "dataset": "mms4-fgm-srvy", "index1": "1", "is_public": "True", "name": "by", "parameter": "mms4_b_gse", "start_date": "2015-09-01T00:00:04Z", "stop_date": "2024-09-02T00:00:03Z", "xmlid": "mms4_b_gse(1)"}, "mms4_b_gse2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_b_gse(2)", "dataset": "mms4-fgm-srvy", "index1": "2", "is_public": "True", "name": "bz", "parameter": "mms4_b_gse", "start_date": "2015-09-01T00:00:04Z", "stop_date": "2024-09-02T00:00:03Z", "xmlid": "mms4_b_gse(2)"}, "name": "b_gse", "size": "3", "start_date": "2015-09-01T00:00:04Z", "stop_date": "2024-09-02T00:00:03Z", "units": "nT", "xmlid": "mms4_b_gse"}, "mms4_b_gsm": {"__spz_name__": "b_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_b_gsm", "dataset": "mms4-fgm-srvy", "display_type": "timeseries", "is_public": "True", "mms4_b_gsm0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_b_gsm(0)", "dataset": "mms4-fgm-srvy", "index1": "0", "is_public": "True", "name": "bx", "parameter": "mms4_b_gsm", "start_date": "2015-09-01T00:00:04Z", "stop_date": "2024-09-02T00:00:03Z", "xmlid": "mms4_b_gsm(0)"}, "mms4_b_gsm1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_b_gsm(1)", "dataset": "mms4-fgm-srvy", "index1": "1", "is_public": "True", "name": "by", "parameter": "mms4_b_gsm", "start_date": "2015-09-01T00:00:04Z", "stop_date": "2024-09-02T00:00:03Z", "xmlid": "mms4_b_gsm(1)"}, "mms4_b_gsm2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_b_gsm(2)", "dataset": "mms4-fgm-srvy", "index1": "2", "is_public": "True", "name": "bz", "parameter": "mms4_b_gsm", "start_date": "2015-09-01T00:00:04Z", "stop_date": "2024-09-02T00:00:03Z", "xmlid": "mms4_b_gsm(2)"}, "name": "b_gsm", "size": "3", "start_date": "2015-09-01T00:00:04Z", "stop_date": "2024-09-02T00:00:03Z", "units": "nT", "xmlid": "mms4_b_gsm"}, "mms4_b_tot": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_b_tot", "dataset": "mms4-fgm-srvy", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "2015-09-01T00:00:04Z", "stop_date": "2024-09-02T00:00:03Z", "units": "nT", "xmlid": "mms4_b_tot"}, "mms4_pres_m": {"__spz_name__": "pressure_b", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_pres_m", "dataset": "mms4-fgm-srvy", "display_type": "timeseries", "is_public": "True", "name": "pressure_b", "start_date": "2015-09-01T00:00:04Z", "stop_date": "2024-09-02T00:00:03Z", "units": "nPa", "xmlid": "mms4_pres_m"}, "name": "survey", "processing_level": "Calibrated", "sampling": "0.0625S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MMS/MMS4/FGM/mms4-fgm-srvy", "start_date": "2015-09-01T00:00:04Z", "stop_date": "2024-09-02T00:00:03Z", "xmlid": "mms4-fgm-srvy"}, "name": "FGM", "xmlid": "MMS4_fgm"}, "FPI": {"__spz_name__": "FPI", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "MMS4_fpi", "att": "auto/MMS4_fpi", "burst_mode": {"__spz_name__": "burst mode", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "mms4-fpi-brst", "is_public": "True", "mms4_fpi_brst_current": {"PriorID": "mms4-fpi-brst.desm", "__spz_name__": "electric current", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mms4-fpi-brst.current", "att": "auto/mms4-fpi-brst.current", "dataSource": "LASP", "desc": "electric current : burst mode
Sampling: 0.03S
Provider: LASP", "is_public": "True", "lastModificationDate": "2024-10-04T06:09:32Z", "lastUpdate": "2022-10-29T06:39:27Z", "measurement_type": "ThermalPlasma", "mms4_brst_jgse": {"__spz_name__": "j_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_brst_jgse", "dataset": "mms4-fpi-brst.current", "description": "Electric current = 1.6e-10*(mms4_brst_desm_n+mms4_brst_dism_n)*0.5*(mms4_brst_dism_v-mms4_brst_desm_v)", "display_type": "timeseries", "is_public": "True", "mms4_brst_jgse0": {"__spz_name__": "jx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_jgse(0)", "dataset": "mms4-fpi-brst.current", "index1": "0", "is_public": "True", "name": "jx", "parameter": "mms4_brst_jgse", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2022-03-10T09:30:02Z", "xmlid": "mms4_brst_jgse(0)"}, "mms4_brst_jgse1": {"__spz_name__": "jy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_jgse(1)", "dataset": "mms4-fpi-brst.current", "index1": "1", "is_public": "True", "name": "jy", "parameter": "mms4_brst_jgse", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2022-03-10T09:30:02Z", "xmlid": "mms4_brst_jgse(1)"}, "mms4_brst_jgse2": {"__spz_name__": "jz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_jgse(2)", "dataset": "mms4-fpi-brst.current", "index1": "2", "is_public": "True", "name": "jz", "parameter": "mms4_brst_jgse", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2022-03-10T09:30:02Z", "xmlid": "mms4_brst_jgse(2)"}, "name": "j_gse", "size": "3", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2022-03-10T09:30:02Z", "units": "A/m\u00b2", "xmlid": "mms4_brst_jgse"}, "name": "electric current", "processing_level": "Calibrated", "sampling": "0.03S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MMS/MMS4/FPI/mms4-fpi-brst.current", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2022-03-10T09:30:02Z", "xmlid": "mms4-fpi-brst.current"}, "mms4_fpi_brst_desm": {"__spz_name__": "DES : electrons", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mms4-fpi-brst.desm", "att": "auto/mms4-fpi-brst.desm", "dataSource": "LASP", "desc": "Dual Electron Spectrometers : burst mode
Sampling: 0.03S
Provider: LASP", "is_public": "True", "lastModificationDate": "2024-10-04T06:09:32Z", "lastUpdate": "2022-10-29T06:39:27Z", "measurement_type": "ThermalPlasma", "mms4_brst_des_anti": {"__spz_name__": "elec eflux : anti", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_brst_des_anti", "dataset": "mms4-fpi-brst.desm", "display_type": "spectrogram", "is_public": "True", "name": "elec eflux : anti", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2022-03-10T09:30:02Z", "units": "keV/(cm\u00b2-s-sr-keV)", "xmlid": "mms4_brst_des_anti"}, "mms4_brst_des_pahigh": {"__spz_name__": "pa dist : highen", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_brst_des_pahigh", "dataset": "mms4-fpi-brst.desm", "description": "High energy bin: 2 keV - 30 keV. \n Pitch-angle bin size: 6 deg. Note that pitch angles are calculated in the spacecraft frame; \n i.e., not shifted by the bulk velocity", "display_type": "spectrogram", "is_public": "True", "name": "pa dist : highen", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2022-03-10T09:30:02Z", "units": "keV/(cm\u00b2-s-sr-keV)", "xmlid": "mms4_brst_des_pahigh"}, "mms4_brst_des_palow": {"__spz_name__": "pa dist : lowen", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_brst_des_palow", "dataset": "mms4-fpi-brst.desm", "description": "Low energy bin: 0 eV - 200 eV. \n Pitch-angle bin size: 6 deg. Note that pitch angles are calculated in the spacecraft frame; \n i.e., not shifted by the bulk velocity", "display_type": "spectrogram", "is_public": "True", "name": "pa dist : lowen", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2022-03-10T09:30:02Z", "units": "keV/(cm\u00b2-s-sr-keV)", "xmlid": "mms4_brst_des_palow"}, "mms4_brst_des_pamid": {"__spz_name__": "pa dist : miden", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_brst_des_pamid", "dataset": "mms4-fpi-brst.desm", "description": "Mid energy bin: 200 eV - 2 keV. \n Pitch-angle bin size: 6 deg. Note that pitch angles are calculated in the spacecraft frame; \n i.e., not shifted by the bulk velocity", "display_type": "spectrogram", "is_public": "True", "name": "pa dist : miden", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2022-03-10T09:30:02Z", "units": "keV/(cm\u00b2-s-sr-keV)", "xmlid": "mms4_brst_des_pamid"}, "mms4_brst_des_para": {"__spz_name__": "elec eflux : para", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_brst_des_para", "dataset": "mms4-fpi-brst.desm", "display_type": "spectrogram", "is_public": "True", "name": "elec eflux : para", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2022-03-10T09:30:02Z", "units": "keV/(cm\u00b2-s-sr-keV)", "xmlid": "mms4_brst_des_para"}, "mms4_brst_des_perp": {"__spz_name__": "elec eflux : perp", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_brst_des_perp", "dataset": "mms4-fpi-brst.desm", "display_type": "spectrogram", "is_public": "True", "name": "elec eflux : perp", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2022-03-10T09:30:02Z", "units": "keV/(cm\u00b2-s-sr-keV)", "xmlid": "mms4_brst_des_perp"}, "mms4_brst_desm_err": {"__spz_name__": "error flags", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_brst_desm_err", "dataset": "mms4-fpi-brst.desm", "display_type": "timeseries", "is_public": "True", "name": "error flags", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2022-03-10T09:30:02Z", "xmlid": "mms4_brst_desm_err"}, "mms4_brst_desm_hq": {"__spz_name__": "heatq_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_brst_desm_hq", "dataset": "mms4-fpi-brst.desm", "display_type": "timeseries", "is_public": "True", "mms4_brst_desm_hq0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_desm_hq(0)", "dataset": "mms4-fpi-brst.desm", "index1": "0", "is_public": "True", "name": "x", "parameter": "mms4_brst_desm_hq", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2022-03-10T09:30:02Z", "xmlid": "mms4_brst_desm_hq(0)"}, "mms4_brst_desm_hq1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_desm_hq(1)", "dataset": "mms4-fpi-brst.desm", "index1": "1", "is_public": "True", "name": "y", "parameter": "mms4_brst_desm_hq", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2022-03-10T09:30:02Z", "xmlid": "mms4_brst_desm_hq(1)"}, "mms4_brst_desm_hq2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_desm_hq(2)", "dataset": "mms4-fpi-brst.desm", "index1": "2", "is_public": "True", "name": "z", "parameter": "mms4_brst_desm_hq", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2022-03-10T09:30:02Z", "xmlid": "mms4_brst_desm_hq(2)"}, "name": "heatq_gse", "size": "3", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2022-03-10T09:30:02Z", "ucd": "phys.pressure", "units": "mW/m\u00b2", "xmlid": "mms4_brst_desm_hq"}, "mms4_brst_desm_hqerr": {"__spz_name__": "heatq_gse : err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_brst_desm_hqerr", "dataset": "mms4-fpi-brst.desm", "display_type": "timeseries", "is_public": "True", "mms4_brst_desm_hqerr0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_desm_hqerr(0)", "dataset": "mms4-fpi-brst.desm", "index1": "0", "is_public": "True", "name": "x", "parameter": "mms4_brst_desm_hqerr", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2022-03-10T09:30:02Z", "xmlid": "mms4_brst_desm_hqerr(0)"}, "mms4_brst_desm_hqerr1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_desm_hqerr(1)", "dataset": "mms4-fpi-brst.desm", "index1": "1", "is_public": "True", "name": "y", "parameter": "mms4_brst_desm_hqerr", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2022-03-10T09:30:02Z", "xmlid": "mms4_brst_desm_hqerr(1)"}, "mms4_brst_desm_hqerr2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_desm_hqerr(2)", "dataset": "mms4-fpi-brst.desm", "index1": "2", "is_public": "True", "name": "z", "parameter": "mms4_brst_desm_hqerr", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2022-03-10T09:30:02Z", "xmlid": "mms4_brst_desm_hqerr(2)"}, "name": "heatq_gse : err", "size": "3", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2022-03-10T09:30:02Z", "ucd": "phys.pressure", "units": "mW/m\u00b2", "xmlid": "mms4_brst_desm_hqerr"}, "mms4_brst_desm_n": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_brst_desm_n", "dataset": "mms4-fpi-brst.desm", "display_type": "timeseries", "is_public": "True", "name": "density", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2022-03-10T09:30:02Z", "units": "cm\u207b\u00b3", "xmlid": "mms4_brst_desm_n"}, "mms4_brst_desm_nerr": {"__spz_name__": "density : err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_brst_desm_nerr", "dataset": "mms4-fpi-brst.desm", "display_type": "timeseries", "is_public": "True", "name": "density : err", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2022-03-10T09:30:02Z", "units": "cm\u207b\u00b3", "xmlid": "mms4_brst_desm_nerr"}, "mms4_brst_desm_spom": {"__spz_name__": "elec eflux : omni", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_brst_desm_spom", "dataset": "mms4-fpi-brst.desm", "display_type": "spectrogram", "is_public": "True", "name": "elec eflux : omni", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2022-03-10T09:30:02Z", "units": "keV/(cm\u00b2-s-sr-keV)", "xmlid": "mms4_brst_desm_spom"}, "mms4_brst_desm_t": {"__spz_name__": "temp_tensor_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_brst_desm_t", "dataset": "mms4-fpi-brst.desm", "display_type": "timeseries", "is_public": "True", "mms4_brst_desm_t0": {"__spz_name__": "xx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_desm_t(0)", "dataset": "mms4-fpi-brst.desm", "index1": "0", "is_public": "True", "name": "xx", "parameter": "mms4_brst_desm_t", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2022-03-10T09:30:02Z", "xmlid": "mms4_brst_desm_t(0)"}, "mms4_brst_desm_t1": {"__spz_name__": "xy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_desm_t(1)", "dataset": "mms4-fpi-brst.desm", "index1": "1", "is_public": "True", "name": "xy", "parameter": "mms4_brst_desm_t", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2022-03-10T09:30:02Z", "xmlid": "mms4_brst_desm_t(1)"}, "mms4_brst_desm_t2": {"__spz_name__": "xz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_desm_t(2)", "dataset": "mms4-fpi-brst.desm", "index1": "2", "is_public": "True", "name": "xz", "parameter": "mms4_brst_desm_t", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2022-03-10T09:30:02Z", "xmlid": "mms4_brst_desm_t(2)"}, "mms4_brst_desm_t3": {"__spz_name__": "yx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_desm_t(3)", "dataset": "mms4-fpi-brst.desm", "index1": "3", "is_public": "True", "name": "yx", "parameter": "mms4_brst_desm_t", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2022-03-10T09:30:02Z", "xmlid": "mms4_brst_desm_t(3)"}, "mms4_brst_desm_t4": {"__spz_name__": "yy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_desm_t(4)", "dataset": "mms4-fpi-brst.desm", "index1": "4", "is_public": "True", "name": "yy", "parameter": "mms4_brst_desm_t", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2022-03-10T09:30:02Z", "xmlid": "mms4_brst_desm_t(4)"}, "mms4_brst_desm_t5": {"__spz_name__": "yz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_desm_t(5)", "dataset": "mms4-fpi-brst.desm", "index1": "5", "is_public": "True", "name": "yz", "parameter": "mms4_brst_desm_t", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2022-03-10T09:30:02Z", "xmlid": "mms4_brst_desm_t(5)"}, "mms4_brst_desm_t6": {"__spz_name__": "zx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_desm_t(6)", "dataset": "mms4-fpi-brst.desm", "index1": "6", "is_public": "True", "name": "zx", "parameter": "mms4_brst_desm_t", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2022-03-10T09:30:02Z", "xmlid": "mms4_brst_desm_t(6)"}, "mms4_brst_desm_t7": {"__spz_name__": "zy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_desm_t(7)", "dataset": "mms4-fpi-brst.desm", "index1": "7", "is_public": "True", "name": "zy", "parameter": "mms4_brst_desm_t", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2022-03-10T09:30:02Z", "xmlid": "mms4_brst_desm_t(7)"}, "mms4_brst_desm_t8": {"__spz_name__": "zz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_desm_t(8)", "dataset": "mms4-fpi-brst.desm", "index1": "8", "is_public": "True", "name": "zz", "parameter": "mms4_brst_desm_t", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2022-03-10T09:30:02Z", "xmlid": "mms4_brst_desm_t(8)"}, "name": "temp_tensor_gse", "size": "9", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2022-03-10T09:30:02Z", "units": "eV", "xmlid": "mms4_brst_desm_t"}, "mms4_brst_desm_tpar": {"__spz_name__": "t_para", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_brst_desm_tpar", "dataset": "mms4-fpi-brst.desm", "display_type": "timeseries", "is_public": "True", "name": "t_para", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2022-03-10T09:30:02Z", "units": "eV", "xmlid": "mms4_brst_desm_tpar"}, "mms4_brst_desm_tperp": {"__spz_name__": "t_perp", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_brst_desm_tperp", "dataset": "mms4-fpi-brst.desm", "display_type": "timeseries", "is_public": "True", "name": "t_perp", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2022-03-10T09:30:02Z", "units": "eV", "xmlid": "mms4_brst_desm_tperp"}, "mms4_brst_desm_v": {"__spz_name__": "v_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_brst_desm_v", "dataset": "mms4-fpi-brst.desm", "display_type": "timeseries", "is_public": "True", "mms4_brst_desm_v0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_desm_v(0)", "dataset": "mms4-fpi-brst.desm", "index1": "0", "is_public": "True", "name": "vx", "parameter": "mms4_brst_desm_v", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2022-03-10T09:30:02Z", "xmlid": "mms4_brst_desm_v(0)"}, "mms4_brst_desm_v1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_desm_v(1)", "dataset": "mms4-fpi-brst.desm", "index1": "1", "is_public": "True", "name": "vy", "parameter": "mms4_brst_desm_v", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2022-03-10T09:30:02Z", "xmlid": "mms4_brst_desm_v(1)"}, "mms4_brst_desm_v2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_desm_v(2)", "dataset": "mms4-fpi-brst.desm", "index1": "2", "is_public": "True", "name": "vz", "parameter": "mms4_brst_desm_v", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2022-03-10T09:30:02Z", "xmlid": "mms4_brst_desm_v(2)"}, "name": "v_gse", "size": "3", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2022-03-10T09:30:02Z", "units": "km/s", "xmlid": "mms4_brst_desm_v"}, "mms4_brst_desm_verr": {"__spz_name__": "v_gse : err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_brst_desm_verr", "dataset": "mms4-fpi-brst.desm", "display_type": "timeseries", "is_public": "True", "mms4_brst_desm_verr0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_desm_verr(0)", "dataset": "mms4-fpi-brst.desm", "index1": "0", "is_public": "True", "name": "vx", "parameter": "mms4_brst_desm_verr", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2022-03-10T09:30:02Z", "xmlid": "mms4_brst_desm_verr(0)"}, "mms4_brst_desm_verr1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_desm_verr(1)", "dataset": "mms4-fpi-brst.desm", "index1": "1", "is_public": "True", "name": "vy", "parameter": "mms4_brst_desm_verr", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2022-03-10T09:30:02Z", "xmlid": "mms4_brst_desm_verr(1)"}, "mms4_brst_desm_verr2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_desm_verr(2)", "dataset": "mms4-fpi-brst.desm", "index1": "2", "is_public": "True", "name": "vz", "parameter": "mms4_brst_desm_verr", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2022-03-10T09:30:02Z", "xmlid": "mms4_brst_desm_verr(2)"}, "name": "v_gse : err", "size": "3", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2022-03-10T09:30:02Z", "units": "km/s", "xmlid": "mms4_brst_desm_verr"}, "mms4_brst_desmpres": {"__spz_name__": "press_tensor_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_brst_desmpres", "dataset": "mms4-fpi-brst.desm", "display_type": "timeseries", "is_public": "True", "mms4_brst_desmpres0": {"__spz_name__": "xx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_desmpres(0)", "dataset": "mms4-fpi-brst.desm", "index1": "0", "is_public": "True", "name": "xx", "parameter": "mms4_brst_desmpres", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2022-03-10T09:30:02Z", "xmlid": "mms4_brst_desmpres(0)"}, "mms4_brst_desmpres1": {"__spz_name__": "xy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_desmpres(1)", "dataset": "mms4-fpi-brst.desm", "index1": "1", "is_public": "True", "name": "xy", "parameter": "mms4_brst_desmpres", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2022-03-10T09:30:02Z", "xmlid": "mms4_brst_desmpres(1)"}, "mms4_brst_desmpres2": {"__spz_name__": "xz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_desmpres(2)", "dataset": "mms4-fpi-brst.desm", "index1": "2", "is_public": "True", "name": "xz", "parameter": "mms4_brst_desmpres", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2022-03-10T09:30:02Z", "xmlid": "mms4_brst_desmpres(2)"}, "mms4_brst_desmpres3": {"__spz_name__": "yx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_desmpres(3)", "dataset": "mms4-fpi-brst.desm", "index1": "3", "is_public": "True", "name": "yx", "parameter": "mms4_brst_desmpres", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2022-03-10T09:30:02Z", "xmlid": "mms4_brst_desmpres(3)"}, "mms4_brst_desmpres4": {"__spz_name__": "yy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_desmpres(4)", "dataset": "mms4-fpi-brst.desm", "index1": "4", "is_public": "True", "name": "yy", "parameter": "mms4_brst_desmpres", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2022-03-10T09:30:02Z", "xmlid": "mms4_brst_desmpres(4)"}, "mms4_brst_desmpres5": {"__spz_name__": "yz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_desmpres(5)", "dataset": "mms4-fpi-brst.desm", "index1": "5", "is_public": "True", "name": "yz", "parameter": "mms4_brst_desmpres", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2022-03-10T09:30:02Z", "xmlid": "mms4_brst_desmpres(5)"}, "mms4_brst_desmpres6": {"__spz_name__": "zx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_desmpres(6)", "dataset": "mms4-fpi-brst.desm", "index1": "6", "is_public": "True", "name": "zx", "parameter": "mms4_brst_desmpres", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2022-03-10T09:30:02Z", "xmlid": "mms4_brst_desmpres(6)"}, "mms4_brst_desmpres7": {"__spz_name__": "zy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_desmpres(7)", "dataset": "mms4-fpi-brst.desm", "index1": "7", "is_public": "True", "name": "zy", "parameter": "mms4_brst_desmpres", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2022-03-10T09:30:02Z", "xmlid": "mms4_brst_desmpres(7)"}, "mms4_brst_desmpres8": {"__spz_name__": "zz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_desmpres(8)", "dataset": "mms4-fpi-brst.desm", "index1": "8", "is_public": "True", "name": "zz", "parameter": "mms4_brst_desmpres", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2022-03-10T09:30:02Z", "xmlid": "mms4_brst_desmpres(8)"}, "name": "press_tensor_gse", "size": "9", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2022-03-10T09:30:02Z", "ucd": "phys.pressure", "units": "nPa", "xmlid": "mms4_brst_desmpres"}, "mms4_brst_desmpreserr": {"__spz_name__": "press_tensor_gse : err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_brst_desmpreserr", "dataset": "mms4-fpi-brst.desm", "display_type": "timeseries", "is_public": "True", "mms4_brst_desmpreserr0": {"__spz_name__": "xx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_desmpreserr(0)", "dataset": "mms4-fpi-brst.desm", "index1": "0", "is_public": "True", "name": "xx", "parameter": "mms4_brst_desmpreserr", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2022-03-10T09:30:02Z", "xmlid": "mms4_brst_desmpreserr(0)"}, "mms4_brst_desmpreserr1": {"__spz_name__": "xy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_desmpreserr(1)", "dataset": "mms4-fpi-brst.desm", "index1": "1", "is_public": "True", "name": "xy", "parameter": "mms4_brst_desmpreserr", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2022-03-10T09:30:02Z", "xmlid": "mms4_brst_desmpreserr(1)"}, "mms4_brst_desmpreserr2": {"__spz_name__": "xz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_desmpreserr(2)", "dataset": "mms4-fpi-brst.desm", "index1": "2", "is_public": "True", "name": "xz", "parameter": "mms4_brst_desmpreserr", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2022-03-10T09:30:02Z", "xmlid": "mms4_brst_desmpreserr(2)"}, "mms4_brst_desmpreserr3": {"__spz_name__": "yx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_desmpreserr(3)", "dataset": "mms4-fpi-brst.desm", "index1": "3", "is_public": "True", "name": "yx", "parameter": "mms4_brst_desmpreserr", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2022-03-10T09:30:02Z", "xmlid": "mms4_brst_desmpreserr(3)"}, "mms4_brst_desmpreserr4": {"__spz_name__": "yy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_desmpreserr(4)", "dataset": "mms4-fpi-brst.desm", "index1": "4", "is_public": "True", "name": "yy", "parameter": "mms4_brst_desmpreserr", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2022-03-10T09:30:02Z", "xmlid": "mms4_brst_desmpreserr(4)"}, "mms4_brst_desmpreserr5": {"__spz_name__": "yz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_desmpreserr(5)", "dataset": "mms4-fpi-brst.desm", "index1": "5", "is_public": "True", "name": "yz", "parameter": "mms4_brst_desmpreserr", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2022-03-10T09:30:02Z", "xmlid": "mms4_brst_desmpreserr(5)"}, "mms4_brst_desmpreserr6": {"__spz_name__": "zx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_desmpreserr(6)", "dataset": "mms4-fpi-brst.desm", "index1": "6", "is_public": "True", "name": "zx", "parameter": "mms4_brst_desmpreserr", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2022-03-10T09:30:02Z", "xmlid": "mms4_brst_desmpreserr(6)"}, "mms4_brst_desmpreserr7": {"__spz_name__": "zy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_desmpreserr(7)", "dataset": "mms4-fpi-brst.desm", "index1": "7", "is_public": "True", "name": "zy", "parameter": "mms4_brst_desmpreserr", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2022-03-10T09:30:02Z", "xmlid": "mms4_brst_desmpreserr(7)"}, "mms4_brst_desmpreserr8": {"__spz_name__": "zz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_desmpreserr(8)", "dataset": "mms4-fpi-brst.desm", "index1": "8", "is_public": "True", "name": "zz", "parameter": "mms4_brst_desmpreserr", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2022-03-10T09:30:02Z", "xmlid": "mms4_brst_desmpreserr(8)"}, "name": "press_tensor_gse : err", "size": "9", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2022-03-10T09:30:02Z", "ucd": "phys.pressure", "units": "nPa", "xmlid": "mms4_brst_desmpreserr"}, "name": "DES : electrons", "processing_level": "Calibrated", "sampling": "0.03S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MMS/MMS4/FPI/mms4-fpi-brst.desm", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2022-03-10T09:30:02Z", "xmlid": "mms4-fpi-brst.desm"}, "mms4_fpi_brst_dism": {"__spz_name__": "DIS : ions", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mms4-fpi-brst.dism", "att": "auto/mms4-fpi-brst.dism", "dataSource": "LASP", "desc": "Dual Ion Spectrometers : burst mode
Sampling: 0.15S
Provider: LASP", "is_public": "True", "lastModificationDate": "2024-10-04T06:21:15Z", "lastUpdate": "2024-10-02T12:52:47Z", "measurement_type": "MagneticField", "mms4_brst_dis_err": {"__spz_name__": "error flags", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_brst_dis_err", "dataset": "mms4-fpi-brst.dism", "display_type": "timeseries", "is_public": "True", "name": "error flags", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2024-06-30T17:58:32Z", "xmlid": "mms4_brst_dis_err"}, "mms4_brst_dis_heatq": {"__spz_name__": "heatq_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_brst_dis_heatq", "dataset": "mms4-fpi-brst.dism", "display_type": "timeseries", "is_public": "True", "mms4_brst_dis_heatq0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_dis_heatq(0)", "dataset": "mms4-fpi-brst.dism", "index1": "0", "is_public": "True", "name": "x", "parameter": "mms4_brst_dis_heatq", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2024-06-30T17:58:32Z", "xmlid": "mms4_brst_dis_heatq(0)"}, "mms4_brst_dis_heatq1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_dis_heatq(1)", "dataset": "mms4-fpi-brst.dism", "index1": "1", "is_public": "True", "name": "y", "parameter": "mms4_brst_dis_heatq", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2024-06-30T17:58:32Z", "xmlid": "mms4_brst_dis_heatq(1)"}, "mms4_brst_dis_heatq2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_dis_heatq(2)", "dataset": "mms4-fpi-brst.dism", "index1": "2", "is_public": "True", "name": "z", "parameter": "mms4_brst_dis_heatq", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2024-06-30T17:58:32Z", "xmlid": "mms4_brst_dis_heatq(2)"}, "name": "heatq_gse", "size": "3", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2024-06-30T17:58:32Z", "ucd": "phys.pressure", "units": "mW/m\u00b2", "xmlid": "mms4_brst_dis_heatq"}, "mms4_brst_dis_heatqerr": {"__spz_name__": "heatq : err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_brst_dis_heatqerr", "dataset": "mms4-fpi-brst.dism", "display_type": "timeseries", "is_public": "True", "mms4_brst_dis_heatqerr0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_dis_heatqerr(0)", "dataset": "mms4-fpi-brst.dism", "index1": "0", "is_public": "True", "name": "x", "parameter": "mms4_brst_dis_heatqerr", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2024-06-30T17:58:32Z", "xmlid": "mms4_brst_dis_heatqerr(0)"}, "mms4_brst_dis_heatqerr1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_dis_heatqerr(1)", "dataset": "mms4-fpi-brst.dism", "index1": "1", "is_public": "True", "name": "y", "parameter": "mms4_brst_dis_heatqerr", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2024-06-30T17:58:32Z", "xmlid": "mms4_brst_dis_heatqerr(1)"}, "mms4_brst_dis_heatqerr2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_dis_heatqerr(2)", "dataset": "mms4-fpi-brst.dism", "index1": "2", "is_public": "True", "name": "z", "parameter": "mms4_brst_dis_heatqerr", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2024-06-30T17:58:32Z", "xmlid": "mms4_brst_dis_heatqerr(2)"}, "name": "heatq : err", "size": "3", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2024-06-30T17:58:32Z", "ucd": "phys.pressure", "units": "mW/m\u00b2", "xmlid": "mms4_brst_dis_heatqerr"}, "mms4_brst_dis_n": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_brst_dis_n", "dataset": "mms4-fpi-brst.dism", "display_type": "timeseries", "is_public": "True", "name": "density", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2024-06-30T17:58:32Z", "units": "cm\u207b\u00b3", "xmlid": "mms4_brst_dis_n"}, "mms4_brst_dis_nerr": {"__spz_name__": "density : err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_brst_dis_nerr", "dataset": "mms4-fpi-brst.dism", "display_type": "timeseries", "is_public": "True", "name": "density : err", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2024-06-30T17:58:32Z", "units": "cm\u207b\u00b3", "xmlid": "mms4_brst_dis_nerr"}, "mms4_brst_dis_omni": {"__spz_name__": "ion eflux : omni", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_brst_dis_omni", "dataset": "mms4-fpi-brst.dism", "display_type": "spectrogram", "is_public": "True", "name": "ion eflux : omni", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2024-06-30T17:58:32Z", "units": "keV/(cm\u00b2-s-sr-keV)", "xmlid": "mms4_brst_dis_omni"}, "mms4_brst_dis_tpara": {"__spz_name__": "t_para", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_brst_dis_tpara", "dataset": "mms4-fpi-brst.dism", "display_type": "timeseries", "is_public": "True", "name": "t_para", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2024-06-30T17:58:32Z", "units": "eV", "xmlid": "mms4_brst_dis_tpara"}, "mms4_brst_dis_tperp": {"__spz_name__": "t_perp", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_brst_dis_tperp", "dataset": "mms4-fpi-brst.dism", "display_type": "timeseries", "is_public": "True", "name": "t_perp", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2024-06-30T17:58:32Z", "units": "eV", "xmlid": "mms4_brst_dis_tperp"}, "mms4_brst_dis_verr": {"__spz_name__": "v_gse : err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_brst_dis_verr", "dataset": "mms4-fpi-brst.dism", "display_type": "timeseries", "is_public": "True", "mms4_brst_dis_verr0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_dis_verr(0)", "dataset": "mms4-fpi-brst.dism", "index1": "0", "is_public": "True", "name": "vx", "parameter": "mms4_brst_dis_verr", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2024-06-30T17:58:32Z", "xmlid": "mms4_brst_dis_verr(0)"}, "mms4_brst_dis_verr1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_dis_verr(1)", "dataset": "mms4-fpi-brst.dism", "index1": "1", "is_public": "True", "name": "vy", "parameter": "mms4_brst_dis_verr", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2024-06-30T17:58:32Z", "xmlid": "mms4_brst_dis_verr(1)"}, "mms4_brst_dis_verr2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_dis_verr(2)", "dataset": "mms4-fpi-brst.dism", "index1": "2", "is_public": "True", "name": "vz", "parameter": "mms4_brst_dis_verr", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2024-06-30T17:58:32Z", "xmlid": "mms4_brst_dis_verr(2)"}, "name": "v_gse : err", "size": "3", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2024-06-30T17:58:32Z", "units": "km/s", "xmlid": "mms4_brst_dis_verr"}, "mms4_brst_dis_vgse": {"__spz_name__": "v_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_brst_dis_vgse", "dataset": "mms4-fpi-brst.dism", "display_type": "timeseries", "is_public": "True", "mms4_brst_dis_vgse0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_dis_vgse(0)", "dataset": "mms4-fpi-brst.dism", "index1": "0", "is_public": "True", "name": "vx", "parameter": "mms4_brst_dis_vgse", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2024-06-30T17:58:32Z", "xmlid": "mms4_brst_dis_vgse(0)"}, "mms4_brst_dis_vgse1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_dis_vgse(1)", "dataset": "mms4-fpi-brst.dism", "index1": "1", "is_public": "True", "name": "vy", "parameter": "mms4_brst_dis_vgse", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2024-06-30T17:58:32Z", "xmlid": "mms4_brst_dis_vgse(1)"}, "mms4_brst_dis_vgse2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_dis_vgse(2)", "dataset": "mms4-fpi-brst.dism", "index1": "2", "is_public": "True", "name": "vz", "parameter": "mms4_brst_dis_vgse", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2024-06-30T17:58:32Z", "xmlid": "mms4_brst_dis_vgse(2)"}, "name": "v_gse", "size": "3", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2024-06-30T17:58:32Z", "units": "km/s", "xmlid": "mms4_brst_dis_vgse"}, "mms4_brst_dispres": {"__spz_name__": "press_tensor_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_brst_dispres", "dataset": "mms4-fpi-brst.dism", "display_type": "timeseries", "is_public": "True", "mms4_brst_dispres0": {"__spz_name__": "xx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_dispres(0)", "dataset": "mms4-fpi-brst.dism", "index1": "0", "is_public": "True", "name": "xx", "parameter": "mms4_brst_dispres", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2024-06-30T17:58:32Z", "xmlid": "mms4_brst_dispres(0)"}, "mms4_brst_dispres1": {"__spz_name__": "xy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_dispres(1)", "dataset": "mms4-fpi-brst.dism", "index1": "1", "is_public": "True", "name": "xy", "parameter": "mms4_brst_dispres", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2024-06-30T17:58:32Z", "xmlid": "mms4_brst_dispres(1)"}, "mms4_brst_dispres2": {"__spz_name__": "xz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_dispres(2)", "dataset": "mms4-fpi-brst.dism", "index1": "2", "is_public": "True", "name": "xz", "parameter": "mms4_brst_dispres", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2024-06-30T17:58:32Z", "xmlid": "mms4_brst_dispres(2)"}, "mms4_brst_dispres3": {"__spz_name__": "yx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_dispres(3)", "dataset": "mms4-fpi-brst.dism", "index1": "3", "is_public": "True", "name": "yx", "parameter": "mms4_brst_dispres", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2024-06-30T17:58:32Z", "xmlid": "mms4_brst_dispres(3)"}, "mms4_brst_dispres4": {"__spz_name__": "yy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_dispres(4)", "dataset": "mms4-fpi-brst.dism", "index1": "4", "is_public": "True", "name": "yy", "parameter": "mms4_brst_dispres", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2024-06-30T17:58:32Z", "xmlid": "mms4_brst_dispres(4)"}, "mms4_brst_dispres5": {"__spz_name__": "yz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_dispres(5)", "dataset": "mms4-fpi-brst.dism", "index1": "5", "is_public": "True", "name": "yz", "parameter": "mms4_brst_dispres", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2024-06-30T17:58:32Z", "xmlid": "mms4_brst_dispres(5)"}, "mms4_brst_dispres6": {"__spz_name__": "zx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_dispres(6)", "dataset": "mms4-fpi-brst.dism", "index1": "6", "is_public": "True", "name": "zx", "parameter": "mms4_brst_dispres", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2024-06-30T17:58:32Z", "xmlid": "mms4_brst_dispres(6)"}, "mms4_brst_dispres7": {"__spz_name__": "zy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_dispres(7)", "dataset": "mms4-fpi-brst.dism", "index1": "7", "is_public": "True", "name": "zy", "parameter": "mms4_brst_dispres", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2024-06-30T17:58:32Z", "xmlid": "mms4_brst_dispres(7)"}, "mms4_brst_dispres8": {"__spz_name__": "zz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_dispres(8)", "dataset": "mms4-fpi-brst.dism", "index1": "8", "is_public": "True", "name": "zz", "parameter": "mms4_brst_dispres", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2024-06-30T17:58:32Z", "xmlid": "mms4_brst_dispres(8)"}, "name": "press_tensor_gse", "size": "9", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2024-06-30T17:58:32Z", "ucd": "phys.pressure", "units": "nPa", "xmlid": "mms4_brst_dispres"}, "mms4_brst_dispreserr": {"__spz_name__": "press_tensor_gse : err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_brst_dispreserr", "dataset": "mms4-fpi-brst.dism", "display_type": "timeseries", "is_public": "True", "mms4_brst_dispreserr0": {"__spz_name__": "xx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_dispreserr(0)", "dataset": "mms4-fpi-brst.dism", "index1": "0", "is_public": "True", "name": "xx", "parameter": "mms4_brst_dispreserr", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2024-06-30T17:58:32Z", "xmlid": "mms4_brst_dispreserr(0)"}, "mms4_brst_dispreserr1": {"__spz_name__": "xy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_dispreserr(1)", "dataset": "mms4-fpi-brst.dism", "index1": "1", "is_public": "True", "name": "xy", "parameter": "mms4_brst_dispreserr", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2024-06-30T17:58:32Z", "xmlid": "mms4_brst_dispreserr(1)"}, "mms4_brst_dispreserr2": {"__spz_name__": "xz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_dispreserr(2)", "dataset": "mms4-fpi-brst.dism", "index1": "2", "is_public": "True", "name": "xz", "parameter": "mms4_brst_dispreserr", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2024-06-30T17:58:32Z", "xmlid": "mms4_brst_dispreserr(2)"}, "mms4_brst_dispreserr3": {"__spz_name__": "yx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_dispreserr(3)", "dataset": "mms4-fpi-brst.dism", "index1": "3", "is_public": "True", "name": "yx", "parameter": "mms4_brst_dispreserr", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2024-06-30T17:58:32Z", "xmlid": "mms4_brst_dispreserr(3)"}, "mms4_brst_dispreserr4": {"__spz_name__": "yy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_dispreserr(4)", "dataset": "mms4-fpi-brst.dism", "index1": "4", "is_public": "True", "name": "yy", "parameter": "mms4_brst_dispreserr", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2024-06-30T17:58:32Z", "xmlid": "mms4_brst_dispreserr(4)"}, "mms4_brst_dispreserr5": {"__spz_name__": "yz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_dispreserr(5)", "dataset": "mms4-fpi-brst.dism", "index1": "5", "is_public": "True", "name": "yz", "parameter": "mms4_brst_dispreserr", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2024-06-30T17:58:32Z", "xmlid": "mms4_brst_dispreserr(5)"}, "mms4_brst_dispreserr6": {"__spz_name__": "zx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_dispreserr(6)", "dataset": "mms4-fpi-brst.dism", "index1": "6", "is_public": "True", "name": "zx", "parameter": "mms4_brst_dispreserr", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2024-06-30T17:58:32Z", "xmlid": "mms4_brst_dispreserr(6)"}, "mms4_brst_dispreserr7": {"__spz_name__": "zy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_dispreserr(7)", "dataset": "mms4-fpi-brst.dism", "index1": "7", "is_public": "True", "name": "zy", "parameter": "mms4_brst_dispreserr", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2024-06-30T17:58:32Z", "xmlid": "mms4_brst_dispreserr(7)"}, "mms4_brst_dispreserr8": {"__spz_name__": "zz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_brst_dispreserr(8)", "dataset": "mms4-fpi-brst.dism", "index1": "8", "is_public": "True", "name": "zz", "parameter": "mms4_brst_dispreserr", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2024-06-30T17:58:32Z", "xmlid": "mms4_brst_dispreserr(8)"}, "name": "press_tensor_gse : err", "size": "9", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2024-06-30T17:58:32Z", "ucd": "phys.pressure", "units": "nPa", "xmlid": "mms4_brst_dispreserr"}, "name": "DIS : ions", "processing_level": "Calibrated", "sampling": "0.15S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MMS/MMS4/FPI/mms4-fpi-brst.dism", "start_date": "2015-07-27T15:30:54Z", "stop_date": "2024-06-30T17:58:32Z", "xmlid": "mms4-fpi-brst.dism"}, "name": "burst mode", "xmlid": "mms4-fpi-brst"}, "desc": "Fast Plasma Investigation
ElectrostaticAnalyser", "fast_mode": {"__spz_name__": "fast mode", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "mms4-fpi-fast", "is_public": "True", "mms4_fpi_current": {"PriorID": "mms4-fpi-desmoms", "__spz_name__": "electric current", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mms4-fpi-current", "att": "auto/mms4-fpi-current", "dataSource": "LASP", "desc": "electric current : fast mode
Sampling: 4.5S
Provider: LASP", "is_public": "True", "lastModificationDate": "2021-06-15T13:45:01Z", "lastUpdate": "2021-06-15T13:45:01Z", "measurement_type": "ThermalPlasma", "mms4_fast_jgse": {"__spz_name__": "j_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_fast_jgse", "dataset": "mms4-fpi-current", "description": "Electric current = 1.6e-10*(mms4_des_ne+mms4_dis_ni)*0.5*(mms4_dis_vgse-mms4_des_vgse)", "display_type": "timeseries", "is_public": "True", "mms4_fast_jgse0": {"__spz_name__": "jx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_fast_jgse(0)", "dataset": "mms4-fpi-current", "index1": "0", "is_public": "True", "name": "jx", "parameter": "mms4_fast_jgse", "start_date": "2015-07-28T00:00:02Z", "stop_date": "2018-06-07T11:59:58Z", "xmlid": "mms4_fast_jgse(0)"}, "mms4_fast_jgse1": {"__spz_name__": "jy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_fast_jgse(1)", "dataset": "mms4-fpi-current", "index1": "1", "is_public": "True", "name": "jy", "parameter": "mms4_fast_jgse", "start_date": "2015-07-28T00:00:02Z", "stop_date": "2018-06-07T11:59:58Z", "xmlid": "mms4_fast_jgse(1)"}, "mms4_fast_jgse2": {"__spz_name__": "jz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_fast_jgse(2)", "dataset": "mms4-fpi-current", "index1": "2", "is_public": "True", "name": "jz", "parameter": "mms4_fast_jgse", "start_date": "2015-07-28T00:00:02Z", "stop_date": "2018-06-07T11:59:58Z", "xmlid": "mms4_fast_jgse(2)"}, "name": "j_gse", "size": "3", "start_date": "2015-07-28T00:00:02Z", "stop_date": "2018-06-07T11:59:58Z", "units": "A/m\u00b2", "xmlid": "mms4_fast_jgse"}, "name": "electric current", "processing_level": "Calibrated", "sampling": "4.5S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MMS/MMS4/FPI/mms4-fpi-current", "start_date": "2015-07-28T00:00:02Z", "stop_date": "2018-06-07T11:59:58Z", "xmlid": "mms4-fpi-current"}, "mms4_fpi_desmoms": {"__spz_name__": "DES : electrons", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mms4-fpi-desmoms", "att": "auto/mms4-fpi-desmoms", "dataSource": "LASP", "desc": "Dual Electron Spectrometers : fast mode
Sampling: 4.5S
Provider: LASP", "is_public": "True", "lastModificationDate": "2021-06-15T13:45:01Z", "lastUpdate": "2021-06-15T13:45:01Z", "measurement_type": "MagneticField", "mms4_des_anti": {"__spz_name__": "elec eflux : anti", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_des_anti", "dataset": "mms4-fpi-desmoms", "display_type": "spectrogram", "is_public": "True", "name": "elec eflux : anti", "start_date": "2015-07-28T00:00:02Z", "stop_date": "2018-06-07T11:59:58Z", "units": "keV/(cm\u00b2-s-sr-keV)", "xmlid": "mms4_des_anti"}, "mms4_des_heatq": {"__spz_name__": "heatq_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_des_heatq", "dataset": "mms4-fpi-desmoms", "display_type": "timeseries", "is_public": "True", "mms4_des_heatq0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_des_heatq(0)", "dataset": "mms4-fpi-desmoms", "index1": "0", "is_public": "True", "name": "x", "parameter": "mms4_des_heatq", "start_date": "2015-07-28T00:00:02Z", "stop_date": "2018-06-07T11:59:58Z", "xmlid": "mms4_des_heatq(0)"}, "mms4_des_heatq1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_des_heatq(1)", "dataset": "mms4-fpi-desmoms", "index1": "1", "is_public": "True", "name": "y", "parameter": "mms4_des_heatq", "start_date": "2015-07-28T00:00:02Z", "stop_date": "2018-06-07T11:59:58Z", "xmlid": "mms4_des_heatq(1)"}, "mms4_des_heatq2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_des_heatq(2)", "dataset": "mms4-fpi-desmoms", "index1": "2", "is_public": "True", "name": "z", "parameter": "mms4_des_heatq", "start_date": "2015-07-28T00:00:02Z", "stop_date": "2018-06-07T11:59:58Z", "xmlid": "mms4_des_heatq(2)"}, "name": "heatq_gse", "size": "3", "start_date": "2015-07-28T00:00:02Z", "stop_date": "2018-06-07T11:59:58Z", "ucd": "phys.pressure", "units": "mW/m\u00b2", "xmlid": "mms4_des_heatq"}, "mms4_des_ne": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_des_ne", "dataset": "mms4-fpi-desmoms", "display_type": "timeseries", "is_public": "True", "name": "density", "start_date": "2015-07-28T00:00:02Z", "stop_date": "2018-06-07T11:59:58Z", "units": "cm\u207b\u00b3", "xmlid": "mms4_des_ne"}, "mms4_des_ne_err": {"__spz_name__": "density : err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_des_ne_err", "dataset": "mms4-fpi-desmoms", "display_type": "timeseries", "is_public": "True", "name": "density : err", "start_date": "2015-07-28T00:00:02Z", "stop_date": "2018-06-07T11:59:58Z", "units": "cm\u207b\u00b3", "xmlid": "mms4_des_ne_err"}, "mms4_des_omni": {"__spz_name__": "elec eflux : omni", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_des_omni", "dataset": "mms4-fpi-desmoms", "display_type": "spectrogram", "is_public": "True", "name": "elec eflux : omni", "start_date": "2015-07-28T00:00:02Z", "stop_date": "2018-06-07T11:59:58Z", "units": "keV/(cm\u00b2-s-sr-keV)", "xmlid": "mms4_des_omni"}, "mms4_des_pahigh": {"__spz_name__": "pa dist : highen", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_des_pahigh", "dataset": "mms4-fpi-desmoms", "description": "High energy bin: 2 keV - 30 keV. \n Pitch-angle bin size: 6 deg. Note that pitch angles are calculated in the spacecraft frame; \n i.e., not shifted by the bulk velocity", "display_type": "spectrogram", "is_public": "True", "name": "pa dist : highen", "start_date": "2015-07-28T00:00:02Z", "stop_date": "2018-06-07T11:59:58Z", "units": "keV/(cm\u00b2-s-sr-keV)", "xmlid": "mms4_des_pahigh"}, "mms4_des_palow": {"__spz_name__": "pa dist : lowen", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_des_palow", "dataset": "mms4-fpi-desmoms", "description": "Low energy bin: 0 eV - 200 eV. \n Pitch-angle bin size: 6 deg. Note that pitch angles are calculated in the spacecraft frame; \n i.e., not shifted by the bulk velocity", "display_type": "spectrogram", "is_public": "True", "name": "pa dist : lowen", "start_date": "2015-07-28T00:00:02Z", "stop_date": "2018-06-07T11:59:58Z", "units": "keV/(cm\u00b2-s-sr-keV)", "xmlid": "mms4_des_palow"}, "mms4_des_pamid": {"__spz_name__": "pa dist : miden", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_des_pamid", "dataset": "mms4-fpi-desmoms", "description": "Mid energy bin: 200 eV - 2 keV. \n Pitch-angle bin size: 6 deg. Note that pitch angles are calculated in the spacecraft frame; \n i.e., not shifted by the bulk velocity", "display_type": "spectrogram", "is_public": "True", "name": "pa dist : miden", "start_date": "2015-07-28T00:00:02Z", "stop_date": "2018-06-07T11:59:58Z", "units": "keV/(cm\u00b2-s-sr-keV)", "xmlid": "mms4_des_pamid"}, "mms4_des_para": {"__spz_name__": "elec eflux : para", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_des_para", "dataset": "mms4-fpi-desmoms", "display_type": "spectrogram", "is_public": "True", "name": "elec eflux : para", "start_date": "2015-07-28T00:00:02Z", "stop_date": "2018-06-07T11:59:58Z", "units": "keV/(cm\u00b2-s-sr-keV)", "xmlid": "mms4_des_para"}, "mms4_des_perp": {"__spz_name__": "elec eflux : perp", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_des_perp", "dataset": "mms4-fpi-desmoms", "display_type": "spectrogram", "is_public": "True", "name": "elec eflux : perp", "start_date": "2015-07-28T00:00:02Z", "stop_date": "2018-06-07T11:59:58Z", "units": "keV/(cm\u00b2-s-sr-keV)", "xmlid": "mms4_des_perp"}, "mms4_des_press": {"__spz_name__": "pressure_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_des_press", "dataset": "mms4-fpi-desmoms", "display_type": "timeseries", "is_public": "True", "mms4_des_press0": {"__spz_name__": "xx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_des_press(0)", "dataset": "mms4-fpi-desmoms", "index1": "0", "is_public": "True", "name": "xx", "parameter": "mms4_des_press", "start_date": "2015-07-28T00:00:02Z", "stop_date": "2018-06-07T11:59:58Z", "xmlid": "mms4_des_press(0)"}, "mms4_des_press1": {"__spz_name__": "xy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_des_press(1)", "dataset": "mms4-fpi-desmoms", "index1": "1", "is_public": "True", "name": "xy", "parameter": "mms4_des_press", "start_date": "2015-07-28T00:00:02Z", "stop_date": "2018-06-07T11:59:58Z", "xmlid": "mms4_des_press(1)"}, "mms4_des_press2": {"__spz_name__": "xz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_des_press(2)", "dataset": "mms4-fpi-desmoms", "index1": "2", "is_public": "True", "name": "xz", "parameter": "mms4_des_press", "start_date": "2015-07-28T00:00:02Z", "stop_date": "2018-06-07T11:59:58Z", "xmlid": "mms4_des_press(2)"}, "mms4_des_press3": {"__spz_name__": "yx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_des_press(3)", "dataset": "mms4-fpi-desmoms", "index1": "3", "is_public": "True", "name": "yx", "parameter": "mms4_des_press", "start_date": "2015-07-28T00:00:02Z", "stop_date": "2018-06-07T11:59:58Z", "xmlid": "mms4_des_press(3)"}, "mms4_des_press4": {"__spz_name__": "yy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_des_press(4)", "dataset": "mms4-fpi-desmoms", "index1": "4", "is_public": "True", "name": "yy", "parameter": "mms4_des_press", "start_date": "2015-07-28T00:00:02Z", "stop_date": "2018-06-07T11:59:58Z", "xmlid": "mms4_des_press(4)"}, "mms4_des_press5": {"__spz_name__": "yz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_des_press(5)", "dataset": "mms4-fpi-desmoms", "index1": "5", "is_public": "True", "name": "yz", "parameter": "mms4_des_press", "start_date": "2015-07-28T00:00:02Z", "stop_date": "2018-06-07T11:59:58Z", "xmlid": "mms4_des_press(5)"}, "mms4_des_press6": {"__spz_name__": "zx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_des_press(6)", "dataset": "mms4-fpi-desmoms", "index1": "6", "is_public": "True", "name": "zx", "parameter": "mms4_des_press", "start_date": "2015-07-28T00:00:02Z", "stop_date": "2018-06-07T11:59:58Z", "xmlid": "mms4_des_press(6)"}, "mms4_des_press7": {"__spz_name__": "zy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_des_press(7)", "dataset": "mms4-fpi-desmoms", "index1": "7", "is_public": "True", "name": "zy", "parameter": "mms4_des_press", "start_date": "2015-07-28T00:00:02Z", "stop_date": "2018-06-07T11:59:58Z", "xmlid": "mms4_des_press(7)"}, "mms4_des_press8": {"__spz_name__": "zz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_des_press(8)", "dataset": "mms4-fpi-desmoms", "index1": "8", "is_public": "True", "name": "zz", "parameter": "mms4_des_press", "start_date": "2015-07-28T00:00:02Z", "stop_date": "2018-06-07T11:59:58Z", "xmlid": "mms4_des_press(8)"}, "name": "pressure_gse", "size": "9", "start_date": "2015-07-28T00:00:02Z", "stop_date": "2018-06-07T11:59:58Z", "ucd": "phys.pressure", "units": "nPa", "xmlid": "mms4_des_press"}, "mms4_des_tpara": {"__spz_name__": "t_para", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_des_tpara", "dataset": "mms4-fpi-desmoms", "display_type": "timeseries", "is_public": "True", "name": "t_para", "start_date": "2015-07-28T00:00:02Z", "stop_date": "2018-06-07T11:59:58Z", "units": "eV", "xmlid": "mms4_des_tpara"}, "mms4_des_tperp": {"__spz_name__": "t_perp", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_des_tperp", "dataset": "mms4-fpi-desmoms", "display_type": "timeseries", "is_public": "True", "name": "t_perp", "start_date": "2015-07-28T00:00:02Z", "stop_date": "2018-06-07T11:59:58Z", "units": "eV", "xmlid": "mms4_des_tperp"}, "mms4_des_v_err": {"__spz_name__": "v_gse : err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_des_v_err", "dataset": "mms4-fpi-desmoms", "display_type": "timeseries", "is_public": "True", "mms4_des_v_err0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_des_v_err(0)", "dataset": "mms4-fpi-desmoms", "index1": "0", "is_public": "True", "name": "vx", "parameter": "mms4_des_v_err", "start_date": "2015-07-28T00:00:02Z", "stop_date": "2018-06-07T11:59:58Z", "xmlid": "mms4_des_v_err(0)"}, "mms4_des_v_err1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_des_v_err(1)", "dataset": "mms4-fpi-desmoms", "index1": "1", "is_public": "True", "name": "vy", "parameter": "mms4_des_v_err", "start_date": "2015-07-28T00:00:02Z", "stop_date": "2018-06-07T11:59:58Z", "xmlid": "mms4_des_v_err(1)"}, "mms4_des_v_err2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_des_v_err(2)", "dataset": "mms4-fpi-desmoms", "index1": "2", "is_public": "True", "name": "vz", "parameter": "mms4_des_v_err", "start_date": "2015-07-28T00:00:02Z", "stop_date": "2018-06-07T11:59:58Z", "xmlid": "mms4_des_v_err(2)"}, "name": "v_gse : err", "size": "3", "start_date": "2015-07-28T00:00:02Z", "stop_date": "2018-06-07T11:59:58Z", "units": "km/s", "xmlid": "mms4_des_v_err"}, "mms4_des_vgse": {"__spz_name__": "v_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_des_vgse", "dataset": "mms4-fpi-desmoms", "display_type": "timeseries", "is_public": "True", "mms4_des_vgse0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_des_vgse(0)", "dataset": "mms4-fpi-desmoms", "index1": "0", "is_public": "True", "name": "vx", "parameter": "mms4_des_vgse", "start_date": "2015-07-28T00:00:02Z", "stop_date": "2018-06-07T11:59:58Z", "xmlid": "mms4_des_vgse(0)"}, "mms4_des_vgse1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_des_vgse(1)", "dataset": "mms4-fpi-desmoms", "index1": "1", "is_public": "True", "name": "vy", "parameter": "mms4_des_vgse", "start_date": "2015-07-28T00:00:02Z", "stop_date": "2018-06-07T11:59:58Z", "xmlid": "mms4_des_vgse(1)"}, "mms4_des_vgse2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_des_vgse(2)", "dataset": "mms4-fpi-desmoms", "index1": "2", "is_public": "True", "name": "vz", "parameter": "mms4_des_vgse", "start_date": "2015-07-28T00:00:02Z", "stop_date": "2018-06-07T11:59:58Z", "xmlid": "mms4_des_vgse(2)"}, "name": "v_gse", "size": "3", "start_date": "2015-07-28T00:00:02Z", "stop_date": "2018-06-07T11:59:58Z", "units": "km/s", "xmlid": "mms4_des_vgse"}, "name": "DES : electrons", "processing_level": "Calibrated", "sampling": "4.5S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MMS/MMS4/FPI/mms4-fpi-desmoms", "start_date": "2015-07-28T00:00:02Z", "stop_date": "2018-06-07T11:59:58Z", "xmlid": "mms4-fpi-desmoms"}, "mms4_fpi_dismoms": {"__spz_name__": "DIS : ions", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mms4-fpi-dismoms", "att": "auto/mms4-fpi-dismoms", "dataSource": "LASP", "desc": "Dual Ion Spectrometers : fast mode
Sampling: 4.5S
Provider: LASP", "is_public": "True", "lastModificationDate": "2024-10-07T05:33:30Z", "lastUpdate": "2024-10-07T05:33:30Z", "measurement_type": "MagneticField", "mms4_dis_heatq": {"__spz_name__": "heatq_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_dis_heatq", "dataset": "mms4-fpi-dismoms", "display_type": "timeseries", "is_public": "True", "mms4_dis_heatq0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_dis_heatq(0)", "dataset": "mms4-fpi-dismoms", "index1": "0", "is_public": "True", "name": "x", "parameter": "mms4_dis_heatq", "start_date": "2015-07-28T00:00:02Z", "stop_date": "2024-08-14T01:59:55Z", "xmlid": "mms4_dis_heatq(0)"}, "mms4_dis_heatq1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_dis_heatq(1)", "dataset": "mms4-fpi-dismoms", "index1": "1", "is_public": "True", "name": "y", "parameter": "mms4_dis_heatq", "start_date": "2015-07-28T00:00:02Z", "stop_date": "2024-08-14T01:59:55Z", "xmlid": "mms4_dis_heatq(1)"}, "mms4_dis_heatq2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_dis_heatq(2)", "dataset": "mms4-fpi-dismoms", "index1": "2", "is_public": "True", "name": "z", "parameter": "mms4_dis_heatq", "start_date": "2015-07-28T00:00:02Z", "stop_date": "2024-08-14T01:59:55Z", "xmlid": "mms4_dis_heatq(2)"}, "name": "heatq_gse", "size": "3", "start_date": "2015-07-28T00:00:02Z", "stop_date": "2024-08-14T01:59:55Z", "ucd": "phys.pressure", "units": "mW/m\u00b2", "xmlid": "mms4_dis_heatq"}, "mms4_dis_ni": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_dis_ni", "dataset": "mms4-fpi-dismoms", "display_type": "timeseries", "is_public": "True", "name": "density", "start_date": "2015-07-28T00:00:02Z", "stop_date": "2024-08-14T01:59:55Z", "units": "cm\u207b\u00b3", "xmlid": "mms4_dis_ni"}, "mms4_dis_ni_err": {"__spz_name__": "density : err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_dis_ni_err", "dataset": "mms4-fpi-dismoms", "display_type": "timeseries", "is_public": "True", "name": "density : err", "start_date": "2015-07-28T00:00:02Z", "stop_date": "2024-08-14T01:59:55Z", "units": "cm\u207b\u00b3", "xmlid": "mms4_dis_ni_err"}, "mms4_dis_omni": {"__spz_name__": "ion eflux : omni", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_dis_omni", "dataset": "mms4-fpi-dismoms", "display_type": "spectrogram", "is_public": "True", "name": "ion eflux : omni", "start_date": "2015-07-28T00:00:02Z", "stop_date": "2024-08-14T01:59:55Z", "units": "keV/(cm\u00b2-s-sr-keV)", "xmlid": "mms4_dis_omni"}, "mms4_dis_press": {"__spz_name__": "pressure_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_dis_press", "dataset": "mms4-fpi-dismoms", "display_type": "timeseries", "is_public": "True", "mms4_dis_press0": {"__spz_name__": "xx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_dis_press(0)", "dataset": "mms4-fpi-dismoms", "index1": "0", "is_public": "True", "name": "xx", "parameter": "mms4_dis_press", "start_date": "2015-07-28T00:00:02Z", "stop_date": "2024-08-14T01:59:55Z", "xmlid": "mms4_dis_press(0)"}, "mms4_dis_press1": {"__spz_name__": "xy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_dis_press(1)", "dataset": "mms4-fpi-dismoms", "index1": "1", "is_public": "True", "name": "xy", "parameter": "mms4_dis_press", "start_date": "2015-07-28T00:00:02Z", "stop_date": "2024-08-14T01:59:55Z", "xmlid": "mms4_dis_press(1)"}, "mms4_dis_press2": {"__spz_name__": "xz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_dis_press(2)", "dataset": "mms4-fpi-dismoms", "index1": "2", "is_public": "True", "name": "xz", "parameter": "mms4_dis_press", "start_date": "2015-07-28T00:00:02Z", "stop_date": "2024-08-14T01:59:55Z", "xmlid": "mms4_dis_press(2)"}, "mms4_dis_press3": {"__spz_name__": "yx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_dis_press(3)", "dataset": "mms4-fpi-dismoms", "index1": "3", "is_public": "True", "name": "yx", "parameter": "mms4_dis_press", "start_date": "2015-07-28T00:00:02Z", "stop_date": "2024-08-14T01:59:55Z", "xmlid": "mms4_dis_press(3)"}, "mms4_dis_press4": {"__spz_name__": "yy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_dis_press(4)", "dataset": "mms4-fpi-dismoms", "index1": "4", "is_public": "True", "name": "yy", "parameter": "mms4_dis_press", "start_date": "2015-07-28T00:00:02Z", "stop_date": "2024-08-14T01:59:55Z", "xmlid": "mms4_dis_press(4)"}, "mms4_dis_press5": {"__spz_name__": "yz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_dis_press(5)", "dataset": "mms4-fpi-dismoms", "index1": "5", "is_public": "True", "name": "yz", "parameter": "mms4_dis_press", "start_date": "2015-07-28T00:00:02Z", "stop_date": "2024-08-14T01:59:55Z", "xmlid": "mms4_dis_press(5)"}, "mms4_dis_press6": {"__spz_name__": "zx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_dis_press(6)", "dataset": "mms4-fpi-dismoms", "index1": "6", "is_public": "True", "name": "zx", "parameter": "mms4_dis_press", "start_date": "2015-07-28T00:00:02Z", "stop_date": "2024-08-14T01:59:55Z", "xmlid": "mms4_dis_press(6)"}, "mms4_dis_press7": {"__spz_name__": "zy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_dis_press(7)", "dataset": "mms4-fpi-dismoms", "index1": "7", "is_public": "True", "name": "zy", "parameter": "mms4_dis_press", "start_date": "2015-07-28T00:00:02Z", "stop_date": "2024-08-14T01:59:55Z", "xmlid": "mms4_dis_press(7)"}, "mms4_dis_press8": {"__spz_name__": "zz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_dis_press(8)", "dataset": "mms4-fpi-dismoms", "index1": "8", "is_public": "True", "name": "zz", "parameter": "mms4_dis_press", "start_date": "2015-07-28T00:00:02Z", "stop_date": "2024-08-14T01:59:55Z", "xmlid": "mms4_dis_press(8)"}, "name": "pressure_gse", "size": "9", "start_date": "2015-07-28T00:00:02Z", "stop_date": "2024-08-14T01:59:55Z", "ucd": "phys.pressure", "units": "nPa", "xmlid": "mms4_dis_press"}, "mms4_dis_tpara": {"__spz_name__": "t_para", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_dis_tpara", "dataset": "mms4-fpi-dismoms", "display_type": "timeseries", "is_public": "True", "name": "t_para", "start_date": "2015-07-28T00:00:02Z", "stop_date": "2024-08-14T01:59:55Z", "units": "eV", "xmlid": "mms4_dis_tpara"}, "mms4_dis_tperp": {"__spz_name__": "t_perp", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_dis_tperp", "dataset": "mms4-fpi-dismoms", "display_type": "timeseries", "is_public": "True", "name": "t_perp", "start_date": "2015-07-28T00:00:02Z", "stop_date": "2024-08-14T01:59:55Z", "units": "eV", "xmlid": "mms4_dis_tperp"}, "mms4_dis_v_err": {"__spz_name__": "v_gse : err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_dis_v_err", "dataset": "mms4-fpi-dismoms", "display_type": "timeseries", "is_public": "True", "mms4_dis_v_err0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_dis_v_err(0)", "dataset": "mms4-fpi-dismoms", "index1": "0", "is_public": "True", "name": "vx", "parameter": "mms4_dis_v_err", "start_date": "2015-07-28T00:00:02Z", "stop_date": "2024-08-14T01:59:55Z", "xmlid": "mms4_dis_v_err(0)"}, "mms4_dis_v_err1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_dis_v_err(1)", "dataset": "mms4-fpi-dismoms", "index1": "1", "is_public": "True", "name": "vy", "parameter": "mms4_dis_v_err", "start_date": "2015-07-28T00:00:02Z", "stop_date": "2024-08-14T01:59:55Z", "xmlid": "mms4_dis_v_err(1)"}, "mms4_dis_v_err2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_dis_v_err(2)", "dataset": "mms4-fpi-dismoms", "index1": "2", "is_public": "True", "name": "vz", "parameter": "mms4_dis_v_err", "start_date": "2015-07-28T00:00:02Z", "stop_date": "2024-08-14T01:59:55Z", "xmlid": "mms4_dis_v_err(2)"}, "name": "v_gse : err", "size": "3", "start_date": "2015-07-28T00:00:02Z", "stop_date": "2024-08-14T01:59:55Z", "units": "km/s", "xmlid": "mms4_dis_v_err"}, "mms4_dis_vgse": {"__spz_name__": "v_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_dis_vgse", "dataset": "mms4-fpi-dismoms", "display_type": "timeseries", "is_public": "True", "mms4_dis_vgse0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_dis_vgse(0)", "dataset": "mms4-fpi-dismoms", "index1": "0", "is_public": "True", "name": "vx", "parameter": "mms4_dis_vgse", "start_date": "2015-07-28T00:00:02Z", "stop_date": "2024-08-14T01:59:55Z", "xmlid": "mms4_dis_vgse(0)"}, "mms4_dis_vgse1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_dis_vgse(1)", "dataset": "mms4-fpi-dismoms", "index1": "1", "is_public": "True", "name": "vy", "parameter": "mms4_dis_vgse", "start_date": "2015-07-28T00:00:02Z", "stop_date": "2024-08-14T01:59:55Z", "xmlid": "mms4_dis_vgse(1)"}, "mms4_dis_vgse2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms4_dis_vgse(2)", "dataset": "mms4-fpi-dismoms", "index1": "2", "is_public": "True", "name": "vz", "parameter": "mms4_dis_vgse", "start_date": "2015-07-28T00:00:02Z", "stop_date": "2024-08-14T01:59:55Z", "xmlid": "mms4_dis_vgse(2)"}, "name": "v_gse", "size": "3", "start_date": "2015-07-28T00:00:02Z", "stop_date": "2024-08-14T01:59:55Z", "units": "km/s", "xmlid": "mms4_dis_vgse"}, "name": "DIS : ions", "processing_level": "Calibrated", "sampling": "4.5S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MMS/MMS4/FPI/mms4-fpi-dismoms", "start_date": "2015-07-28T00:00:02Z", "stop_date": "2024-08-14T01:59:55Z", "xmlid": "mms4-fpi-dismoms"}, "name": "fast mode", "xmlid": "mms4-fpi-fast"}, "is_public": "True", "name": "FPI", "xmlid": "MMS4_fpi"}, "HPCA": {"__spz_name__": "HPCA", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "MMS4_hpca", "att": "auto/MMS4_hpca", "desc": "Hot Plasma Composition Analyzer
MassSpectrometer", "is_public": "True", "mms4_hpca_brst": {"__spz_name__": "ion energy flux : burst", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mms4-hpca-brst", "att": "auto/mms4-hpca-brst", "dataSource": "LASP", "desc": "ion flux spectrograms : burst mode
Sampling: 0.625S
Provider: LASP", "is_public": "True", "lastModificationDate": "2024-10-04T06:34:32Z", "lastUpdate": "2024-04-16T21:38:54Z", "measurement_type": "IonComposition", "mms4_hpca_heefl": {"__spz_name__": "he++ eflux : 2D energy/polar", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_hpca_heefl", "dataset": "mms4-hpca-brst", "description": "He++ Flux for all elevation anodes accross all energies", "display_type": "spectrogram", "is_public": "True", "name": "he++ eflux : 2D energy/polar", "start_date": "2015-07-20T02:06:02Z", "stop_date": "2023-09-19T05:15:41Z", "units": "keV/((cm\u00b2-s-sr-keV))", "xmlid": "mms4_hpca_heefl"}, "mms4_hpca_heefl_elevation": {"__spz_name__": "he++ eflux : sum on elevations", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_hpca_heefl_elevation", "dataset": "mms4-hpca-brst", "description": "He++ Flux for all energies", "display_type": "spectrogram", "is_public": "True", "name": "he++ eflux : sum on elevations", "start_date": "2015-07-20T02:06:02Z", "stop_date": "2023-09-19T05:15:41Z", "units": "keV/((cm\u00b2-s-sr-keV))", "xmlid": "mms4_hpca_heefl_elevation"}, "mms4_hpca_heeq": {"__spz_name__": "he++ eflux quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_hpca_heeq", "dataset": "mms4-hpca-brst", "display_type": "timeseries", "is_public": "True", "name": "he++ eflux quality", "start_date": "2015-07-20T02:06:02Z", "stop_date": "2023-09-19T05:15:41Z", "xmlid": "mms4_hpca_heeq"}, "mms4_hpca_hefl": {"__spz_name__": "he+ eflux : 2D energy/polar", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_hpca_hefl", "dataset": "mms4-hpca-brst", "description": "He Flux for all elevation anodes accross all energies", "display_type": "spectrogram", "is_public": "True", "name": "he+ eflux : 2D energy/polar", "start_date": "2015-07-20T02:06:02Z", "stop_date": "2023-09-19T05:15:41Z", "units": "keV/((cm\u00b2-s-sr-keV))", "xmlid": "mms4_hpca_hefl"}, "mms4_hpca_hefl_elevation": {"__spz_name__": "he+ eflux : sum on elevations", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_hpca_hefl_elevation", "dataset": "mms4-hpca-brst", "description": "He Flux for all energies", "display_type": "spectrogram", "is_public": "True", "name": "he+ eflux : sum on elevations", "start_date": "2015-07-20T02:06:02Z", "stop_date": "2023-09-19T05:15:41Z", "units": "keV/((cm\u00b2-s-sr-keV))", "xmlid": "mms4_hpca_hefl_elevation"}, "mms4_hpca_heq": {"__spz_name__": "he+ eflux quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_hpca_heq", "dataset": "mms4-hpca-brst", "display_type": "timeseries", "is_public": "True", "name": "he+ eflux quality", "start_date": "2015-07-20T02:06:02Z", "stop_date": "2023-09-19T05:15:41Z", "xmlid": "mms4_hpca_heq"}, "mms4_hpca_hfl": {"__spz_name__": "h+ eflux : 2D energy/elevation", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_hpca_hfl", "dataset": "mms4-hpca-brst", "description": "H+ Flux for all elevation anodes across all energies", "display_type": "spectrogram", "is_public": "True", "name": "h+ eflux : 2D energy/elevation", "start_date": "2015-07-20T02:06:02Z", "stop_date": "2023-09-19T05:15:41Z", "units": "keV/((cm\u00b2-s-sr-keV))", "xmlid": "mms4_hpca_hfl"}, "mms4_hpca_hfl_elevation": {"__spz_name__": "h+ eflux : sum on elevations", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_hpca_hfl_elevation", "dataset": "mms4-hpca-brst", "description": "H+ Flux for all energies", "display_type": "spectrogram", "is_public": "True", "name": "h+ eflux : sum on elevations", "start_date": "2015-07-20T02:06:02Z", "stop_date": "2023-09-19T05:15:41Z", "units": "keV/((cm\u00b2-s-sr-keV))", "xmlid": "mms4_hpca_hfl_elevation"}, "mms4_hpca_hq": {"__spz_name__": "h+ eflux quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_hpca_hq", "dataset": "mms4-hpca-brst", "display_type": "timeseries", "is_public": "True", "name": "h+ eflux quality", "start_date": "2015-07-20T02:06:02Z", "stop_date": "2023-09-19T05:15:41Z", "xmlid": "mms4_hpca_hq"}, "mms4_hpca_ofl": {"__spz_name__": "o+ eflux : 2D energy/polar", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_hpca_ofl", "dataset": "mms4-hpca-brst", "description": "O+ Flux for all elevation anodes accross all energies", "display_type": "spectrogram", "is_public": "True", "name": "o+ eflux : 2D energy/polar", "start_date": "2015-07-20T02:06:02Z", "stop_date": "2023-09-19T05:15:41Z", "units": "keV/((cm\u00b2-s-sr-keV))", "xmlid": "mms4_hpca_ofl"}, "mms4_hpca_ofl_elevation": {"__spz_name__": "o+ eflux : sum on elevations", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_hpca_ofl_elevation", "dataset": "mms4-hpca-brst", "description": "O+ Flux for all energies", "display_type": "spectrogram", "is_public": "True", "name": "o+ eflux : sum on elevations", "start_date": "2015-07-20T02:06:02Z", "stop_date": "2023-09-19T05:15:41Z", "units": "keV/((cm\u00b2-s-sr-keV))", "xmlid": "mms4_hpca_ofl_elevation"}, "mms4_hpca_oq": {"__spz_name__": "o+ eflux quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms4_hpca_oq", "dataset": "mms4-hpca-brst", "display_type": "timeseries", "is_public": "True", "name": "o+ eflux quality", "start_date": "2015-07-20T02:06:02Z", "stop_date": "2023-09-19T05:15:41Z", "xmlid": "mms4_hpca_oq"}, "name": "ion energy flux : burst", "processing_level": "Calibrated", "sampling": "0.625S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MMS/MMS4/HPCA/mms4-hpca-brst", "start_date": "2015-07-20T02:06:02Z", "stop_date": "2023-09-19T05:15:41Z", "xmlid": "mms4-hpca-brst"}, "name": "HPCA", "xmlid": "MMS4_hpca"}, "__spz_name__": "MMS4", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "MMS4", "att": "auto/MMS4", "desc": "
2015-09-01T00:00:00", "is_public": "True", "name": "MMS4", "target": "Earth.Magnetosphere", "xmlid": "MMS4"}, "MMS_1234": {"Ephemeris": {"__spz_name__": "Ephemeris", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "MMS1234_ephemeris", "att": "auto/MMS1234_ephemeris", "desc": "", "is_public": "True", "mms1234_orb_t89d": {"PriorID": "mms1-orb-t89d", "__spz_name__": "orbit t89d", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mms1234-orb-t89d", "att": "auto/mms1234-orb-t89d", "dataSource": "IRAP", "desc": "
Sampling: 30S
Provider: IRAP", "is_public": "True", "lastModificationDate": "2024-10-04T05:34:59Z", "lastUpdate": "2024-10-02T09:40:55Z", "measurement_type": "Ephemeris", "mms1234_sep_mms1_gse": {"__spz_name__": "separation mms1 gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1234_sep_mms1_gse", "dataset": "mms1234-orb-t89d", "description": "MMS1 barycenter separation in GSE", "display_type": "timeseries", "is_public": "True", "mms1234_sep_mms1_gse0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1234_sep_mms1_gse(0)", "dataset": "mms1234-orb-t89d", "index1": "0", "is_public": "True", "name": "x", "parameter": "mms1234_sep_mms1_gse", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "mms1234_sep_mms1_gse(0)"}, "mms1234_sep_mms1_gse1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1234_sep_mms1_gse(1)", "dataset": "mms1234-orb-t89d", "index1": "1", "is_public": "True", "name": "y", "parameter": "mms1234_sep_mms1_gse", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "mms1234_sep_mms1_gse(1)"}, "mms1234_sep_mms1_gse2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1234_sep_mms1_gse(2)", "dataset": "mms1234-orb-t89d", "index1": "2", "is_public": "True", "name": "z", "parameter": "mms1234_sep_mms1_gse", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "mms1234_sep_mms1_gse(2)"}, "name": "separation mms1 gse", "size": "3", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "km", "xmlid": "mms1234_sep_mms1_gse"}, "mms1234_sep_mms1_gsm": {"__spz_name__": "separation mms1 gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1234_sep_mms1_gsm", "dataset": "mms1234-orb-t89d", "description": "MMS1 barycenter separation in GSM", "display_type": "timeseries", "is_public": "True", "mms1234_sep_mms1_gsm0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1234_sep_mms1_gsm(0)", "dataset": "mms1234-orb-t89d", "index1": "0", "is_public": "True", "name": "x", "parameter": "mms1234_sep_mms1_gsm", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "mms1234_sep_mms1_gsm(0)"}, "mms1234_sep_mms1_gsm1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1234_sep_mms1_gsm(1)", "dataset": "mms1234-orb-t89d", "index1": "1", "is_public": "True", "name": "y", "parameter": "mms1234_sep_mms1_gsm", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "mms1234_sep_mms1_gsm(1)"}, "mms1234_sep_mms1_gsm2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1234_sep_mms1_gsm(2)", "dataset": "mms1234-orb-t89d", "index1": "2", "is_public": "True", "name": "z", "parameter": "mms1234_sep_mms1_gsm", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "mms1234_sep_mms1_gsm(2)"}, "name": "separation mms1 gsm", "size": "3", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "km", "xmlid": "mms1234_sep_mms1_gsm"}, "mms1234_sep_mms2_gse": {"__spz_name__": "separation mms2 gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1234_sep_mms2_gse", "dataset": "mms1234-orb-t89d", "description": "MMS2 barycenter separation in GSE", "display_type": "timeseries", "is_public": "True", "mms1234_sep_mms2_gse0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1234_sep_mms2_gse(0)", "dataset": "mms1234-orb-t89d", "index1": "0", "is_public": "True", "name": "x", "parameter": "mms1234_sep_mms2_gse", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "mms1234_sep_mms2_gse(0)"}, "mms1234_sep_mms2_gse1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1234_sep_mms2_gse(1)", "dataset": "mms1234-orb-t89d", "index1": "1", "is_public": "True", "name": "y", "parameter": "mms1234_sep_mms2_gse", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "mms1234_sep_mms2_gse(1)"}, "mms1234_sep_mms2_gse2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1234_sep_mms2_gse(2)", "dataset": "mms1234-orb-t89d", "index1": "2", "is_public": "True", "name": "z", "parameter": "mms1234_sep_mms2_gse", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "mms1234_sep_mms2_gse(2)"}, "name": "separation mms2 gse", "size": "3", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "km", "xmlid": "mms1234_sep_mms2_gse"}, "mms1234_sep_mms2_gsm": {"__spz_name__": "separation mms2 gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1234_sep_mms2_gsm", "dataset": "mms1234-orb-t89d", "description": "MMS2 barycenter separation in GSM", "display_type": "timeseries", "is_public": "True", "mms1234_sep_mms2_gsm0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1234_sep_mms2_gsm(0)", "dataset": "mms1234-orb-t89d", "index1": "0", "is_public": "True", "name": "x", "parameter": "mms1234_sep_mms2_gsm", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "mms1234_sep_mms2_gsm(0)"}, "mms1234_sep_mms2_gsm1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1234_sep_mms2_gsm(1)", "dataset": "mms1234-orb-t89d", "index1": "1", "is_public": "True", "name": "y", "parameter": "mms1234_sep_mms2_gsm", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "mms1234_sep_mms2_gsm(1)"}, "mms1234_sep_mms2_gsm2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1234_sep_mms2_gsm(2)", "dataset": "mms1234-orb-t89d", "index1": "2", "is_public": "True", "name": "z", "parameter": "mms1234_sep_mms2_gsm", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "mms1234_sep_mms2_gsm(2)"}, "name": "separation mms2 gsm", "size": "3", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "km", "xmlid": "mms1234_sep_mms2_gsm"}, "mms1234_sep_mms3_gse": {"__spz_name__": "separation mms3 gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1234_sep_mms3_gse", "dataset": "mms1234-orb-t89d", "description": "MMS3 barycenter separation in GSE", "display_type": "timeseries", "is_public": "True", "mms1234_sep_mms3_gse0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1234_sep_mms3_gse(0)", "dataset": "mms1234-orb-t89d", "index1": "0", "is_public": "True", "name": "x", "parameter": "mms1234_sep_mms3_gse", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "mms1234_sep_mms3_gse(0)"}, "mms1234_sep_mms3_gse1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1234_sep_mms3_gse(1)", "dataset": "mms1234-orb-t89d", "index1": "1", "is_public": "True", "name": "y", "parameter": "mms1234_sep_mms3_gse", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "mms1234_sep_mms3_gse(1)"}, "mms1234_sep_mms3_gse2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1234_sep_mms3_gse(2)", "dataset": "mms1234-orb-t89d", "index1": "2", "is_public": "True", "name": "z", "parameter": "mms1234_sep_mms3_gse", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "mms1234_sep_mms3_gse(2)"}, "name": "separation mms3 gse", "size": "3", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "km", "xmlid": "mms1234_sep_mms3_gse"}, "mms1234_sep_mms3_gsm": {"__spz_name__": "separation mms3 gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1234_sep_mms3_gsm", "dataset": "mms1234-orb-t89d", "description": "MMS3 barycenter separation in GSM", "display_type": "timeseries", "is_public": "True", "mms1234_sep_mms3_gsm0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1234_sep_mms3_gsm(0)", "dataset": "mms1234-orb-t89d", "index1": "0", "is_public": "True", "name": "x", "parameter": "mms1234_sep_mms3_gsm", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "mms1234_sep_mms3_gsm(0)"}, "mms1234_sep_mms3_gsm1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1234_sep_mms3_gsm(1)", "dataset": "mms1234-orb-t89d", "index1": "1", "is_public": "True", "name": "y", "parameter": "mms1234_sep_mms3_gsm", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "mms1234_sep_mms3_gsm(1)"}, "mms1234_sep_mms3_gsm2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1234_sep_mms3_gsm(2)", "dataset": "mms1234-orb-t89d", "index1": "2", "is_public": "True", "name": "z", "parameter": "mms1234_sep_mms3_gsm", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "mms1234_sep_mms3_gsm(2)"}, "name": "separation mms3 gsm", "size": "3", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "km", "xmlid": "mms1234_sep_mms3_gsm"}, "mms1234_sep_mms4_gse": {"__spz_name__": "separation mms4 gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1234_sep_mms4_gse", "dataset": "mms1234-orb-t89d", "description": "MMS4 barycenter separation in GSE", "display_type": "timeseries", "is_public": "True", "mms1234_sep_mms4_gse0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1234_sep_mms4_gse(0)", "dataset": "mms1234-orb-t89d", "index1": "0", "is_public": "True", "name": "x", "parameter": "mms1234_sep_mms4_gse", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "mms1234_sep_mms4_gse(0)"}, "mms1234_sep_mms4_gse1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1234_sep_mms4_gse(1)", "dataset": "mms1234-orb-t89d", "index1": "1", "is_public": "True", "name": "y", "parameter": "mms1234_sep_mms4_gse", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "mms1234_sep_mms4_gse(1)"}, "mms1234_sep_mms4_gse2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1234_sep_mms4_gse(2)", "dataset": "mms1234-orb-t89d", "index1": "2", "is_public": "True", "name": "z", "parameter": "mms1234_sep_mms4_gse", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "mms1234_sep_mms4_gse(2)"}, "name": "separation mms4 gse", "size": "3", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "km", "xmlid": "mms1234_sep_mms4_gse"}, "mms1234_sep_mms4_gsm": {"__spz_name__": "separation mms4 gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1234_sep_mms4_gsm", "dataset": "mms1234-orb-t89d", "description": "MMS4 barycenter separation in GSM", "display_type": "timeseries", "is_public": "True", "mms1234_sep_mms4_gsm0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1234_sep_mms4_gsm(0)", "dataset": "mms1234-orb-t89d", "index1": "0", "is_public": "True", "name": "x", "parameter": "mms1234_sep_mms4_gsm", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "mms1234_sep_mms4_gsm(0)"}, "mms1234_sep_mms4_gsm1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1234_sep_mms4_gsm(1)", "dataset": "mms1234-orb-t89d", "index1": "1", "is_public": "True", "name": "y", "parameter": "mms1234_sep_mms4_gsm", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "mms1234_sep_mms4_gsm(1)"}, "mms1234_sep_mms4_gsm2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1234_sep_mms4_gsm(2)", "dataset": "mms1234-orb-t89d", "index1": "2", "is_public": "True", "name": "z", "parameter": "mms1234_sep_mms4_gsm", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "mms1234_sep_mms4_gsm(2)"}, "name": "separation mms4 gsm", "size": "3", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "km", "xmlid": "mms1234_sep_mms4_gsm"}, "mms1234_xyz_bary_gse": {"__spz_name__": "xyz_bary_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1234_xyz_bary_gse", "dataset": "mms1234-orb-t89d", "description": "Spacecraft barycenter position in GSE", "display_type": "timeseries", "is_public": "True", "mms1234_xyz_bary_gse0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1234_xyz_bary_gse(0)", "dataset": "mms1234-orb-t89d", "index1": "0", "is_public": "True", "name": "x", "parameter": "mms1234_xyz_bary_gse", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "mms1234_xyz_bary_gse(0)"}, "mms1234_xyz_bary_gse1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1234_xyz_bary_gse(1)", "dataset": "mms1234-orb-t89d", "index1": "1", "is_public": "True", "name": "y", "parameter": "mms1234_xyz_bary_gse", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "mms1234_xyz_bary_gse(1)"}, "mms1234_xyz_bary_gse2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1234_xyz_bary_gse(2)", "dataset": "mms1234-orb-t89d", "index1": "2", "is_public": "True", "name": "z", "parameter": "mms1234_xyz_bary_gse", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "mms1234_xyz_bary_gse(2)"}, "name": "xyz_bary_gse", "size": "3", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "Re", "xmlid": "mms1234_xyz_bary_gse"}, "mms1234_xyz_bary_gsm": {"__spz_name__": "xyz_bary_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1234_xyz_bary_gsm", "dataset": "mms1234-orb-t89d", "description": "Spacecraft barycenter position in GSM", "display_type": "timeseries", "is_public": "True", "mms1234_xyz_bary_gsm0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1234_xyz_bary_gsm(0)", "dataset": "mms1234-orb-t89d", "index1": "0", "is_public": "True", "name": "x", "parameter": "mms1234_xyz_bary_gsm", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "mms1234_xyz_bary_gsm(0)"}, "mms1234_xyz_bary_gsm1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1234_xyz_bary_gsm(1)", "dataset": "mms1234-orb-t89d", "index1": "1", "is_public": "True", "name": "y", "parameter": "mms1234_xyz_bary_gsm", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "mms1234_xyz_bary_gsm(1)"}, "mms1234_xyz_bary_gsm2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1234_xyz_bary_gsm(2)", "dataset": "mms1234-orb-t89d", "index1": "2", "is_public": "True", "name": "z", "parameter": "mms1234_xyz_bary_gsm", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "mms1234_xyz_bary_gsm(2)"}, "name": "xyz_bary_gsm", "size": "3", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "Re", "xmlid": "mms1234_xyz_bary_gsm"}, "name": "orbit t89d", "processing_level": "Calibrated", "sampling": "30S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MMS/MMS1234/Ephemeris/mms1234-orb-t89d", "start_date": "2015-03-13T00:00:00Z", "stop_date": "2024-09-23T23:59:30Z", "timeRestriction": "2024-08-08T23:59:59.999Z", "xmlid": "mms1234-orb-t89d"}, "name": "Ephemeris", "xmlid": "MMS1234_ephemeris"}, "FGM": {"__spz_name__": "FGM", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "MMS1234_fgm", "att": "auto/MMS1234_fgm", "burst": {"__spz_name__": "burst", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "mms1234-current-brst", "is_public": "True", "mms1_fgm_brstcurl": {"__spz_name__": "current", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mms1-fgm-brstcurl", "att": "auto/mms1-fgm-brstcurl", "dataSource": "IRAP", "desc": "
Sampling: 0.007S
Provider: IRAP", "is_public": "True", "lastModificationDate": "2024-10-04T05:35:06Z", "lastUpdate": "2024-10-02T09:46:15Z", "measurement_type": "ThermalPlasma", "mms1234_j_gse_brst": {"__spz_name__": "j_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1234_j_gse_brst", "dataset": "mms1-fgm-brstcurl", "display_type": "timeseries", "is_public": "True", "mms1234_j_gse_brst0": {"__spz_name__": "jx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1234_j_gse_brst(0)", "dataset": "mms1-fgm-brstcurl", "index1": "0", "is_public": "True", "name": "jx", "parameter": "mms1234_j_gse_brst", "start_date": "2015-09-01T12:11:14Z", "stop_date": "2024-08-31T17:02:32Z", "xmlid": "mms1234_j_gse_brst(0)"}, "mms1234_j_gse_brst1": {"__spz_name__": "jy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1234_j_gse_brst(1)", "dataset": "mms1-fgm-brstcurl", "index1": "1", "is_public": "True", "name": "jy", "parameter": "mms1234_j_gse_brst", "start_date": "2015-09-01T12:11:14Z", "stop_date": "2024-08-31T17:02:32Z", "xmlid": "mms1234_j_gse_brst(1)"}, "mms1234_j_gse_brst2": {"__spz_name__": "jz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1234_j_gse_brst(2)", "dataset": "mms1-fgm-brstcurl", "index1": "2", "is_public": "True", "name": "jz", "parameter": "mms1234_j_gse_brst", "start_date": "2015-09-01T12:11:14Z", "stop_date": "2024-08-31T17:02:32Z", "xmlid": "mms1234_j_gse_brst(2)"}, "name": "j_gse", "size": "3", "start_date": "2015-09-01T12:11:14Z", "stop_date": "2024-08-31T17:02:32Z", "units": "A/m\u00b2", "xmlid": "mms1234_j_gse_brst"}, "mms1234_j_gsm_brst": {"__spz_name__": "j_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1234_j_gsm_brst", "dataset": "mms1-fgm-brstcurl", "display_type": "timeseries", "is_public": "True", "mms1234_j_gsm_brst0": {"__spz_name__": "jx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1234_j_gsm_brst(0)", "dataset": "mms1-fgm-brstcurl", "index1": "0", "is_public": "True", "name": "jx", "parameter": "mms1234_j_gsm_brst", "start_date": "2015-09-01T12:11:14Z", "stop_date": "2024-08-31T17:02:32Z", "xmlid": "mms1234_j_gsm_brst(0)"}, "mms1234_j_gsm_brst1": {"__spz_name__": "jy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1234_j_gsm_brst(1)", "dataset": "mms1-fgm-brstcurl", "index1": "1", "is_public": "True", "name": "jy", "parameter": "mms1234_j_gsm_brst", "start_date": "2015-09-01T12:11:14Z", "stop_date": "2024-08-31T17:02:32Z", "xmlid": "mms1234_j_gsm_brst(1)"}, "mms1234_j_gsm_brst2": {"__spz_name__": "jz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1234_j_gsm_brst(2)", "dataset": "mms1-fgm-brstcurl", "index1": "2", "is_public": "True", "name": "jz", "parameter": "mms1234_j_gsm_brst", "start_date": "2015-09-01T12:11:14Z", "stop_date": "2024-08-31T17:02:32Z", "xmlid": "mms1234_j_gsm_brst(2)"}, "name": "j_gsm", "size": "3", "start_date": "2015-09-01T12:11:14Z", "stop_date": "2024-08-31T17:02:32Z", "units": "A/m\u00b2", "xmlid": "mms1234_j_gsm_brst"}, "mms1234_j_para_gse_brst": {"__spz_name__": "j_para_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1234_j_para_gse_brst", "dataset": "mms1-fgm-brstcurl", "display_type": "timeseries", "is_public": "True", "mms1234_j_para_gse_brst0": {"__spz_name__": "jx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1234_j_para_gse_brst(0)", "dataset": "mms1-fgm-brstcurl", "index1": "0", "is_public": "True", "name": "jx", "parameter": "mms1234_j_para_gse_brst", "start_date": "2015-09-01T12:11:14Z", "stop_date": "2024-08-31T17:02:32Z", "xmlid": "mms1234_j_para_gse_brst(0)"}, "mms1234_j_para_gse_brst1": {"__spz_name__": "jy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1234_j_para_gse_brst(1)", "dataset": "mms1-fgm-brstcurl", "index1": "1", "is_public": "True", "name": "jy", "parameter": "mms1234_j_para_gse_brst", "start_date": "2015-09-01T12:11:14Z", "stop_date": "2024-08-31T17:02:32Z", "xmlid": "mms1234_j_para_gse_brst(1)"}, "mms1234_j_para_gse_brst2": {"__spz_name__": "jz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1234_j_para_gse_brst(2)", "dataset": "mms1-fgm-brstcurl", "index1": "2", "is_public": "True", "name": "jz", "parameter": "mms1234_j_para_gse_brst", "start_date": "2015-09-01T12:11:14Z", "stop_date": "2024-08-31T17:02:32Z", "xmlid": "mms1234_j_para_gse_brst(2)"}, "name": "j_para_gse", "size": "3", "start_date": "2015-09-01T12:11:14Z", "stop_date": "2024-08-31T17:02:32Z", "units": "A/m\u00b2", "xmlid": "mms1234_j_para_gse_brst"}, "mms1234_j_para_gsm_brst": {"__spz_name__": "j_para_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1234_j_para_gsm_brst", "dataset": "mms1-fgm-brstcurl", "display_type": "timeseries", "is_public": "True", "mms1234_j_para_gsm_brst0": {"__spz_name__": "jx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1234_j_para_gsm_brst(0)", "dataset": "mms1-fgm-brstcurl", "index1": "0", "is_public": "True", "name": "jx", "parameter": "mms1234_j_para_gsm_brst", "start_date": "2015-09-01T12:11:14Z", "stop_date": "2024-08-31T17:02:32Z", "xmlid": "mms1234_j_para_gsm_brst(0)"}, "mms1234_j_para_gsm_brst1": {"__spz_name__": "jy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1234_j_para_gsm_brst(1)", "dataset": "mms1-fgm-brstcurl", "index1": "1", "is_public": "True", "name": "jy", "parameter": "mms1234_j_para_gsm_brst", "start_date": "2015-09-01T12:11:14Z", "stop_date": "2024-08-31T17:02:32Z", "xmlid": "mms1234_j_para_gsm_brst(1)"}, "mms1234_j_para_gsm_brst2": {"__spz_name__": "jz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1234_j_para_gsm_brst(2)", "dataset": "mms1-fgm-brstcurl", "index1": "2", "is_public": "True", "name": "jz", "parameter": "mms1234_j_para_gsm_brst", "start_date": "2015-09-01T12:11:14Z", "stop_date": "2024-08-31T17:02:32Z", "xmlid": "mms1234_j_para_gsm_brst(2)"}, "name": "j_para_gsm", "size": "3", "start_date": "2015-09-01T12:11:14Z", "stop_date": "2024-08-31T17:02:32Z", "units": "A/m\u00b2", "xmlid": "mms1234_j_para_gsm_brst"}, "mms1234_j_para_tot_brst": {"__spz_name__": "j_para", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1234_j_para_tot_brst", "dataset": "mms1-fgm-brstcurl", "display_type": "timeseries", "is_public": "True", "name": "j_para", "start_date": "2015-09-01T12:11:14Z", "stop_date": "2024-08-31T17:02:32Z", "units": "A/m\u00b2", "xmlid": "mms1234_j_para_tot_brst"}, "mms1234_j_perp_gse_brst": {"__spz_name__": "j_perp_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1234_j_perp_gse_brst", "dataset": "mms1-fgm-brstcurl", "display_type": "timeseries", "is_public": "True", "mms1234_j_perp_gse_brst0": {"__spz_name__": "jx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1234_j_perp_gse_brst(0)", "dataset": "mms1-fgm-brstcurl", "index1": "0", "is_public": "True", "name": "jx", "parameter": "mms1234_j_perp_gse_brst", "start_date": "2015-09-01T12:11:14Z", "stop_date": "2024-08-31T17:02:32Z", "xmlid": "mms1234_j_perp_gse_brst(0)"}, "mms1234_j_perp_gse_brst1": {"__spz_name__": "jy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1234_j_perp_gse_brst(1)", "dataset": "mms1-fgm-brstcurl", "index1": "1", "is_public": "True", "name": "jy", "parameter": "mms1234_j_perp_gse_brst", "start_date": "2015-09-01T12:11:14Z", "stop_date": "2024-08-31T17:02:32Z", "xmlid": "mms1234_j_perp_gse_brst(1)"}, "mms1234_j_perp_gse_brst2": {"__spz_name__": "jz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1234_j_perp_gse_brst(2)", "dataset": "mms1-fgm-brstcurl", "index1": "2", "is_public": "True", "name": "jz", "parameter": "mms1234_j_perp_gse_brst", "start_date": "2015-09-01T12:11:14Z", "stop_date": "2024-08-31T17:02:32Z", "xmlid": "mms1234_j_perp_gse_brst(2)"}, "name": "j_perp_gse", "size": "3", "start_date": "2015-09-01T12:11:14Z", "stop_date": "2024-08-31T17:02:32Z", "units": "A/m\u00b2", "xmlid": "mms1234_j_perp_gse_brst"}, "mms1234_j_perp_gsm_brst": {"__spz_name__": "j_perp_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1234_j_perp_gsm_brst", "dataset": "mms1-fgm-brstcurl", "display_type": "timeseries", "is_public": "True", "mms1234_j_perp_gsm_brst0": {"__spz_name__": "jx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1234_j_perp_gsm_brst(0)", "dataset": "mms1-fgm-brstcurl", "index1": "0", "is_public": "True", "name": "jx", "parameter": "mms1234_j_perp_gsm_brst", "start_date": "2015-09-01T12:11:14Z", "stop_date": "2024-08-31T17:02:32Z", "xmlid": "mms1234_j_perp_gsm_brst(0)"}, "mms1234_j_perp_gsm_brst1": {"__spz_name__": "jy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1234_j_perp_gsm_brst(1)", "dataset": "mms1-fgm-brstcurl", "index1": "1", "is_public": "True", "name": "jy", "parameter": "mms1234_j_perp_gsm_brst", "start_date": "2015-09-01T12:11:14Z", "stop_date": "2024-08-31T17:02:32Z", "xmlid": "mms1234_j_perp_gsm_brst(1)"}, "mms1234_j_perp_gsm_brst2": {"__spz_name__": "jz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1234_j_perp_gsm_brst(2)", "dataset": "mms1-fgm-brstcurl", "index1": "2", "is_public": "True", "name": "jz", "parameter": "mms1234_j_perp_gsm_brst", "start_date": "2015-09-01T12:11:14Z", "stop_date": "2024-08-31T17:02:32Z", "xmlid": "mms1234_j_perp_gsm_brst(2)"}, "name": "j_perp_gsm", "size": "3", "start_date": "2015-09-01T12:11:14Z", "stop_date": "2024-08-31T17:02:32Z", "units": "A/m\u00b2", "xmlid": "mms1234_j_perp_gsm_brst"}, "mms1234_j_perp_tot_brst": {"__spz_name__": "j_perp", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1234_j_perp_tot_brst", "dataset": "mms1-fgm-brstcurl", "display_type": "timeseries", "is_public": "True", "name": "j_perp", "start_date": "2015-09-01T12:11:14Z", "stop_date": "2024-08-31T17:02:32Z", "units": "A/m\u00b2", "xmlid": "mms1234_j_perp_tot_brst"}, "mms1234_j_tot_brst": {"__spz_name__": "j", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1234_j_tot_brst", "dataset": "mms1-fgm-brstcurl", "display_type": "timeseries", "is_public": "True", "name": "j", "start_date": "2015-09-01T12:11:14Z", "stop_date": "2024-08-31T17:02:32Z", "units": "A/m\u00b2", "xmlid": "mms1234_j_tot_brst"}, "mms1_div_t_brst": {"__spz_name__": "div T", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_div_t_brst", "dataset": "mms1-fgm-brstcurl", "display_type": "timeseries", "is_public": "True", "name": "div T", "start_date": "2015-09-01T12:11:14Z", "stop_date": "2024-08-31T17:02:32Z", "units": "T/m", "xmlid": "mms1_div_t_brst"}, "mms1_r_c_brst": {"__spz_name__": "r curv", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_r_c_brst", "dataset": "mms1-fgm-brstcurl", "display_type": "timeseries", "is_public": "True", "name": "r curv", "start_date": "2015-09-01T12:11:14Z", "stop_date": "2024-08-31T17:02:32Z", "units": "Re", "xmlid": "mms1_r_c_brst"}, "name": "current", "processing_level": "Calibrated", "sampling": "0.007S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MMS/MMS1234/mms1-fgm-brstcurl", "start_date": "2015-09-01T12:11:14Z", "stop_date": "2024-08-31T17:02:32Z", "timeRestriction": "2024-08-08T23:59:59.999Z", "xmlid": "mms1-fgm-brstcurl"}, "name": "burst", "xmlid": "mms1234-current-brst"}, "desc": "Fluxgate Magnetometer
Magnetometer", "is_public": "True", "name": "FGM", "survey": {"__spz_name__": "survey", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "mms1234-current-srv", "is_public": "True", "mms1_fgm_current": {"__spz_name__": "current", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "mms1-fgm-current", "att": "auto/mms1-fgm-current", "dataSource": "IRAP", "desc": "
MinSampling: 0.0625S; MaxSampling: 0.125S
Provider: IRAP", "is_public": "True", "lastModificationDate": "2024-10-07T05:31:04Z", "lastUpdate": "2024-10-07T05:30:59Z", "maxSampling": "0.125S", "measurement_type": "ThermalPlasma", "mms1234_j_gse": {"__spz_name__": "j_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1234_j_gse", "dataset": "mms1-fgm-current", "display_type": "timeseries", "is_public": "True", "mms1234_j_gse0": {"__spz_name__": "jx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1234_j_gse(0)", "dataset": "mms1-fgm-current", "index1": "0", "is_public": "True", "name": "jx", "parameter": "mms1234_j_gse", "start_date": "2015-09-01T00:00:12Z", "stop_date": "2024-09-02T00:00:00Z", "xmlid": "mms1234_j_gse(0)"}, "mms1234_j_gse1": {"__spz_name__": "jy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1234_j_gse(1)", "dataset": "mms1-fgm-current", "index1": "1", "is_public": "True", "name": "jy", "parameter": "mms1234_j_gse", "start_date": "2015-09-01T00:00:12Z", "stop_date": "2024-09-02T00:00:00Z", "xmlid": "mms1234_j_gse(1)"}, "mms1234_j_gse2": {"__spz_name__": "jz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1234_j_gse(2)", "dataset": "mms1-fgm-current", "index1": "2", "is_public": "True", "name": "jz", "parameter": "mms1234_j_gse", "start_date": "2015-09-01T00:00:12Z", "stop_date": "2024-09-02T00:00:00Z", "xmlid": "mms1234_j_gse(2)"}, "name": "j_gse", "size": "3", "start_date": "2015-09-01T00:00:12Z", "stop_date": "2024-09-02T00:00:00Z", "units": "A/m\u00b2", "xmlid": "mms1234_j_gse"}, "mms1234_j_gsm": {"__spz_name__": "j_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1234_j_gsm", "dataset": "mms1-fgm-current", "display_type": "timeseries", "is_public": "True", "mms1234_j_gsm0": {"__spz_name__": "jx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1234_j_gsm(0)", "dataset": "mms1-fgm-current", "index1": "0", "is_public": "True", "name": "jx", "parameter": "mms1234_j_gsm", "start_date": "2015-09-01T00:00:12Z", "stop_date": "2024-09-02T00:00:00Z", "xmlid": "mms1234_j_gsm(0)"}, "mms1234_j_gsm1": {"__spz_name__": "jy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1234_j_gsm(1)", "dataset": "mms1-fgm-current", "index1": "1", "is_public": "True", "name": "jy", "parameter": "mms1234_j_gsm", "start_date": "2015-09-01T00:00:12Z", "stop_date": "2024-09-02T00:00:00Z", "xmlid": "mms1234_j_gsm(1)"}, "mms1234_j_gsm2": {"__spz_name__": "jz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1234_j_gsm(2)", "dataset": "mms1-fgm-current", "index1": "2", "is_public": "True", "name": "jz", "parameter": "mms1234_j_gsm", "start_date": "2015-09-01T00:00:12Z", "stop_date": "2024-09-02T00:00:00Z", "xmlid": "mms1234_j_gsm(2)"}, "name": "j_gsm", "size": "3", "start_date": "2015-09-01T00:00:12Z", "stop_date": "2024-09-02T00:00:00Z", "units": "A/m\u00b2", "xmlid": "mms1234_j_gsm"}, "mms1234_j_para_gse": {"__spz_name__": "j_para_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1234_j_para_gse", "dataset": "mms1-fgm-current", "display_type": "timeseries", "is_public": "True", "mms1234_j_para_gse0": {"__spz_name__": "jx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1234_j_para_gse(0)", "dataset": "mms1-fgm-current", "index1": "0", "is_public": "True", "name": "jx", "parameter": "mms1234_j_para_gse", "start_date": "2015-09-01T00:00:12Z", "stop_date": "2024-09-02T00:00:00Z", "xmlid": "mms1234_j_para_gse(0)"}, "mms1234_j_para_gse1": {"__spz_name__": "jy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1234_j_para_gse(1)", "dataset": "mms1-fgm-current", "index1": "1", "is_public": "True", "name": "jy", "parameter": "mms1234_j_para_gse", "start_date": "2015-09-01T00:00:12Z", "stop_date": "2024-09-02T00:00:00Z", "xmlid": "mms1234_j_para_gse(1)"}, "mms1234_j_para_gse2": {"__spz_name__": "jz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1234_j_para_gse(2)", "dataset": "mms1-fgm-current", "index1": "2", "is_public": "True", "name": "jz", "parameter": "mms1234_j_para_gse", "start_date": "2015-09-01T00:00:12Z", "stop_date": "2024-09-02T00:00:00Z", "xmlid": "mms1234_j_para_gse(2)"}, "name": "j_para_gse", "size": "3", "start_date": "2015-09-01T00:00:12Z", "stop_date": "2024-09-02T00:00:00Z", "units": "A/m\u00b2", "xmlid": "mms1234_j_para_gse"}, "mms1234_j_para_gsm": {"__spz_name__": "j_para_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1234_j_para_gsm", "dataset": "mms1-fgm-current", "display_type": "timeseries", "is_public": "True", "mms1234_j_para_gsm0": {"__spz_name__": "jx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1234_j_para_gsm(0)", "dataset": "mms1-fgm-current", "index1": "0", "is_public": "True", "name": "jx", "parameter": "mms1234_j_para_gsm", "start_date": "2015-09-01T00:00:12Z", "stop_date": "2024-09-02T00:00:00Z", "xmlid": "mms1234_j_para_gsm(0)"}, "mms1234_j_para_gsm1": {"__spz_name__": "jy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1234_j_para_gsm(1)", "dataset": "mms1-fgm-current", "index1": "1", "is_public": "True", "name": "jy", "parameter": "mms1234_j_para_gsm", "start_date": "2015-09-01T00:00:12Z", "stop_date": "2024-09-02T00:00:00Z", "xmlid": "mms1234_j_para_gsm(1)"}, "mms1234_j_para_gsm2": {"__spz_name__": "jz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1234_j_para_gsm(2)", "dataset": "mms1-fgm-current", "index1": "2", "is_public": "True", "name": "jz", "parameter": "mms1234_j_para_gsm", "start_date": "2015-09-01T00:00:12Z", "stop_date": "2024-09-02T00:00:00Z", "xmlid": "mms1234_j_para_gsm(2)"}, "name": "j_para_gsm", "size": "3", "start_date": "2015-09-01T00:00:12Z", "stop_date": "2024-09-02T00:00:00Z", "units": "A/m\u00b2", "xmlid": "mms1234_j_para_gsm"}, "mms1234_j_para_tot": {"__spz_name__": "j_para", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1234_j_para_tot", "dataset": "mms1-fgm-current", "display_type": "timeseries", "is_public": "True", "name": "j_para", "start_date": "2015-09-01T00:00:12Z", "stop_date": "2024-09-02T00:00:00Z", "units": "A/m\u00b2", "xmlid": "mms1234_j_para_tot"}, "mms1234_j_perp_gse": {"__spz_name__": "j_perp_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1234_j_perp_gse", "dataset": "mms1-fgm-current", "display_type": "timeseries", "is_public": "True", "mms1234_j_perp_gse0": {"__spz_name__": "jx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1234_j_perp_gse(0)", "dataset": "mms1-fgm-current", "index1": "0", "is_public": "True", "name": "jx", "parameter": "mms1234_j_perp_gse", "start_date": "2015-09-01T00:00:12Z", "stop_date": "2024-09-02T00:00:00Z", "xmlid": "mms1234_j_perp_gse(0)"}, "mms1234_j_perp_gse1": {"__spz_name__": "jy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1234_j_perp_gse(1)", "dataset": "mms1-fgm-current", "index1": "1", "is_public": "True", "name": "jy", "parameter": "mms1234_j_perp_gse", "start_date": "2015-09-01T00:00:12Z", "stop_date": "2024-09-02T00:00:00Z", "xmlid": "mms1234_j_perp_gse(1)"}, "mms1234_j_perp_gse2": {"__spz_name__": "jz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1234_j_perp_gse(2)", "dataset": "mms1-fgm-current", "index1": "2", "is_public": "True", "name": "jz", "parameter": "mms1234_j_perp_gse", "start_date": "2015-09-01T00:00:12Z", "stop_date": "2024-09-02T00:00:00Z", "xmlid": "mms1234_j_perp_gse(2)"}, "name": "j_perp_gse", "size": "3", "start_date": "2015-09-01T00:00:12Z", "stop_date": "2024-09-02T00:00:00Z", "units": "A/m\u00b2", "xmlid": "mms1234_j_perp_gse"}, "mms1234_j_perp_gsm": {"__spz_name__": "j_perp_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1234_j_perp_gsm", "dataset": "mms1-fgm-current", "display_type": "timeseries", "is_public": "True", "mms1234_j_perp_gsm0": {"__spz_name__": "jx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1234_j_perp_gsm(0)", "dataset": "mms1-fgm-current", "index1": "0", "is_public": "True", "name": "jx", "parameter": "mms1234_j_perp_gsm", "start_date": "2015-09-01T00:00:12Z", "stop_date": "2024-09-02T00:00:00Z", "xmlid": "mms1234_j_perp_gsm(0)"}, "mms1234_j_perp_gsm1": {"__spz_name__": "jy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1234_j_perp_gsm(1)", "dataset": "mms1-fgm-current", "index1": "1", "is_public": "True", "name": "jy", "parameter": "mms1234_j_perp_gsm", "start_date": "2015-09-01T00:00:12Z", "stop_date": "2024-09-02T00:00:00Z", "xmlid": "mms1234_j_perp_gsm(1)"}, "mms1234_j_perp_gsm2": {"__spz_name__": "jz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mms1234_j_perp_gsm(2)", "dataset": "mms1-fgm-current", "index1": "2", "is_public": "True", "name": "jz", "parameter": "mms1234_j_perp_gsm", "start_date": "2015-09-01T00:00:12Z", "stop_date": "2024-09-02T00:00:00Z", "xmlid": "mms1234_j_perp_gsm(2)"}, "name": "j_perp_gsm", "size": "3", "start_date": "2015-09-01T00:00:12Z", "stop_date": "2024-09-02T00:00:00Z", "units": "A/m\u00b2", "xmlid": "mms1234_j_perp_gsm"}, "mms1234_j_perp_tot": {"__spz_name__": "j_perp", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1234_j_perp_tot", "dataset": "mms1-fgm-current", "display_type": "timeseries", "is_public": "True", "name": "j_perp", "start_date": "2015-09-01T00:00:12Z", "stop_date": "2024-09-02T00:00:00Z", "units": "A/m\u00b2", "xmlid": "mms1234_j_perp_tot"}, "mms1234_j_tot": {"__spz_name__": "j", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1234_j_tot", "dataset": "mms1-fgm-current", "display_type": "timeseries", "is_public": "True", "name": "j", "start_date": "2015-09-01T00:00:12Z", "stop_date": "2024-09-02T00:00:00Z", "units": "A/m\u00b2", "xmlid": "mms1234_j_tot"}, "mms1_div_t": {"__spz_name__": "div T", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_div_t", "dataset": "mms1-fgm-current", "display_type": "timeseries", "is_public": "True", "name": "div T", "start_date": "2015-09-01T00:00:12Z", "stop_date": "2024-09-02T00:00:00Z", "units": "T/m", "xmlid": "mms1_div_t"}, "mms1_r_c": {"__spz_name__": "r curv", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mms1_r_c", "dataset": "mms1-fgm-current", "display_type": "timeseries", "is_public": "True", "name": "r curv", "start_date": "2015-09-01T00:00:12Z", "stop_date": "2024-09-02T00:00:00Z", "units": "Re", "xmlid": "mms1_r_c"}, "name": "current", "processing_level": "Calibrated", "sampling": "0.0625S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/MMS/MMS1234/mms1-fgm-current", "start_date": "2015-09-01T00:00:12Z", "stop_date": "2024-09-02T00:00:00Z", "timeRestriction": "2024-08-08T23:59:59.999Z", "xmlid": "mms1-fgm-current"}, "name": "survey", "xmlid": "mms1234-current-srv"}, "xmlid": "MMS1234_fgm"}, "__spz_name__": "MMS_1234", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "MMS1234", "att": "auto/MMS1234", "desc": "Magnetospheric Multiscale Mission : 4 s/c
2015-09-01T00:00:00", "is_public": "True", "name": "MMS_1234", "target": "Earth.Magnetosphere", "xmlid": "MMS1234"}, "__spz_name__": "MMS", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "MMS", "att": "auto/MMS", "desc": "Magnetospheric Multiscale Mission
2015-03-12T00:00:00", "is_public": "True", "name": "MMS", "rank": "6", "target": "Earth.Magnetosphere", "xmlid": "MMS"}, "Magnetic_Field_Models": {"Earth": {"T96_Model": {"__spz_name__": "T96 Model", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "tsyganenko96_tsyg96run", "att": "auto/tsyganenko96_tsyg96run", "b_t96": {"__spz_name__": "B along s/c orbit", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "b_t96", "att": "auto/b_t96", "b_t96gse": {"__spz_name__": "b gse ", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_t96gse", "b_t96gse0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gse(0)", "dataset": "b_t96", "index1": "0", "is_public": "True", "name": "bx", "parameter": "b_t96gse", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2030-01-01T00:00:00Z", "xmlid": "b_t96gse(0)"}, "b_t96gse1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gse(1)", "dataset": "b_t96", "index1": "1", "is_public": "True", "name": "by", "parameter": "b_t96gse", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2030-01-01T00:00:00Z", "xmlid": "b_t96gse(1)"}, "b_t96gse2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gse(2)", "dataset": "b_t96", "index1": "2", "is_public": "True", "name": "bz", "parameter": "b_t96gse", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2030-01-01T00:00:00Z", "xmlid": "b_t96gse(2)"}, "dataset": "b_t96", "is_public": "True", "name": "b gse ", "size": "3", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2030-01-01T00:00:00Z", "template": "b_t96gse_##ORBIT##", "units": "nT", "xmlid": "b_t96gse"}, "b_t96gsm": {"__spz_name__": "b gsm ", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_t96gsm", "b_t96gsm0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gsm(0)", "dataset": "b_t96", "index1": "0", "is_public": "True", "name": "bx", "parameter": "b_t96gsm", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2030-01-01T00:00:00Z", "xmlid": "b_t96gsm(0)"}, "b_t96gsm1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gsm(1)", "dataset": "b_t96", "index1": "1", "is_public": "True", "name": "by", "parameter": "b_t96gsm", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2030-01-01T00:00:00Z", "xmlid": "b_t96gsm(1)"}, "b_t96gsm2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gsm(2)", "dataset": "b_t96", "index1": "2", "is_public": "True", "name": "bz", "parameter": "b_t96gsm", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2030-01-01T00:00:00Z", "xmlid": "b_t96gsm(2)"}, "dataset": "b_t96", "is_public": "True", "name": "b gsm ", "size": "3", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2030-01-01T00:00:00Z", "template": "b_t96gsm_##ORBIT##", "units": "nT", "xmlid": "b_t96gsm"}, "b_t96tot": {"__spz_name__": "|b| ", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_t96tot", "dataset": "b_t96", "description": "TBD", "is_public": "True", "name": "|b| ", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2030-01-01T00:00:00Z", "template": "b_t96tot_##ORBIT##", "units": "nT", "xmlid": "b_t96tot"}, "dataSource": "", "desc": "
Sampling: 1M", "inputResourceID": "", "is_public": "True", "lastUpdate": "2020-01-01T00:00:00Z", "measurement_type": "MagneticField", "name": "B along s/c orbit", "processing_level": "Calibrated", "sampling": "1M", "simulation": "1", "spaseId": "spase://CNES/NumericalOutput/CDPP-AMDA/TSYG96/b_t96", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2030-01-01T00:00:00Z", "xmlid": "b_t96"}, "desc": "", "is_public": "True", "name": "T96 Model", "xmlid": "tsyganenko96_tsyg96run"}, "__spz_name__": "Earth", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Model_Magnetic_Field_Earth", "is_public": "True", "name": "Earth", "rank": "6", "target": "Earth", "xmlid": "Model_Magnetic_Field_Earth"}, "Jupiter": {"JRM09_Model": {"__spz_name__": "JRM09 Model", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "jrm09_jrm09run", "att": "auto/jrm09_jrm09run", "b_jrm09": {"__spz_name__": "JRM09 + CAN B along s/c orbit", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "b_jrm09", "att": "auto/b_jrm09", "b_jrm09_can": {"__spz_name__": "b iau_jup ", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_jrm09_can", "b_jrm09_can0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_jrm09_can(0)", "dataset": "b_jrm09", "index1": "0", "is_public": "True", "name": "bx", "parameter": "b_jrm09_can", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2030-01-01T00:00:00Z", "xmlid": "b_jrm09_can(0)"}, "b_jrm09_can1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_jrm09_can(1)", "dataset": "b_jrm09", "index1": "1", "is_public": "True", "name": "by", "parameter": "b_jrm09_can", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2030-01-01T00:00:00Z", "xmlid": "b_jrm09_can(1)"}, "b_jrm09_can2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_jrm09_can(2)", "dataset": "b_jrm09", "index1": "2", "is_public": "True", "name": "bz", "parameter": "b_jrm09_can", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2030-01-01T00:00:00Z", "xmlid": "b_jrm09_can(2)"}, "dataset": "b_jrm09", "is_public": "True", "name": "b iau_jup ", "size": "3", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2030-01-01T00:00:00Z", "template": "b_jrm09_can_##sampling##_##can##_##orbit##", "units": "nT", "xmlid": "b_jrm09_can"}, "b_jrm09_can_tot": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_jrm09_can_tot", "dataset": "b_jrm09", "description": "Scalar magnitude of the magnetic field in nT", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2030-01-01T00:00:00Z", "template": "b_jrm09_can_tot_##sampling##_##can##_##orbit##", "ucd": "phys.magField", "units": "nT", "xmlid": "b_jrm09_can_tot"}, "dataSource": "", "desc": "
Sampling: 1M", "inputResourceID": "", "is_public": "True", "lastUpdate": "2020-07-31T00:00:00Z", "measurement_type": "MagneticField", "name": "JRM09 + CAN B along s/c orbit", "processing_level": "Calibrated", "sampling": "1M", "simulation": "1", "spaseId": "spase://CNES/NumericalOutput/CDPP-AMDA/JRM09/b_jrm09", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2030-01-01T00:00:00Z", "xmlid": "b_jrm09"}, "desc": "", "is_public": "True", "name": "JRM09 Model", "xmlid": "jrm09_jrm09run"}, "JRM33_Model": {"__spz_name__": "JRM33 Model", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "jrm33_jrm33run", "att": "auto/jrm33_jrm33run", "b_jrm33": {"__spz_name__": "JRM33 + Con2020 B along s/c orbit", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "b_jrm33", "att": "auto/b_jrm33", "b_jrm33_con": {"__spz_name__": "b iau_jup ", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_jrm33_con", "b_jrm33_con0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_jrm33_con(0)", "dataset": "b_jrm33", "index1": "0", "is_public": "True", "name": "bx", "parameter": "b_jrm33_con", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2030-01-01T00:00:00Z", "xmlid": "b_jrm33_con(0)"}, "b_jrm33_con1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_jrm33_con(1)", "dataset": "b_jrm33", "index1": "1", "is_public": "True", "name": "by", "parameter": "b_jrm33_con", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2030-01-01T00:00:00Z", "xmlid": "b_jrm33_con(1)"}, "b_jrm33_con2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_jrm33_con(2)", "dataset": "b_jrm33", "index1": "2", "is_public": "True", "name": "bz", "parameter": "b_jrm33_con", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2030-01-01T00:00:00Z", "xmlid": "b_jrm33_con(2)"}, "dataset": "b_jrm33", "is_public": "True", "name": "b iau_jup ", "size": "3", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2030-01-01T00:00:00Z", "template": "b_jrm33_con_##sampling##_##con##_##orbit##", "units": "nT", "xmlid": "b_jrm33_con"}, "b_jrm33_con_tot": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_jrm33_con_tot", "dataset": "b_jrm33", "description": "Scalar magnitude of the magnetic field in nT", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2030-01-01T00:00:00Z", "template": "b_jrm33_con_tot_##sampling##_##con##_##orbit##", "ucd": "phys.magField", "units": "nT", "xmlid": "b_jrm33_con_tot"}, "dataSource": "", "desc": "
Sampling: 1M", "inputResourceID": "", "is_public": "True", "lastUpdate": "2022-07-14T00:00:00Z", "measurement_type": "MagneticField", "name": "JRM33 + Con2020 B along s/c orbit", "processing_level": "Calibrated", "sampling": "1M", "simulation": "1", "spaseId": "spase://CNES/NumericalOutput/CDPP-AMDA/JRM33/b_jrm33", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2030-01-01T00:00:00Z", "xmlid": "b_jrm33"}, "desc": "", "is_public": "True", "name": "JRM33 Model", "xmlid": "jrm33_jrm33run"}, "__spz_name__": "Jupiter", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Model_Magnetic_Field_Jupiter", "is_public": "True", "name": "Jupiter", "rank": "9", "target": "Jupiter", "xmlid": "Model_Magnetic_Field_Jupiter"}, "Mars": {"Morschhauser_Model": {"__spz_name__": "Morschhauser Model", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "morschhauser_morschhauserrun", "att": "auto/morschhauser_morschhauserrun", "b_morschhauser": {"__spz_name__": "Morschhauser B along s/c orbit", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "b_morschhauser", "att": "auto/b_morschhauser", "bmorsch_mso": {"__spz_name__": "b mso ", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "bmorsch_mso", "bmorsch_mso0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "bmorsch_mso(0)", "dataset": "b_morschhauser", "index1": "0", "is_public": "True", "name": "bx", "parameter": "bmorsch_mso", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2030-01-01T00:00:00Z", "xmlid": "bmorsch_mso(0)"}, "bmorsch_mso1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "bmorsch_mso(1)", "dataset": "b_morschhauser", "index1": "1", "is_public": "True", "name": "by", "parameter": "bmorsch_mso", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2030-01-01T00:00:00Z", "xmlid": "bmorsch_mso(1)"}, "bmorsch_mso2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "bmorsch_mso(2)", "dataset": "b_morschhauser", "index1": "2", "is_public": "True", "name": "bz", "parameter": "bmorsch_mso", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2030-01-01T00:00:00Z", "xmlid": "bmorsch_mso(2)"}, "dataset": "b_morschhauser", "is_public": "True", "name": "b mso ", "size": "3", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2030-01-01T00:00:00Z", "template": "bmorsch_mso_##sampling##_##orbit##", "units": "nT", "xmlid": "bmorsch_mso"}, "bmorsch_tot": {"__spz_name__": "b_tot ", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "bmorsch_tot", "dataset": "b_morschhauser", "is_public": "True", "name": "b_tot ", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2030-01-01T00:00:00Z", "template": "bmorsch_tot_##sampling##_##orbit##", "units": "nT", "xmlid": "bmorsch_tot"}, "dataSource": "", "desc": "
Sampling: 1M", "inputResourceID": "", "is_public": "True", "lastUpdate": "2017-03-08T16:49:29Z", "measurement_type": "MagneticField", "name": "Morschhauser B along s/c orbit", "processing_level": "Calibrated", "sampling": "1M", "simulation": "1", "spaseId": "spase://CNES/NumericalOutput/CDPP-AMDA/MORSCHHAUSER/b_morschhauser", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2030-01-01T00:00:00Z", "xmlid": "b_morschhauser"}, "desc": "", "is_public": "True", "name": "Morschhauser Model", "xmlid": "morschhauser_morschhauserrun"}, "__spz_name__": "Mars", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Model_Magnetic_Field_Mars", "is_public": "True", "name": "Mars", "rank": "8", "target": "Mars", "xmlid": "Model_Magnetic_Field_Mars"}, "Mercury": {"KT17_Model": {"__spz_name__": "KT17 Model", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "kt17_kt17run", "att": "auto/kt17_kt17run", "b_kt17": {"__spz_name__": "KT17 along s/c orbit", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "b_kt17", "att": "auto/b_kt17", "b_kt17_model": {"__spz_name__": "b msm ", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_kt17_model", "b_kt17_model0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_kt17_model(0)", "dataset": "b_kt17", "index1": "0", "is_public": "True", "name": "bx", "parameter": "b_kt17_model", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2030-01-01T00:00:00Z", "xmlid": "b_kt17_model(0)"}, "b_kt17_model1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_kt17_model(1)", "dataset": "b_kt17", "index1": "1", "is_public": "True", "name": "by", "parameter": "b_kt17_model", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2030-01-01T00:00:00Z", "xmlid": "b_kt17_model(1)"}, "b_kt17_model2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_kt17_model(2)", "dataset": "b_kt17", "index1": "2", "is_public": "True", "name": "bz", "parameter": "b_kt17_model", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2030-01-01T00:00:00Z", "xmlid": "b_kt17_model(2)"}, "dataset": "b_kt17", "is_public": "True", "name": "b msm ", "size": "3", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2030-01-01T00:00:00Z", "template": "b_kt17_model_##sampling##_##rsun##_##dist##_##orbit##", "units": "nT", "xmlid": "b_kt17_model"}, "b_kt17_model_tot": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_kt17_model_tot", "dataset": "b_kt17", "description": "Scalar magnitude of the magnetic field in nT", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2030-01-01T00:00:00Z", "template": "b_kt17_model_tot_##sampling##_##rsun##_##dist##_##orbit##", "ucd": "phys.magField", "units": "nT", "xmlid": "b_kt17_model_tot"}, "dataSource": "", "desc": "
Sampling: 1M", "inputResourceID": "", "is_public": "True", "lastUpdate": "2023-02-17T00:00:00Z", "measurement_type": "MagneticField", "name": "KT17 along s/c orbit", "processing_level": "Calibrated", "sampling": "1M", "simulation": "1", "spaseId": "spase://CNES/NumericalOutput/CDPP-AMDA/KT17/b_kt17", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2030-01-01T00:00:00Z", "xmlid": "b_kt17"}, "desc": "", "is_public": "True", "name": "KT17 Model", "xmlid": "kt17_kt17run"}, "__spz_name__": "Mercury", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Model_Magnetic_Field_Mercury", "is_public": "True", "name": "Mercury", "rank": "2", "target": "Mercury", "xmlid": "Model_Magnetic_Field_Mercury"}, "__spz_name__": "Magnetic Field Models", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Model_Magnetic_Field", "att": "auto/Model_Magnetic_Field", "is_public": "True", "name": "Magnetic Field Models", "rank": "999", "xmlid": "Model_Magnetic_Field"}, "Mariner_10": {"Analytical_Models": {"__spz_name__": "Analytical Models", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Mariner10_models", "att": "auto/Mariner10_models", "desc": "", "is_public": "True", "m10_kt17_model": {"PriorID": "m10-m1-orb", "__spz_name__": "KT17 model", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "m10-kt17-model", "att": "auto/m10-kt17-model", "b_kt17_model_60_0_427_50_m10_m1_xyz_mso": {"__spz_name__": "b msm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_kt17_model_60_0.427_50_m10_m1_xyz_mso", "b_kt17_model_60_0_427_50_m10_m1_xyz_mso0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_kt17_model_60_0.427_50_m10_m1_xyz_mso(0)", "dataset": "m10-kt17-model", "index1": "0", "is_public": "True", "name": "bx", "parameter": "b_kt17_model_60_0.427_50_m10_m1_xyz_mso", "start_date": "1974-03-26T23:55:21Z", "stop_date": "1974-03-31T23:51:13Z", "xmlid": "b_kt17_model_60_0.427_50_m10_m1_xyz_mso(0)"}, "b_kt17_model_60_0_427_50_m10_m1_xyz_mso1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_kt17_model_60_0.427_50_m10_m1_xyz_mso(1)", "dataset": "m10-kt17-model", "index1": "1", "is_public": "True", "name": "by", "parameter": "b_kt17_model_60_0.427_50_m10_m1_xyz_mso", "start_date": "1974-03-26T23:55:21Z", "stop_date": "1974-03-31T23:51:13Z", "xmlid": "b_kt17_model_60_0.427_50_m10_m1_xyz_mso(1)"}, "b_kt17_model_60_0_427_50_m10_m1_xyz_mso2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_kt17_model_60_0.427_50_m10_m1_xyz_mso(2)", "dataset": "m10-kt17-model", "index1": "2", "is_public": "True", "name": "bz", "parameter": "b_kt17_model_60_0.427_50_m10_m1_xyz_mso", "start_date": "1974-03-26T23:55:21Z", "stop_date": "1974-03-31T23:51:13Z", "xmlid": "b_kt17_model_60_0.427_50_m10_m1_xyz_mso(2)"}, "dataset": "m10-kt17-model", "is_public": "True", "name": "b msm", "predefined": "1", "size": "3", "start_date": "1974-03-26T23:55:21Z", "stop_date": "1974-03-31T23:51:13Z", "template": "b_kt17_model_##sampling##_##rsun##_##dist##_##orbit##", "units": "nT", "xmlid": "b_kt17_model_60_0.427_50_m10_m1_xyz_mso"}, "b_kt17_model_tot_60_0_427_50_m10_m1_xyz_mso": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_kt17_model_tot_60_0.427_50_m10_m1_xyz_mso", "dataset": "m10-kt17-model", "description": "Scalar magnitude of the magnetic field in nT", "display_type": "timeseries", "is_public": "True", "name": "|b|", "predefined": "1", "start_date": "1974-03-26T23:55:21Z", "stop_date": "1974-03-31T23:51:13Z", "template": "b_kt17_model_tot_##sampling##_##rsun##_##dist##_##orbit##", "ucd": "phys.magField", "units": "nT", "xmlid": "b_kt17_model_tot_60_0.427_50_m10_m1_xyz_mso"}, "dataSource": "IRAP", "desc": "KT17 mercury magnetic field model
Sampling: 1M
Provider: IRAP", "is_public": "True", "lastModificationDate": "2021-02-12T10:13:17Z", "lastUpdate": "2021-02-12T10:12:39Z", "measurement_type": "MagneticField", "name": "KT17 model", "processing_level": "Calibrated", "sampling": "1M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Mariner10/Models/m10-kt17-model", "start_date": "1974-03-26T23:55:21Z", "stop_date": "1974-03-31T23:51:13Z", "target": "Mercury", "xmlid": "m10-kt17-model"}, "name": "Analytical Models", "xmlid": "Mariner10_models"}, "Ephemeris": {"__spz_name__": "Ephemeris", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Mariner10_ephemeris", "att": "auto/Mariner10_ephemeris", "desc": "", "is_public": "True", "m10_m1_orb": {"__spz_name__": "flyby mercury 1", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "m10-m1-orb", "att": "auto/m10-m1-orb", "dataSource": "PDS", "desc": "
Sampling: 6S
Provider: PDS", "is_public": "True", "lastModificationDate": "2021-02-12T10:13:17Z", "lastUpdate": "2021-02-12T10:12:39Z", "m10_m1_lat": {"__spz_name__": "lat_pc_mercury", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "m10_m1_lat", "dataset": "m10-m1-orb", "display_type": "timeseries", "is_public": "True", "name": "lat_pc_mercury", "start_date": "1974-03-26T23:55:21Z", "stop_date": "1974-03-31T23:51:13Z", "units": "degrees", "xmlid": "m10_m1_lat"}, "m10_m1_lon": {"__spz_name__": "lon_pc_mercury", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "m10_m1_lon", "dataset": "m10-m1-orb", "display_type": "timeseries", "is_public": "True", "name": "lon_pc_mercury", "start_date": "1974-03-26T23:55:21Z", "stop_date": "1974-03-31T23:51:13Z", "units": "degrees", "xmlid": "m10_m1_lon"}, "m10_m1_r": {"__spz_name__": "distance m10-mercury", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "m10_m1_r", "dataset": "m10-m1-orb", "display_type": "timeseries", "is_public": "True", "name": "distance m10-mercury", "start_date": "1974-03-26T23:55:21Z", "stop_date": "1974-03-31T23:51:13Z", "units": "Rme", "xmlid": "m10_m1_r"}, "m10_m1_xyz_mseq": {"__spz_name__": "xyz_mseq", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "m10_m1_xyz_mseq", "dataset": "m10-m1-orb", "display_type": "timeseries", "is_public": "True", "m10_m1_xyz_mseq0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "m10_m1_xyz_mseq(0)", "dataset": "m10-m1-orb", "index1": "0", "is_public": "True", "name": "x", "parameter": "m10_m1_xyz_mseq", "start_date": "1974-03-26T23:55:21Z", "stop_date": "1974-03-31T23:51:13Z", "xmlid": "m10_m1_xyz_mseq(0)"}, "m10_m1_xyz_mseq1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "m10_m1_xyz_mseq(1)", "dataset": "m10-m1-orb", "index1": "1", "is_public": "True", "name": "y", "parameter": "m10_m1_xyz_mseq", "start_date": "1974-03-26T23:55:21Z", "stop_date": "1974-03-31T23:51:13Z", "xmlid": "m10_m1_xyz_mseq(1)"}, "m10_m1_xyz_mseq2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "m10_m1_xyz_mseq(2)", "dataset": "m10-m1-orb", "index1": "2", "is_public": "True", "name": "z", "parameter": "m10_m1_xyz_mseq", "start_date": "1974-03-26T23:55:21Z", "stop_date": "1974-03-31T23:51:13Z", "xmlid": "m10_m1_xyz_mseq(2)"}, "name": "xyz_mseq", "size": "3", "start_date": "1974-03-26T23:55:21Z", "stop_date": "1974-03-31T23:51:13Z", "units": "Rme", "xmlid": "m10_m1_xyz_mseq"}, "m10_m1_xyz_mso": {"__spz_name__": "xyz_mso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "m10_m1_xyz_mso", "dataset": "m10-m1-orb", "display_type": "timeseries", "is_public": "True", "m10_m1_xyz_mso0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "m10_m1_xyz_mso(0)", "dataset": "m10-m1-orb", "index1": "0", "is_public": "True", "name": "x", "parameter": "m10_m1_xyz_mso", "start_date": "1974-03-26T23:55:21Z", "stop_date": "1974-03-31T23:51:13Z", "xmlid": "m10_m1_xyz_mso(0)"}, "m10_m1_xyz_mso1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "m10_m1_xyz_mso(1)", "dataset": "m10-m1-orb", "index1": "1", "is_public": "True", "name": "y", "parameter": "m10_m1_xyz_mso", "start_date": "1974-03-26T23:55:21Z", "stop_date": "1974-03-31T23:51:13Z", "xmlid": "m10_m1_xyz_mso(1)"}, "m10_m1_xyz_mso2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "m10_m1_xyz_mso(2)", "dataset": "m10-m1-orb", "index1": "2", "is_public": "True", "name": "z", "parameter": "m10_m1_xyz_mso", "start_date": "1974-03-26T23:55:21Z", "stop_date": "1974-03-31T23:51:13Z", "xmlid": "m10_m1_xyz_mso(2)"}, "name": "xyz_mso", "size": "3", "start_date": "1974-03-26T23:55:21Z", "stop_date": "1974-03-31T23:51:13Z", "units": "Rme", "xmlid": "m10_m1_xyz_mso"}, "measurement_type": "Ephemeris", "name": "flyby mercury 1", "processing_level": "Calibrated", "sampling": "6S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Mariner10/Ephemeris/m10-m1-orb", "start_date": "1974-03-26T23:55:21Z", "stop_date": "1974-03-31T23:51:13Z", "xmlid": "m10-m1-orb"}, "m10_m2_orb": {"__spz_name__": "flyby mercury 2", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "m10-m2-orb", "att": "auto/m10-m2-orb", "dataSource": "PDS", "desc": "
Sampling: 6S
Provider: PDS", "is_public": "True", "lastModificationDate": "2021-02-12T10:18:14Z", "lastUpdate": "2021-02-12T10:17:50Z", "m10_m2_xyz_seq": {"__spz_name__": "xyz_seq", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "m10_m2_xyz_seq", "dataset": "m10-m2-orb", "display_type": "timeseries", "is_public": "True", "m10_m2_xyz_seq0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "m10_m2_xyz_seq(0)", "dataset": "m10-m2-orb", "index1": "0", "is_public": "True", "name": "x", "parameter": "m10_m2_xyz_seq", "start_date": "1974-09-20T01:36:05Z", "stop_date": "1974-09-21T22:44:28Z", "xmlid": "m10_m2_xyz_seq(0)"}, "m10_m2_xyz_seq1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "m10_m2_xyz_seq(1)", "dataset": "m10-m2-orb", "index1": "1", "is_public": "True", "name": "y", "parameter": "m10_m2_xyz_seq", "start_date": "1974-09-20T01:36:05Z", "stop_date": "1974-09-21T22:44:28Z", "xmlid": "m10_m2_xyz_seq(1)"}, "m10_m2_xyz_seq2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "m10_m2_xyz_seq(2)", "dataset": "m10-m2-orb", "index1": "2", "is_public": "True", "name": "z", "parameter": "m10_m2_xyz_seq", "start_date": "1974-09-20T01:36:05Z", "stop_date": "1974-09-21T22:44:28Z", "xmlid": "m10_m2_xyz_seq(2)"}, "name": "xyz_seq", "size": "3", "start_date": "1974-09-20T01:36:05Z", "stop_date": "1974-09-21T22:44:28Z", "units": "AU", "xmlid": "m10_m2_xyz_seq"}, "measurement_type": "Ephemeris", "name": "flyby mercury 2", "processing_level": "Calibrated", "sampling": "6S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Mariner10/Ephemeris/m10-m2-orb", "start_date": "1974-09-20T01:36:05Z", "stop_date": "1974-09-21T22:44:28Z", "xmlid": "m10-m2-orb"}, "m10_m3_orb": {"__spz_name__": "flyby mercury 3", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "m10-m3-orb", "att": "auto/m10-m3-orb", "dataSource": "PDS", "desc": "
Sampling: 6S
Provider: PDS", "is_public": "True", "lastModificationDate": "2021-02-12T10:52:41Z", "lastUpdate": "2021-02-12T10:52:30Z", "m10_m3_xyz": {"__spz_name__": "xyz_seq", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "m10_m3_xyz", "dataset": "m10-m3-orb", "display_type": "timeseries", "is_public": "True", "m10_m3_xyz0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "m10_m3_xyz(0)", "dataset": "m10-m3-orb", "index1": "0", "is_public": "True", "name": "x", "parameter": "m10_m3_xyz", "start_date": "1975-03-16T00:00:02Z", "stop_date": "1975-03-17T23:50:55Z", "xmlid": "m10_m3_xyz(0)"}, "m10_m3_xyz1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "m10_m3_xyz(1)", "dataset": "m10-m3-orb", "index1": "1", "is_public": "True", "name": "y", "parameter": "m10_m3_xyz", "start_date": "1975-03-16T00:00:02Z", "stop_date": "1975-03-17T23:50:55Z", "xmlid": "m10_m3_xyz(1)"}, "m10_m3_xyz2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "m10_m3_xyz(2)", "dataset": "m10-m3-orb", "index1": "2", "is_public": "True", "name": "z", "parameter": "m10_m3_xyz", "start_date": "1975-03-16T00:00:02Z", "stop_date": "1975-03-17T23:50:55Z", "xmlid": "m10_m3_xyz(2)"}, "name": "xyz_seq", "size": "3", "start_date": "1975-03-16T00:00:02Z", "stop_date": "1975-03-17T23:50:55Z", "units": "AU", "xmlid": "m10_m3_xyz"}, "measurement_type": "Ephemeris", "name": "flyby mercury 3", "processing_level": "Calibrated", "sampling": "6S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Mariner10/Ephemeris/m10-m3-orb", "start_date": "1975-03-16T00:00:02Z", "stop_date": "1975-03-17T23:50:55Z", "xmlid": "m10-m3-orb"}, "name": "Ephemeris", "xmlid": "Mariner10_ephemeris"}, "MAG": {"__spz_name__": "MAG", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Mariner10_magnetometer", "att": "auto/Mariner10_magnetometer", "desc": "Triaxial Fluxgate Magnetometer on Mariner 10
Magnetometer", "flyby_mercury_1": {"__spz_name__": "flyby mercury 1", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "cass-mag-fb1", "is_public": "True", "m10_mag_m1highres": {"__spz_name__": "0.04 sec", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "m10-mag-m1highres", "att": "auto/m10-mag-m1highres", "dataSource": "PDS", "desc": "Magnetic field data high resolution
Sampling: 0.04S
Provider: PDS", "is_public": "True", "lastModificationDate": "2021-02-12T10:57:35Z", "lastUpdate": "2021-02-12T10:57:12Z", "m10_m1_hr_b_mseq": {"__spz_name__": "b_mseq", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "m10_m1_hr_b_mseq", "dataset": "m10-mag-m1highres", "display_type": "timeseries", "is_public": "True", "m10_m1_hr_b_mseq0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "m10_m1_hr_b_mseq(0)", "dataset": "m10-mag-m1highres", "index1": "0", "is_public": "True", "name": "bx", "parameter": "m10_m1_hr_b_mseq", "start_date": "1974-03-29T20:28:32Z", "stop_date": "1974-03-31T15:58:07Z", "xmlid": "m10_m1_hr_b_mseq(0)"}, "m10_m1_hr_b_mseq1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "m10_m1_hr_b_mseq(1)", "dataset": "m10-mag-m1highres", "index1": "1", "is_public": "True", "name": "by", "parameter": "m10_m1_hr_b_mseq", "start_date": "1974-03-29T20:28:32Z", "stop_date": "1974-03-31T15:58:07Z", "xmlid": "m10_m1_hr_b_mseq(1)"}, "m10_m1_hr_b_mseq2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "m10_m1_hr_b_mseq(2)", "dataset": "m10-mag-m1highres", "index1": "2", "is_public": "True", "name": "bz", "parameter": "m10_m1_hr_b_mseq", "start_date": "1974-03-29T20:28:32Z", "stop_date": "1974-03-31T15:58:07Z", "xmlid": "m10_m1_hr_b_mseq(2)"}, "name": "b_mseq", "size": "3", "start_date": "1974-03-29T20:28:32Z", "stop_date": "1974-03-31T15:58:07Z", "ucd": "phys.magField", "units": "nT", "xmlid": "m10_m1_hr_b_mseq"}, "m10_m1_hr_bt": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "m10_m1_hr_bt", "dataset": "m10-mag-m1highres", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "1974-03-29T20:28:32Z", "stop_date": "1974-03-31T15:58:07Z", "ucd": "phys.magField", "units": "nT", "xmlid": "m10_m1_hr_bt"}, "measurement_type": "MagneticField", "name": "0.04 sec", "processing_level": "Calibrated", "sampling": "0.04S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Mariner10/MAG/m10-mag-m1highres", "start_date": "1974-03-29T20:28:32Z", "stop_date": "1974-03-31T15:58:07Z", "target": "Mercury", "xmlid": "m10-mag-m1highres"}, "m10_mag_m1mean6s": {"__spz_name__": "6 sec", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "m10-mag-m1mean6s", "att": "auto/m10-mag-m1mean6s", "dataSource": "PDS", "desc": "Magnetic field data 6s average
Sampling: 6S
Provider: PDS", "is_public": "True", "lastModificationDate": "2021-02-12T10:55:40Z", "lastUpdate": "2021-02-12T10:55:29Z", "m10_b_mseq": {"__spz_name__": "b_mseq", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "m10_b_mseq", "dataset": "m10-mag-m1mean6s", "display_type": "timeseries", "is_public": "True", "m10_b_mseq0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "m10_b_mseq(0)", "dataset": "m10-mag-m1mean6s", "index1": "0", "is_public": "True", "name": "bx", "parameter": "m10_b_mseq", "start_date": "1974-03-26T23:55:21Z", "stop_date": "1974-03-31T23:51:13Z", "xmlid": "m10_b_mseq(0)"}, "m10_b_mseq1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "m10_b_mseq(1)", "dataset": "m10-mag-m1mean6s", "index1": "1", "is_public": "True", "name": "by", "parameter": "m10_b_mseq", "start_date": "1974-03-26T23:55:21Z", "stop_date": "1974-03-31T23:51:13Z", "xmlid": "m10_b_mseq(1)"}, "m10_b_mseq2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "m10_b_mseq(2)", "dataset": "m10-mag-m1mean6s", "index1": "2", "is_public": "True", "name": "bz", "parameter": "m10_b_mseq", "start_date": "1974-03-26T23:55:21Z", "stop_date": "1974-03-31T23:51:13Z", "xmlid": "m10_b_mseq(2)"}, "name": "b_mseq", "size": "3", "start_date": "1974-03-26T23:55:21Z", "stop_date": "1974-03-31T23:51:13Z", "ucd": "phys.magField", "units": "nT", "xmlid": "m10_b_mseq"}, "m10_b_mso": {"__spz_name__": "b_mso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "m10_b_mso", "dataset": "m10-mag-m1mean6s", "display_type": "timeseries", "is_public": "True", "m10_b_mso0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "m10_b_mso(0)", "dataset": "m10-mag-m1mean6s", "index1": "0", "is_public": "True", "name": "bx", "parameter": "m10_b_mso", "start_date": "1974-03-26T23:55:21Z", "stop_date": "1974-03-31T23:51:13Z", "xmlid": "m10_b_mso(0)"}, "m10_b_mso1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "m10_b_mso(1)", "dataset": "m10-mag-m1mean6s", "index1": "1", "is_public": "True", "name": "by", "parameter": "m10_b_mso", "start_date": "1974-03-26T23:55:21Z", "stop_date": "1974-03-31T23:51:13Z", "xmlid": "m10_b_mso(1)"}, "m10_b_mso2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "m10_b_mso(2)", "dataset": "m10-mag-m1mean6s", "index1": "2", "is_public": "True", "name": "bz", "parameter": "m10_b_mso", "start_date": "1974-03-26T23:55:21Z", "stop_date": "1974-03-31T23:51:13Z", "xmlid": "m10_b_mso(2)"}, "name": "b_mso", "size": "3", "start_date": "1974-03-26T23:55:21Z", "stop_date": "1974-03-31T23:51:13Z", "ucd": "phys.magField", "units": "nT", "xmlid": "m10_b_mso"}, "m10_b_pc": {"__spz_name__": "b_pc", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "m10_b_pc", "dataset": "m10-mag-m1mean6s", "display_type": "timeseries", "is_public": "True", "m10_b_pc0": {"__spz_name__": "br", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "m10_b_pc(0)", "dataset": "m10-mag-m1mean6s", "index1": "0", "is_public": "True", "name": "br", "parameter": "m10_b_pc", "start_date": "1974-03-26T23:55:21Z", "stop_date": "1974-03-31T23:51:13Z", "xmlid": "m10_b_pc(0)"}, "m10_b_pc1": {"__spz_name__": "btheta", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "m10_b_pc(1)", "dataset": "m10-mag-m1mean6s", "index1": "1", "is_public": "True", "name": "btheta", "parameter": "m10_b_pc", "start_date": "1974-03-26T23:55:21Z", "stop_date": "1974-03-31T23:51:13Z", "xmlid": "m10_b_pc(1)"}, "m10_b_pc2": {"__spz_name__": "bphi", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "m10_b_pc(2)", "dataset": "m10-mag-m1mean6s", "index1": "2", "is_public": "True", "name": "bphi", "parameter": "m10_b_pc", "start_date": "1974-03-26T23:55:21Z", "stop_date": "1974-03-31T23:51:13Z", "xmlid": "m10_b_pc(2)"}, "name": "b_pc", "size": "3", "start_date": "1974-03-26T23:55:21Z", "stop_date": "1974-03-31T23:51:13Z", "ucd": "phys.magField", "units": "nT", "xmlid": "m10_b_pc"}, "m10_bt": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "m10_bt", "dataset": "m10-mag-m1mean6s", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "1974-03-26T23:55:21Z", "stop_date": "1974-03-31T23:51:13Z", "ucd": "phys.magField", "units": "nT", "xmlid": "m10_bt"}, "measurement_type": "MagneticField", "name": "6 sec", "processing_level": "Calibrated", "sampling": "6S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Mariner10/MAG/m10-mag-m1mean6s", "start_date": "1974-03-26T23:55:21Z", "stop_date": "1974-03-31T23:51:13Z", "target": "Mercury", "xmlid": "m10-mag-m1mean6s"}, "name": "flyby mercury 1", "xmlid": "cass-mag-fb1"}, "flyby_mercury_2": {"__spz_name__": "flyby mercury 2", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "cass-mag-fb2", "is_public": "True", "m10_mag_m2mean6s": {"__spz_name__": "6 sec", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "m10-mag-m2mean6s", "att": "auto/m10-mag-m2mean6s", "dataSource": "PDS", "desc": "Magnetic field data 6s average
Sampling: 6S
Provider: PDS", "is_public": "True", "lastModificationDate": "2021-02-12T10:59:08Z", "lastUpdate": "2021-02-12T10:58:57Z", "m10_m2_b_seq": {"__spz_name__": "b_seq", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "m10_m2_b_seq", "dataset": "m10-mag-m2mean6s", "display_type": "timeseries", "is_public": "True", "m10_m2_b_seq0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "m10_m2_b_seq(0)", "dataset": "m10-mag-m2mean6s", "index1": "0", "is_public": "True", "name": "bx", "parameter": "m10_m2_b_seq", "start_date": "1974-09-20T01:36:05Z", "stop_date": "1974-09-21T22:44:28Z", "xmlid": "m10_m2_b_seq(0)"}, "m10_m2_b_seq1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "m10_m2_b_seq(1)", "dataset": "m10-mag-m2mean6s", "index1": "1", "is_public": "True", "name": "by", "parameter": "m10_m2_b_seq", "start_date": "1974-09-20T01:36:05Z", "stop_date": "1974-09-21T22:44:28Z", "xmlid": "m10_m2_b_seq(1)"}, "m10_m2_b_seq2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "m10_m2_b_seq(2)", "dataset": "m10-mag-m2mean6s", "index1": "2", "is_public": "True", "name": "bz", "parameter": "m10_m2_b_seq", "start_date": "1974-09-20T01:36:05Z", "stop_date": "1974-09-21T22:44:28Z", "xmlid": "m10_m2_b_seq(2)"}, "name": "b_seq", "size": "3", "start_date": "1974-09-20T01:36:05Z", "stop_date": "1974-09-21T22:44:28Z", "ucd": "phys.magField", "units": "nT", "xmlid": "m10_m2_b_seq"}, "m10_m2_bt": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "m10_m2_bt", "dataset": "m10-mag-m2mean6s", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "1974-09-20T01:36:05Z", "stop_date": "1974-09-21T22:44:28Z", "ucd": "phys.magField", "units": "nT", "xmlid": "m10_m2_bt"}, "measurement_type": "MagneticField", "name": "6 sec", "processing_level": "Calibrated", "sampling": "6S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Mariner10/MAG/m10-mag-m2mean6s", "start_date": "1974-09-20T01:36:05Z", "stop_date": "1974-09-21T22:44:28Z", "target": "Mercury", "xmlid": "m10-mag-m2mean6s"}, "name": "flyby mercury 2", "xmlid": "cass-mag-fb2"}, "flyby_mercury_3": {"__spz_name__": "flyby mercury 3", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "cass-mag-fb3", "is_public": "True", "m10_mag_m3highres": {"__spz_name__": "0.04 sec", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "m10-mag-m3highres", "att": "auto/m10-mag-m3highres", "dataSource": "PDS", "desc": "Magnetic field data, high resolution
Sampling: 0.04S
Provider: PDS", "is_public": "True", "lastModificationDate": "2021-02-12T12:02:20Z", "lastUpdate": "2021-02-12T12:00:49Z", "m10_m3_hr_b_mso": {"__spz_name__": "b_mso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "m10_m3_hr_b_mso", "dataset": "m10-mag-m3highres", "display_type": "timeseries", "is_public": "True", "m10_m3_hr_b_mso0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "m10_m3_hr_b_mso(0)", "dataset": "m10-mag-m3highres", "index1": "0", "is_public": "True", "name": "bx", "parameter": "m10_m3_hr_b_mso", "start_date": "1975-03-15T23:51:38Z", "stop_date": "1975-03-16T23:51:31Z", "xmlid": "m10_m3_hr_b_mso(0)"}, "m10_m3_hr_b_mso1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "m10_m3_hr_b_mso(1)", "dataset": "m10-mag-m3highres", "index1": "1", "is_public": "True", "name": "by", "parameter": "m10_m3_hr_b_mso", "start_date": "1975-03-15T23:51:38Z", "stop_date": "1975-03-16T23:51:31Z", "xmlid": "m10_m3_hr_b_mso(1)"}, "m10_m3_hr_b_mso2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "m10_m3_hr_b_mso(2)", "dataset": "m10-mag-m3highres", "index1": "2", "is_public": "True", "name": "bz", "parameter": "m10_m3_hr_b_mso", "start_date": "1975-03-15T23:51:38Z", "stop_date": "1975-03-16T23:51:31Z", "xmlid": "m10_m3_hr_b_mso(2)"}, "name": "b_mso", "size": "3", "start_date": "1975-03-15T23:51:38Z", "stop_date": "1975-03-16T23:51:31Z", "ucd": "phys.magField", "units": "nT", "xmlid": "m10_m3_hr_b_mso"}, "m10_m3_hr_bt": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "m10_m3_hr_bt", "dataset": "m10-mag-m3highres", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "1975-03-15T23:51:38Z", "stop_date": "1975-03-16T23:51:31Z", "ucd": "phys.magField", "units": "nT", "xmlid": "m10_m3_hr_bt"}, "measurement_type": "MagneticField", "name": "0.04 sec", "processing_level": "Calibrated", "sampling": "0.04S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Mariner10/MAG/m10-mag-m3highres", "start_date": "1975-03-15T23:51:38Z", "stop_date": "1975-03-16T23:51:31Z", "target": "Mercury", "xmlid": "m10-mag-m3highres"}, "m10_mag_m3mean6s": {"__spz_name__": "6 sec", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "m10-mag-m3mean6s", "att": "auto/m10-mag-m3mean6s", "dataSource": "PDS", "desc": "Magnetic field data 6s average
Sampling: 6S
Provider: PDS", "is_public": "True", "lastModificationDate": "2021-02-12T11:00:11Z", "lastUpdate": "2021-02-12T11:00:04Z", "m10_m3_b_mso": {"__spz_name__": "b_mso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "m10_m3_b_mso", "dataset": "m10-mag-m3mean6s", "display_type": "timeseries", "is_public": "True", "m10_m3_b_mso0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "m10_m3_b_mso(0)", "dataset": "m10-mag-m3mean6s", "index1": "0", "is_public": "True", "name": "bx", "parameter": "m10_m3_b_mso", "start_date": "1975-03-15T23:51:49Z", "stop_date": "1975-03-16T23:51:27Z", "xmlid": "m10_m3_b_mso(0)"}, "m10_m3_b_mso1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "m10_m3_b_mso(1)", "dataset": "m10-mag-m3mean6s", "index1": "1", "is_public": "True", "name": "by", "parameter": "m10_m3_b_mso", "start_date": "1975-03-15T23:51:49Z", "stop_date": "1975-03-16T23:51:27Z", "xmlid": "m10_m3_b_mso(1)"}, "m10_m3_b_mso2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "m10_m3_b_mso(2)", "dataset": "m10-mag-m3mean6s", "index1": "2", "is_public": "True", "name": "bz", "parameter": "m10_m3_b_mso", "start_date": "1975-03-15T23:51:49Z", "stop_date": "1975-03-16T23:51:27Z", "xmlid": "m10_m3_b_mso(2)"}, "name": "b_mso", "size": "3", "start_date": "1975-03-15T23:51:49Z", "stop_date": "1975-03-16T23:51:27Z", "ucd": "phys.magField", "units": "nT", "xmlid": "m10_m3_b_mso"}, "m10_m3_bt": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "m10_m3_bt", "dataset": "m10-mag-m3mean6s", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "1975-03-15T23:51:49Z", "stop_date": "1975-03-16T23:51:27Z", "ucd": "phys.magField", "units": "nT", "xmlid": "m10_m3_bt"}, "measurement_type": "MagneticField", "name": "6 sec", "processing_level": "Calibrated", "sampling": "6S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Mariner10/MAG/m10-mag-m3mean6s", "start_date": "1975-03-15T23:51:49Z", "stop_date": "1975-03-16T23:51:27Z", "target": "Mercury", "xmlid": "m10-mag-m3mean6s"}, "name": "flyby mercury 3", "xmlid": "cass-mag-fb3"}, "is_public": "True", "name": "MAG", "xmlid": "Mariner10_magnetometer"}, "PLS": {"__spz_name__": "PLS", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Mariner10_pls", "att": "auto/Mariner10_pls", "desc": "Plasma Science Experiment on Mariner 10
Magnetometer", "e____flyby_mercury_1": {"__spz_name__": "e- : flyby mercury 1", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "m10-pls-m1", "is_public": "True", "m10_pls_m1count": {"__spz_name__": "spectra", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "m10-pls-m1count", "att": "auto/m10-pls-m1count", "dataSource": "PDS", "desc": "
Sampling: 6S
Provider: PDS", "is_public": "True", "lastModificationDate": "2021-02-12T11:02:18Z", "lastUpdate": "2021-02-12T11:01:54Z", "m10_pls_m1count_el": {"__spz_name__": "e- count", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "m10_pls_m1count_el", "dataset": "m10-pls-m1count", "display_type": "spectrogram", "is_public": "True", "name": "e- count", "start_date": "1974-03-28T00:00:03Z", "stop_date": "1974-03-29T23:59:56Z", "units": "cnts", "xmlid": "m10_pls_m1count_el"}, "measurement_type": "Ephemeris", "name": "spectra", "processing_level": "Calibrated", "sampling": "6S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Mariner10/PLS/m10-pls-m1count", "start_date": "1974-03-28T00:00:03Z", "stop_date": "1974-03-29T23:59:56Z", "xmlid": "m10-pls-m1count"}, "m10_pls_m1mom": {"__spz_name__": "moments", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "m10-pls-m1mom", "att": "auto/m10-pls-m1mom", "dataSource": "PDS", "desc": "
Sampling: 6S
Provider: PDS", "is_public": "True", "lastModificationDate": "2021-02-12T11:03:43Z", "lastUpdate": "2021-02-12T11:03:24Z", "m10_pls_m1mom_c1d": {"__spz_name__": "core 1 dens", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "m10_pls_m1mom_c1d", "dataset": "m10-pls-m1mom", "display_type": "timeseries", "is_public": "True", "name": "core 1 dens", "start_date": "1974-03-28T00:00:03Z", "stop_date": "1974-03-29T23:59:56Z", "units": "cm\u207b\u00b3", "xmlid": "m10_pls_m1mom_c1d"}, "m10_pls_m1mom_c1t": {"__spz_name__": "core 1 temp", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "m10_pls_m1mom_c1t", "dataset": "m10-pls-m1mom", "display_type": "timeseries", "is_public": "True", "name": "core 1 temp", "start_date": "1974-03-28T00:00:03Z", "stop_date": "1974-03-29T23:59:56Z", "units": "K", "xmlid": "m10_pls_m1mom_c1t"}, "m10_pls_m1mom_c2d": {"__spz_name__": "core 2 dens", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "m10_pls_m1mom_c2d", "dataset": "m10-pls-m1mom", "display_type": "timeseries", "is_public": "True", "name": "core 2 dens", "start_date": "1974-03-28T00:00:03Z", "stop_date": "1974-03-29T23:59:56Z", "units": "cm\u207b\u00b3", "xmlid": "m10_pls_m1mom_c2d"}, "m10_pls_m1mom_c2t": {"__spz_name__": "core 2 temp", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "m10_pls_m1mom_c2t", "dataset": "m10-pls-m1mom", "display_type": "timeseries", "is_public": "True", "name": "core 2 temp", "start_date": "1974-03-28T00:00:03Z", "stop_date": "1974-03-29T23:59:56Z", "units": "K", "xmlid": "m10_pls_m1mom_c2t"}, "m10_pls_m1mom_hd": {"__spz_name__": "halo dens", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "m10_pls_m1mom_hd", "dataset": "m10-pls-m1mom", "display_type": "timeseries", "is_public": "True", "name": "halo dens", "start_date": "1974-03-28T00:00:03Z", "stop_date": "1974-03-29T23:59:56Z", "units": "cm\u207b\u00b3", "xmlid": "m10_pls_m1mom_hd"}, "m10_pls_m1mom_ht": {"__spz_name__": "halo temp", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "m10_pls_m1mom_ht", "dataset": "m10-pls-m1mom", "display_type": "timeseries", "is_public": "True", "name": "halo temp", "start_date": "1974-03-28T00:00:03Z", "stop_date": "1974-03-29T23:59:56Z", "units": "K", "xmlid": "m10_pls_m1mom_ht"}, "m10_pls_m1mom_md": {"__spz_name__": "moment dens", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "m10_pls_m1mom_md", "dataset": "m10-pls-m1mom", "display_type": "timeseries", "is_public": "True", "name": "moment dens", "start_date": "1974-03-28T00:00:03Z", "stop_date": "1974-03-29T23:59:56Z", "units": "cm\u207b\u00b3", "xmlid": "m10_pls_m1mom_md"}, "m10_pls_m1mom_mt": {"__spz_name__": "moment temp", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "m10_pls_m1mom_mt", "dataset": "m10-pls-m1mom", "display_type": "timeseries", "is_public": "True", "name": "moment temp", "start_date": "1974-03-28T00:00:03Z", "stop_date": "1974-03-29T23:59:56Z", "units": "K", "xmlid": "m10_pls_m1mom_mt"}, "measurement_type": "Ephemeris", "name": "moments", "processing_level": "Calibrated", "sampling": "6S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Mariner10/PLS/m10-pls-m1mom", "start_date": "1974-03-28T00:00:03Z", "stop_date": "1974-03-29T23:59:56Z", "xmlid": "m10-pls-m1mom"}, "name": "e- : flyby mercury 1", "xmlid": "m10-pls-m1"}, "e____flyby_mercury_2": {"__spz_name__": "e- : flyby mercury 2", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "m10-pls-m2", "is_public": "True", "m10_pls_m2count": {"__spz_name__": "spectra", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "m10-pls-m2count", "att": "auto/m10-pls-m2count", "dataSource": "PDS", "desc": "
Sampling: 6S
Provider: PDS", "is_public": "True", "lastModificationDate": "2021-02-12T11:10:30Z", "lastUpdate": "2021-02-12T11:10:08Z", "m10_pls_m2count_el": {"__spz_name__": "e- count", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "m10_pls_m2count_el", "dataset": "m10-pls-m2count", "display_type": "spectrogram", "is_public": "True", "name": "e- count", "start_date": "1974-09-20T01:36:05Z", "stop_date": "1974-09-21T22:44:34Z", "units": "cnts", "xmlid": "m10_pls_m2count_el"}, "measurement_type": "Ephemeris", "name": "spectra", "processing_level": "Calibrated", "sampling": "6S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Mariner10/PLS/m10-pls-m2count", "start_date": "1974-09-20T01:36:05Z", "stop_date": "1974-09-21T22:44:34Z", "xmlid": "m10-pls-m2count"}, "m10_pls_m2mom": {"__spz_name__": "moments", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "m10-pls-m2mom", "att": "auto/m10-pls-m2mom", "dataSource": "PDS", "desc": "
Sampling: 6S
Provider: PDS", "is_public": "True", "lastModificationDate": "2021-02-12T11:08:17Z", "lastUpdate": "2021-02-12T11:08:02Z", "m10_pls_m2mom_c1d": {"__spz_name__": "core 1 dens", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "m10_pls_m2mom_c1d", "dataset": "m10-pls-m2mom", "display_type": "timeseries", "is_public": "True", "name": "core 1 dens", "start_date": "1974-09-20T01:36:05Z", "stop_date": "1974-09-21T22:44:28Z", "units": "cm\u207b\u00b3", "xmlid": "m10_pls_m2mom_c1d"}, "m10_pls_m2mom_c1t": {"__spz_name__": "core 1 temp", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "m10_pls_m2mom_c1t", "dataset": "m10-pls-m2mom", "display_type": "timeseries", "is_public": "True", "name": "core 1 temp", "start_date": "1974-09-20T01:36:05Z", "stop_date": "1974-09-21T22:44:28Z", "units": "K", "xmlid": "m10_pls_m2mom_c1t"}, "m10_pls_m2mom_c2d": {"__spz_name__": "core 2 dens", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "m10_pls_m2mom_c2d", "dataset": "m10-pls-m2mom", "display_type": "timeseries", "is_public": "True", "name": "core 2 dens", "start_date": "1974-09-20T01:36:05Z", "stop_date": "1974-09-21T22:44:28Z", "units": "cm\u207b\u00b3", "xmlid": "m10_pls_m2mom_c2d"}, "m10_pls_m2mom_c2t": {"__spz_name__": "core 2 temp", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "m10_pls_m2mom_c2t", "dataset": "m10-pls-m2mom", "display_type": "timeseries", "is_public": "True", "name": "core 2 temp", "start_date": "1974-09-20T01:36:05Z", "stop_date": "1974-09-21T22:44:28Z", "units": "K", "xmlid": "m10_pls_m2mom_c2t"}, "m10_pls_m2mom_hd": {"__spz_name__": "halo dens", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "m10_pls_m2mom_hd", "dataset": "m10-pls-m2mom", "display_type": "timeseries", "is_public": "True", "name": "halo dens", "start_date": "1974-09-20T01:36:05Z", "stop_date": "1974-09-21T22:44:28Z", "units": "cm\u207b\u00b3", "xmlid": "m10_pls_m2mom_hd"}, "m10_pls_m2mom_ht": {"__spz_name__": "halo temp", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "m10_pls_m2mom_ht", "dataset": "m10-pls-m2mom", "display_type": "timeseries", "is_public": "True", "name": "halo temp", "start_date": "1974-09-20T01:36:05Z", "stop_date": "1974-09-21T22:44:28Z", "units": "K", "xmlid": "m10_pls_m2mom_ht"}, "m10_pls_m2mom_md": {"__spz_name__": "moment dens", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "m10_pls_m2mom_md", "dataset": "m10-pls-m2mom", "display_type": "timeseries", "is_public": "True", "name": "moment dens", "start_date": "1974-09-20T01:36:05Z", "stop_date": "1974-09-21T22:44:28Z", "units": "cm\u207b\u00b3", "xmlid": "m10_pls_m2mom_md"}, "m10_pls_m2mom_mt": {"__spz_name__": "moment temp", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "m10_pls_m2mom_mt", "dataset": "m10-pls-m2mom", "display_type": "timeseries", "is_public": "True", "name": "moment temp", "start_date": "1974-09-20T01:36:05Z", "stop_date": "1974-09-21T22:44:28Z", "units": "K", "xmlid": "m10_pls_m2mom_mt"}, "measurement_type": "Ephemeris", "name": "moments", "processing_level": "Calibrated", "sampling": "6S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Mariner10/PLS/m10-pls-m2mom", "start_date": "1974-09-20T01:36:05Z", "stop_date": "1974-09-21T22:44:28Z", "xmlid": "m10-pls-m2mom"}, "name": "e- : flyby mercury 2", "xmlid": "m10-pls-m2"}, "e____flyby_mercury_3": {"__spz_name__": "e- : flyby mercury 3", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "m10-pls-m3", "is_public": "True", "m10_pls_m3count": {"__spz_name__": "spectra", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "m10-pls-m3count", "att": "auto/m10-pls-m3count", "dataSource": "PDS", "desc": "
Sampling: 6S
Provider: PDS", "is_public": "True", "lastModificationDate": "2021-02-12T11:11:55Z", "lastUpdate": "2021-02-12T11:11:40Z", "m10_pls_m3count_el": {"__spz_name__": "e- count", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "m10_pls_m3count_el", "dataset": "m10-pls-m3count", "display_type": "spectrogram", "is_public": "True", "name": "e- count", "start_date": "1975-03-16T00:00:02Z", "stop_date": "1975-03-17T23:50:55Z", "units": "cnts", "xmlid": "m10_pls_m3count_el"}, "measurement_type": "Ephemeris", "name": "spectra", "processing_level": "Calibrated", "sampling": "6S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Mariner10/PLS/m10-pls-m3count", "start_date": "1975-03-16T00:00:02Z", "stop_date": "1975-03-17T23:50:55Z", "xmlid": "m10-pls-m3count"}, "m10_pls_m3mom": {"__spz_name__": "moments", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "m10-pls-m3mom", "att": "auto/m10-pls-m3mom", "dataSource": "PDS", "desc": "
Sampling: 6S
Provider: PDS", "is_public": "True", "lastModificationDate": "2021-02-12T11:13:08Z", "lastUpdate": "2021-02-12T11:12:48Z", "m10_pls_m3mom_c1d": {"__spz_name__": "core 1 dens", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "m10_pls_m3mom_c1d", "dataset": "m10-pls-m3mom", "display_type": "timeseries", "is_public": "True", "name": "core 1 dens", "start_date": "1975-03-16T00:00:02Z", "stop_date": "1975-03-17T23:50:55Z", "units": "cm\u207b\u00b3", "xmlid": "m10_pls_m3mom_c1d"}, "m10_pls_m3mom_c1t": {"__spz_name__": "core 1 temp", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "m10_pls_m3mom_c1t", "dataset": "m10-pls-m3mom", "display_type": "timeseries", "is_public": "True", "name": "core 1 temp", "start_date": "1975-03-16T00:00:02Z", "stop_date": "1975-03-17T23:50:55Z", "units": "K", "xmlid": "m10_pls_m3mom_c1t"}, "m10_pls_m3mom_c2d": {"__spz_name__": "core 2 dens", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "m10_pls_m3mom_c2d", "dataset": "m10-pls-m3mom", "display_type": "timeseries", "is_public": "True", "name": "core 2 dens", "start_date": "1975-03-16T00:00:02Z", "stop_date": "1975-03-17T23:50:55Z", "units": "cm\u207b\u00b3", "xmlid": "m10_pls_m3mom_c2d"}, "m10_pls_m3mom_c2t": {"__spz_name__": "core 2 temp", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "m10_pls_m3mom_c2t", "dataset": "m10-pls-m3mom", "display_type": "timeseries", "is_public": "True", "name": "core 2 temp", "start_date": "1975-03-16T00:00:02Z", "stop_date": "1975-03-17T23:50:55Z", "units": "K", "xmlid": "m10_pls_m3mom_c2t"}, "m10_pls_m3mom_hd": {"__spz_name__": "halo dens", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "m10_pls_m3mom_hd", "dataset": "m10-pls-m3mom", "display_type": "timeseries", "is_public": "True", "name": "halo dens", "start_date": "1975-03-16T00:00:02Z", "stop_date": "1975-03-17T23:50:55Z", "units": "cm\u207b\u00b3", "xmlid": "m10_pls_m3mom_hd"}, "m10_pls_m3mom_ht": {"__spz_name__": "halo temp", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "m10_pls_m3mom_ht", "dataset": "m10-pls-m3mom", "display_type": "timeseries", "is_public": "True", "name": "halo temp", "start_date": "1975-03-16T00:00:02Z", "stop_date": "1975-03-17T23:50:55Z", "units": "K", "xmlid": "m10_pls_m3mom_ht"}, "m10_pls_m3mom_md": {"__spz_name__": "moment dens", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "m10_pls_m3mom_md", "dataset": "m10-pls-m3mom", "display_type": "timeseries", "is_public": "True", "name": "moment dens", "start_date": "1975-03-16T00:00:02Z", "stop_date": "1975-03-17T23:50:55Z", "units": "cm\u207b\u00b3", "xmlid": "m10_pls_m3mom_md"}, "m10_pls_m3mom_mt": {"__spz_name__": "moment temp", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "m10_pls_m3mom_mt", "dataset": "m10-pls-m3mom", "display_type": "timeseries", "is_public": "True", "name": "moment temp", "start_date": "1975-03-16T00:00:02Z", "stop_date": "1975-03-17T23:50:55Z", "units": "K", "xmlid": "m10_pls_m3mom_mt"}, "measurement_type": "Ephemeris", "name": "moments", "processing_level": "Calibrated", "sampling": "6S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Mariner10/PLS/m10-pls-m3mom", "start_date": "1975-03-16T00:00:02Z", "stop_date": "1975-03-17T23:50:55Z", "xmlid": "m10-pls-m3mom"}, "name": "e- : flyby mercury 3", "xmlid": "m10-pls-m3"}, "is_public": "True", "name": "PLS", "xmlid": "Mariner10_pls"}, "__spz_name__": "Mariner 10", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Mariner10", "att": "auto/Mariner10", "desc": "
1973-11-03T00:00:00 - 1975-03-24T00:00:00", "is_public": "True", "name": "Mariner 10", "rank": "2", "target": "Mercury", "xmlid": "Mariner10"}, "OMNI": {"Sun__Solar_Wind__Ground_Based_Indices": {"__spz_name__": "Sun / Solar Wind / Ground-Based Indices", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "OMNI_omni", "att": "auto/OMNI_omni", "desc": "Magnetometer", "is_public": "True", "name": "Sun / Solar Wind / Ground-Based Indices", "omni_1min_all": {"__spz_name__": "1 min", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "omni-1min-all", "att": "auto/omni-1min-all", "dataSource": "CDAWeb", "desc": "One min averaged
Sampling: 60S
Provider: CDAWeb", "is_public": "True", "lastModificationDate": "2024-10-06T22:21:43Z", "lastUpdate": "2024-10-06T22:21:43Z", "measurement_type": "ThermalPlasma", "name": "1 min", "omni1_bsn": {"__spz_name__": "bow shock nose location gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "omni1_bsn", "dataset": "omni-1min-all", "display_type": "timeseries", "is_public": "True", "name": "bow shock nose location gse", "omni1_bsn0": {"__spz_name__": "bsn_x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "omni1_bsn(0)", "dataset": "omni-1min-all", "index1": "0", "is_public": "True", "name": "bsn_x", "parameter": "omni1_bsn", "start_date": "1981-01-01T00:00:00Z", "stop_date": "2024-09-30T23:59:00Z", "xmlid": "omni1_bsn(0)"}, "omni1_bsn1": {"__spz_name__": "bsn_y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "omni1_bsn(1)", "dataset": "omni-1min-all", "index1": "1", "is_public": "True", "name": "bsn_y", "parameter": "omni1_bsn", "start_date": "1981-01-01T00:00:00Z", "stop_date": "2024-09-30T23:59:00Z", "xmlid": "omni1_bsn(1)"}, "omni1_bsn2": {"__spz_name__": "bsn_z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "omni1_bsn(2)", "dataset": "omni-1min-all", "index1": "2", "is_public": "True", "name": "bsn_z", "parameter": "omni1_bsn", "start_date": "1981-01-01T00:00:00Z", "stop_date": "2024-09-30T23:59:00Z", "xmlid": "omni1_bsn(2)"}, "size": "3", "start_date": "1981-01-01T00:00:00Z", "stop_date": "2024-09-30T23:59:00Z", "units": "Re", "xmlid": "omni1_bsn"}, "omni1_imf": {"__spz_name__": "b_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "omni1_imf", "dataset": "omni-1min-all", "display_type": "timeseries", "is_public": "True", "name": "b_gse", "omni1_imf0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "omni1_imf(0)", "dataset": "omni-1min-all", "index1": "0", "is_public": "True", "name": "bx", "parameter": "omni1_imf", "start_date": "1981-01-01T00:00:00Z", "stop_date": "2024-09-30T23:59:00Z", "xmlid": "omni1_imf(0)"}, "omni1_imf1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "omni1_imf(1)", "dataset": "omni-1min-all", "index1": "1", "is_public": "True", "name": "by", "parameter": "omni1_imf", "start_date": "1981-01-01T00:00:00Z", "stop_date": "2024-09-30T23:59:00Z", "xmlid": "omni1_imf(1)"}, "omni1_imf2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "omni1_imf(2)", "dataset": "omni-1min-all", "index1": "2", "is_public": "True", "name": "bz", "parameter": "omni1_imf", "start_date": "1981-01-01T00:00:00Z", "stop_date": "2024-09-30T23:59:00Z", "xmlid": "omni1_imf(2)"}, "size": "3", "start_date": "1981-01-01T00:00:00Z", "stop_date": "2024-09-30T23:59:00Z", "ucd": "phys.magField", "units": "nT", "xmlid": "omni1_imf"}, "omni1_imf_mag": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "omni1_imf_mag", "dataset": "omni-1min-all", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "1981-01-01T00:00:00Z", "stop_date": "2024-09-30T23:59:00Z", "ucd": "phys.magField", "units": "nT", "xmlid": "omni1_imf_mag"}, "omni1_sw_n": {"__spz_name__": "sw density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "omni1_sw_n", "dataset": "omni-1min-all", "display_type": "timeseries", "is_public": "True", "name": "sw density", "start_date": "1981-01-01T00:00:00Z", "stop_date": "2024-09-30T23:59:00Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm-3", "xmlid": "omni1_sw_n"}, "omni1_sw_pdyn": {"__spz_name__": "sw ram pressure", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "omni1_sw_pdyn", "dataset": "omni-1min-all", "description": "P=2*10e-6*Np*Vp^2", "display_type": "timeseries", "is_public": "True", "name": "sw ram pressure", "start_date": "1981-01-01T00:00:00Z", "stop_date": "2024-09-30T23:59:00Z", "ucd": "phys.pressure;phys.atmol.ionStage", "units": "nPa", "xmlid": "omni1_sw_pdyn"}, "omni1_sw_t": {"__spz_name__": "sw temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "omni1_sw_t", "dataset": "omni-1min-all", "display_type": "timeseries", "is_public": "True", "name": "sw temperature", "start_date": "1981-01-01T00:00:00Z", "stop_date": "2024-09-30T23:59:00Z", "ucd": "phys.temperature;phys.atmol.ionStage", "units": "K", "xmlid": "omni1_sw_t"}, "omni1_sw_v": {"__spz_name__": "sw v_bulk", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "omni1_sw_v", "dataset": "omni-1min-all", "display_type": "timeseries", "is_public": "True", "name": "sw v_bulk", "start_date": "1981-01-01T00:00:00Z", "stop_date": "2024-09-30T23:59:00Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "omni1_sw_v"}, "omni1_sw_vgse": {"__spz_name__": "sw v_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "omni1_sw_vgse", "dataset": "omni-1min-all", "display_type": "timeseries", "is_public": "True", "name": "sw v_gse", "omni1_sw_vgse0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "omni1_sw_vgse(0)", "dataset": "omni-1min-all", "index1": "0", "is_public": "True", "name": "vx", "parameter": "omni1_sw_vgse", "start_date": "1981-01-01T00:00:00Z", "stop_date": "2024-09-30T23:59:00Z", "xmlid": "omni1_sw_vgse(0)"}, "omni1_sw_vgse1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "omni1_sw_vgse(1)", "dataset": "omni-1min-all", "index1": "1", "is_public": "True", "name": "vy", "parameter": "omni1_sw_vgse", "start_date": "1981-01-01T00:00:00Z", "stop_date": "2024-09-30T23:59:00Z", "xmlid": "omni1_sw_vgse(1)"}, "omni1_sw_vgse2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "omni1_sw_vgse(2)", "dataset": "omni-1min-all", "index1": "2", "is_public": "True", "name": "vz", "parameter": "omni1_sw_vgse", "start_date": "1981-01-01T00:00:00Z", "stop_date": "2024-09-30T23:59:00Z", "xmlid": "omni1_sw_vgse(2)"}, "size": "3", "start_date": "1981-01-01T00:00:00Z", "stop_date": "2024-09-30T23:59:00Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "omni1_sw_vgse"}, "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/OMNI/omni-1min-all", "start_date": "1981-01-01T00:00:00Z", "stop_date": "2024-09-30T23:59:00Z", "target": "Heliosphere.NearEarth", "xmlid": "omni-1min-all"}, "omni_1min_v2": {"__spz_name__": "1 min V2", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "omni-1min-v2", "att": "auto/omni-1min-v2", "dataSource": "CDAWeb", "desc": "One min averaged
Sampling: 60S
Provider: CDAWeb", "is_public": "True", "lastModificationDate": "2023-09-07T07:52:52Z", "lastUpdate": "2023-09-07T07:47:50Z", "measurement_type": "ThermalPlasma", "name": "1 min V2", "omni_hro2_1min_ae_index": {"__spz_name__": "AE index", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "omni_hro2_1min_ae_index", "dataset": "omni-1min-v2", "display_type": "timeseries", "is_public": "True", "name": "AE index", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2023-06-30T23:59:00Z", "ucd": "src.var.index;phys.magField", "units": "nT", "xmlid": "omni_hro2_1min_ae_index"}, "omni_hro2_1min_al_index": {"__spz_name__": "AL index", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "omni_hro2_1min_al_index", "dataset": "omni-1min-v2", "display_type": "timeseries", "is_public": "True", "name": "AL index", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2023-06-30T23:59:00Z", "ucd": "src.var.index;phys.magField", "units": "nT", "xmlid": "omni_hro2_1min_al_index"}, "omni_hro2_1min_ap_ratio": {"__spz_name__": "sw alpha ratio", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "omni_hro2_1min_ap_ratio", "dataset": "omni-1min-v2", "display_type": "timeseries", "is_public": "True", "name": "sw alpha ratio", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2023-06-30T23:59:00Z", "ucd": "phys.abund", "xmlid": "omni_hro2_1min_ap_ratio"}, "omni_hro2_1min_au_index": {"__spz_name__": "AU index", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "omni_hro2_1min_au_index", "dataset": "omni-1min-v2", "display_type": "timeseries", "is_public": "True", "name": "AU index", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2023-06-30T23:59:00Z", "ucd": "src.var.index;phys.magField", "units": "nT", "xmlid": "omni_hro2_1min_au_index"}, "omni_hro2_1min_b_amag": {"__spz_name__": "sw average b magn (vec)", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "omni_hro2_1min_b_amag", "dataset": "omni-1min-v2", "display_type": "timeseries", "is_public": "True", "name": "sw average b magn (vec)", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2023-06-30T23:59:00Z", "ucd": "phys.magField", "units": "nT", "xmlid": "omni_hro2_1min_b_amag"}, "omni_hro2_1min_b_gse": {"__spz_name__": "b_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "omni_hro2_1min_b_gse", "dataset": "omni-1min-v2", "display_type": "timeseries", "is_public": "True", "name": "b_gse", "omni_hro2_1min_b_gse0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "omni_hro2_1min_b_gse(0)", "dataset": "omni-1min-v2", "index1": "0", "is_public": "True", "name": "bx", "parameter": "omni_hro2_1min_b_gse", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2023-06-30T23:59:00Z", "xmlid": "omni_hro2_1min_b_gse(0)"}, "omni_hro2_1min_b_gse1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "omni_hro2_1min_b_gse(1)", "dataset": "omni-1min-v2", "index1": "1", "is_public": "True", "name": "by", "parameter": "omni_hro2_1min_b_gse", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2023-06-30T23:59:00Z", "xmlid": "omni_hro2_1min_b_gse(1)"}, "omni_hro2_1min_b_gse2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "omni_hro2_1min_b_gse(2)", "dataset": "omni-1min-v2", "index1": "2", "is_public": "True", "name": "bz", "parameter": "omni_hro2_1min_b_gse", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2023-06-30T23:59:00Z", "xmlid": "omni_hro2_1min_b_gse(2)"}, "size": "3", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2023-06-30T23:59:00Z", "ucd": "phys.magField", "units": "nT", "xmlid": "omni_hro2_1min_b_gse"}, "omni_hro2_1min_beta": {"__spz_name__": "sw beta", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "omni_hro2_1min_beta", "dataset": "omni-1min-v2", "display_type": "timeseries", "is_public": "True", "name": "sw beta", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2023-06-30T23:59:00Z", "ucd": "phys.pressure;arith.ratio", "xmlid": "omni_hro2_1min_beta"}, "omni_hro2_1min_bsn_gse": {"__spz_name__": "bow shock nose location gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "omni_hro2_1min_bsn_gse", "dataset": "omni-1min-v2", "display_type": "timeseries", "is_public": "True", "name": "bow shock nose location gse", "omni_hro2_1min_bsn_gse0": {"__spz_name__": "bsn_x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "omni_hro2_1min_bsn_gse(0)", "dataset": "omni-1min-v2", "index1": "0", "is_public": "True", "name": "bsn_x", "parameter": "omni_hro2_1min_bsn_gse", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2023-06-30T23:59:00Z", "xmlid": "omni_hro2_1min_bsn_gse(0)"}, "omni_hro2_1min_bsn_gse1": {"__spz_name__": "bsn_y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "omni_hro2_1min_bsn_gse(1)", "dataset": "omni-1min-v2", "index1": "1", "is_public": "True", "name": "bsn_y", "parameter": "omni_hro2_1min_bsn_gse", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2023-06-30T23:59:00Z", "xmlid": "omni_hro2_1min_bsn_gse(1)"}, "omni_hro2_1min_bsn_gse2": {"__spz_name__": "bsn_z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "omni_hro2_1min_bsn_gse(2)", "dataset": "omni-1min-v2", "index1": "2", "is_public": "True", "name": "bsn_z", "parameter": "omni_hro2_1min_bsn_gse", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2023-06-30T23:59:00Z", "xmlid": "omni_hro2_1min_bsn_gse(2)"}, "size": "3", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2023-06-30T23:59:00Z", "units": "Re", "xmlid": "omni_hro2_1min_bsn_gse"}, "omni_hro2_1min_mach_num": {"__spz_name__": "sw mach alfven", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "omni_hro2_1min_mach_num", "dataset": "omni-1min-v2", "display_type": "timeseries", "is_public": "True", "name": "sw mach alfven", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2023-06-30T23:59:00Z", "ucd": "phys.veloc;arith.ratio", "xmlid": "omni_hro2_1min_mach_num"}, "omni_hro2_1min_mag": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "omni_hro2_1min_mag", "dataset": "omni-1min-v2", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2023-06-30T23:59:00Z", "ucd": "phys.magField", "units": "nT", "xmlid": "omni_hro2_1min_mag"}, "omni_hro2_1min_sw_e": {"__spz_name__": "sw electric field", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "omni_hro2_1min_sw_e", "dataset": "omni-1min-v2", "display_type": "timeseries", "is_public": "True", "name": "sw electric field", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2023-06-30T23:59:00Z", "ucd": "phys.elecField", "units": "mV/m", "xmlid": "omni_hro2_1min_sw_e"}, "omni_hro2_1min_sw_n": {"__spz_name__": "sw density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "omni_hro2_1min_sw_n", "dataset": "omni-1min-v2", "display_type": "timeseries", "is_public": "True", "name": "sw density", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2023-06-30T23:59:00Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm-3", "xmlid": "omni_hro2_1min_sw_n"}, "omni_hro2_1min_sw_p": {"__spz_name__": "sw ram pressure", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "omni_hro2_1min_sw_p", "dataset": "omni-1min-v2", "display_type": "timeseries", "is_public": "True", "name": "sw ram pressure", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2023-06-30T23:59:00Z", "ucd": "phys.pressure;phys.atmol.ionStage", "units": "nPa", "xmlid": "omni_hro2_1min_sw_p"}, "omni_hro2_1min_sw_t": {"__spz_name__": "sw temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "omni_hro2_1min_sw_t", "dataset": "omni-1min-v2", "display_type": "timeseries", "is_public": "True", "name": "sw temperature", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2023-06-30T23:59:00Z", "ucd": "phys.temperature;phys.atmol.ionStage", "units": "K", "xmlid": "omni_hro2_1min_sw_t"}, "omni_hro2_1min_sw_vb": {"__spz_name__": "sw v_bulk", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "omni_hro2_1min_sw_vb", "dataset": "omni-1min-v2", "display_type": "timeseries", "is_public": "True", "name": "sw v_bulk", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2023-06-30T23:59:00Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "omni_hro2_1min_sw_vb"}, "omni_hro2_1min_sw_vgse": {"__spz_name__": "sw v_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "omni_hro2_1min_sw_vgse", "dataset": "omni-1min-v2", "display_type": "timeseries", "is_public": "True", "name": "sw v_gse", "omni_hro2_1min_sw_vgse0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "omni_hro2_1min_sw_vgse(0)", "dataset": "omni-1min-v2", "index1": "0", "is_public": "True", "name": "vx", "parameter": "omni_hro2_1min_sw_vgse", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2023-06-30T23:59:00Z", "xmlid": "omni_hro2_1min_sw_vgse(0)"}, "omni_hro2_1min_sw_vgse1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "omni_hro2_1min_sw_vgse(1)", "dataset": "omni-1min-v2", "index1": "1", "is_public": "True", "name": "vy", "parameter": "omni_hro2_1min_sw_vgse", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2023-06-30T23:59:00Z", "xmlid": "omni_hro2_1min_sw_vgse(1)"}, "omni_hro2_1min_sw_vgse2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "omni_hro2_1min_sw_vgse(2)", "dataset": "omni-1min-v2", "index1": "2", "is_public": "True", "name": "vz", "parameter": "omni_hro2_1min_sw_vgse", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2023-06-30T23:59:00Z", "xmlid": "omni_hro2_1min_sw_vgse(2)"}, "size": "3", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2023-06-30T23:59:00Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "omni_hro2_1min_sw_vgse"}, "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/OMNI/omni-1min-v2", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2023-06-30T23:59:00Z", "target": "Heliosphere.NearEarth", "xmlid": "omni-1min-v2"}, "omni_5min_all": {"__spz_name__": "5 min", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "omni-5min-all", "att": "auto/omni-5min-all", "dataSource": "CDAWeb", "desc": "Five min averaged
Sampling: 5M
Provider: CDAWeb", "is_public": "True", "lastModificationDate": "2024-10-06T22:21:06Z", "lastUpdate": "2024-10-06T22:21:06Z", "measurement_type": "ThermalPlasma", "name": "5 min", "omni5_bsn": {"__spz_name__": "bow shock nose location gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "omni5_bsn", "dataset": "omni-5min-all", "display_type": "timeseries", "is_public": "True", "name": "bow shock nose location gse", "omni5_bsn0": {"__spz_name__": "bsn_x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "omni5_bsn(0)", "dataset": "omni-5min-all", "index1": "0", "is_public": "True", "name": "bsn_x", "parameter": "omni5_bsn", "start_date": "1981-01-01T00:00:00Z", "stop_date": "2024-09-30T23:55:00Z", "xmlid": "omni5_bsn(0)"}, "omni5_bsn1": {"__spz_name__": "bsn_y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "omni5_bsn(1)", "dataset": "omni-5min-all", "index1": "1", "is_public": "True", "name": "bsn_y", "parameter": "omni5_bsn", "start_date": "1981-01-01T00:00:00Z", "stop_date": "2024-09-30T23:55:00Z", "xmlid": "omni5_bsn(1)"}, "omni5_bsn2": {"__spz_name__": "bsn_z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "omni5_bsn(2)", "dataset": "omni-5min-all", "index1": "2", "is_public": "True", "name": "bsn_z", "parameter": "omni5_bsn", "start_date": "1981-01-01T00:00:00Z", "stop_date": "2024-09-30T23:55:00Z", "xmlid": "omni5_bsn(2)"}, "size": "3", "start_date": "1981-01-01T00:00:00Z", "stop_date": "2024-09-30T23:55:00Z", "units": "Re", "xmlid": "omni5_bsn"}, "omni5_imf": {"__spz_name__": "b_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "omni5_imf", "dataset": "omni-5min-all", "display_type": "timeseries", "is_public": "True", "name": "b_gse", "omni5_imf0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "omni5_imf(0)", "dataset": "omni-5min-all", "index1": "0", "is_public": "True", "name": "bx", "parameter": "omni5_imf", "start_date": "1981-01-01T00:00:00Z", "stop_date": "2024-09-30T23:55:00Z", "xmlid": "omni5_imf(0)"}, "omni5_imf1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "omni5_imf(1)", "dataset": "omni-5min-all", "index1": "1", "is_public": "True", "name": "by", "parameter": "omni5_imf", "start_date": "1981-01-01T00:00:00Z", "stop_date": "2024-09-30T23:55:00Z", "xmlid": "omni5_imf(1)"}, "omni5_imf2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "omni5_imf(2)", "dataset": "omni-5min-all", "index1": "2", "is_public": "True", "name": "bz", "parameter": "omni5_imf", "start_date": "1981-01-01T00:00:00Z", "stop_date": "2024-09-30T23:55:00Z", "xmlid": "omni5_imf(2)"}, "size": "3", "start_date": "1981-01-01T00:00:00Z", "stop_date": "2024-09-30T23:55:00Z", "ucd": "phys.magField", "units": "nT", "xmlid": "omni5_imf"}, "omni5_imf_mag": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "omni5_imf_mag", "dataset": "omni-5min-all", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "1981-01-01T00:00:00Z", "stop_date": "2024-09-30T23:55:00Z", "ucd": "phys.magField", "units": "nT", "xmlid": "omni5_imf_mag"}, "omni5_sw_beta": {"__spz_name__": "sw beta", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "omni5_sw_beta", "dataset": "omni-5min-all", "display_type": "timeseries", "is_public": "True", "name": "sw beta", "start_date": "1981-01-01T00:00:00Z", "stop_date": "2024-09-30T23:55:00Z", "ucd": "phys.pressure;arith.ratio", "xmlid": "omni5_sw_beta"}, "omni5_sw_e": {"__spz_name__": "sw electric field", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "omni5_sw_e", "dataset": "omni-5min-all", "display_type": "timeseries", "is_public": "True", "name": "sw electric field", "start_date": "1981-01-01T00:00:00Z", "stop_date": "2024-09-30T23:55:00Z", "ucd": "phys.electField", "units": "mV/m", "xmlid": "omni5_sw_e"}, "omni5_sw_mach": {"__spz_name__": "sw mach alfven", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "omni5_sw_mach", "dataset": "omni-5min-all", "display_type": "timeseries", "is_public": "True", "name": "sw mach alfven", "start_date": "1981-01-01T00:00:00Z", "stop_date": "2024-09-30T23:55:00Z", "ucd": "phys.veloc;arith.ratio", "xmlid": "omni5_sw_mach"}, "omni5_sw_n": {"__spz_name__": "sw density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "omni5_sw_n", "dataset": "omni-5min-all", "display_type": "timeseries", "is_public": "True", "name": "sw density", "start_date": "1981-01-01T00:00:00Z", "stop_date": "2024-09-30T23:55:00Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm-3", "xmlid": "omni5_sw_n"}, "omni5_sw_ram": {"__spz_name__": "sw ram pressure", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "omni5_sw_ram", "dataset": "omni-5min-all", "display_type": "timeseries", "is_public": "True", "name": "sw ram pressure", "start_date": "1981-01-01T00:00:00Z", "stop_date": "2024-09-30T23:55:00Z", "ucd": "phys.pressure;phys.atmol.ionStage", "units": "nPa", "xmlid": "omni5_sw_ram"}, "omni5_sw_t": {"__spz_name__": "sw temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "omni5_sw_t", "dataset": "omni-5min-all", "display_type": "timeseries", "is_public": "True", "name": "sw temperature", "start_date": "1981-01-01T00:00:00Z", "stop_date": "2024-09-30T23:55:00Z", "ucd": "phys.temperature;phys.atmol.ionStage", "units": "K", "xmlid": "omni5_sw_t"}, "omni5_sw_v": {"__spz_name__": "sw v_bulk", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "omni5_sw_v", "dataset": "omni-5min-all", "display_type": "timeseries", "is_public": "True", "name": "sw v_bulk", "start_date": "1981-01-01T00:00:00Z", "stop_date": "2024-09-30T23:55:00Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "omni5_sw_v"}, "omni5_sw_vgse": {"__spz_name__": "sw v_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "omni5_sw_vgse", "dataset": "omni-5min-all", "display_type": "timeseries", "is_public": "True", "name": "sw v_gse", "omni5_sw_vgse0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "omni5_sw_vgse(0)", "dataset": "omni-5min-all", "index1": "0", "is_public": "True", "name": "vx", "parameter": "omni5_sw_vgse", "start_date": "1981-01-01T00:00:00Z", "stop_date": "2024-09-30T23:55:00Z", "xmlid": "omni5_sw_vgse(0)"}, "omni5_sw_vgse1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "omni5_sw_vgse(1)", "dataset": "omni-5min-all", "index1": "1", "is_public": "True", "name": "vy", "parameter": "omni5_sw_vgse", "start_date": "1981-01-01T00:00:00Z", "stop_date": "2024-09-30T23:55:00Z", "xmlid": "omni5_sw_vgse(1)"}, "omni5_sw_vgse2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "omni5_sw_vgse(2)", "dataset": "omni-5min-all", "index1": "2", "is_public": "True", "name": "vz", "parameter": "omni5_sw_vgse", "start_date": "1981-01-01T00:00:00Z", "stop_date": "2024-09-30T23:55:00Z", "xmlid": "omni5_sw_vgse(2)"}, "size": "3", "start_date": "1981-01-01T00:00:00Z", "stop_date": "2024-09-30T23:55:00Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "omni5_sw_vgse"}, "omni_5min_pflux": {"__spz_name__": "sw integral proton fluxes", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "omni_5min_pflux", "dataset": "omni-5min-all", "display_type": "stackplot", "is_public": "True", "name": "sw integral proton fluxes", "omni_5min_pflux0": {"__spz_name__": ">10MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "omni_5min_pflux(0)", "dataset": "omni-5min-all", "index1": "0", "is_public": "True", "name": ">10MeV", "parameter": "omni_5min_pflux", "start_date": "1981-01-01T00:00:00Z", "stop_date": "2024-09-30T23:55:00Z", "xmlid": "omni_5min_pflux(0)"}, "omni_5min_pflux1": {"__spz_name__": ">30MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "omni_5min_pflux(1)", "dataset": "omni-5min-all", "index1": "1", "is_public": "True", "name": ">30MeV", "parameter": "omni_5min_pflux", "start_date": "1981-01-01T00:00:00Z", "stop_date": "2024-09-30T23:55:00Z", "xmlid": "omni_5min_pflux(1)"}, "omni_5min_pflux2": {"__spz_name__": ">60MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "omni_5min_pflux(2)", "dataset": "omni-5min-all", "index1": "2", "is_public": "True", "name": ">60MeV", "parameter": "omni_5min_pflux", "start_date": "1981-01-01T00:00:00Z", "stop_date": "2024-09-30T23:55:00Z", "xmlid": "omni_5min_pflux(2)"}, "size": "3", "start_date": "1981-01-01T00:00:00Z", "stop_date": "2024-09-30T23:55:00Z", "xmlid": "omni_5min_pflux"}, "processing_level": "Calibrated", "sampling": "5M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/OMNI/omni-5min-all", "start_date": "1981-01-01T00:00:00Z", "stop_date": "2024-09-30T23:55:00Z", "target": "Heliosphere.NearEarth", "xmlid": "omni-5min-all"}, "omni_5min_v2": {"__spz_name__": "5 min V2", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "omni-5min-v2", "att": "auto/omni-5min-v2", "dataSource": "CDAWeb", "desc": "Five min averaged
Sampling: 5M
Provider: CDAWeb", "is_public": "True", "lastModificationDate": "2023-09-07T07:54:21Z", "lastUpdate": "2023-09-07T07:48:06Z", "measurement_type": "ThermalPlasma", "name": "5 min V2", "omni_hro2_5min_ae_index": {"__spz_name__": "AE index", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "omni_hro2_5min_ae_index", "dataset": "omni-5min-v2", "display_type": "timeseries", "is_public": "True", "name": "AE index", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2023-06-30T23:55:00Z", "ucd": "src.var.index;phys.magField", "units": "nT", "xmlid": "omni_hro2_5min_ae_index"}, "omni_hro2_5min_al_index": {"__spz_name__": "AL index", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "omni_hro2_5min_al_index", "dataset": "omni-5min-v2", "display_type": "timeseries", "is_public": "True", "name": "AL index", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2023-06-30T23:55:00Z", "ucd": "src.var.index;phys.magField", "units": "nT", "xmlid": "omni_hro2_5min_al_index"}, "omni_hro2_5min_ap_ratio": {"__spz_name__": "sw alpha ratio", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "omni_hro2_5min_ap_ratio", "dataset": "omni-5min-v2", "display_type": "timeseries", "is_public": "True", "name": "sw alpha ratio", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2023-06-30T23:55:00Z", "ucd": "phys.abund", "xmlid": "omni_hro2_5min_ap_ratio"}, "omni_hro2_5min_au_index": {"__spz_name__": "AU index", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "omni_hro2_5min_au_index", "dataset": "omni-5min-v2", "display_type": "timeseries", "is_public": "True", "name": "AU index", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2023-06-30T23:55:00Z", "ucd": "src.var.index;phys.magField", "units": "nT", "xmlid": "omni_hro2_5min_au_index"}, "omni_hro2_5min_b_amag": {"__spz_name__": "sw average b magn (vec)", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "omni_hro2_5min_b_amag", "dataset": "omni-5min-v2", "display_type": "timeseries", "is_public": "True", "name": "sw average b magn (vec)", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2023-06-30T23:55:00Z", "ucd": "phys.magField", "units": "nT", "xmlid": "omni_hro2_5min_b_amag"}, "omni_hro2_5min_b_gse": {"__spz_name__": "b_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "omni_hro2_5min_b_gse", "dataset": "omni-5min-v2", "display_type": "timeseries", "is_public": "True", "name": "b_gse", "omni_hro2_5min_b_gse0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "omni_hro2_5min_b_gse(0)", "dataset": "omni-5min-v2", "index1": "0", "is_public": "True", "name": "bx", "parameter": "omni_hro2_5min_b_gse", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2023-06-30T23:55:00Z", "xmlid": "omni_hro2_5min_b_gse(0)"}, "omni_hro2_5min_b_gse1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "omni_hro2_5min_b_gse(1)", "dataset": "omni-5min-v2", "index1": "1", "is_public": "True", "name": "by", "parameter": "omni_hro2_5min_b_gse", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2023-06-30T23:55:00Z", "xmlid": "omni_hro2_5min_b_gse(1)"}, "omni_hro2_5min_b_gse2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "omni_hro2_5min_b_gse(2)", "dataset": "omni-5min-v2", "index1": "2", "is_public": "True", "name": "bz", "parameter": "omni_hro2_5min_b_gse", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2023-06-30T23:55:00Z", "xmlid": "omni_hro2_5min_b_gse(2)"}, "size": "3", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2023-06-30T23:55:00Z", "ucd": "phys.magField", "units": "nT", "xmlid": "omni_hro2_5min_b_gse"}, "omni_hro2_5min_beta": {"__spz_name__": "sw beta", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "omni_hro2_5min_beta", "dataset": "omni-5min-v2", "display_type": "timeseries", "is_public": "True", "name": "sw beta", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2023-06-30T23:55:00Z", "ucd": "phys.pressure;arith.ratio", "xmlid": "omni_hro2_5min_beta"}, "omni_hro2_5min_bsn_gse": {"__spz_name__": "bow shock nose location gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "omni_hro2_5min_bsn_gse", "dataset": "omni-5min-v2", "display_type": "timeseries", "is_public": "True", "name": "bow shock nose location gse", "omni_hro2_5min_bsn_gse0": {"__spz_name__": "bsn_x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "omni_hro2_5min_bsn_gse(0)", "dataset": "omni-5min-v2", "index1": "0", "is_public": "True", "name": "bsn_x", "parameter": "omni_hro2_5min_bsn_gse", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2023-06-30T23:55:00Z", "xmlid": "omni_hro2_5min_bsn_gse(0)"}, "omni_hro2_5min_bsn_gse1": {"__spz_name__": "bsn_y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "omni_hro2_5min_bsn_gse(1)", "dataset": "omni-5min-v2", "index1": "1", "is_public": "True", "name": "bsn_y", "parameter": "omni_hro2_5min_bsn_gse", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2023-06-30T23:55:00Z", "xmlid": "omni_hro2_5min_bsn_gse(1)"}, "omni_hro2_5min_bsn_gse2": {"__spz_name__": "bsn_z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "omni_hro2_5min_bsn_gse(2)", "dataset": "omni-5min-v2", "index1": "2", "is_public": "True", "name": "bsn_z", "parameter": "omni_hro2_5min_bsn_gse", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2023-06-30T23:55:00Z", "xmlid": "omni_hro2_5min_bsn_gse(2)"}, "size": "3", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2023-06-30T23:55:00Z", "units": "Re", "xmlid": "omni_hro2_5min_bsn_gse"}, "omni_hro2_5min_mach_num": {"__spz_name__": "sw mach alfven", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "omni_hro2_5min_mach_num", "dataset": "omni-5min-v2", "display_type": "timeseries", "is_public": "True", "name": "sw mach alfven", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2023-06-30T23:55:00Z", "ucd": "phys.veloc;arith.ratio", "xmlid": "omni_hro2_5min_mach_num"}, "omni_hro2_5min_mag": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "omni_hro2_5min_mag", "dataset": "omni-5min-v2", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2023-06-30T23:55:00Z", "ucd": "phys.magField", "units": "nT", "xmlid": "omni_hro2_5min_mag"}, "omni_hro2_5min_sw_e": {"__spz_name__": "sw electric field", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "omni_hro2_5min_sw_e", "dataset": "omni-5min-v2", "display_type": "timeseries", "is_public": "True", "name": "sw electric field", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2023-06-30T23:55:00Z", "ucd": "phys.elecField", "units": "mV/m", "xmlid": "omni_hro2_5min_sw_e"}, "omni_hro2_5min_sw_n": {"__spz_name__": "sw density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "omni_hro2_5min_sw_n", "dataset": "omni-5min-v2", "display_type": "timeseries", "is_public": "True", "name": "sw density", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2023-06-30T23:55:00Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm-3", "xmlid": "omni_hro2_5min_sw_n"}, "omni_hro2_5min_sw_p": {"__spz_name__": "sw ram pressure", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "omni_hro2_5min_sw_p", "dataset": "omni-5min-v2", "display_type": "timeseries", "is_public": "True", "name": "sw ram pressure", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2023-06-30T23:55:00Z", "ucd": "phys.pressure;phys.atmol.ionStage", "units": "nPa", "xmlid": "omni_hro2_5min_sw_p"}, "omni_hro2_5min_sw_t": {"__spz_name__": "sw temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "omni_hro2_5min_sw_t", "dataset": "omni-5min-v2", "display_type": "timeseries", "is_public": "True", "name": "sw temperature", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2023-06-30T23:55:00Z", "ucd": "phys.temperature;phys.atmol.ionStage", "units": "K", "xmlid": "omni_hro2_5min_sw_t"}, "omni_hro2_5min_sw_vb": {"__spz_name__": "sw v_bulk", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "omni_hro2_5min_sw_vb", "dataset": "omni-5min-v2", "display_type": "timeseries", "is_public": "True", "name": "sw v_bulk", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2023-06-30T23:55:00Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "omni_hro2_5min_sw_vb"}, "omni_hro2_5min_sw_vgse": {"__spz_name__": "sw v_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "omni_hro2_5min_sw_vgse", "dataset": "omni-5min-v2", "display_type": "timeseries", "is_public": "True", "name": "sw v_gse", "omni_hro2_5min_sw_vgse0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "omni_hro2_5min_sw_vgse(0)", "dataset": "omni-5min-v2", "index1": "0", "is_public": "True", "name": "vx", "parameter": "omni_hro2_5min_sw_vgse", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2023-06-30T23:55:00Z", "xmlid": "omni_hro2_5min_sw_vgse(0)"}, "omni_hro2_5min_sw_vgse1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "omni_hro2_5min_sw_vgse(1)", "dataset": "omni-5min-v2", "index1": "1", "is_public": "True", "name": "vy", "parameter": "omni_hro2_5min_sw_vgse", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2023-06-30T23:55:00Z", "xmlid": "omni_hro2_5min_sw_vgse(1)"}, "omni_hro2_5min_sw_vgse2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "omni_hro2_5min_sw_vgse(2)", "dataset": "omni-5min-v2", "index1": "2", "is_public": "True", "name": "vz", "parameter": "omni_hro2_5min_sw_vgse", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2023-06-30T23:55:00Z", "xmlid": "omni_hro2_5min_sw_vgse(2)"}, "size": "3", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2023-06-30T23:55:00Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "omni_hro2_5min_sw_vgse"}, "processing_level": "Calibrated", "sampling": "5M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/OMNI/omni-5min-v2", "start_date": "1995-01-01T00:00:00Z", "stop_date": "2023-06-30T23:55:00Z", "target": "Heliosphere.NearEarth", "xmlid": "omni-5min-v2"}, "omni_hour_all": {"__spz_name__": "1 hour", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "omni-hour-all", "att": "auto/omni-hour-all", "dataSource": "CDAWeb", "desc": "Hourly averaged
Sampling: 1H
Provider: CDAWeb", "is_public": "True", "lastModificationDate": "2024-09-29T22:22:28Z", "lastUpdate": "2024-09-29T22:22:28Z", "measurement_type": "ThermalPlasma", "name": "1 hour", "omni_ae": {"__spz_name__": "AE index", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "omni_ae", "dataset": "omni-hour-all", "display_type": "timeseries", "is_public": "True", "name": "AE index", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2024-09-20T10:00:00Z", "ucd": "src.var.index;phys.magField", "units": "nT", "xmlid": "omni_ae"}, "omni_dst": {"__spz_name__": "Dst index", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "omni_dst", "dataset": "omni-hour-all", "display_type": "timeseries", "is_public": "True", "name": "Dst index", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2024-09-20T10:00:00Z", "ucd": "src.var.index;phys.magField", "units": "nT", "xmlid": "omni_dst"}, "omni_f107": {"__spz_name__": "F10.7 solar index", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "omni_f107", "dataset": "omni-hour-all", "display_type": "timeseries", "is_public": "True", "name": "F10.7 solar index", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2024-09-20T10:00:00Z", "units": "10e-22 W/m\u00b2/Hz", "xmlid": "omni_f107"}, "omni_hour_pflux": {"__spz_name__": "sw integral proton fluxes", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "omni_hour_pflux", "dataset": "omni-hour-all", "display_type": "stackplot", "is_public": "True", "name": "sw integral proton fluxes", "omni_hour_pflux0": {"__spz_name__": ">1MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "omni_hour_pflux(0)", "dataset": "omni-hour-all", "index1": "0", "is_public": "True", "name": ">1MeV", "parameter": "omni_hour_pflux", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2024-09-20T10:00:00Z", "xmlid": "omni_hour_pflux(0)"}, "omni_hour_pflux1": {"__spz_name__": ">2MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "omni_hour_pflux(1)", "dataset": "omni-hour-all", "index1": "1", "is_public": "True", "name": ">2MeV", "parameter": "omni_hour_pflux", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2024-09-20T10:00:00Z", "xmlid": "omni_hour_pflux(1)"}, "omni_hour_pflux2": {"__spz_name__": ">4MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "omni_hour_pflux(2)", "dataset": "omni-hour-all", "index1": "2", "is_public": "True", "name": ">4MeV", "parameter": "omni_hour_pflux", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2024-09-20T10:00:00Z", "xmlid": "omni_hour_pflux(2)"}, "omni_hour_pflux3": {"__spz_name__": ">10MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "omni_hour_pflux(3)", "dataset": "omni-hour-all", "index1": "3", "is_public": "True", "name": ">10MeV", "parameter": "omni_hour_pflux", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2024-09-20T10:00:00Z", "xmlid": "omni_hour_pflux(3)"}, "omni_hour_pflux4": {"__spz_name__": ">30MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "omni_hour_pflux(4)", "dataset": "omni-hour-all", "index1": "4", "is_public": "True", "name": ">30MeV", "parameter": "omni_hour_pflux", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2024-09-20T10:00:00Z", "xmlid": "omni_hour_pflux(4)"}, "omni_hour_pflux5": {"__spz_name__": ">60MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "omni_hour_pflux(5)", "dataset": "omni-hour-all", "index1": "5", "is_public": "True", "name": ">60MeV", "parameter": "omni_hour_pflux", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2024-09-20T10:00:00Z", "xmlid": "omni_hour_pflux(5)"}, "size": "6", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2024-09-20T10:00:00Z", "ucd": "phys.flux", "xmlid": "omni_hour_pflux"}, "omni_imf": {"__spz_name__": "b_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "omni_imf", "dataset": "omni-hour-all", "display_type": "timeseries", "is_public": "True", "name": "b_gse", "omni_imf0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "omni_imf(0)", "dataset": "omni-hour-all", "index1": "0", "is_public": "True", "name": "bx", "parameter": "omni_imf", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2024-09-20T10:00:00Z", "xmlid": "omni_imf(0)"}, "omni_imf1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "omni_imf(1)", "dataset": "omni-hour-all", "index1": "1", "is_public": "True", "name": "by", "parameter": "omni_imf", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2024-09-20T10:00:00Z", "xmlid": "omni_imf(1)"}, "omni_imf2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "omni_imf(2)", "dataset": "omni-hour-all", "index1": "2", "is_public": "True", "name": "bz", "parameter": "omni_imf", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2024-09-20T10:00:00Z", "xmlid": "omni_imf(2)"}, "size": "3", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2024-09-20T10:00:00Z", "ucd": "phys.magField", "units": "nT", "xmlid": "omni_imf"}, "omni_imf_mag": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "omni_imf_mag", "dataset": "omni-hour-all", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2024-09-20T10:00:00Z", "ucd": "phys.magField", "units": "nT", "xmlid": "omni_imf_mag"}, "omni_imf_mag_vec": {"__spz_name__": "sw average b magn (vec)", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "omni_imf_mag_vec", "dataset": "omni-hour-all", "display_type": "timeseries", "is_public": "True", "name": "sw average b magn (vec)", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2024-09-20T10:00:00Z", "ucd": "phys.magField", "units": "nT", "xmlid": "omni_imf_mag_vec"}, "omni_kp": {"__spz_name__": "Kp index", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "omni_kp", "dataset": "omni-hour-all", "description": "The standard Kp values look like 0, 0+, 1-, 1, 1+, 2-, ... but are stored as Kp = 0, 3, 7, 10, 13, 17, ... in the OMNI data set. We have mapped 0+ to 3, 1- to 7, 1 to 10, 1+ to 13, 2- to 17, etc.", "display_type": "timeseries", "is_public": "True", "name": "Kp index", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2024-09-20T10:00:00Z", "ucd": "meta.code;phys.magField", "xmlid": "omni_kp"}, "omni_sunspots": {"__spz_name__": "sunspot number", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "omni_sunspots", "dataset": "omni-hour-all", "description": "Daily sunspot number", "display_type": "timeseries", "is_public": "True", "name": "sunspot number", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2024-09-20T10:00:00Z", "ucd": "meta.number", "xmlid": "omni_sunspots"}, "omni_sw_alpha": {"__spz_name__": "sw alpha ratio", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "omni_sw_alpha", "dataset": "omni-hour-all", "display_type": "timeseries", "is_public": "True", "name": "sw alpha ratio", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2024-09-20T10:00:00Z", "ucd": "phys.abund", "xmlid": "omni_sw_alpha"}, "omni_sw_beta": {"__spz_name__": "sw beta", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "omni_sw_beta", "dataset": "omni-hour-all", "display_type": "timeseries", "is_public": "True", "name": "sw beta", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2024-09-20T10:00:00Z", "ucd": "phys.pressure;arith.ratio", "xmlid": "omni_sw_beta"}, "omni_sw_e": {"__spz_name__": "sw electric field", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "omni_sw_e", "dataset": "omni-hour-all", "display_type": "timeseries", "is_public": "True", "name": "sw electric field", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2024-09-20T10:00:00Z", "ucd": "phys.electField", "units": "mV/m", "xmlid": "omni_sw_e"}, "omni_sw_mach": {"__spz_name__": "sw mach alfven", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "omni_sw_mach", "dataset": "omni-hour-all", "display_type": "timeseries", "is_public": "True", "name": "sw mach alfven", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2024-09-20T10:00:00Z", "ucd": "phys.veloc;arith.ratio", "xmlid": "omni_sw_mach"}, "omni_sw_n": {"__spz_name__": "sw density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "omni_sw_n", "dataset": "omni-hour-all", "display_type": "timeseries", "is_public": "True", "name": "sw density", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2024-09-20T10:00:00Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm-3", "xmlid": "omni_sw_n"}, "omni_sw_ram": {"__spz_name__": "sw ram pressure", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "omni_sw_ram", "dataset": "omni-hour-all", "display_type": "timeseries", "is_public": "True", "name": "sw ram pressure", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2024-09-20T10:00:00Z", "ucd": "phys.pressure;phys.atmol.ionStage", "units": "nPa", "xmlid": "omni_sw_ram"}, "omni_sw_t": {"__spz_name__": "sw temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "omni_sw_t", "dataset": "omni-hour-all", "display_type": "timeseries", "is_public": "True", "name": "sw temperature", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2024-09-20T10:00:00Z", "ucd": "phys.temperature;phys.atmol.ionStage", "units": "K", "xmlid": "omni_sw_t"}, "omni_sw_v": {"__spz_name__": "sw v_bulk", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "omni_sw_v", "dataset": "omni-hour-all", "display_type": "timeseries", "is_public": "True", "name": "sw v_bulk", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2024-09-20T10:00:00Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "omni_sw_v"}, "omni_sw_vlat": {"__spz_name__": "sw v_lat", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "omni_sw_vlat", "dataset": "omni-hour-all", "display_type": "timeseries", "is_public": "True", "name": "sw v_lat", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2024-09-20T10:00:00Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "deg", "xmlid": "omni_sw_vlat"}, "omni_sw_vlon": {"__spz_name__": "sw v_lon", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "omni_sw_vlon", "dataset": "omni-hour-all", "display_type": "timeseries", "is_public": "True", "name": "sw v_lon", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2024-09-20T10:00:00Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "deg", "xmlid": "omni_sw_vlon"}, "processing_level": "Calibrated", "sampling": "1H", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/OMNI/omni-hour-all", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2024-09-20T10:00:00Z", "target": "Heliosphere.NearEarth", "xmlid": "omni-hour-all"}, "xmlid": "OMNI_omni"}, "__spz_name__": "OMNI", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "OMNI", "att": "auto/OMNI", "desc": "
1970-01-01T00:00:00", "is_public": "True", "name": "OMNI", "rank": "4", "target": "Heliosphere.NearEarth", "xmlid": "OMNI"}, "PSP": {"Ephemeris": {"__spz_name__": "Ephemeris", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "PSP_ephemeris", "att": "auto/PSP_ephemeris", "desc": "", "is_public": "True", "name": "Ephemeris", "psp_orb_all": {"__spz_name__": "orbit", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "psp-orb-all", "att": "auto/psp-orb-all", "dataSource": "NASA", "desc": "Parker Solar Probe orbit
Sampling: 1H
Provider: NASA", "is_public": "True", "lastModificationDate": "2024-10-02T02:05:50Z", "lastUpdate": "2024-10-02T02:05:49Z", "measurement_type": "Ephemeris", "name": "orbit", "processing_level": "Calibrated", "psp_lat_hci": {"__spz_name__": "lat hci", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_lat_hci", "dataset": "psp-orb-all", "is_public": "True", "name": "lat hci", "start_date": "2018-08-12T08:16:23Z", "stop_date": "2025-08-30T23:00:00Z", "units": "deg", "xmlid": "psp_lat_hci"}, "psp_lat_hee": {"__spz_name__": "lat hee", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_lat_hee", "dataset": "psp-orb-all", "is_public": "True", "name": "lat hee", "start_date": "2018-08-12T08:16:23Z", "stop_date": "2025-08-30T23:00:00Z", "units": "deg", "xmlid": "psp_lat_hee"}, "psp_lat_sun": {"__spz_name__": "lat iau_sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_lat_sun", "dataset": "psp-orb-all", "is_public": "True", "name": "lat iau_sun", "start_date": "2018-08-12T08:16:23Z", "stop_date": "2025-08-30T23:00:00Z", "units": "deg", "xmlid": "psp_lat_sun"}, "psp_lon_hci": {"__spz_name__": "lon hci", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_lon_hci", "dataset": "psp-orb-all", "is_public": "True", "name": "lon hci", "start_date": "2018-08-12T08:16:23Z", "stop_date": "2025-08-30T23:00:00Z", "units": "deg", "xmlid": "psp_lon_hci"}, "psp_lon_hee": {"__spz_name__": "lon hee", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_lon_hee", "dataset": "psp-orb-all", "is_public": "True", "name": "lon hee", "start_date": "2018-08-12T08:16:23Z", "stop_date": "2025-08-30T23:00:00Z", "units": "deg", "xmlid": "psp_lon_hee"}, "psp_lon_sun": {"__spz_name__": "lon iau_sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_lon_sun", "dataset": "psp-orb-all", "is_public": "True", "name": "lon iau_sun", "start_date": "2018-08-12T08:16:23Z", "stop_date": "2025-08-30T23:00:00Z", "units": "deg", "xmlid": "psp_lon_sun"}, "psp_orb_num": {"__spz_name__": "psp_orbit_num", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_orb_num", "dataset": "psp-orb-all", "display_type": "timeseries", "is_public": "True", "name": "psp_orbit_num", "start_date": "2018-08-12T08:16:23Z", "stop_date": "2025-08-30T23:00:00Z", "xmlid": "psp_orb_num"}, "psp_r_sun": {"__spz_name__": "distance psp-sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_r_sun", "dataset": "psp-orb-all", "is_public": "True", "name": "distance psp-sun", "start_date": "2018-08-12T08:16:23Z", "stop_date": "2025-08-30T23:00:00Z", "units": "AU", "xmlid": "psp_r_sun"}, "psp_vel_hci": {"__spz_name__": "v_hci", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_vel_hci", "dataset": "psp-orb-all", "description": "Spacecraft velocity in HCI coordinate", "is_public": "True", "name": "v_hci", "psp_vel_hci0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_vel_hci(0)", "dataset": "psp-orb-all", "index1": "0", "is_public": "True", "name": "vx", "parameter": "psp_vel_hci", "start_date": "2018-08-12T08:16:23Z", "stop_date": "2025-08-30T23:00:00Z", "xmlid": "psp_vel_hci(0)"}, "psp_vel_hci1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_vel_hci(1)", "dataset": "psp-orb-all", "index1": "1", "is_public": "True", "name": "vy", "parameter": "psp_vel_hci", "start_date": "2018-08-12T08:16:23Z", "stop_date": "2025-08-30T23:00:00Z", "xmlid": "psp_vel_hci(1)"}, "psp_vel_hci2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_vel_hci(2)", "dataset": "psp-orb-all", "index1": "2", "is_public": "True", "name": "vz", "parameter": "psp_vel_hci", "start_date": "2018-08-12T08:16:23Z", "stop_date": "2025-08-30T23:00:00Z", "xmlid": "psp_vel_hci(2)"}, "size": "3", "start_date": "2018-08-12T08:16:23Z", "stop_date": "2025-08-30T23:00:00Z", "units": "km/s", "xmlid": "psp_vel_hci"}, "psp_vel_rtn": {"__spz_name__": "v_rtn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_vel_rtn", "dataset": "psp-orb-all", "description": "Spacecraft velocity in RTN coordinate", "is_public": "True", "name": "v_rtn", "psp_vel_rtn0": {"__spz_name__": "vr", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_vel_rtn(0)", "dataset": "psp-orb-all", "index1": "0", "is_public": "True", "name": "vr", "parameter": "psp_vel_rtn", "start_date": "2018-08-12T08:16:23Z", "stop_date": "2025-08-30T23:00:00Z", "xmlid": "psp_vel_rtn(0)"}, "psp_vel_rtn1": {"__spz_name__": "vt", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_vel_rtn(1)", "dataset": "psp-orb-all", "index1": "1", "is_public": "True", "name": "vt", "parameter": "psp_vel_rtn", "start_date": "2018-08-12T08:16:23Z", "stop_date": "2025-08-30T23:00:00Z", "xmlid": "psp_vel_rtn(1)"}, "psp_vel_rtn2": {"__spz_name__": "vn", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_vel_rtn(2)", "dataset": "psp-orb-all", "index1": "2", "is_public": "True", "name": "vn", "parameter": "psp_vel_rtn", "start_date": "2018-08-12T08:16:23Z", "stop_date": "2025-08-30T23:00:00Z", "xmlid": "psp_vel_rtn(2)"}, "size": "3", "start_date": "2018-08-12T08:16:23Z", "stop_date": "2025-08-30T23:00:00Z", "units": "km/s", "xmlid": "psp_vel_rtn"}, "psp_xyz_hci": {"__spz_name__": "xyz_hci", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_xyz_hci", "dataset": "psp-orb-all", "is_public": "True", "name": "xyz_hci", "psp_xyz_hci0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_xyz_hci(0)", "dataset": "psp-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "psp_xyz_hci", "start_date": "2018-08-12T08:16:23Z", "stop_date": "2025-08-30T23:00:00Z", "xmlid": "psp_xyz_hci(0)"}, "psp_xyz_hci1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_xyz_hci(1)", "dataset": "psp-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "psp_xyz_hci", "start_date": "2018-08-12T08:16:23Z", "stop_date": "2025-08-30T23:00:00Z", "xmlid": "psp_xyz_hci(1)"}, "psp_xyz_hci2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_xyz_hci(2)", "dataset": "psp-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "psp_xyz_hci", "start_date": "2018-08-12T08:16:23Z", "stop_date": "2025-08-30T23:00:00Z", "xmlid": "psp_xyz_hci(2)"}, "size": "3", "start_date": "2018-08-12T08:16:23Z", "stop_date": "2025-08-30T23:00:00Z", "units": "AU", "xmlid": "psp_xyz_hci"}, "psp_xyz_hee": {"__spz_name__": "xyz_hee", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_xyz_hee", "dataset": "psp-orb-all", "is_public": "True", "name": "xyz_hee", "psp_xyz_hee0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_xyz_hee(0)", "dataset": "psp-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "psp_xyz_hee", "start_date": "2018-08-12T08:16:23Z", "stop_date": "2025-08-30T23:00:00Z", "xmlid": "psp_xyz_hee(0)"}, "psp_xyz_hee1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_xyz_hee(1)", "dataset": "psp-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "psp_xyz_hee", "start_date": "2018-08-12T08:16:23Z", "stop_date": "2025-08-30T23:00:00Z", "xmlid": "psp_xyz_hee(1)"}, "psp_xyz_hee2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_xyz_hee(2)", "dataset": "psp-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "psp_xyz_hee", "start_date": "2018-08-12T08:16:23Z", "stop_date": "2025-08-30T23:00:00Z", "xmlid": "psp_xyz_hee(2)"}, "size": "3", "start_date": "2018-08-12T08:16:23Z", "stop_date": "2025-08-30T23:00:00Z", "units": "AU", "xmlid": "psp_xyz_hee"}, "psp_xyz_heeq": {"__spz_name__": "xyz_heeq", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_xyz_heeq", "dataset": "psp-orb-all", "is_public": "True", "name": "xyz_heeq", "psp_xyz_heeq0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_xyz_heeq(0)", "dataset": "psp-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "psp_xyz_heeq", "start_date": "2018-08-12T08:16:23Z", "stop_date": "2025-08-30T23:00:00Z", "xmlid": "psp_xyz_heeq(0)"}, "psp_xyz_heeq1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_xyz_heeq(1)", "dataset": "psp-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "psp_xyz_heeq", "start_date": "2018-08-12T08:16:23Z", "stop_date": "2025-08-30T23:00:00Z", "xmlid": "psp_xyz_heeq(1)"}, "psp_xyz_heeq2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_xyz_heeq(2)", "dataset": "psp-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "psp_xyz_heeq", "start_date": "2018-08-12T08:16:23Z", "stop_date": "2025-08-30T23:00:00Z", "xmlid": "psp_xyz_heeq(2)"}, "size": "3", "start_date": "2018-08-12T08:16:23Z", "stop_date": "2025-08-30T23:00:00Z", "units": "AU", "xmlid": "psp_xyz_heeq"}, "psp_xyz_iausun": {"__spz_name__": "xyz_iau_sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_xyz_iausun", "dataset": "psp-orb-all", "is_public": "True", "name": "xyz_iau_sun", "psp_xyz_iausun0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_xyz_iausun(0)", "dataset": "psp-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "psp_xyz_iausun", "start_date": "2018-08-12T08:16:23Z", "stop_date": "2025-08-30T23:00:00Z", "xmlid": "psp_xyz_iausun(0)"}, "psp_xyz_iausun1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_xyz_iausun(1)", "dataset": "psp-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "psp_xyz_iausun", "start_date": "2018-08-12T08:16:23Z", "stop_date": "2025-08-30T23:00:00Z", "xmlid": "psp_xyz_iausun(1)"}, "psp_xyz_iausun2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_xyz_iausun(2)", "dataset": "psp-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "psp_xyz_iausun", "start_date": "2018-08-12T08:16:23Z", "stop_date": "2025-08-30T23:00:00Z", "xmlid": "psp_xyz_iausun(2)"}, "size": "3", "start_date": "2018-08-12T08:16:23Z", "stop_date": "2025-08-30T23:00:00Z", "units": "AU", "xmlid": "psp_xyz_iausun"}, "sampling": "1H", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/PSP/ORBIT/psp-orb-all", "start_date": "2018-08-12T08:16:23Z", "stop_date": "2025-08-30T23:00:00Z", "target": "Heliosphere", "xmlid": "psp-orb-all"}, "psp_orb_venus1": {"__spz_name__": "Venus flyby #1", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "psp-orb-venus1", "att": "auto/psp-orb-venus1", "dataSource": "NASA", "desc": "
Sampling: 60S
Provider: NASA", "is_public": "True", "lastModificationDate": "2021-07-20T09:52:52Z", "lastUpdate": "2021-07-20T09:52:34Z", "lat_psp_venus1": {"__spz_name__": "lat iau_venus", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "lat_psp_venus1", "dataset": "psp-orb-venus1", "is_public": "True", "name": "lat iau_venus", "start_date": "2018-10-01T00:00:00Z", "stop_date": "2018-10-04T23:58:00Z", "units": "deg", "xmlid": "lat_psp_venus1"}, "lon_psp_venus1": {"__spz_name__": "lon iau_venus", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "lon_psp_venus1", "dataset": "psp-orb-venus1", "is_public": "True", "name": "lon iau_venus", "start_date": "2018-10-01T00:00:00Z", "stop_date": "2018-10-04T23:58:00Z", "units": "deg", "xmlid": "lon_psp_venus1"}, "measurement_type": "Ephemeris", "name": "Venus flyby #1", "processing_level": "Calibrated", "psp_venus1_r": {"__spz_name__": "distance psp-venus", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_venus1_r", "dataset": "psp-orb-venus1", "is_public": "True", "name": "distance psp-venus", "start_date": "2018-10-01T00:00:00Z", "stop_date": "2018-10-04T23:58:00Z", "units": "Rv", "xmlid": "psp_venus1_r"}, "psp_xyz_vso1": {"__spz_name__": "xyz_vso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_xyz_vso1", "dataset": "psp-orb-venus1", "is_public": "True", "name": "xyz_vso", "psp_xyz_vso10": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_xyz_vso1(0)", "dataset": "psp-orb-venus1", "index1": "0", "is_public": "True", "name": "x", "parameter": "psp_xyz_vso1", "start_date": "2018-10-01T00:00:00Z", "stop_date": "2018-10-04T23:58:00Z", "xmlid": "psp_xyz_vso1(0)"}, "psp_xyz_vso11": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_xyz_vso1(1)", "dataset": "psp-orb-venus1", "index1": "1", "is_public": "True", "name": "y", "parameter": "psp_xyz_vso1", "start_date": "2018-10-01T00:00:00Z", "stop_date": "2018-10-04T23:58:00Z", "xmlid": "psp_xyz_vso1(1)"}, "psp_xyz_vso12": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_xyz_vso1(2)", "dataset": "psp-orb-venus1", "index1": "2", "is_public": "True", "name": "z", "parameter": "psp_xyz_vso1", "start_date": "2018-10-01T00:00:00Z", "stop_date": "2018-10-04T23:58:00Z", "xmlid": "psp_xyz_vso1(2)"}, "size": "3", "start_date": "2018-10-01T00:00:00Z", "stop_date": "2018-10-04T23:58:00Z", "units": "Rv", "xmlid": "psp_xyz_vso1"}, "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/PSP/ORBIT/psp-orb-venus1", "start_date": "2018-10-01T00:00:00Z", "stop_date": "2018-10-04T23:58:00Z", "target": "Venus", "xmlid": "psp-orb-venus1"}, "psp_orb_venus2": {"__spz_name__": "Venus flyby #2", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "psp-orb-venus2", "att": "auto/psp-orb-venus2", "dataSource": "NASA", "desc": "
Sampling: 60S
Provider: NASA", "is_public": "True", "lastModificationDate": "2021-07-20T10:04:46Z", "lastUpdate": "2021-07-20T10:04:35Z", "lat_psp_venus2": {"__spz_name__": "lat iau_venus", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "lat_psp_venus2", "dataset": "psp-orb-venus2", "is_public": "True", "name": "lat iau_venus", "start_date": "2019-12-24T00:00:00Z", "stop_date": "2019-12-27T23:59:00Z", "units": "deg", "xmlid": "lat_psp_venus2"}, "lon_psp_venus2": {"__spz_name__": "lon iau_venus", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "lon_psp_venus2", "dataset": "psp-orb-venus2", "is_public": "True", "name": "lon iau_venus", "start_date": "2019-12-24T00:00:00Z", "stop_date": "2019-12-27T23:59:00Z", "units": "deg", "xmlid": "lon_psp_venus2"}, "measurement_type": "Ephemeris", "name": "Venus flyby #2", "processing_level": "Calibrated", "psp_venus2_r": {"__spz_name__": "distance psp-venus", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_venus2_r", "dataset": "psp-orb-venus2", "is_public": "True", "name": "distance psp-venus", "start_date": "2019-12-24T00:00:00Z", "stop_date": "2019-12-27T23:59:00Z", "units": "Rv", "xmlid": "psp_venus2_r"}, "psp_xyz_vso2": {"__spz_name__": "xyz_vso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_xyz_vso2", "dataset": "psp-orb-venus2", "is_public": "True", "name": "xyz_vso", "psp_xyz_vso20": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_xyz_vso2(0)", "dataset": "psp-orb-venus2", "index1": "0", "is_public": "True", "name": "x", "parameter": "psp_xyz_vso2", "start_date": "2019-12-24T00:00:00Z", "stop_date": "2019-12-27T23:59:00Z", "xmlid": "psp_xyz_vso2(0)"}, "psp_xyz_vso21": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_xyz_vso2(1)", "dataset": "psp-orb-venus2", "index1": "1", "is_public": "True", "name": "y", "parameter": "psp_xyz_vso2", "start_date": "2019-12-24T00:00:00Z", "stop_date": "2019-12-27T23:59:00Z", "xmlid": "psp_xyz_vso2(1)"}, "psp_xyz_vso22": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_xyz_vso2(2)", "dataset": "psp-orb-venus2", "index1": "2", "is_public": "True", "name": "z", "parameter": "psp_xyz_vso2", "start_date": "2019-12-24T00:00:00Z", "stop_date": "2019-12-27T23:59:00Z", "xmlid": "psp_xyz_vso2(2)"}, "size": "3", "start_date": "2019-12-24T00:00:00Z", "stop_date": "2019-12-27T23:59:00Z", "units": "Rv", "xmlid": "psp_xyz_vso2"}, "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/PSP/ORBIT/psp-orb-venus2", "start_date": "2019-12-24T00:00:00Z", "stop_date": "2019-12-27T23:59:00Z", "target": "Venus", "xmlid": "psp-orb-venus2"}, "psp_orb_venus3": {"__spz_name__": "Venus flyby #3", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "psp-orb-venus3", "att": "auto/psp-orb-venus3", "dataSource": "NASA", "desc": "
Sampling: 60S
Provider: NASA", "is_public": "True", "lastModificationDate": "2021-07-20T10:05:53Z", "lastUpdate": "2021-07-20T10:05:44Z", "lat_psp_venus3": {"__spz_name__": "lat iau_venus", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "lat_psp_venus3", "dataset": "psp-orb-venus3", "is_public": "True", "name": "lat iau_venus", "start_date": "2020-07-09T00:00:00Z", "stop_date": "2020-07-11T23:58:00Z", "units": "deg", "xmlid": "lat_psp_venus3"}, "lon_psp_venus3": {"__spz_name__": "lon iau_venus", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "lon_psp_venus3", "dataset": "psp-orb-venus3", "is_public": "True", "name": "lon iau_venus", "start_date": "2020-07-09T00:00:00Z", "stop_date": "2020-07-11T23:58:00Z", "units": "deg", "xmlid": "lon_psp_venus3"}, "measurement_type": "Ephemeris", "name": "Venus flyby #3", "processing_level": "Calibrated", "psp_venus3_r": {"__spz_name__": "distance psp-venus", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_venus3_r", "dataset": "psp-orb-venus3", "is_public": "True", "name": "distance psp-venus", "start_date": "2020-07-09T00:00:00Z", "stop_date": "2020-07-11T23:58:00Z", "units": "Rv", "xmlid": "psp_venus3_r"}, "psp_xyz_vso3": {"__spz_name__": "xyz_vso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_xyz_vso3", "dataset": "psp-orb-venus3", "is_public": "True", "name": "xyz_vso", "psp_xyz_vso30": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_xyz_vso3(0)", "dataset": "psp-orb-venus3", "index1": "0", "is_public": "True", "name": "x", "parameter": "psp_xyz_vso3", "start_date": "2020-07-09T00:00:00Z", "stop_date": "2020-07-11T23:58:00Z", "xmlid": "psp_xyz_vso3(0)"}, "psp_xyz_vso31": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_xyz_vso3(1)", "dataset": "psp-orb-venus3", "index1": "1", "is_public": "True", "name": "y", "parameter": "psp_xyz_vso3", "start_date": "2020-07-09T00:00:00Z", "stop_date": "2020-07-11T23:58:00Z", "xmlid": "psp_xyz_vso3(1)"}, "psp_xyz_vso32": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_xyz_vso3(2)", "dataset": "psp-orb-venus3", "index1": "2", "is_public": "True", "name": "z", "parameter": "psp_xyz_vso3", "start_date": "2020-07-09T00:00:00Z", "stop_date": "2020-07-11T23:58:00Z", "xmlid": "psp_xyz_vso3(2)"}, "size": "3", "start_date": "2020-07-09T00:00:00Z", "stop_date": "2020-07-11T23:58:00Z", "units": "Rv", "xmlid": "psp_xyz_vso3"}, "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/PSP/ORBIT/psp-orb-venus3", "start_date": "2020-07-09T00:00:00Z", "stop_date": "2020-07-11T23:58:00Z", "target": "Venus", "xmlid": "psp-orb-venus3"}, "psp_orb_venus4": {"__spz_name__": "Venus flyby #4", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "psp-orb-venus4", "att": "auto/psp-orb-venus4", "dataSource": "NASA", "desc": "
Sampling: 60S
Provider: NASA", "is_public": "True", "lastModificationDate": "2021-07-20T10:08:03Z", "lastUpdate": "2021-07-20T10:07:54Z", "lat_psp_venus4": {"__spz_name__": "lat iau_venus", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "lat_psp_venus4", "dataset": "psp-orb-venus4", "is_public": "True", "name": "lat iau_venus", "start_date": "2021-02-19T00:00:00Z", "stop_date": "2021-02-21T23:59:00Z", "units": "deg", "xmlid": "lat_psp_venus4"}, "lon_psp_venus4": {"__spz_name__": "lon iau_venus", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "lon_psp_venus4", "dataset": "psp-orb-venus4", "is_public": "True", "name": "lon iau_venus", "start_date": "2021-02-19T00:00:00Z", "stop_date": "2021-02-21T23:59:00Z", "units": "deg", "xmlid": "lon_psp_venus4"}, "measurement_type": "Ephemeris", "name": "Venus flyby #4", "processing_level": "Calibrated", "psp_venus4_r": {"__spz_name__": "distance psp-venus", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_venus4_r", "dataset": "psp-orb-venus4", "is_public": "True", "name": "distance psp-venus", "start_date": "2021-02-19T00:00:00Z", "stop_date": "2021-02-21T23:59:00Z", "units": "Rv", "xmlid": "psp_venus4_r"}, "psp_xyz_vso4": {"__spz_name__": "xyz_vso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_xyz_vso4", "dataset": "psp-orb-venus4", "is_public": "True", "name": "xyz_vso", "psp_xyz_vso40": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_xyz_vso4(0)", "dataset": "psp-orb-venus4", "index1": "0", "is_public": "True", "name": "x", "parameter": "psp_xyz_vso4", "start_date": "2021-02-19T00:00:00Z", "stop_date": "2021-02-21T23:59:00Z", "xmlid": "psp_xyz_vso4(0)"}, "psp_xyz_vso41": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_xyz_vso4(1)", "dataset": "psp-orb-venus4", "index1": "1", "is_public": "True", "name": "y", "parameter": "psp_xyz_vso4", "start_date": "2021-02-19T00:00:00Z", "stop_date": "2021-02-21T23:59:00Z", "xmlid": "psp_xyz_vso4(1)"}, "psp_xyz_vso42": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_xyz_vso4(2)", "dataset": "psp-orb-venus4", "index1": "2", "is_public": "True", "name": "z", "parameter": "psp_xyz_vso4", "start_date": "2021-02-19T00:00:00Z", "stop_date": "2021-02-21T23:59:00Z", "xmlid": "psp_xyz_vso4(2)"}, "size": "3", "start_date": "2021-02-19T00:00:00Z", "stop_date": "2021-02-21T23:59:00Z", "units": "Rv", "xmlid": "psp_xyz_vso4"}, "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/PSP/ORBIT/psp-orb-venus4", "start_date": "2021-02-19T00:00:00Z", "stop_date": "2021-02-21T23:59:00Z", "target": "Venus", "xmlid": "psp-orb-venus4"}, "xmlid": "PSP_ephemeris"}, "FIELDS_MAG": {"Venus_flybys": {"__spz_name__": "Venus flybys", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "psp-venus-flybys", "is_public": "True", "name": "Venus flybys", "psp_mag_vflyby1": {"__spz_name__": "Venus flyby #1", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "psp-mag-vflyby1", "att": "auto/psp-mag-vflyby1", "dataSource": "SPDF", "desc": "VENUS FLYBY #1, PSP FIELDS Fluxgate Magnetometer data, level 2, VSO coordinates
MinSampling: 0.0034S; MaxSampling: 0.4347S
Provider: SPDF", "is_public": "True", "lastModificationDate": "2021-07-20T09:46:56Z", "lastUpdate": "2021-07-20T09:46:36Z", "maxSampling": "0.4347S", "measurement_type": "MagneticField", "name": "Venus flyby #1", "processing_level": "Calibrated", "psp_vflyby1_b_vso": {"__spz_name__": "b_vso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_vflyby1_b_vso", "dataset": "psp-mag-vflyby1", "description": "Magnetic field vector in VSO Cartesian coordinates", "display_type": "timeseries", "is_public": "True", "name": "b_vso", "psp_vflyby1_b_vso0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_vflyby1_b_vso(0)", "dataset": "psp-mag-vflyby1", "index1": "0", "is_public": "True", "name": "bx", "parameter": "psp_vflyby1_b_vso", "start_date": "2018-10-02T03:48:17Z", "stop_date": "2018-10-04T13:29:58Z", "xmlid": "psp_vflyby1_b_vso(0)"}, "psp_vflyby1_b_vso1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_vflyby1_b_vso(1)", "dataset": "psp-mag-vflyby1", "index1": "1", "is_public": "True", "name": "by", "parameter": "psp_vflyby1_b_vso", "start_date": "2018-10-02T03:48:17Z", "stop_date": "2018-10-04T13:29:58Z", "xmlid": "psp_vflyby1_b_vso(1)"}, "psp_vflyby1_b_vso2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_vflyby1_b_vso(2)", "dataset": "psp-mag-vflyby1", "index1": "2", "is_public": "True", "name": "bz", "parameter": "psp_vflyby1_b_vso", "start_date": "2018-10-02T03:48:17Z", "stop_date": "2018-10-04T13:29:58Z", "xmlid": "psp_vflyby1_b_vso(2)"}, "size": "3", "start_date": "2018-10-02T03:48:17Z", "stop_date": "2018-10-04T13:29:58Z", "ucd": "phys.magField", "units": "nT", "xmlid": "psp_vflyby1_b_vso"}, "psp_vflyby1_btot": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_vflyby1_btot", "dataset": "psp-mag-vflyby1", "description": "Magnetic field magnitude", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "2018-10-02T03:48:17Z", "stop_date": "2018-10-04T13:29:58Z", "ucd": "phys.magField", "units": "nT", "xmlid": "psp_vflyby1_btot"}, "sampling": "0.0034S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/PSP/MAG/psp-mag-vflyby1", "start_date": "2018-10-02T03:48:17Z", "stop_date": "2018-10-04T13:29:58Z", "target": "Sun.Corona", "xmlid": "psp-mag-vflyby1"}, "psp_mag_vflyby2": {"__spz_name__": "Venus flyby #2", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "psp-mag-vflyby2", "att": "auto/psp-mag-vflyby2", "dataSource": "SPDF", "desc": "VENUS FLYBY #2, PSP FIELDS Fluxgate Magnetometer data, level 2, VSO coordinates
MinSampling: 0.0034S; MaxSampling: 0.4347S
Provider: SPDF", "is_public": "True", "lastModificationDate": "2021-07-20T09:47:40Z", "lastUpdate": "2021-07-20T09:47:28Z", "maxSampling": "0.4347S", "measurement_type": "MagneticField", "name": "Venus flyby #2", "processing_level": "Calibrated", "psp_vflyby2_b_vso": {"__spz_name__": "b_vso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_vflyby2_b_vso", "dataset": "psp-mag-vflyby2", "description": "Magnetic field vector in VSO Cartesian coordinates", "display_type": "timeseries", "is_public": "True", "name": "b_vso", "psp_vflyby2_b_vso0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_vflyby2_b_vso(0)", "dataset": "psp-mag-vflyby2", "index1": "0", "is_public": "True", "name": "bx", "parameter": "psp_vflyby2_b_vso", "start_date": "2019-12-25T11:13:19Z", "stop_date": "2019-12-27T22:08:06Z", "xmlid": "psp_vflyby2_b_vso(0)"}, "psp_vflyby2_b_vso1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_vflyby2_b_vso(1)", "dataset": "psp-mag-vflyby2", "index1": "1", "is_public": "True", "name": "by", "parameter": "psp_vflyby2_b_vso", "start_date": "2019-12-25T11:13:19Z", "stop_date": "2019-12-27T22:08:06Z", "xmlid": "psp_vflyby2_b_vso(1)"}, "psp_vflyby2_b_vso2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_vflyby2_b_vso(2)", "dataset": "psp-mag-vflyby2", "index1": "2", "is_public": "True", "name": "bz", "parameter": "psp_vflyby2_b_vso", "start_date": "2019-12-25T11:13:19Z", "stop_date": "2019-12-27T22:08:06Z", "xmlid": "psp_vflyby2_b_vso(2)"}, "size": "3", "start_date": "2019-12-25T11:13:19Z", "stop_date": "2019-12-27T22:08:06Z", "ucd": "phys.magField", "units": "nT", "xmlid": "psp_vflyby2_b_vso"}, "psp_vflyby2_btot": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_vflyby2_btot", "dataset": "psp-mag-vflyby2", "description": "Magnetic field magnitude", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "2019-12-25T11:13:19Z", "stop_date": "2019-12-27T22:08:06Z", "ucd": "phys.magField", "units": "nT", "xmlid": "psp_vflyby2_btot"}, "sampling": "0.0034S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/PSP/MAG/psp-mag-vflyby2", "start_date": "2019-12-25T11:13:19Z", "stop_date": "2019-12-27T22:08:06Z", "target": "Sun.Corona", "xmlid": "psp-mag-vflyby2"}, "psp_mag_vflyby3": {"__spz_name__": "Venus flyby #3", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "psp-mag-vflyby3", "att": "auto/psp-mag-vflyby3", "dataSource": "SPDF", "desc": "VENUS FLYBY #3, PSP FIELDS Fluxgate Magnetometer data, level 2, VSO coordinates
MinSampling: 0.0034S; MaxSampling: 0.4347S
Provider: SPDF", "is_public": "True", "lastModificationDate": "2021-07-20T09:49:01Z", "lastUpdate": "2021-07-20T09:48:36Z", "maxSampling": "0.4347S", "measurement_type": "MagneticField", "name": "Venus flyby #3", "processing_level": "Calibrated", "psp_vflyby3_b_vso": {"__spz_name__": "b_vso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_vflyby3_b_vso", "dataset": "psp-mag-vflyby3", "description": "Magnetic field vector in VSO Cartesian coordinates", "display_type": "timeseries", "is_public": "True", "name": "b_vso", "psp_vflyby3_b_vso0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_vflyby3_b_vso(0)", "dataset": "psp-mag-vflyby3", "index1": "0", "is_public": "True", "name": "bx", "parameter": "psp_vflyby3_b_vso", "start_date": "2020-07-10T00:00:00Z", "stop_date": "2020-07-11T14:39:49Z", "xmlid": "psp_vflyby3_b_vso(0)"}, "psp_vflyby3_b_vso1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_vflyby3_b_vso(1)", "dataset": "psp-mag-vflyby3", "index1": "1", "is_public": "True", "name": "by", "parameter": "psp_vflyby3_b_vso", "start_date": "2020-07-10T00:00:00Z", "stop_date": "2020-07-11T14:39:49Z", "xmlid": "psp_vflyby3_b_vso(1)"}, "psp_vflyby3_b_vso2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_vflyby3_b_vso(2)", "dataset": "psp-mag-vflyby3", "index1": "2", "is_public": "True", "name": "bz", "parameter": "psp_vflyby3_b_vso", "start_date": "2020-07-10T00:00:00Z", "stop_date": "2020-07-11T14:39:49Z", "xmlid": "psp_vflyby3_b_vso(2)"}, "size": "3", "start_date": "2020-07-10T00:00:00Z", "stop_date": "2020-07-11T14:39:49Z", "ucd": "phys.magField", "units": "nT", "xmlid": "psp_vflyby3_b_vso"}, "psp_vflyby3_btot": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_vflyby3_btot", "dataset": "psp-mag-vflyby3", "description": "Magnetic field magnitude", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "2020-07-10T00:00:00Z", "stop_date": "2020-07-11T14:39:49Z", "ucd": "phys.magField", "units": "nT", "xmlid": "psp_vflyby3_btot"}, "sampling": "0.0034S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/PSP/MAG/psp-mag-vflyby3", "start_date": "2020-07-10T00:00:00Z", "stop_date": "2020-07-11T14:39:49Z", "target": "Sun.Corona", "xmlid": "psp-mag-vflyby3"}, "psp_mag_vflyby4": {"__spz_name__": "Venus flyby #4", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "psp-mag-vflyby4", "att": "auto/psp-mag-vflyby4", "dataSource": "SPDF", "desc": "VENUS FLYBY #4, PSP FIELDS Fluxgate Magnetometer data, level 2, VSO coordinates
MinSampling: 0.0034S; MaxSampling: 0.4347S
Provider: SPDF", "is_public": "True", "lastModificationDate": "2021-07-20T09:50:00Z", "lastUpdate": "2021-07-20T09:49:42Z", "maxSampling": "0.4347S", "measurement_type": "MagneticField", "name": "Venus flyby #4", "processing_level": "Calibrated", "psp_vflyby4_b_vso": {"__spz_name__": "b_vso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_vflyby4_b_vso", "dataset": "psp-mag-vflyby4", "description": "Magnetic field vector in VSO Cartesian coordinates", "display_type": "timeseries", "is_public": "True", "name": "b_vso", "psp_vflyby4_b_vso0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_vflyby4_b_vso(0)", "dataset": "psp-mag-vflyby4", "index1": "0", "is_public": "True", "name": "bx", "parameter": "psp_vflyby4_b_vso", "start_date": "2021-02-20T05:55:50Z", "stop_date": "2021-02-21T19:15:46Z", "xmlid": "psp_vflyby4_b_vso(0)"}, "psp_vflyby4_b_vso1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_vflyby4_b_vso(1)", "dataset": "psp-mag-vflyby4", "index1": "1", "is_public": "True", "name": "by", "parameter": "psp_vflyby4_b_vso", "start_date": "2021-02-20T05:55:50Z", "stop_date": "2021-02-21T19:15:46Z", "xmlid": "psp_vflyby4_b_vso(1)"}, "psp_vflyby4_b_vso2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_vflyby4_b_vso(2)", "dataset": "psp-mag-vflyby4", "index1": "2", "is_public": "True", "name": "bz", "parameter": "psp_vflyby4_b_vso", "start_date": "2021-02-20T05:55:50Z", "stop_date": "2021-02-21T19:15:46Z", "xmlid": "psp_vflyby4_b_vso(2)"}, "size": "3", "start_date": "2021-02-20T05:55:50Z", "stop_date": "2021-02-21T19:15:46Z", "ucd": "phys.magField", "units": "nT", "xmlid": "psp_vflyby4_b_vso"}, "psp_vflyby4_btot": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_vflyby4_btot", "dataset": "psp-mag-vflyby4", "description": "Magnetic field magnitude", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "2021-02-20T05:55:50Z", "stop_date": "2021-02-21T19:15:46Z", "ucd": "phys.magField", "units": "nT", "xmlid": "psp_vflyby4_btot"}, "sampling": "0.0034S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/PSP/MAG/psp-mag-vflyby4", "start_date": "2021-02-20T05:55:50Z", "stop_date": "2021-02-21T19:15:46Z", "target": "Sun.Corona", "xmlid": "psp-mag-vflyby4"}, "xmlid": "psp-venus-flybys"}, "__spz_name__": "FIELDS MAG", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "PSP_mag", "att": "auto/PSP_mag", "desc": "Fluxgate magnetometer (MAG) of the FIELDS suite
Magnetometer", "is_public": "True", "name": "FIELDS MAG", "psp_fld_qfl": {"__spz_name__": "quality flag", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "psp-fld-qfl", "att": "auto/psp-fld-qfl", "dataSource": "SPDF", "desc": "PSP FIELDS Quality flags
Sampling: 60S
Provider: SPDF", "is_public": "True", "lastModificationDate": "2024-10-06T22:27:42Z", "lastUpdate": "2024-09-23T16:13:25Z", "measurement_type": "InstrumentStatus", "name": "quality flag", "processing_level": "Calibrated", "psp_fld_qfl": {"__spz_name__": "q value", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_fld_qfl", "dataset": "psp-fld-qfl", "description": "Bitwise variable quality", "display_type": "timeseries", "is_public": "True", "name": "q value", "start_date": "2018-10-02T03:48:30Z", "stop_date": "2024-04-29T23:59:30Z", "xmlid": "psp_fld_qfl"}, "psp_fld_qflbin": {"__spz_name__": "q vector", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_fld_qflbin", "dataset": "psp-fld-qfl", "description": "Quality flags described as a vector. Each component corresponds to a flag value", "display_type": "timeseries", "is_public": "True", "name": "q vector", "psp_fld_qflbin0": {"__spz_name__": "antenna sweep", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_fld_qflbin(0)", "dataset": "psp-fld-qfl", "index1": "0", "is_public": "True", "name": "antenna sweep", "parameter": "psp_fld_qflbin", "start_date": "2018-10-02T03:48:30Z", "stop_date": "2024-04-29T23:59:30Z", "xmlid": "psp_fld_qflbin(0)"}, "psp_fld_qflbin1": {"__spz_name__": "thruster firing", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_fld_qflbin(1)", "dataset": "psp-fld-qfl", "index1": "1", "is_public": "True", "name": "thruster firing", "parameter": "psp_fld_qflbin", "start_date": "2018-10-02T03:48:30Z", "stop_date": "2024-04-29T23:59:30Z", "xmlid": "psp_fld_qflbin(1)"}, "psp_fld_qflbin2": {"__spz_name__": "SCM calibr.", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_fld_qflbin(2)", "dataset": "psp-fld-qfl", "index1": "2", "is_public": "True", "name": "SCM calibr.", "parameter": "psp_fld_qflbin", "start_date": "2018-10-02T03:48:30Z", "stop_date": "2024-04-29T23:59:30Z", "xmlid": "psp_fld_qflbin(2)"}, "psp_fld_qflbin3": {"__spz_name__": "PSP rotations", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_fld_qflbin(3)", "dataset": "psp-fld-qfl", "index1": "3", "is_public": "True", "name": "PSP rotations", "parameter": "psp_fld_qflbin", "start_date": "2018-10-02T03:48:30Z", "stop_date": "2024-04-29T23:59:30Z", "xmlid": "psp_fld_qflbin(3)"}, "psp_fld_qflbin4": {"__spz_name__": "MAG calibr. seq.", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_fld_qflbin(4)", "dataset": "psp-fld-qfl", "index1": "4", "is_public": "True", "name": "MAG calibr. seq.", "parameter": "psp_fld_qflbin", "start_date": "2018-10-02T03:48:30Z", "stop_date": "2024-04-29T23:59:30Z", "xmlid": "psp_fld_qflbin(4)"}, "psp_fld_qflbin5": {"__spz_name__": "SWP cup e- mode", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_fld_qflbin(5)", "dataset": "psp-fld-qfl", "index1": "5", "is_public": "True", "name": "SWP cup e- mode", "parameter": "psp_fld_qflbin", "start_date": "2018-10-02T03:48:30Z", "stop_date": "2024-04-29T23:59:30Z", "xmlid": "psp_fld_qflbin(5)"}, "psp_fld_qflbin6": {"__spz_name__": "SLS test", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_fld_qflbin(6)", "dataset": "psp-fld-qfl", "index1": "6", "is_public": "True", "name": "SLS test", "parameter": "psp_fld_qflbin", "start_date": "2018-10-02T03:48:30Z", "stop_date": "2024-04-29T23:59:30Z", "xmlid": "psp_fld_qflbin(6)"}, "psp_fld_qflbin7": {"__spz_name__": "off umbra", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_fld_qflbin(7)", "dataset": "psp-fld-qfl", "index1": "7", "is_public": "True", "name": "off umbra", "parameter": "psp_fld_qflbin", "start_date": "2018-10-02T03:48:30Z", "stop_date": "2024-04-29T23:59:30Z", "xmlid": "psp_fld_qflbin(7)"}, "size": "8", "start_date": "2018-10-02T03:48:30Z", "stop_date": "2024-04-29T23:59:30Z", "xmlid": "psp_fld_qflbin"}, "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/PSP/psp-fld-qfl", "start_date": "2018-10-02T03:48:30Z", "stop_date": "2024-04-29T23:59:30Z", "target": "Heliosphere.Inner", "xmlid": "psp-fld-qfl"}, "psp_mag_1min": {"__spz_name__": "1min", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "psp-mag-1min", "att": "auto/psp-mag-1min", "dataSource": "SPDF", "desc": "Magnetic Field 1 min Level2
Sampling: 60S
Provider: SPDF", "is_public": "True", "lastModificationDate": "2024-10-06T22:27:42Z", "lastUpdate": "2024-09-23T16:13:25Z", "measurement_type": "MagneticField", "name": "1min", "processing_level": "Calibrated", "psp_b_1min": {"__spz_name__": "b_rtn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_b_1min", "dataset": "psp-mag-1min", "description": "Magnetic field vector in RTN Cartesian coordinates (60 sec)", "display_type": "timeseries", "is_public": "True", "name": "b_rtn", "psp_b_1min0": {"__spz_name__": "br", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_b_1min(0)", "dataset": "psp-mag-1min", "index1": "0", "is_public": "True", "name": "br", "parameter": "psp_b_1min", "start_date": "2018-10-02T03:48:30Z", "stop_date": "2024-04-29T23:59:30Z", "xmlid": "psp_b_1min(0)"}, "psp_b_1min1": {"__spz_name__": "bt", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_b_1min(1)", "dataset": "psp-mag-1min", "index1": "1", "is_public": "True", "name": "bt", "parameter": "psp_b_1min", "start_date": "2018-10-02T03:48:30Z", "stop_date": "2024-04-29T23:59:30Z", "xmlid": "psp_b_1min(1)"}, "psp_b_1min2": {"__spz_name__": "bn", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_b_1min(2)", "dataset": "psp-mag-1min", "index1": "2", "is_public": "True", "name": "bn", "parameter": "psp_b_1min", "start_date": "2018-10-02T03:48:30Z", "stop_date": "2024-04-29T23:59:30Z", "xmlid": "psp_b_1min(2)"}, "size": "3", "start_date": "2018-10-02T03:48:30Z", "stop_date": "2024-04-29T23:59:30Z", "ucd": "phys.magField", "units": "nT", "xmlid": "psp_b_1min"}, "psp_b_1min_phi": {"__spz_name__": "phi", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_b_1min_phi", "dataset": "psp-mag-1min", "description": "Magnetic field phi angle", "display_type": "timeseries", "is_public": "True", "name": "phi", "start_date": "2018-10-02T03:48:30Z", "stop_date": "2024-04-29T23:59:30Z", "ucd": "phys.magField", "units": "degrees", "xmlid": "psp_b_1min_phi"}, "psp_b_1min_theta": {"__spz_name__": "theta", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_b_1min_theta", "dataset": "psp-mag-1min", "description": "Magnetic field theta angle", "display_type": "timeseries", "is_public": "True", "name": "theta", "start_date": "2018-10-02T03:48:30Z", "stop_date": "2024-04-29T23:59:30Z", "ucd": "phys.magField", "units": "degrees", "xmlid": "psp_b_1min_theta"}, "psp_b_1min_tot": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_b_1min_tot", "dataset": "psp-mag-1min", "description": "Magnetic field magnitude (60 sec)", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "2018-10-02T03:48:30Z", "stop_date": "2024-04-29T23:59:30Z", "ucd": "phys.magField", "units": "nT", "xmlid": "psp_b_1min_tot"}, "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/PSP/MAG/psp-mag-1min", "start_date": "2018-10-02T03:48:30Z", "stop_date": "2024-04-29T23:59:30Z", "target": "Heliosphere.Inner", "xmlid": "psp-mag-1min"}, "psp_mag_4cyc": {"__spz_name__": "4/cyc", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "psp-mag-4cyc", "att": "auto/psp-mag-4cyc", "dataSource": "SPDF", "desc": "PSP FIELDS Fluxgate Magnetometer data, level 2, 4 samples/cycle
MinSampling: 0.0034S; MaxSampling: 0.4347S
Provider: SPDF", "is_public": "True", "lastModificationDate": "2024-10-06T22:27:46Z", "lastUpdate": "2024-09-23T16:21:46Z", "maxSampling": "0.4347S", "measurement_type": "MagneticField", "name": "4/cyc", "processing_level": "Calibrated", "psp_b_4cyc": {"__spz_name__": "b_rtn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_b_4cyc", "dataset": "psp-mag-4cyc", "description": "Magnetic field vector in RTN Cartesian coordinates (~0.2 s)", "display_type": "timeseries", "is_public": "True", "name": "b_rtn", "psp_b_4cyc0": {"__spz_name__": "br", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_b_4cyc(0)", "dataset": "psp-mag-4cyc", "index1": "0", "is_public": "True", "name": "br", "parameter": "psp_b_4cyc", "start_date": "2018-10-02T03:48:26Z", "stop_date": "2024-04-29T23:59:59Z", "xmlid": "psp_b_4cyc(0)"}, "psp_b_4cyc1": {"__spz_name__": "bt", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_b_4cyc(1)", "dataset": "psp-mag-4cyc", "index1": "1", "is_public": "True", "name": "bt", "parameter": "psp_b_4cyc", "start_date": "2018-10-02T03:48:26Z", "stop_date": "2024-04-29T23:59:59Z", "xmlid": "psp_b_4cyc(1)"}, "psp_b_4cyc2": {"__spz_name__": "bn", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_b_4cyc(2)", "dataset": "psp-mag-4cyc", "index1": "2", "is_public": "True", "name": "bn", "parameter": "psp_b_4cyc", "start_date": "2018-10-02T03:48:26Z", "stop_date": "2024-04-29T23:59:59Z", "xmlid": "psp_b_4cyc(2)"}, "size": "3", "start_date": "2018-10-02T03:48:26Z", "stop_date": "2024-04-29T23:59:59Z", "ucd": "phys.magField", "units": "nT", "xmlid": "psp_b_4cyc"}, "psp_b_4cyc_phi": {"__spz_name__": "phi", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_b_4cyc_phi", "dataset": "psp-mag-4cyc", "description": "Magnetic field phi angle", "display_type": "timeseries", "is_public": "True", "name": "phi", "start_date": "2018-10-02T03:48:26Z", "stop_date": "2024-04-29T23:59:59Z", "ucd": "phys.magField", "units": "degrees", "xmlid": "psp_b_4cyc_phi"}, "psp_b_4cyc_theta": {"__spz_name__": "theta", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_b_4cyc_theta", "dataset": "psp-mag-4cyc", "description": "Magnetic field theta angle", "display_type": "timeseries", "is_public": "True", "name": "theta", "start_date": "2018-10-02T03:48:26Z", "stop_date": "2024-04-29T23:59:59Z", "ucd": "phys.magField", "units": "degrees", "xmlid": "psp_b_4cyc_theta"}, "psp_b_4cyc_tot": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_b_4cyc_tot", "dataset": "psp-mag-4cyc", "description": "Magnetic field magnitude (4 sa/cyc)", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "2018-10-02T03:48:26Z", "stop_date": "2024-04-29T23:59:59Z", "ucd": "phys.magField", "units": "nT", "xmlid": "psp_b_4cyc_tot"}, "sampling": "0.0034S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/PSP/MAG/psp-mag-4cyc", "start_date": "2018-10-02T03:48:26Z", "stop_date": "2024-04-29T23:59:59Z", "target": "Heliosphere.Inner", "xmlid": "psp-mag-4cyc"}, "xmlid": "PSP_mag"}, "FIELDS_RFSLFR": {"__spz_name__": "FIELDS RFS/LFR", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "PSP_lfr", "att": "auto/PSP_lfr", "desc": "Solar Probe Plus, SPP, FIELDS Suite, Radio Frequency Spectrometer, Low Frequency Receiver, RFS/LFR, Instrument
SpectralPowerReceiver", "is_public": "True", "name": "FIELDS RFS/LFR", "psp_rfs_sqtn": {"__spz_name__": "L3 - SQTN", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "psp-rfs-sqtn", "att": "auto/psp-rfs-sqtn", "dataSource": "CDPP", "desc": "Simplified Quasi-Thermal Noise
MinSampling: 7S; MaxSampling: 56S
Provider: CDPP", "is_public": "True", "lastModificationDate": "2024-04-22T07:54:00Z", "lastUpdate": "2024-04-22T07:53:55Z", "maxSampling": "56S", "measurement_type": "ThermalPlasma", "name": "L3 - SQTN", "processing_level": "Calibrated", "psp_sqtn_n": {"__spz_name__": "density e-", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_sqtn_n", "dataset": "psp-rfs-sqtn", "description": "The electron density is deduced from the automatic detection of the plasma frequency in RFS spectra with SQTN spectroscopy", "is_public": "True", "name": "density e-", "start_date": "2018-10-15T00:00:26Z", "stop_date": "2023-06-27T23:59:57Z", "ucd": "phys.density;phys.electron", "units": "cm-3", "xmlid": "psp_sqtn_n"}, "psp_sqtn_ndelta": {"__spz_name__": "density e- : delta", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_sqtn_ndelta", "dataset": "psp-rfs-sqtn", "description": "Uncertainty of electron density.", "is_public": "True", "name": "density e- : delta", "psp_sqtn_ndelta0": {"__spz_name__": "n_delta_minus", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_sqtn_ndelta(0)", "dataset": "psp-rfs-sqtn", "index1": "0", "is_public": "True", "name": "n_delta_minus", "parameter": "psp_sqtn_ndelta", "start_date": "2018-10-15T00:00:26Z", "stop_date": "2023-06-27T23:59:57Z", "xmlid": "psp_sqtn_ndelta(0)"}, "psp_sqtn_ndelta1": {"__spz_name__": "n_delta_plus", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_sqtn_ndelta(1)", "dataset": "psp-rfs-sqtn", "index1": "1", "is_public": "True", "name": "n_delta_plus", "parameter": "psp_sqtn_ndelta", "start_date": "2018-10-15T00:00:26Z", "stop_date": "2023-06-27T23:59:57Z", "xmlid": "psp_sqtn_ndelta(1)"}, "size": "2", "start_date": "2018-10-15T00:00:26Z", "stop_date": "2023-06-27T23:59:57Z", "ucd": "phys.density;phys.electron", "units": "cm-3", "xmlid": "psp_sqtn_ndelta"}, "psp_sqtn_t": {"__spz_name__": "temperature e-", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_sqtn_t", "dataset": "psp-rfs-sqtn", "description": "The electron core temperature is deduced from the QTN level below fp in RFS spectra with SQTN spectroscopy", "is_public": "True", "name": "temperature e-", "start_date": "2018-10-15T00:00:26Z", "stop_date": "2023-06-27T23:59:57Z", "ucd": "phys.temperature;phys.electron", "units": "eV", "xmlid": "psp_sqtn_t"}, "sampling": "7S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/PSP/LFR/psp-rfs-sqtn", "start_date": "2018-10-15T00:00:26Z", "stop_date": "2023-06-27T23:59:57Z", "target": "Heliosphere.Inner", "xmlid": "psp-rfs-sqtn"}, "xmlid": "PSP_lfr"}, "ISoIS_EPI_Hi": {"HET": {"__spz_name__": "HET", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "psp-isois-het", "is_public": "True", "name": "HET", "psp_het_1hr": {"__spz_name__": "HET 1h", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "psp-het-1hr", "att": "auto/psp-het-1hr", "dataSource": "SPDF", "desc": "High Energy Telescope 1 h rate
Sampling: 3600S
Provider: SPDF", "is_public": "True", "lastModificationDate": "2024-10-06T22:27:14Z", "lastUpdate": "2024-09-23T10:13:59Z", "measurement_type": "EnergeticParticles", "name": "HET 1h", "processing_level": "Calibrated", "psp_het_1h_AAlr": {"__spz_name__": "al rate side A", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_het_1h_AAlr", "dataset": "psp-het-1hr", "description": "Aluminium rate side A", "display_type": "spectrogram", "is_public": "True", "name": "al rate side A", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_het_1h_AAlr"}, "psp_het_1h_AArr": {"__spz_name__": "ar rate side A", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_het_1h_AArr", "dataset": "psp-het-1hr", "description": "Argon rate side A", "display_type": "spectrogram", "is_public": "True", "name": "ar rate side A", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_het_1h_AArr"}, "psp_het_1h_ACar": {"__spz_name__": "ca rate side A", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_het_1h_ACar", "dataset": "psp-het-1hr", "description": "Calcium rate side A", "display_type": "spectrogram", "is_public": "True", "name": "ca rate side A", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_het_1h_ACar"}, "psp_het_1h_ACr": {"__spz_name__": "c rate side A", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_het_1h_ACr", "dataset": "psp-het-1hr", "description": "Carbon rate side A", "display_type": "spectrogram", "is_public": "True", "name": "c rate side A", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_het_1h_ACr"}, "psp_het_1h_ACrr": {"__spz_name__": "cr rate side A", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_het_1h_ACrr", "dataset": "psp-het-1hr", "description": "Chromium rate side A", "display_type": "spectrogram", "is_public": "True", "name": "cr rate side A", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_het_1h_ACrr"}, "psp_het_1h_AFer": {"__spz_name__": "fe rate side A", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_het_1h_AFer", "dataset": "psp-het-1hr", "description": "Iron rate side A", "display_type": "spectrogram", "is_public": "True", "name": "fe rate side A", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_het_1h_AFer"}, "psp_het_1h_AHef": {"__spz_name__": "he flux side A", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_het_1h_AHef", "dataset": "psp-het-1hr", "description": "Helium flux side A", "display_type": "spectrogram", "is_public": "True", "name": "he flux side A", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "1/cm\u00b2/sr/s/(MeV/nuc)", "xmlid": "psp_het_1h_AHef"}, "psp_het_1h_AHefu": {"__spz_name__": "he A uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_het_1h_AHefu", "dataset": "psp-het-1hr", "description": "Helium flux side A uncertainty", "display_type": "spectrogram", "is_public": "True", "name": "he A uncertainty", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "1/cm\u00b2/sr/s/(MeV/nuc)", "xmlid": "psp_het_1h_AHefu"}, "psp_het_1h_AHer": {"__spz_name__": "he rate side A", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_het_1h_AHer", "dataset": "psp-het-1hr", "description": "Helium rate side A", "display_type": "spectrogram", "is_public": "True", "name": "he rate side A", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_het_1h_AHer"}, "psp_het_1h_AHf": {"__spz_name__": "h+ flux side A", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_het_1h_AHf", "dataset": "psp-het-1hr", "description": "Proton flux side A", "display_type": "spectrogram", "is_public": "True", "name": "h+ flux side A", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "1/cm\u00b2/sr/s/(MeV/nuc)", "xmlid": "psp_het_1h_AHf"}, "psp_het_1h_AHfu": {"__spz_name__": "h+ A uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_het_1h_AHfu", "dataset": "psp-het-1hr", "description": "Proton flux side A uncertainty", "display_type": "spectrogram", "is_public": "True", "name": "h+ A uncertainty", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "1/cm\u00b2/sr/s/(MeV/nuc)", "xmlid": "psp_het_1h_AHfu"}, "psp_het_1h_AHr": {"__spz_name__": "h+ rate side A", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_het_1h_AHr", "dataset": "psp-het-1hr", "description": "proton rate side A", "display_type": "spectrogram", "is_public": "True", "name": "h+ rate side A", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_het_1h_AHr"}, "psp_het_1h_AMgr": {"__spz_name__": "mg rate side A", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_het_1h_AMgr", "dataset": "psp-het-1hr", "description": "Magnesium rate side A", "display_type": "spectrogram", "is_public": "True", "name": "mg rate side A", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_het_1h_AMgr"}, "psp_het_1h_ANar": {"__spz_name__": "na rate side A", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_het_1h_ANar", "dataset": "psp-het-1hr", "description": "Sodium rate side A", "display_type": "spectrogram", "is_public": "True", "name": "na rate side A", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_het_1h_ANar"}, "psp_het_1h_ANer": {"__spz_name__": "ne rate side A", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_het_1h_ANer", "dataset": "psp-het-1hr", "description": "Neon rate side A", "display_type": "spectrogram", "is_public": "True", "name": "ne rate side A", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_het_1h_ANer"}, "psp_het_1h_ANir": {"__spz_name__": "ni rate side A", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_het_1h_ANir", "dataset": "psp-het-1hr", "description": "Nickel rate side A", "display_type": "spectrogram", "is_public": "True", "name": "ni rate side A", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_het_1h_ANir"}, "psp_het_1h_ANr": {"__spz_name__": "n rate side A", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_het_1h_ANr", "dataset": "psp-het-1hr", "description": "Nitrogen rate side A", "display_type": "spectrogram", "is_public": "True", "name": "n rate side A", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_het_1h_ANr"}, "psp_het_1h_AOr": {"__spz_name__": "o rate side A", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_het_1h_AOr", "dataset": "psp-het-1hr", "description": "Oxygen rate side A", "display_type": "spectrogram", "is_public": "True", "name": "o rate side A", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_het_1h_AOr"}, "psp_het_1h_ASir": {"__spz_name__": "si rate side A", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_het_1h_ASir", "dataset": "psp-het-1hr", "description": "Silicon rate side A", "display_type": "spectrogram", "is_public": "True", "name": "si rate side A", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_het_1h_ASir"}, "psp_het_1h_ASr": {"__spz_name__": "s rate side A", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_het_1h_ASr", "dataset": "psp-het-1hr", "description": "Sulfur rate side A", "display_type": "spectrogram", "is_public": "True", "name": "s rate side A", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_het_1h_ASr"}, "psp_het_1h_BAlr": {"__spz_name__": "al rate side B", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_het_1h_BAlr", "dataset": "psp-het-1hr", "description": "Aluminium rate side B", "display_type": "spectrogram", "is_public": "True", "name": "al rate side B", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_het_1h_BAlr"}, "psp_het_1h_BArr": {"__spz_name__": "ar rate side B", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_het_1h_BArr", "dataset": "psp-het-1hr", "description": "Argon rate side B", "display_type": "spectrogram", "is_public": "True", "name": "ar rate side B", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_het_1h_BArr"}, "psp_het_1h_BCar": {"__spz_name__": "ca rate side B", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_het_1h_BCar", "dataset": "psp-het-1hr", "description": "Calcium rate side B", "display_type": "spectrogram", "is_public": "True", "name": "ca rate side B", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_het_1h_BCar"}, "psp_het_1h_BCr": {"__spz_name__": "c rate side B", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_het_1h_BCr", "dataset": "psp-het-1hr", "description": "Carbon rate side B", "display_type": "spectrogram", "is_public": "True", "name": "c rate side B", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_het_1h_BCr"}, "psp_het_1h_BCrr": {"__spz_name__": "cr rate side B", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_het_1h_BCrr", "dataset": "psp-het-1hr", "description": "Chromium rate side B", "display_type": "spectrogram", "is_public": "True", "name": "cr rate side B", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_het_1h_BCrr"}, "psp_het_1h_BFer": {"__spz_name__": "fe rate side B", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_het_1h_BFer", "dataset": "psp-het-1hr", "description": "Iron rate side B", "display_type": "spectrogram", "is_public": "True", "name": "fe rate side B", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_het_1h_BFer"}, "psp_het_1h_BHef": {"__spz_name__": "he flux side B", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_het_1h_BHef", "dataset": "psp-het-1hr", "description": "Helium flux side B", "display_type": "spectrogram", "is_public": "True", "name": "he flux side B", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "1/cm\u00b2/sr/s/(MeV/nuc)", "xmlid": "psp_het_1h_BHef"}, "psp_het_1h_BHefu": {"__spz_name__": "he B uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_het_1h_BHefu", "dataset": "psp-het-1hr", "description": "Helium flux side B uncertainty", "display_type": "spectrogram", "is_public": "True", "name": "he B uncertainty", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "1/cm\u00b2/sr/s/(MeV/nuc)", "xmlid": "psp_het_1h_BHefu"}, "psp_het_1h_BHer": {"__spz_name__": "he rate side B", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_het_1h_BHer", "dataset": "psp-het-1hr", "description": "Helium rate side B", "display_type": "spectrogram", "is_public": "True", "name": "he rate side B", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_het_1h_BHer"}, "psp_het_1h_BHf": {"__spz_name__": "h+ flux side B", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_het_1h_BHf", "dataset": "psp-het-1hr", "description": "Proton flux side B", "display_type": "spectrogram", "is_public": "True", "name": "h+ flux side B", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "1/cm\u00b2/sr/s/(MeV/nuc)", "xmlid": "psp_het_1h_BHf"}, "psp_het_1h_BHfu": {"__spz_name__": "h+ B uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_het_1h_BHfu", "dataset": "psp-het-1hr", "description": "Proton flux side B uncertainty", "display_type": "spectrogram", "is_public": "True", "name": "h+ B uncertainty", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "1/cm\u00b2/sr/s/(MeV/nuc)", "xmlid": "psp_het_1h_BHfu"}, "psp_het_1h_BHr": {"__spz_name__": "h+ rate side B", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_het_1h_BHr", "dataset": "psp-het-1hr", "description": "proton rate side B", "display_type": "spectrogram", "is_public": "True", "name": "h+ rate side B", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_het_1h_BHr"}, "psp_het_1h_BMgr": {"__spz_name__": "mg rate side B", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_het_1h_BMgr", "dataset": "psp-het-1hr", "description": "Magnesium rate side B", "display_type": "spectrogram", "is_public": "True", "name": "mg rate side B", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_het_1h_BMgr"}, "psp_het_1h_BNar": {"__spz_name__": "na rate side B", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_het_1h_BNar", "dataset": "psp-het-1hr", "description": "Sodium rate side B", "display_type": "spectrogram", "is_public": "True", "name": "na rate side B", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_het_1h_BNar"}, "psp_het_1h_BNer": {"__spz_name__": "ne rate side B", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_het_1h_BNer", "dataset": "psp-het-1hr", "description": "Neon rate side B", "display_type": "spectrogram", "is_public": "True", "name": "ne rate side B", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_het_1h_BNer"}, "psp_het_1h_BNir": {"__spz_name__": "ni rate side B", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_het_1h_BNir", "dataset": "psp-het-1hr", "description": "Nickel rate side B", "display_type": "spectrogram", "is_public": "True", "name": "ni rate side B", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_het_1h_BNir"}, "psp_het_1h_BNr": {"__spz_name__": "n rate side B", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_het_1h_BNr", "dataset": "psp-het-1hr", "description": "Nitrogen rate side B", "display_type": "spectrogram", "is_public": "True", "name": "n rate side B", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_het_1h_BNr"}, "psp_het_1h_BOr": {"__spz_name__": "o rate side B", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_het_1h_BOr", "dataset": "psp-het-1hr", "description": "Oxygen rate side B", "display_type": "spectrogram", "is_public": "True", "name": "o rate side B", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_het_1h_BOr"}, "psp_het_1h_BSir": {"__spz_name__": "si rate side B", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_het_1h_BSir", "dataset": "psp-het-1hr", "description": "Silicon rate side B", "display_type": "spectrogram", "is_public": "True", "name": "si rate side B", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_het_1h_BSir"}, "psp_het_1h_BSr": {"__spz_name__": "s rate side B", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_het_1h_BSr", "dataset": "psp-het-1hr", "description": "Sulfur rate side B", "display_type": "spectrogram", "is_public": "True", "name": "s rate side B", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_het_1h_BSr"}, "sampling": "3600S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/PSP/epiHi/psp-het-1hr", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "target": "Heliosphere.Inner", "xmlid": "psp-het-1hr"}, "psp_het_1min": {"__spz_name__": "HET 1min", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "psp-het-1min", "att": "auto/psp-het-1min", "dataSource": "SPDF", "desc": "High Energy Telescope 1 min rate
Sampling: 60S
Provider: SPDF", "is_public": "True", "lastModificationDate": "2024-10-06T22:27:18Z", "lastUpdate": "2024-09-24T09:17:28Z", "measurement_type": "EnergeticParticles", "name": "HET 1min", "processing_level": "Calibrated", "psp_het_1min_AHef": {"__spz_name__": "he flux side A", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_het_1min_AHef", "dataset": "psp-het-1min", "description": "Helium flux side A", "display_type": "spectrogram", "is_public": "True", "name": "he flux side A", "start_date": "2018-09-28T00:00:26Z", "stop_date": "2024-06-16T23:59:39Z", "units": "1/cm\u00b2/sr/s/(MeV/nuc)", "xmlid": "psp_het_1min_AHef"}, "psp_het_1min_AHefu": {"__spz_name__": "he A uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_het_1min_AHefu", "dataset": "psp-het-1min", "description": "Helium flux side A uncertainty", "display_type": "spectrogram", "is_public": "True", "name": "he A uncertainty", "start_date": "2018-09-28T00:00:26Z", "stop_date": "2024-06-16T23:59:39Z", "units": "1/cm\u00b2/sr/s/(MeV/nuc)", "xmlid": "psp_het_1min_AHefu"}, "psp_het_1min_AHf": {"__spz_name__": "h+ flux side A", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_het_1min_AHf", "dataset": "psp-het-1min", "description": "Proton flux side A", "display_type": "spectrogram", "is_public": "True", "name": "h+ flux side A", "start_date": "2018-09-28T00:00:26Z", "stop_date": "2024-06-16T23:59:39Z", "units": "1/cm\u00b2/sr/s/(MeV/nuc)", "xmlid": "psp_het_1min_AHf"}, "psp_het_1min_AHfu": {"__spz_name__": "h+ A uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_het_1min_AHfu", "dataset": "psp-het-1min", "description": "Proton flux side A uncertainty", "display_type": "spectrogram", "is_public": "True", "name": "h+ A uncertainty", "start_date": "2018-09-28T00:00:26Z", "stop_date": "2024-06-16T23:59:39Z", "units": "1/cm\u00b2/sr/s/(MeV/nuc)", "xmlid": "psp_het_1min_AHfu"}, "psp_het_1min_BHef": {"__spz_name__": "he flux side B", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_het_1min_BHef", "dataset": "psp-het-1min", "description": "Helium flux side B", "display_type": "spectrogram", "is_public": "True", "name": "he flux side B", "start_date": "2018-09-28T00:00:26Z", "stop_date": "2024-06-16T23:59:39Z", "units": "1/cm\u00b2/sr/s/(MeV/nuc)", "xmlid": "psp_het_1min_BHef"}, "psp_het_1min_BHefu": {"__spz_name__": "he B uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_het_1min_BHefu", "dataset": "psp-het-1min", "description": "Helium flux side B uncertainty", "display_type": "spectrogram", "is_public": "True", "name": "he B uncertainty", "start_date": "2018-09-28T00:00:26Z", "stop_date": "2024-06-16T23:59:39Z", "units": "1/cm\u00b2/sr/s/(MeV/nuc)", "xmlid": "psp_het_1min_BHefu"}, "psp_het_1min_BHf": {"__spz_name__": "h+ flux side B", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_het_1min_BHf", "dataset": "psp-het-1min", "description": "Proton flux side B", "display_type": "spectrogram", "is_public": "True", "name": "h+ flux side B", "start_date": "2018-09-28T00:00:26Z", "stop_date": "2024-06-16T23:59:39Z", "units": "1/cm\u00b2/sr/s/(MeV/nuc)", "xmlid": "psp_het_1min_BHf"}, "psp_het_1min_BHfu": {"__spz_name__": "h+ B uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_het_1min_BHfu", "dataset": "psp-het-1min", "description": "Proton flux side B uncertainty", "display_type": "spectrogram", "is_public": "True", "name": "h+ B uncertainty", "start_date": "2018-09-28T00:00:26Z", "stop_date": "2024-06-16T23:59:39Z", "units": "1/cm\u00b2/sr/s/(MeV/nuc)", "xmlid": "psp_het_1min_BHfu"}, "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/PSP/epiHi/psp-het-1min", "start_date": "2018-09-28T00:00:26Z", "stop_date": "2024-06-16T23:59:39Z", "target": "Heliosphere.Inner", "xmlid": "psp-het-1min"}, "xmlid": "psp-isois-het"}, "LET1": {"__spz_name__": "LET1", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "psp-isois-let1", "is_public": "True", "name": "LET1", "psp_let1_1hr": {"__spz_name__": "LET1 1h", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "psp-let1-1hr", "att": "auto/psp-let1-1hr", "dataSource": "SPDF", "desc": "Low Energy Telescope 1, 1h rate
Sampling: 3600S
Provider: SPDF", "is_public": "True", "lastModificationDate": "2024-10-06T22:27:28Z", "lastUpdate": "2024-09-23T14:29:15Z", "measurement_type": "EnergeticParticles", "name": "LET1 1h", "processing_level": "Calibrated", "psp_let1_1h_AAlr": {"__spz_name__": "al rate side A", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_let1_1h_AAlr", "dataset": "psp-let1-1hr", "description": "Aluminium rate side A", "display_type": "spectrogram", "is_public": "True", "name": "al rate side A", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_let1_1h_AAlr"}, "psp_let1_1h_AArr": {"__spz_name__": "ar rate side A", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_let1_1h_AArr", "dataset": "psp-let1-1hr", "description": "Argon rate side A", "display_type": "spectrogram", "is_public": "True", "name": "ar rate side A", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_let1_1h_AArr"}, "psp_let1_1h_ACar": {"__spz_name__": "ca rate side A", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_let1_1h_ACar", "dataset": "psp-let1-1hr", "description": "Calcium rate side A", "display_type": "spectrogram", "is_public": "True", "name": "ca rate side A", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_let1_1h_ACar"}, "psp_let1_1h_ACr": {"__spz_name__": "c rate side A", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_let1_1h_ACr", "dataset": "psp-let1-1hr", "description": "Carbon rate side A", "display_type": "spectrogram", "is_public": "True", "name": "c rate side A", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_let1_1h_ACr"}, "psp_let1_1h_ACrr": {"__spz_name__": "cr rate side A", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_let1_1h_ACrr", "dataset": "psp-let1-1hr", "description": "Chromium rate side A", "display_type": "spectrogram", "is_public": "True", "name": "cr rate side A", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_let1_1h_ACrr"}, "psp_let1_1h_AFer": {"__spz_name__": "fe rate side A", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_let1_1h_AFer", "dataset": "psp-let1-1hr", "description": "Iron rate side A", "display_type": "spectrogram", "is_public": "True", "name": "fe rate side A", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_let1_1h_AFer"}, "psp_let1_1h_AHef": {"__spz_name__": "he flux side A", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_let1_1h_AHef", "dataset": "psp-let1-1hr", "description": "Helium flux side A", "display_type": "spectrogram", "is_public": "True", "name": "he flux side A", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "1/cm\u00b2/sr/s/(MeV/nuc)", "xmlid": "psp_let1_1h_AHef"}, "psp_let1_1h_AHefu": {"__spz_name__": "he A uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_let1_1h_AHefu", "dataset": "psp-let1-1hr", "description": "Helium flux side A uncertainty", "display_type": "spectrogram", "is_public": "True", "name": "he A uncertainty", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "1/cm\u00b2/sr/s/(MeV/nuc)", "xmlid": "psp_let1_1h_AHefu"}, "psp_let1_1h_AHer": {"__spz_name__": "he rate side A", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_let1_1h_AHer", "dataset": "psp-let1-1hr", "description": "Helium rate side A", "display_type": "spectrogram", "is_public": "True", "name": "he rate side A", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_let1_1h_AHer"}, "psp_let1_1h_AHf": {"__spz_name__": "h+ flux side A", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_let1_1h_AHf", "dataset": "psp-let1-1hr", "description": "Proton flux side A", "display_type": "spectrogram", "is_public": "True", "name": "h+ flux side A", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "1/cm\u00b2/sr/s/(MeV/nuc)", "xmlid": "psp_let1_1h_AHf"}, "psp_let1_1h_AHfu": {"__spz_name__": "h+ A uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_let1_1h_AHfu", "dataset": "psp-let1-1hr", "description": "Proton flux side A uncertainty", "display_type": "spectrogram", "is_public": "True", "name": "h+ A uncertainty", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "1/cm\u00b2/sr/s/(MeV/nuc)", "xmlid": "psp_let1_1h_AHfu"}, "psp_let1_1h_AHr": {"__spz_name__": "h+ rate side A", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_let1_1h_AHr", "dataset": "psp-let1-1hr", "description": "proton rate side A", "display_type": "spectrogram", "is_public": "True", "name": "h+ rate side A", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_let1_1h_AHr"}, "psp_let1_1h_AMgr": {"__spz_name__": "mg rate side A", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_let1_1h_AMgr", "dataset": "psp-let1-1hr", "description": "Magnesium rate side A", "display_type": "spectrogram", "is_public": "True", "name": "mg rate side A", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_let1_1h_AMgr"}, "psp_let1_1h_ANar": {"__spz_name__": "na rate side A", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_let1_1h_ANar", "dataset": "psp-let1-1hr", "description": "Sodium rate side A", "display_type": "spectrogram", "is_public": "True", "name": "na rate side A", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_let1_1h_ANar"}, "psp_let1_1h_ANer": {"__spz_name__": "ne rate side A", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_let1_1h_ANer", "dataset": "psp-let1-1hr", "description": "Neon rate side A", "display_type": "spectrogram", "is_public": "True", "name": "ne rate side A", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_let1_1h_ANer"}, "psp_let1_1h_ANir": {"__spz_name__": "ni rate side A", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_let1_1h_ANir", "dataset": "psp-let1-1hr", "description": "Nickel rate side A", "display_type": "spectrogram", "is_public": "True", "name": "ni rate side A", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_let1_1h_ANir"}, "psp_let1_1h_ANr": {"__spz_name__": "n rate side A", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_let1_1h_ANr", "dataset": "psp-let1-1hr", "description": "Nitrogen rate side A", "display_type": "spectrogram", "is_public": "True", "name": "n rate side A", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_let1_1h_ANr"}, "psp_let1_1h_AOr": {"__spz_name__": "o rate side A", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_let1_1h_AOr", "dataset": "psp-let1-1hr", "description": "Oxygen rate side A", "display_type": "spectrogram", "is_public": "True", "name": "o rate side A", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_let1_1h_AOr"}, "psp_let1_1h_ASir": {"__spz_name__": "si rate side A", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_let1_1h_ASir", "dataset": "psp-let1-1hr", "description": "Silicon rate side A", "display_type": "spectrogram", "is_public": "True", "name": "si rate side A", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_let1_1h_ASir"}, "psp_let1_1h_ASr": {"__spz_name__": "s rate side A", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_let1_1h_ASr", "dataset": "psp-let1-1hr", "description": "Sulfur rate side A", "display_type": "spectrogram", "is_public": "True", "name": "s rate side A", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_let1_1h_ASr"}, "psp_let1_1h_BAlr": {"__spz_name__": "al rate side B", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_let1_1h_BAlr", "dataset": "psp-let1-1hr", "description": "Aluminium rate side B", "display_type": "spectrogram", "is_public": "True", "name": "al rate side B", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_let1_1h_BAlr"}, "psp_let1_1h_BArr": {"__spz_name__": "ar rate side B", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_let1_1h_BArr", "dataset": "psp-let1-1hr", "description": "Argon rate side B", "display_type": "spectrogram", "is_public": "True", "name": "ar rate side B", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_let1_1h_BArr"}, "psp_let1_1h_BCar": {"__spz_name__": "ca rate side B", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_let1_1h_BCar", "dataset": "psp-let1-1hr", "description": "Calcium rate side B", "display_type": "spectrogram", "is_public": "True", "name": "ca rate side B", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_let1_1h_BCar"}, "psp_let1_1h_BCr": {"__spz_name__": "c rate side B", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_let1_1h_BCr", "dataset": "psp-let1-1hr", "description": "Carbon rate side B", "display_type": "spectrogram", "is_public": "True", "name": "c rate side B", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_let1_1h_BCr"}, "psp_let1_1h_BCrr": {"__spz_name__": "cr rate side B", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_let1_1h_BCrr", "dataset": "psp-let1-1hr", "description": "Chromium rate side B", "display_type": "spectrogram", "is_public": "True", "name": "cr rate side B", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_let1_1h_BCrr"}, "psp_let1_1h_BFer": {"__spz_name__": "fe rate side B", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_let1_1h_BFer", "dataset": "psp-let1-1hr", "description": "Iron rate side B", "display_type": "spectrogram", "is_public": "True", "name": "fe rate side B", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_let1_1h_BFer"}, "psp_let1_1h_BHef": {"__spz_name__": "he flux side B", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_let1_1h_BHef", "dataset": "psp-let1-1hr", "description": "Helium flux side B", "display_type": "spectrogram", "is_public": "True", "name": "he flux side B", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "1/cm\u00b2/sr/s/(MeV/nuc)", "xmlid": "psp_let1_1h_BHef"}, "psp_let1_1h_BHefu": {"__spz_name__": "he B uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_let1_1h_BHefu", "dataset": "psp-let1-1hr", "description": "Helium flux side B uncertainty", "display_type": "spectrogram", "is_public": "True", "name": "he B uncertainty", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "1/cm\u00b2/sr/s/(MeV/nuc)", "xmlid": "psp_let1_1h_BHefu"}, "psp_let1_1h_BHer": {"__spz_name__": "he rate side B", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_let1_1h_BHer", "dataset": "psp-let1-1hr", "description": "Helium rate side B", "display_type": "spectrogram", "is_public": "True", "name": "he rate side B", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_let1_1h_BHer"}, "psp_let1_1h_BHf": {"__spz_name__": "h+ flux side B", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_let1_1h_BHf", "dataset": "psp-let1-1hr", "description": "Proton flux side B", "display_type": "spectrogram", "is_public": "True", "name": "h+ flux side B", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "1/cm\u00b2/sr/s/(MeV/nuc)", "xmlid": "psp_let1_1h_BHf"}, "psp_let1_1h_BHfu": {"__spz_name__": "h+ B uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_let1_1h_BHfu", "dataset": "psp-let1-1hr", "description": "Proton flux side B uncertainty", "display_type": "spectrogram", "is_public": "True", "name": "h+ B uncertainty", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "1/cm\u00b2/sr/s/(MeV/nuc)", "xmlid": "psp_let1_1h_BHfu"}, "psp_let1_1h_BHr": {"__spz_name__": "h+ rate side B", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_let1_1h_BHr", "dataset": "psp-let1-1hr", "description": "proton rate side B", "display_type": "spectrogram", "is_public": "True", "name": "h+ rate side B", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_let1_1h_BHr"}, "psp_let1_1h_BMgr": {"__spz_name__": "mg rate side B", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_let1_1h_BMgr", "dataset": "psp-let1-1hr", "description": "Magnesium rate side B", "display_type": "spectrogram", "is_public": "True", "name": "mg rate side B", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_let1_1h_BMgr"}, "psp_let1_1h_BNar": {"__spz_name__": "na rate side B", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_let1_1h_BNar", "dataset": "psp-let1-1hr", "description": "Sodium rate side B", "display_type": "spectrogram", "is_public": "True", "name": "na rate side B", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_let1_1h_BNar"}, "psp_let1_1h_BNer": {"__spz_name__": "ne rate side B", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_let1_1h_BNer", "dataset": "psp-let1-1hr", "description": "Neon rate side B", "display_type": "spectrogram", "is_public": "True", "name": "ne rate side B", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_let1_1h_BNer"}, "psp_let1_1h_BNir": {"__spz_name__": "ni rate side B", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_let1_1h_BNir", "dataset": "psp-let1-1hr", "description": "Nickel rate side B", "display_type": "spectrogram", "is_public": "True", "name": "ni rate side B", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_let1_1h_BNir"}, "psp_let1_1h_BNr": {"__spz_name__": "n rate side B", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_let1_1h_BNr", "dataset": "psp-let1-1hr", "description": "Nitrogen rate side B", "display_type": "spectrogram", "is_public": "True", "name": "n rate side B", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_let1_1h_BNr"}, "psp_let1_1h_BOr": {"__spz_name__": "o rate side B", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_let1_1h_BOr", "dataset": "psp-let1-1hr", "description": "Oxygen rate side B", "display_type": "spectrogram", "is_public": "True", "name": "o rate side B", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_let1_1h_BOr"}, "psp_let1_1h_BSir": {"__spz_name__": "si rate side B", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_let1_1h_BSir", "dataset": "psp-let1-1hr", "description": "Silicon rate side B", "display_type": "spectrogram", "is_public": "True", "name": "si rate side B", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_let1_1h_BSir"}, "psp_let1_1h_BSr": {"__spz_name__": "s rate side B", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_let1_1h_BSr", "dataset": "psp-let1-1hr", "description": "Sulfur rate side B", "display_type": "spectrogram", "is_public": "True", "name": "s rate side B", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_let1_1h_BSr"}, "sampling": "3600S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/PSP/epiHi/psp-let1-1hr", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "target": "Heliosphere.Inner", "xmlid": "psp-let1-1hr"}, "psp_let1_1min": {"__spz_name__": "LET1 1min", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "psp-let1-1min", "att": "auto/psp-let1-1min", "dataSource": "SPDF", "desc": "Low Energy Telescope 1 1 min rate
Sampling: 60S
Provider: SPDF", "is_public": "True", "lastModificationDate": "2024-10-06T22:27:23Z", "lastUpdate": "2024-09-23T13:12:46Z", "measurement_type": "EnergeticParticles", "name": "LET1 1min", "processing_level": "Calibrated", "psp_let1_1min_AHef": {"__spz_name__": "he flux side A", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_let1_1min_AHef", "dataset": "psp-let1-1min", "description": "Helium flux side A", "display_type": "spectrogram", "is_public": "True", "name": "he flux side A", "start_date": "2018-09-28T00:00:26Z", "stop_date": "2024-06-16T23:59:39Z", "units": "1/cm\u00b2/sr/s/(MeV/nuc)", "xmlid": "psp_let1_1min_AHef"}, "psp_let1_1min_AHefu": {"__spz_name__": "he A uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_let1_1min_AHefu", "dataset": "psp-let1-1min", "description": "Helium flux side A uncertainty", "display_type": "spectrogram", "is_public": "True", "name": "he A uncertainty", "start_date": "2018-09-28T00:00:26Z", "stop_date": "2024-06-16T23:59:39Z", "units": "1/cm\u00b2/sr/s/(MeV/nuc)", "xmlid": "psp_let1_1min_AHefu"}, "psp_let1_1min_AHf": {"__spz_name__": "h+ flux side A", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_let1_1min_AHf", "dataset": "psp-let1-1min", "description": "Proton flux side A", "display_type": "spectrogram", "is_public": "True", "name": "h+ flux side A", "start_date": "2018-09-28T00:00:26Z", "stop_date": "2024-06-16T23:59:39Z", "units": "1/cm\u00b2/sr/s/(MeV/nuc)", "xmlid": "psp_let1_1min_AHf"}, "psp_let1_1min_AHfu": {"__spz_name__": "h+ A uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_let1_1min_AHfu", "dataset": "psp-let1-1min", "description": "Proton flux side A uncertainty", "display_type": "spectrogram", "is_public": "True", "name": "h+ A uncertainty", "start_date": "2018-09-28T00:00:26Z", "stop_date": "2024-06-16T23:59:39Z", "units": "1/cm\u00b2/sr/s/(MeV/nuc)", "xmlid": "psp_let1_1min_AHfu"}, "psp_let1_1min_BHef": {"__spz_name__": "he flux side B", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_let1_1min_BHef", "dataset": "psp-let1-1min", "description": "Helium flux side B", "display_type": "spectrogram", "is_public": "True", "name": "he flux side B", "start_date": "2018-09-28T00:00:26Z", "stop_date": "2024-06-16T23:59:39Z", "units": "1/cm\u00b2/sr/s/(MeV/nuc)", "xmlid": "psp_let1_1min_BHef"}, "psp_let1_1min_BHefu": {"__spz_name__": "he B uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_let1_1min_BHefu", "dataset": "psp-let1-1min", "description": "Helium flux side B uncertainty", "display_type": "spectrogram", "is_public": "True", "name": "he B uncertainty", "start_date": "2018-09-28T00:00:26Z", "stop_date": "2024-06-16T23:59:39Z", "units": "1/cm\u00b2/sr/s/(MeV/nuc)", "xmlid": "psp_let1_1min_BHefu"}, "psp_let1_1min_BHf": {"__spz_name__": "h+ flux side B", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_let1_1min_BHf", "dataset": "psp-let1-1min", "description": "Proton flux side B", "display_type": "spectrogram", "is_public": "True", "name": "h+ flux side B", "start_date": "2018-09-28T00:00:26Z", "stop_date": "2024-06-16T23:59:39Z", "units": "1/cm\u00b2/sr/s/(MeV/nuc)", "xmlid": "psp_let1_1min_BHf"}, "psp_let1_1min_BHfu": {"__spz_name__": "h+ B uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_let1_1min_BHfu", "dataset": "psp-let1-1min", "description": "Proton flux side B uncertainty", "display_type": "spectrogram", "is_public": "True", "name": "h+ B uncertainty", "start_date": "2018-09-28T00:00:26Z", "stop_date": "2024-06-16T23:59:39Z", "units": "1/cm\u00b2/sr/s/(MeV/nuc)", "xmlid": "psp_let1_1min_BHfu"}, "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/PSP/epiHi/psp-let1-1min", "start_date": "2018-09-28T00:00:26Z", "stop_date": "2024-06-16T23:59:39Z", "target": "Heliosphere.Inner", "xmlid": "psp-let1-1min"}, "xmlid": "psp-isois-let1"}, "LET2": {"__spz_name__": "LET2", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "psp-isois-let2", "is_public": "True", "name": "LET2", "psp_let2_1hr": {"__spz_name__": "LET2 1h", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "psp-let2-1hr", "att": "auto/psp-let2-1hr", "dataSource": "SPDF", "desc": "Low Energy Telescope 2, 1h rate
Sampling: 3600S
Provider: SPDF", "is_public": "True", "lastModificationDate": "2024-10-06T22:27:37Z", "lastUpdate": "2024-09-23T16:09:19Z", "measurement_type": "EnergeticParticles", "name": "LET2 1h", "processing_level": "Calibrated", "psp_let2_1h_Alr": {"__spz_name__": "al rate side C", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_let2_1h_Alr", "dataset": "psp-let2-1hr", "description": "Aluminium rate side C", "display_type": "spectrogram", "is_public": "True", "name": "al rate side C", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_let2_1h_Alr"}, "psp_let2_1h_Arr": {"__spz_name__": "ar rate side C", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_let2_1h_Arr", "dataset": "psp-let2-1hr", "description": "Argon rate side C", "display_type": "spectrogram", "is_public": "True", "name": "ar rate side C", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_let2_1h_Arr"}, "psp_let2_1h_Car": {"__spz_name__": "ca rate side C", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_let2_1h_Car", "dataset": "psp-let2-1hr", "description": "Calcium rate side C", "display_type": "spectrogram", "is_public": "True", "name": "ca rate side C", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_let2_1h_Car"}, "psp_let2_1h_Cr": {"__spz_name__": "c rate side C", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_let2_1h_Cr", "dataset": "psp-let2-1hr", "description": "Carbon rate side C", "display_type": "spectrogram", "is_public": "True", "name": "c rate side C", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_let2_1h_Cr"}, "psp_let2_1h_Crr": {"__spz_name__": "cr rate side C", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_let2_1h_Crr", "dataset": "psp-let2-1hr", "description": "Chromium rate side C", "display_type": "spectrogram", "is_public": "True", "name": "cr rate side C", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_let2_1h_Crr"}, "psp_let2_1h_Fer": {"__spz_name__": "fe rate side C", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_let2_1h_Fer", "dataset": "psp-let2-1hr", "description": "Iron rate side C", "display_type": "spectrogram", "is_public": "True", "name": "fe rate side C", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_let2_1h_Fer"}, "psp_let2_1h_Hef": {"__spz_name__": "he flux side C", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_let2_1h_Hef", "dataset": "psp-let2-1hr", "description": "Helium flux side C", "display_type": "spectrogram", "is_public": "True", "name": "he flux side C", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "1/cm\u00b2/sr/s/(MeV/nuc)", "xmlid": "psp_let2_1h_Hef"}, "psp_let2_1h_Hefu": {"__spz_name__": "he uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_let2_1h_Hefu", "dataset": "psp-let2-1hr", "description": "Helium flux uncertainty side C", "display_type": "spectrogram", "is_public": "True", "name": "he uncertainty", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "1/cm\u00b2/sr/s/(MeV/nuc)", "xmlid": "psp_let2_1h_Hefu"}, "psp_let2_1h_Her": {"__spz_name__": "he rate side C", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_let2_1h_Her", "dataset": "psp-let2-1hr", "description": "Helium rate side C", "display_type": "spectrogram", "is_public": "True", "name": "he rate side C", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_let2_1h_Her"}, "psp_let2_1h_Hf": {"__spz_name__": "h+ flux side C", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_let2_1h_Hf", "dataset": "psp-let2-1hr", "description": "Proton flux side C", "display_type": "spectrogram", "is_public": "True", "name": "h+ flux side C", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "1/cm\u00b2/sr/s/(MeV/nuc)", "xmlid": "psp_let2_1h_Hf"}, "psp_let2_1h_Hfu": {"__spz_name__": "h+ uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_let2_1h_Hfu", "dataset": "psp-let2-1hr", "description": "Proton flux uncertainty side C", "display_type": "spectrogram", "is_public": "True", "name": "h+ uncertainty", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "1/cm\u00b2/sr/s/(MeV/nuc)", "xmlid": "psp_let2_1h_Hfu"}, "psp_let2_1h_Hr": {"__spz_name__": "h+ rate side C", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_let2_1h_Hr", "dataset": "psp-let2-1hr", "description": "proton rate side C", "display_type": "spectrogram", "is_public": "True", "name": "h+ rate side C", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_let2_1h_Hr"}, "psp_let2_1h_Mgr": {"__spz_name__": "mg rate side C", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_let2_1h_Mgr", "dataset": "psp-let2-1hr", "description": "Magnesium rate side C", "display_type": "spectrogram", "is_public": "True", "name": "mg rate side C", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_let2_1h_Mgr"}, "psp_let2_1h_Nar": {"__spz_name__": "na rate side C", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_let2_1h_Nar", "dataset": "psp-let2-1hr", "description": "Sodium rate side C", "display_type": "spectrogram", "is_public": "True", "name": "na rate side C", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_let2_1h_Nar"}, "psp_let2_1h_Ner": {"__spz_name__": "ne rate side C", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_let2_1h_Ner", "dataset": "psp-let2-1hr", "description": "Neon rate side C", "display_type": "spectrogram", "is_public": "True", "name": "ne rate side C", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_let2_1h_Ner"}, "psp_let2_1h_Nir": {"__spz_name__": "ni rate side C", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_let2_1h_Nir", "dataset": "psp-let2-1hr", "description": "Nickel rate side C", "display_type": "spectrogram", "is_public": "True", "name": "ni rate side C", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_let2_1h_Nir"}, "psp_let2_1h_Nr": {"__spz_name__": "n rate side C", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_let2_1h_Nr", "dataset": "psp-let2-1hr", "description": "Nitrogen rate side C", "display_type": "spectrogram", "is_public": "True", "name": "n rate side C", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_let2_1h_Nr"}, "psp_let2_1h_Or": {"__spz_name__": "o rate side C", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_let2_1h_Or", "dataset": "psp-let2-1hr", "description": "Oxygen rate side C", "display_type": "spectrogram", "is_public": "True", "name": "o rate side C", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_let2_1h_Or"}, "psp_let2_1h_Sir": {"__spz_name__": "si rate side C", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_let2_1h_Sir", "dataset": "psp-let2-1hr", "description": "Silicon rate side C", "display_type": "spectrogram", "is_public": "True", "name": "si rate side C", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_let2_1h_Sir"}, "psp_let2_1h_Sr": {"__spz_name__": "s rate side C", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_let2_1h_Sr", "dataset": "psp-let2-1hr", "description": "Sulfur rate side C", "display_type": "spectrogram", "is_public": "True", "name": "s rate side C", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "units": "counts/s", "xmlid": "psp_let2_1h_Sr"}, "sampling": "3600S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/PSP/epiHi/psp-let2-1hr", "start_date": "2018-09-28T00:29:56Z", "stop_date": "2024-06-16T23:30:09Z", "target": "Heliosphere.Inner", "xmlid": "psp-let2-1hr"}, "psp_let2_1min": {"__spz_name__": "LET2 1min", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "psp-let2-1min", "att": "auto/psp-let2-1min", "dataSource": "SPDF", "desc": "Low Energy Telescope 2, 1 min rate
Sampling: 60S
Provider: SPDF", "is_public": "True", "lastModificationDate": "2024-10-06T22:27:32Z", "lastUpdate": "2024-09-23T15:19:38Z", "measurement_type": "EnergeticParticles", "name": "LET2 1min", "processing_level": "Calibrated", "psp_let2_1min_Hef": {"__spz_name__": "he flux side C", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_let2_1min_Hef", "dataset": "psp-let2-1min", "description": "Helium flux side C", "display_type": "spectrogram", "is_public": "True", "name": "he flux side C", "start_date": "2018-09-28T00:00:26Z", "stop_date": "2024-06-16T23:59:39Z", "units": "1/cm\u00b2/sr/s/(MeV/nuc)", "xmlid": "psp_let2_1min_Hef"}, "psp_let2_1min_Hefu": {"__spz_name__": "he uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_let2_1min_Hefu", "dataset": "psp-let2-1min", "description": "Helium flux side C uncertainty", "display_type": "spectrogram", "is_public": "True", "name": "he uncertainty", "start_date": "2018-09-28T00:00:26Z", "stop_date": "2024-06-16T23:59:39Z", "units": "1/cm\u00b2/sr/s/(MeV/nuc)", "xmlid": "psp_let2_1min_Hefu"}, "psp_let2_1min_Hf": {"__spz_name__": "h+ flux side C", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_let2_1min_Hf", "dataset": "psp-let2-1min", "description": "Proton flux side C", "display_type": "spectrogram", "is_public": "True", "name": "h+ flux side C", "start_date": "2018-09-28T00:00:26Z", "stop_date": "2024-06-16T23:59:39Z", "units": "1/cm\u00b2/sr/s/(MeV/nuc)", "xmlid": "psp_let2_1min_Hf"}, "psp_let2_1min_Hfu": {"__spz_name__": "h+ uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_let2_1min_Hfu", "dataset": "psp-let2-1min", "description": "Proton flux side C uncertainty", "display_type": "spectrogram", "is_public": "True", "name": "h+ uncertainty", "start_date": "2018-09-28T00:00:26Z", "stop_date": "2024-06-16T23:59:39Z", "units": "1/cm\u00b2/sr/s/(MeV/nuc)", "xmlid": "psp_let2_1min_Hfu"}, "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/PSP/epiHi/psp-let2-1min", "start_date": "2018-09-28T00:00:26Z", "stop_date": "2024-06-16T23:59:39Z", "target": "Heliosphere.Inner", "xmlid": "psp-let2-1min"}, "xmlid": "psp-isois-let2"}, "__spz_name__": "IS\u2299IS EPI-Hi", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "PSP_epihi", "att": "auto/PSP_epihi", "desc": "Energetic Particle Instrument Hi-Energy
SolidStateDetector", "is_public": "True", "name": "IS\u2299IS EPI-Hi", "xmlid": "PSP_epihi"}, "ISoIS_EPI_Lo": {"__spz_name__": "IS\u2299IS EPI-Lo", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "PSP_epilo", "att": "auto/PSP_epilo", "desc": "Energetic Particle Instrument Low-Energy
MassSpectrometer", "ion_composition_mode___omni": {"__spz_name__": "ion composition mode : omni", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "psp_loic_omni", "is_public": "True", "name": "ion composition mode : omni", "psp_loic_omc": {"__spz_name__": "channel C", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "psp-loic-omc", "att": "auto/psp-loic-omc", "dataSource": "SPDF", "desc": "Ion Composition mode; Omnidirectional; Channel C : Group 1 (He3, He4, O, Fe)
MinSampling: 60S; MaxSampling: 1800S
Provider: SPDF", "is_public": "True", "lastModificationDate": "2022-09-02T14:54:08Z", "lastUpdate": "2022-09-02T14:54:08Z", "maxSampling": "1800S", "measurement_type": "EnergeticParticles", "name": "channel C", "processing_level": "Calibrated", "psp_omic_Fecr": {"__spz_name__": "fe countrate", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_omic_Fecr", "dataset": "psp-loic-omc", "description": "Iron omnidirectional count rate", "display_type": "spectrogram", "is_public": "True", "name": "fe countrate", "start_date": "2018-09-28T00:10:54Z", "stop_date": "2019-10-10T11:14:14Z", "units": "cnts/sec", "xmlid": "psp_omic_Fecr"}, "psp_omic_Ocr": {"__spz_name__": "o countrate", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_omic_Ocr", "dataset": "psp-loic-omc", "description": "Oxygen omnidirectional count rate", "display_type": "spectrogram", "is_public": "True", "name": "o countrate", "start_date": "2018-09-28T00:10:54Z", "stop_date": "2019-10-10T11:14:14Z", "units": "cnts/sec", "xmlid": "psp_omic_Ocr"}, "psp_omic_he3cr": {"__spz_name__": "he3 countrate", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_omic_he3cr", "dataset": "psp-loic-omc", "description": "Helium 3 omnidirectional count rate", "display_type": "spectrogram", "is_public": "True", "name": "he3 countrate", "start_date": "2018-09-28T00:10:54Z", "stop_date": "2019-10-10T11:14:14Z", "units": "cnts/sec", "xmlid": "psp_omic_he3cr"}, "psp_omic_he4cr": {"__spz_name__": "he4 countrate", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_omic_he4cr", "dataset": "psp-loic-omc", "description": "Helium 4 homnidirectional count rate", "display_type": "spectrogram", "is_public": "True", "name": "he4 countrate", "start_date": "2018-09-28T00:10:54Z", "stop_date": "2019-10-10T11:14:14Z", "units": "cnts/sec", "xmlid": "psp_omic_he4cr"}, "psp_omic_he4f": {"__spz_name__": "he4 flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_omic_he4f", "dataset": "psp-loic-omc", "description": "Helium 4 omnidirectional flux", "display_type": "spectrogram", "is_public": "True", "name": "he4 flux", "start_date": "2018-09-28T00:10:54Z", "stop_date": "2019-10-10T11:14:14Z", "units": "1/cm\u00b2/sr/s/(MeV/nuc)", "xmlid": "psp_omic_he4f"}, "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/PSP/epiLo/psp-loic-omc", "start_date": "2018-09-28T00:10:54Z", "stop_date": "2019-10-10T11:14:14Z", "target": "Heliosphere.Inner", "xmlid": "psp-loic-omc"}, "psp_loic_omd": {"__spz_name__": "channel D", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "psp-loic-omd", "att": "auto/psp-loic-omd", "dataSource": "SPDF", "desc": "Ion composition mode; Omnidirectional; Channel D : Group 2 (Si, Mg, C)
MinSampling: 300S; MaxSampling: 7200S
Provider: SPDF", "is_public": "True", "lastModificationDate": "2022-09-02T14:54:09Z", "lastUpdate": "2022-09-02T14:54:09Z", "maxSampling": "7200S", "measurement_type": "EnergeticParticles", "name": "channel D", "processing_level": "Calibrated", "psp_omic_Ccr": {"__spz_name__": "c countrate", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_omic_Ccr", "dataset": "psp-loic-omd", "description": "Carbon omnidirectional count rate", "display_type": "spectrogram", "is_public": "True", "name": "c countrate", "start_date": "2018-09-28T00:10:54Z", "stop_date": "2019-10-10T11:14:14Z", "units": "cnts/sec", "xmlid": "psp_omic_Ccr"}, "psp_omic_Sicr": {"__spz_name__": "si countrate", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_omic_Sicr", "dataset": "psp-loic-omd", "description": "Silicon omnidirectional count rate", "display_type": "spectrogram", "is_public": "True", "name": "si countrate", "start_date": "2018-09-28T00:10:54Z", "stop_date": "2019-10-10T11:14:14Z", "units": "cnts/sec", "xmlid": "psp_omic_Sicr"}, "sampling": "300S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/PSP/epiLo/psp-loic-omd", "start_date": "2018-09-28T00:10:54Z", "stop_date": "2019-10-10T11:14:14Z", "target": "Heliosphere.Inner", "xmlid": "psp-loic-omd"}, "psp_loic_omp": {"__spz_name__": "channel P", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "psp-loic-omp", "att": "auto/psp-loic-omp", "dataSource": "SPDF", "desc": "Ion Composition mode, Omnidirectional, channel P : High Energy Resolution Protons
MinSampling: 60S; MaxSampling: 1800S
Provider: SPDF", "is_public": "True", "lastModificationDate": "2022-09-02T14:54:10Z", "lastUpdate": "2022-09-02T14:54:10Z", "maxSampling": "1800S", "measurement_type": "EnergeticParticles", "name": "channel P", "processing_level": "Calibrated", "psp_omic_PHcr": {"__spz_name__": "h+ countrate", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_omic_PHcr", "dataset": "psp-loic-omp", "description": "Protons omnidirectional count rate", "display_type": "spectrogram", "is_public": "True", "name": "h+ countrate", "start_date": "2018-09-28T00:10:54Z", "stop_date": "2019-10-10T11:14:44Z", "units": "cnts/sec", "xmlid": "psp_omic_PHcr"}, "psp_omic_PHf": {"__spz_name__": "h+ flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_omic_PHf", "dataset": "psp-loic-omp", "description": "Proton omnidirectional flux", "display_type": "spectrogram", "is_public": "True", "name": "h+ flux", "start_date": "2018-09-28T00:10:54Z", "stop_date": "2019-10-10T11:14:44Z", "units": "1/cm\u00b2/sr/s/(MeV/nuc)", "xmlid": "psp_omic_PHf"}, "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/PSP/epiLo/psp-loic-omp", "start_date": "2018-09-28T00:10:54Z", "stop_date": "2019-10-10T11:14:44Z", "target": "Heliosphere.Inner", "xmlid": "psp-loic-omp"}, "psp_loic_omr": {"__spz_name__": "channel R", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "psp-loic-omr", "att": "auto/psp-loic-omr", "dataSource": "SPDF", "desc": "Ion Composition mode, Omnidirectional, channel R : High Time Resolution Protons
MinSampling: 5S; MaxSampling: 600S
Provider: SPDF", "is_public": "True", "lastModificationDate": "2022-09-02T14:54:12Z", "lastUpdate": "2022-09-02T14:54:12Z", "maxSampling": "600S", "measurement_type": "EnergeticParticles", "name": "channel R", "processing_level": "Calibrated", "psp_omic_RHcr": {"__spz_name__": "h+ countrate", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_omic_RHcr", "dataset": "psp-loic-omr", "description": "Protons omnidirectional count rate", "display_type": "spectrogram", "is_public": "True", "name": "h+ countrate", "start_date": "2018-09-28T00:01:54Z", "stop_date": "2019-10-10T11:15:04Z", "units": "cnts/sec", "xmlid": "psp_omic_RHcr"}, "psp_omic_RHf": {"__spz_name__": "h+ flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_omic_RHf", "dataset": "psp-loic-omr", "description": "Proton omnidirectional flux", "display_type": "spectrogram", "is_public": "True", "name": "h+ flux", "start_date": "2018-09-28T00:01:54Z", "stop_date": "2019-10-10T11:15:04Z", "units": "1/cm\u00b2/sr/s/(MeV/nuc)", "xmlid": "psp_omic_RHf"}, "sampling": "5S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/PSP/epiLo/psp-loic-omr", "start_date": "2018-09-28T00:01:54Z", "stop_date": "2019-10-10T11:15:04Z", "target": "Heliosphere.Inner", "xmlid": "psp-loic-omr"}, "psp_loic_omt": {"__spz_name__": "channel T", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "psp-loic-omt", "att": "auto/psp-loic-omt", "dataSource": "SPDF", "desc": "Ion Composition mode, Omnidirectional, channel T : Protons TOF only
MinSampling: 20S; MaxSampling: 1800S
Provider: SPDF", "is_public": "True", "lastModificationDate": "2022-09-02T14:54:14Z", "lastUpdate": "2022-09-02T14:54:14Z", "maxSampling": "1800S", "measurement_type": "EnergeticParticles", "name": "channel T", "processing_level": "Calibrated", "psp_omic_THcr": {"__spz_name__": "h+ countrate", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_omic_THcr", "dataset": "psp-loic-omt", "description": "Protons count rate", "display_type": "spectrogram", "is_public": "True", "name": "h+ countrate", "start_date": "2018-09-28T00:10:54Z", "stop_date": "2019-10-10T11:15:04Z", "units": "cnts/sec", "xmlid": "psp_omic_THcr"}, "psp_omic_THf": {"__spz_name__": "h+ flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_omic_THf", "dataset": "psp-loic-omt", "description": "Proton flux", "display_type": "spectrogram", "is_public": "True", "name": "h+ flux", "start_date": "2018-09-28T00:10:54Z", "stop_date": "2019-10-10T11:15:04Z", "units": "1/cm\u00b2/sr/s/(MeV/nuc)", "xmlid": "psp_omic_THf"}, "sampling": "20S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/PSP/epiLo/psp-loic-omt", "start_date": "2018-09-28T00:10:54Z", "stop_date": "2019-10-10T11:15:04Z", "target": "Heliosphere.Inner", "xmlid": "psp-loic-omt"}, "xmlid": "psp_loic_omni"}, "ion_composition_mode___wedges": {"__spz_name__": "ion composition mode : wedges", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "psp_loic_wedge", "is_public": "True", "name": "ion composition mode : wedges", "psp_loic_chc": {"__spz_name__": "channel C", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "psp-loic-chc", "att": "auto/psp-loic-chc", "dataSource": "SPDF", "desc": "Ion Composition Group 1 (He3, He4, O, Fe)
MinSampling: 60S; MaxSampling: 1800S
Provider: SPDF", "is_public": "True", "lastModificationDate": "2022-09-02T14:54:16Z", "lastUpdate": "2022-09-02T14:54:16Z", "maxSampling": "1800S", "measurement_type": "EnergeticParticles", "name": "channel C", "processing_level": "Calibrated", "psp_loic_Fecr": {"__spz_name__": "fe count rate : 2D", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_loic_Fecr", "dataset": "psp-loic-chc", "description": "Iron count rate on 8 wedges", "display_type": "spectrogram", "is_public": "True", "name": "fe count rate : 2D", "start_date": "2018-09-28T00:10:54Z", "stop_date": "2019-10-10T11:14:14Z", "units": "counts/sec", "xmlid": "psp_loic_Fecr"}, "psp_loic_Ocr": {"__spz_name__": "o count rate : 2D", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_loic_Ocr", "dataset": "psp-loic-chc", "description": "Oxygen count rate on 8 wedges", "display_type": "spectrogram", "is_public": "True", "name": "o count rate : 2D", "start_date": "2018-09-28T00:10:54Z", "stop_date": "2019-10-10T11:14:14Z", "units": "counts/sec", "xmlid": "psp_loic_Ocr"}, "psp_loic_he3cr": {"__spz_name__": "he3 count rate : 2D", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_loic_he3cr", "dataset": "psp-loic-chc", "description": "Helium 3 count rate on 8 wedges", "display_type": "spectrogram", "is_public": "True", "name": "he3 count rate : 2D", "start_date": "2018-09-28T00:10:54Z", "stop_date": "2019-10-10T11:14:14Z", "units": "counts/sec", "xmlid": "psp_loic_he3cr"}, "psp_loic_he4cr": {"__spz_name__": "he4 count rate : 2D", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_loic_he4cr", "dataset": "psp-loic-chc", "description": "Helium 4 count rate on 8 wedges", "display_type": "spectrogram", "is_public": "True", "name": "he4 count rate : 2D", "start_date": "2018-09-28T00:10:54Z", "stop_date": "2019-10-10T11:14:14Z", "units": "counts/sec", "xmlid": "psp_loic_he4cr"}, "psp_loic_he4f": {"__spz_name__": "he4 flux : 2D", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_loic_he4f", "dataset": "psp-loic-chc", "description": "Helium 4 flux on 8 wedges", "display_type": "spectrogram", "is_public": "True", "name": "he4 flux : 2D", "start_date": "2018-09-28T00:10:54Z", "stop_date": "2019-10-10T11:14:14Z", "units": "1/cm\u00b2/sr/s/(MeV/nuc)", "xmlid": "psp_loic_he4f"}, "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/PSP/epiLo/psp-loic-chc", "start_date": "2018-09-28T00:10:54Z", "stop_date": "2019-10-10T11:14:14Z", "target": "Heliosphere.Inner", "xmlid": "psp-loic-chc"}, "psp_loic_chd": {"__spz_name__": "channel D", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "psp-loic-chd", "att": "auto/psp-loic-chd", "dataSource": "SPDF", "desc": "Ion composition Group 2 (Si, Mg, C)
MinSampling: 300S; MaxSampling: 7200S
Provider: SPDF", "is_public": "True", "lastModificationDate": "2022-09-02T14:54:20Z", "lastUpdate": "2022-09-02T14:54:20Z", "maxSampling": "7200S", "measurement_type": "EnergeticParticles", "name": "channel D", "processing_level": "Calibrated", "psp_loic_Ccr": {"__spz_name__": "c count rate : 2D", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_loic_Ccr", "dataset": "psp-loic-chd", "description": "Carbon count rate on 8 wedges", "display_type": "spectrogram", "is_public": "True", "name": "c count rate : 2D", "start_date": "2018-09-28T00:10:54Z", "stop_date": "2019-10-10T11:14:14Z", "units": "counts/sec", "xmlid": "psp_loic_Ccr"}, "psp_loic_Sicr": {"__spz_name__": "si count rate : 2D", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_loic_Sicr", "dataset": "psp-loic-chd", "description": "Silicon count rate on 8 wedges", "display_type": "spectrogram", "is_public": "True", "name": "si count rate : 2D", "start_date": "2018-09-28T00:10:54Z", "stop_date": "2019-10-10T11:14:14Z", "units": "counts/sec", "xmlid": "psp_loic_Sicr"}, "sampling": "300S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/PSP/epiLo/psp-loic-chd", "start_date": "2018-09-28T00:10:54Z", "stop_date": "2019-10-10T11:14:14Z", "target": "Heliosphere.Inner", "xmlid": "psp-loic-chd"}, "psp_loic_chp": {"__spz_name__": "channel P", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "psp-loic-chp", "att": "auto/psp-loic-chp", "dataSource": "SPDF", "desc": "High Energy Resolution Protons
MinSampling: 60S; MaxSampling: 1800S
Provider: SPDF", "is_public": "True", "lastModificationDate": "2022-09-02T14:54:22Z", "lastUpdate": "2022-09-02T14:54:22Z", "maxSampling": "1800S", "measurement_type": "EnergeticParticles", "name": "channel P", "processing_level": "Calibrated", "psp_loic_PHcr": {"__spz_name__": "h+ count rate : 2D", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_loic_PHcr", "dataset": "psp-loic-chp", "description": "Protons count rate on 8 wedges", "display_type": "spectrogram", "is_public": "True", "name": "h+ count rate : 2D", "start_date": "2018-09-28T00:10:54Z", "stop_date": "2019-10-10T11:14:44Z", "units": "counts/sec", "xmlid": "psp_loic_PHcr"}, "psp_loic_PHf": {"__spz_name__": "h+ flux : 2D", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_loic_PHf", "dataset": "psp-loic-chp", "description": "Proton flux on 8 wedges", "display_type": "spectrogram", "is_public": "True", "name": "h+ flux : 2D", "start_date": "2018-09-28T00:10:54Z", "stop_date": "2019-10-10T11:14:44Z", "units": "1/cm\u00b2/sr/s/(MeV/nuc)", "xmlid": "psp_loic_PHf"}, "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/PSP/epiLo/psp-loic-chp", "start_date": "2018-09-28T00:10:54Z", "stop_date": "2019-10-10T11:14:44Z", "target": "Heliosphere.Inner", "xmlid": "psp-loic-chp"}, "psp_loic_chr": {"__spz_name__": "channel R", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "psp-loic-chr", "att": "auto/psp-loic-chr", "dataSource": "SPDF", "desc": "High Time Resolution Protons
MinSampling: 5S; MaxSampling: 600S
Provider: SPDF", "is_public": "True", "lastModificationDate": "2022-09-02T14:54:24Z", "lastUpdate": "2022-09-02T14:54:24Z", "maxSampling": "600S", "measurement_type": "EnergeticParticles", "name": "channel R", "processing_level": "Calibrated", "psp_loic_RHcr": {"__spz_name__": "h+ count rate : 2D", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_loic_RHcr", "dataset": "psp-loic-chr", "description": "Protons count rate on 8 wedges", "display_type": "spectrogram", "is_public": "True", "name": "h+ count rate : 2D", "start_date": "2018-09-28T00:01:54Z", "stop_date": "2019-10-10T11:15:04Z", "units": "counts/sec", "xmlid": "psp_loic_RHcr"}, "psp_loic_RHf": {"__spz_name__": "h+ flux : 2D", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_loic_RHf", "dataset": "psp-loic-chr", "description": "Proton flux on 8 wedges", "display_type": "spectrogram", "is_public": "True", "name": "h+ flux : 2D", "start_date": "2018-09-28T00:01:54Z", "stop_date": "2019-10-10T11:15:04Z", "units": "1/cm\u00b2/sr/s/(MeV/nuc)", "xmlid": "psp_loic_RHf"}, "sampling": "5S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/PSP/epiLo/psp-loic-chr", "start_date": "2018-09-28T00:01:54Z", "stop_date": "2019-10-10T11:15:04Z", "target": "Heliosphere.Inner", "xmlid": "psp-loic-chr"}, "psp_loic_cht": {"__spz_name__": "channel T", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "psp-loic-cht", "att": "auto/psp-loic-cht", "dataSource": "SPDF", "desc": "Protons TOF only
MinSampling: 20S; MaxSampling: 1800S
Provider: SPDF", "is_public": "True", "lastModificationDate": "2022-09-02T14:54:26Z", "lastUpdate": "2022-09-02T14:54:26Z", "maxSampling": "1800S", "measurement_type": "EnergeticParticles", "name": "channel T", "processing_level": "Calibrated", "psp_loic_THcr": {"__spz_name__": "h+ count rate : 2D", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_loic_THcr", "dataset": "psp-loic-cht", "description": "Protons count rate on 8 wedges", "display_type": "spectrogram", "is_public": "True", "name": "h+ count rate : 2D", "start_date": "2018-09-28T00:10:54Z", "stop_date": "2019-10-10T11:15:04Z", "units": "counts/sec", "xmlid": "psp_loic_THcr"}, "psp_loic_THf": {"__spz_name__": "h+ flux : 2D", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_loic_THf", "dataset": "psp-loic-cht", "description": "Proton flux on 8 wedges", "display_type": "spectrogram", "is_public": "True", "name": "h+ flux : 2D", "start_date": "2018-09-28T00:10:54Z", "stop_date": "2019-10-10T11:15:04Z", "units": "1/cm\u00b2/sr/s/(MeV/nuc)", "xmlid": "psp_loic_THf"}, "sampling": "20S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/PSP/epiLo/psp-loic-cht", "start_date": "2018-09-28T00:10:54Z", "stop_date": "2019-10-10T11:15:04Z", "target": "Heliosphere.Inner", "xmlid": "psp-loic-cht"}, "xmlid": "psp_loic_wedge"}, "is_public": "True", "name": "IS\u2299IS EPI-Lo", "particle_energy_mode_electrons___omni": {"__spz_name__": "particle energy mode (electrons) : omni", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "psp_lope_omni", "is_public": "True", "name": "particle energy mode (electrons) : omni", "psp_lope_ome": {"__spz_name__": "channel E", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "psp-lope-ome", "att": "auto/psp-lope-ome", "dataSource": "SPDF", "desc": "Particle Energy mode, Omnidirectional, channel E : High Resolution Electrons
MinSampling: 60S; MaxSampling: 1800S
Provider: SPDF", "is_public": "True", "lastModificationDate": "2022-08-28T22:32:23Z", "lastUpdate": "2020-02-18T16:45:02Z", "maxSampling": "1800S", "measurement_type": "EnergeticParticles", "name": "channel E", "processing_level": "Calibrated", "psp_ompe_Eecr": {"__spz_name__": "e- countrate", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_ompe_Eecr", "dataset": "psp-lope-ome", "description": "Electrons omnidirectional count rate", "display_type": "spectrogram", "is_public": "True", "name": "e- countrate", "start_date": "2018-09-28T00:10:54Z", "stop_date": "2019-10-10T11:14:44Z", "units": "cnts/sec", "xmlid": "psp_ompe_Eecr"}, "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/PSP/epiLo/psp-lope-ome", "start_date": "2018-09-28T00:10:54Z", "stop_date": "2019-10-10T11:14:44Z", "target": "Heliosphere.Inner", "xmlid": "psp-lope-ome"}, "psp_lope_omf": {"__spz_name__": "channel F", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "psp-lope-omf", "att": "auto/psp-lope-omf", "dataSource": "SPDF", "desc": "Particle Energy mode, Omnidirectional, channel F : High Time Resolution Electrons
MinSampling: 1S; MaxSampling: 120S
Provider: SPDF", "is_public": "True", "lastModificationDate": "2022-08-28T22:32:23Z", "lastUpdate": "2020-02-18T16:56:56Z", "maxSampling": "120S", "measurement_type": "EnergeticParticles", "name": "channel F", "processing_level": "Calibrated", "psp_ompe_Fecr": {"__spz_name__": "e- countrate", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_ompe_Fecr", "dataset": "psp-lope-omf", "description": "Electrons omnidirectional count rate", "display_type": "spectrogram", "is_public": "True", "name": "e- countrate", "start_date": "2018-09-28T00:01:54Z", "stop_date": "2019-10-10T11:15:04Z", "units": "cnts/sec", "xmlid": "psp_ompe_Fecr"}, "sampling": "1S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/PSP/epiLo/psp-lope-omf", "start_date": "2018-09-28T00:01:54Z", "stop_date": "2019-10-10T11:15:04Z", "target": "Heliosphere.Inner", "xmlid": "psp-lope-omf"}, "psp_lope_omg": {"__spz_name__": "channel G", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "psp-lope-omg", "att": "auto/psp-lope-omg", "dataSource": "SPDF", "desc": "Particle Energy mode, Omnidirectional, channel G : High Anglular Resolution Electrons
MinSampling: 300S; MaxSampling: 3000S
Provider: SPDF", "is_public": "True", "lastModificationDate": "2022-08-28T22:32:23Z", "lastUpdate": "2020-02-18T16:58:11Z", "maxSampling": "3000S", "measurement_type": "EnergeticParticles", "name": "channel G", "processing_level": "Calibrated", "psp_ompe_Gecr": {"__spz_name__": "e- countrate", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_ompe_Gecr", "dataset": "psp-lope-omg", "description": "Electrons omnidirectional count rate", "display_type": "spectrogram", "is_public": "True", "name": "e- countrate", "start_date": "2018-09-28T00:10:54Z", "stop_date": "2019-10-10T11:10:14Z", "units": "cnts/sec", "xmlid": "psp_ompe_Gecr"}, "sampling": "300S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/PSP/epiLo/psp-lope-omg", "start_date": "2018-09-28T00:10:54Z", "stop_date": "2019-10-10T11:10:14Z", "target": "Heliosphere.Inner", "xmlid": "psp-lope-omg"}, "xmlid": "psp_lope_omni"}, "particle_energy_mode_electrons___wedges": {"__spz_name__": "particle energy mode (electrons) : wedges", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "psp_lope_wedge", "is_public": "True", "name": "particle energy mode (electrons) : wedges", "psp_lope_che": {"__spz_name__": "channel E", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "psp-lope-che", "att": "auto/psp-lope-che", "dataSource": "SPDF", "desc": "High Resolution Electrons
MinSampling: 60S; MaxSampling: 1800S
Provider: SPDF", "is_public": "True", "lastModificationDate": "2022-08-28T22:32:23Z", "lastUpdate": "2020-02-17T13:40:17Z", "maxSampling": "1800S", "measurement_type": "EnergeticParticles", "name": "channel E", "processing_level": "Calibrated", "psp_lope_Eecr": {"__spz_name__": "e- count rate : 2D", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_lope_Eecr", "dataset": "psp-lope-che", "description": "Electrons count rate on 8 wedges", "display_type": "spectrogram", "is_public": "True", "name": "e- count rate : 2D", "start_date": "2018-09-28T00:10:54Z", "stop_date": "2019-10-10T11:14:44Z", "units": "counts/sec", "xmlid": "psp_lope_Eecr"}, "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/PSP/epiLo/psp-lope-che", "start_date": "2018-09-28T00:10:54Z", "stop_date": "2019-10-10T11:14:44Z", "target": "Heliosphere.Inner", "xmlid": "psp-lope-che"}, "psp_lope_chf": {"__spz_name__": "channel F", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "psp-lope-chf", "att": "auto/psp-lope-chf", "dataSource": "SPDF", "desc": "High Time Resolution Electrons
MinSampling: 1S; MaxSampling: 120S
Provider: SPDF", "is_public": "True", "lastModificationDate": "2022-08-28T22:32:23Z", "lastUpdate": "2020-02-17T11:43:14Z", "maxSampling": "120S", "measurement_type": "EnergeticParticles", "name": "channel F", "processing_level": "Calibrated", "psp_lope_Fecr": {"__spz_name__": "e- count rate : 2D", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_lope_Fecr", "dataset": "psp-lope-chf", "description": "Electrons count rate on 8 wedges", "display_type": "spectrogram", "is_public": "True", "name": "e- count rate : 2D", "start_date": "2018-09-28T00:01:54Z", "stop_date": "2019-10-10T11:15:04Z", "units": "counts/sec", "xmlid": "psp_lope_Fecr"}, "sampling": "1S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/PSP/epiLo/psp-lope-chf", "start_date": "2018-09-28T00:01:54Z", "stop_date": "2019-10-10T11:15:04Z", "target": "Heliosphere.Inner", "xmlid": "psp-lope-chf"}, "psp_lope_chg": {"__spz_name__": "channel G", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "psp-lope-chg", "att": "auto/psp-lope-chg", "dataSource": "SPDF", "desc": "High Look Resolution Electrons
MinSampling: 300S; MaxSampling: 3000S
Provider: SPDF", "is_public": "True", "lastModificationDate": "2022-08-28T22:32:23Z", "lastUpdate": "2020-03-11T16:18:44Z", "maxSampling": "3000S", "measurement_type": "EnergeticParticles", "name": "channel G", "processing_level": "Calibrated", "psp_lope_Gecr": {"__spz_name__": "e- count rate : 2D", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_lope_Gecr", "dataset": "psp-lope-chg", "description": "Electrons count rate on 8 wedges", "display_type": "spectrogram", "is_public": "True", "name": "e- count rate : 2D", "start_date": "2018-09-28T00:10:54Z", "stop_date": "2019-10-10T11:10:14Z", "units": "counts/sec", "xmlid": "psp_lope_Gecr"}, "sampling": "300S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/PSP/epiLo/psp-lope-chg", "start_date": "2018-09-28T00:10:54Z", "stop_date": "2019-10-10T11:10:14Z", "target": "Heliosphere.Inner", "xmlid": "psp-lope-chg"}, "xmlid": "psp_lope_wedge"}, "xmlid": "PSP_epilo"}, "SWEAP_SPANe": {"__spz_name__": "SWEAP SPANe", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "PSP_spe", "att": "auto/PSP_spe", "desc": "Solar Probe Analyser (SPAN) electrons
ElectrostaticAnalyser", "is_public": "True", "name": "SWEAP SPANe", "psp_spe_pad": {"__spz_name__": "PAD", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "psp-spe-pad", "att": "auto/psp-spe-pad", "dataSource": "SPDF", "desc": "SWEAP SPANe Level 3 spectrogramms
MinSampling: 28S; MaxSampling: 1400S
Provider: SPDF", "is_public": "True", "lastModificationDate": "2024-10-06T22:28:09Z", "lastUpdate": "2024-09-24T16:42:22Z", "maxSampling": "1400S", "measurement_type": "ThermalPlasma", "name": "PAD", "processing_level": "Calibrated", "psp_spe_EvsE": {"__spz_name__": "eflux/ener", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_spe_EvsE", "dataset": "psp-spe-pad", "description": "Differential Energy Flux vs Energy, omnidirectional average of the fluxes.", "display_type": "spectrogram", "is_public": "True", "name": "eflux/ener", "start_date": "2018-10-02T04:03:47Z", "stop_date": "2024-04-30T03:47:36Z", "units": "eV/cm\u00b2-s-ster-eV", "xmlid": "psp_spe_EvsE"}, "psp_spe_EvsEvspa": {"__spz_name__": "eflux/ener/pa : 2D", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_spe_EvsEvspa", "dataset": "psp-spe-pad", "description": "Differential Energy Flux vs Energy and Pitch Angle", "display_type": "spectrogram", "is_public": "True", "name": "eflux/ener/pa : 2D", "start_date": "2018-10-02T04:03:47Z", "stop_date": "2024-04-30T03:47:36Z", "units": "eV/cm\u00b2-s-ster-eV", "xmlid": "psp_spe_EvsEvspa"}, "sampling": "28S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/PSP/SPE/psp-spe-pad", "start_date": "2018-10-02T04:03:47Z", "stop_date": "2024-04-30T03:47:36Z", "target": "Heliosphere.Inner", "xmlid": "psp-spe-pad"}, "xmlid": "PSP_spe"}, "SWEAP_SPANi": {"__spz_name__": "SWEAP SPANi", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "PSP_spi", "alphas": {"__spz_name__": "alphas", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "psp-spi-alpha", "is_public": "True", "name": "alphas", "psp_spi_afl": {"__spz_name__": "quality flags", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "psp-spi-afl", "att": "auto/psp-spi-afl", "dataSource": "SPDF", "desc": "SWEAP SPAN-Ai Level 3 data quality flags
MinSampling: 0.2S; MaxSampling: 30S
Provider: SPDF", "is_public": "True", "lastModificationDate": "2024-10-06T22:27:57Z", "lastUpdate": "2024-09-25T15:46:33Z", "maxSampling": "30S", "measurement_type": "InstrumentStatus", "name": "quality flags", "processing_level": "Calibrated", "psp_spi_aqf": {"__spz_name__": "he++ quality flag", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_spi_aqf", "dataset": "psp-spi-afl", "display_type": "timeseries", "is_public": "True", "name": "he++ quality flag", "start_date": "2018-10-02T04:04:15Z", "stop_date": "2024-04-30T04:07:52Z", "xmlid": "psp_spi_aqf"}, "sampling": "0.2S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/PSP/SPI/psp-spi-afl", "start_date": "2018-10-02T04:04:15Z", "stop_date": "2024-04-30T04:07:52Z", "target": "Heliosphere.Inner", "xmlid": "psp-spi-afl"}, "psp_spi_amom": {"__spz_name__": "moments", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "psp-spi-amom", "att": "auto/psp-spi-amom", "dataSource": "SPDF", "desc": "SWEAP SPAN-Ai Level 3 moments
MinSampling: 0.437S; MaxSampling: 56S
Provider: SPDF", "is_public": "True", "lastModificationDate": "2024-10-06T22:27:57Z", "lastUpdate": "2024-09-25T15:46:33Z", "maxSampling": "56S", "measurement_type": "ThermalPlasma", "name": "moments", "processing_level": "Calibrated", "psp_spi_an": {"__spz_name__": "he++ density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_spi_an", "dataset": "psp-spi-amom", "description": "Alpha density", "display_type": "timeseries", "is_public": "True", "name": "he++ density", "start_date": "2018-10-02T04:04:15Z", "stop_date": "2024-04-30T04:07:52Z", "units": "cm-3", "xmlid": "psp_spi_an"}, "psp_spi_av": {"__spz_name__": "he++ v_rtn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_spi_av", "dataset": "psp-spi-amom", "description": "Particle Velocity in RTN frame", "display_type": "timeseries", "is_public": "True", "name": "he++ v_rtn", "psp_spi_av0": {"__spz_name__": "vr", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spi_av(0)", "dataset": "psp-spi-amom", "index1": "0", "is_public": "True", "name": "vr", "parameter": "psp_spi_av", "start_date": "2018-10-02T04:04:15Z", "stop_date": "2024-04-30T04:07:52Z", "xmlid": "psp_spi_av(0)"}, "psp_spi_av1": {"__spz_name__": "vt", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spi_av(1)", "dataset": "psp-spi-amom", "index1": "1", "is_public": "True", "name": "vt", "parameter": "psp_spi_av", "start_date": "2018-10-02T04:04:15Z", "stop_date": "2024-04-30T04:07:52Z", "xmlid": "psp_spi_av(1)"}, "psp_spi_av2": {"__spz_name__": "vn", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spi_av(2)", "dataset": "psp-spi-amom", "index1": "2", "is_public": "True", "name": "vn", "parameter": "psp_spi_av", "start_date": "2018-10-02T04:04:15Z", "stop_date": "2024-04-30T04:07:52Z", "xmlid": "psp_spi_av(2)"}, "size": "3", "start_date": "2018-10-02T04:04:15Z", "stop_date": "2024-04-30T04:07:52Z", "units": "km/s", "xmlid": "psp_spi_av"}, "psp_spi_av_inst": {"__spz_name__": "he++ v_inst", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_spi_av_inst", "dataset": "psp-spi-amom", "description": "Particle Velocity in instrument frame", "display_type": "timeseries", "is_public": "True", "name": "he++ v_inst", "psp_spi_av_inst0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spi_av_inst(0)", "dataset": "psp-spi-amom", "index1": "0", "is_public": "True", "name": "vx", "parameter": "psp_spi_av_inst", "start_date": "2018-10-02T04:04:15Z", "stop_date": "2024-04-30T04:07:52Z", "xmlid": "psp_spi_av_inst(0)"}, "psp_spi_av_inst1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spi_av_inst(1)", "dataset": "psp-spi-amom", "index1": "1", "is_public": "True", "name": "vy", "parameter": "psp_spi_av_inst", "start_date": "2018-10-02T04:04:15Z", "stop_date": "2024-04-30T04:07:52Z", "xmlid": "psp_spi_av_inst(1)"}, "psp_spi_av_inst2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spi_av_inst(2)", "dataset": "psp-spi-amom", "index1": "2", "is_public": "True", "name": "vz", "parameter": "psp_spi_av_inst", "start_date": "2018-10-02T04:04:15Z", "stop_date": "2024-04-30T04:07:52Z", "xmlid": "psp_spi_av_inst(2)"}, "size": "3", "start_date": "2018-10-02T04:04:15Z", "stop_date": "2024-04-30T04:07:52Z", "units": "km/s", "xmlid": "psp_spi_av_inst"}, "psp_spi_avtot": {"__spz_name__": "he++ |v|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_spi_avtot", "dataset": "psp-spi-amom", "description": "Particle Velocity magnitude", "display_type": "timeseries", "is_public": "True", "name": "he++ |v|", "start_date": "2018-10-02T04:04:15Z", "stop_date": "2024-04-30T04:07:52Z", "ucd": "phys.magField", "units": "km/s", "xmlid": "psp_spi_avtot"}, "psp_spi_aw": {"__spz_name__": "he++ temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_spi_aw", "dataset": "psp-spi-amom", "description": "Partial Moment Temperature", "display_type": "timeseries", "is_public": "True", "name": "he++ temperature", "start_date": "2018-10-02T04:04:15Z", "stop_date": "2024-04-30T04:07:52Z", "units": "eV", "xmlid": "psp_spi_aw"}, "psp_spi_awt_inst": {"__spz_name__": "he++ t_inst", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_spi_awt_inst", "dataset": "psp-spi-amom", "description": "Temperature Tensor in instrument frame", "display_type": "timeseries", "is_public": "True", "name": "he++ t_inst", "psp_spi_awt_inst0": {"__spz_name__": "Txx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spi_awt_inst(0)", "dataset": "psp-spi-amom", "index1": "0", "is_public": "True", "name": "Txx", "parameter": "psp_spi_awt_inst", "start_date": "2018-10-02T04:04:15Z", "stop_date": "2024-04-30T04:07:52Z", "xmlid": "psp_spi_awt_inst(0)"}, "psp_spi_awt_inst1": {"__spz_name__": "Tyy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spi_awt_inst(1)", "dataset": "psp-spi-amom", "index1": "1", "is_public": "True", "name": "Tyy", "parameter": "psp_spi_awt_inst", "start_date": "2018-10-02T04:04:15Z", "stop_date": "2024-04-30T04:07:52Z", "xmlid": "psp_spi_awt_inst(1)"}, "psp_spi_awt_inst2": {"__spz_name__": "Tzz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spi_awt_inst(2)", "dataset": "psp-spi-amom", "index1": "2", "is_public": "True", "name": "Tzz", "parameter": "psp_spi_awt_inst", "start_date": "2018-10-02T04:04:15Z", "stop_date": "2024-04-30T04:07:52Z", "xmlid": "psp_spi_awt_inst(2)"}, "psp_spi_awt_inst3": {"__spz_name__": "Txy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spi_awt_inst(3)", "dataset": "psp-spi-amom", "index1": "3", "is_public": "True", "name": "Txy", "parameter": "psp_spi_awt_inst", "start_date": "2018-10-02T04:04:15Z", "stop_date": "2024-04-30T04:07:52Z", "xmlid": "psp_spi_awt_inst(3)"}, "psp_spi_awt_inst4": {"__spz_name__": "Txz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spi_awt_inst(4)", "dataset": "psp-spi-amom", "index1": "4", "is_public": "True", "name": "Txz", "parameter": "psp_spi_awt_inst", "start_date": "2018-10-02T04:04:15Z", "stop_date": "2024-04-30T04:07:52Z", "xmlid": "psp_spi_awt_inst(4)"}, "psp_spi_awt_inst5": {"__spz_name__": "Tyz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spi_awt_inst(5)", "dataset": "psp-spi-amom", "index1": "5", "is_public": "True", "name": "Tyz", "parameter": "psp_spi_awt_inst", "start_date": "2018-10-02T04:04:15Z", "stop_date": "2024-04-30T04:07:52Z", "xmlid": "psp_spi_awt_inst(5)"}, "size": "6", "start_date": "2018-10-02T04:04:15Z", "stop_date": "2024-04-30T04:07:52Z", "units": "eV", "xmlid": "psp_spi_awt_inst"}, "sampling": "0.437S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/PSP/SPI/psp-spi-amom", "start_date": "2018-10-02T04:04:15Z", "stop_date": "2024-04-30T04:07:52Z", "target": "Heliosphere.Inner", "xmlid": "psp-spi-amom"}, "psp_spi_asp": {"__spz_name__": "spectrograms", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "psp-spi-asp", "att": "auto/psp-spi-asp", "dataSource": "SPDF", "desc": "SWEAP SPANAi Level 3 spectrogramms
MinSampling: 0.2S; MaxSampling: 30S
Provider: SPDF", "is_public": "True", "lastModificationDate": "2024-10-06T22:27:57Z", "lastUpdate": "2024-09-25T15:46:33Z", "maxSampling": "30S", "measurement_type": "ThermalPlasma", "name": "spectrograms", "processing_level": "Calibrated", "psp_spi_aee": {"__spz_name__": "he++ eflux/ener", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_spi_aee", "dataset": "psp-spi-asp", "description": "Differential Energy Flux vs Energy", "display_type": "spectrogram", "is_public": "True", "name": "he++ eflux/ener", "start_date": "2018-10-02T04:04:15Z", "stop_date": "2024-04-30T04:07:52Z", "units": "eV/cm\u00b2-s-ster-eV", "xmlid": "psp_spi_aee"}, "psp_spi_aeph": {"__spz_name__": "he++ eflux/phi", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_spi_aeph", "dataset": "psp-spi-asp", "description": "Differential Energy Flux vs Azimuth Instrument Coordinates", "display_type": "spectrogram", "is_public": "True", "name": "he++ eflux/phi", "start_date": "2018-10-02T04:04:15Z", "stop_date": "2024-04-30T04:07:52Z", "units": "eV/cm\u00b2-s-ster-eV", "xmlid": "psp_spi_aeph"}, "psp_spi_aeth": {"__spz_name__": "he++ eflux/theta", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_spi_aeth", "dataset": "psp-spi-asp", "description": "Differential Energy Flux vs Elevation Instrument Coordinates", "display_type": "spectrogram", "is_public": "True", "name": "he++ eflux/theta", "start_date": "2018-10-02T04:04:15Z", "stop_date": "2024-04-30T04:07:52Z", "units": "eV/cm\u00b2-s-ster-eV", "xmlid": "psp_spi_aeth"}, "sampling": "0.2S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/PSP/SPI/psp-spi-asp", "start_date": "2018-10-02T04:04:15Z", "stop_date": "2024-04-30T04:07:52Z", "target": "Heliosphere.Inner", "xmlid": "psp-spi-asp"}, "xmlid": "psp-spi-alpha"}, "att": "auto/PSP_spi", "desc": "Solar Probe Analyser (SPAN) ion
ElectrostaticAnalyser", "is_public": "True", "name": "SWEAP SPANi", "protons": {"__spz_name__": "protons", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "psp-spi-proton", "is_public": "True", "name": "protons", "psp_spi_Hfl": {"__spz_name__": "quality flags", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "psp-spi-Hfl", "att": "auto/psp-spi-Hfl", "dataSource": "SPDF", "desc": "SWEAP SPAN-Ai Level 3 data quality flags
MinSampling: 0.2S; MaxSampling: 30S
Provider: SPDF", "is_public": "True", "lastModificationDate": "2024-10-06T22:28:02Z", "lastUpdate": "2024-09-25T16:27:37Z", "maxSampling": "30S", "measurement_type": "InstrumentStatus", "name": "quality flags", "processing_level": "Calibrated", "psp_spi_Hqf": {"__spz_name__": "h+ quality flag", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_spi_Hqf", "dataset": "psp-spi-Hfl", "display_type": "timeseries", "is_public": "True", "name": "h+ quality flag", "start_date": "2018-10-02T04:04:01Z", "stop_date": "2024-04-30T04:07:52Z", "xmlid": "psp_spi_Hqf"}, "sampling": "0.2S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/PSP/SPI/psp-spi-Hfl", "start_date": "2018-10-02T04:04:01Z", "stop_date": "2024-04-30T04:07:52Z", "target": "Heliosphere.Inner", "xmlid": "psp-spi-Hfl"}, "psp_spi_Hmom": {"__spz_name__": "moments", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "psp-spi-Hmom", "att": "auto/psp-spi-Hmom", "dataSource": "SPDF", "desc": "SWEAP SPAN-Ai Level 3 moments
MinSampling: 0.437S; MaxSampling: 56S
Provider: SPDF", "is_public": "True", "lastModificationDate": "2024-10-06T22:28:02Z", "lastUpdate": "2024-09-25T16:27:37Z", "maxSampling": "56S", "measurement_type": "ThermalPlasma", "name": "moments", "processing_level": "Calibrated", "psp_spi_Hn": {"__spz_name__": "h+ density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_spi_Hn", "dataset": "psp-spi-Hmom", "description": "Proton density", "display_type": "timeseries", "is_public": "True", "name": "h+ density", "start_date": "2018-10-02T04:04:01Z", "stop_date": "2024-04-30T04:07:52Z", "units": "cm-3", "xmlid": "psp_spi_Hn"}, "psp_spi_Hv": {"__spz_name__": "h+ v_rtn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_spi_Hv", "dataset": "psp-spi-Hmom", "description": "Particle Velocity in RTN frame", "display_type": "timeseries", "is_public": "True", "name": "h+ v_rtn", "psp_spi_Hv0": {"__spz_name__": "vr", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spi_Hv(0)", "dataset": "psp-spi-Hmom", "index1": "0", "is_public": "True", "name": "vr", "parameter": "psp_spi_Hv", "start_date": "2018-10-02T04:04:01Z", "stop_date": "2024-04-30T04:07:52Z", "xmlid": "psp_spi_Hv(0)"}, "psp_spi_Hv1": {"__spz_name__": "vt", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spi_Hv(1)", "dataset": "psp-spi-Hmom", "index1": "1", "is_public": "True", "name": "vt", "parameter": "psp_spi_Hv", "start_date": "2018-10-02T04:04:01Z", "stop_date": "2024-04-30T04:07:52Z", "xmlid": "psp_spi_Hv(1)"}, "psp_spi_Hv2": {"__spz_name__": "vn", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spi_Hv(2)", "dataset": "psp-spi-Hmom", "index1": "2", "is_public": "True", "name": "vn", "parameter": "psp_spi_Hv", "start_date": "2018-10-02T04:04:01Z", "stop_date": "2024-04-30T04:07:52Z", "xmlid": "psp_spi_Hv(2)"}, "size": "3", "start_date": "2018-10-02T04:04:01Z", "stop_date": "2024-04-30T04:07:52Z", "units": "km/s", "xmlid": "psp_spi_Hv"}, "psp_spi_Hv_inst": {"__spz_name__": "h+ v_inst", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_spi_Hv_inst", "dataset": "psp-spi-Hmom", "description": "Particle Velocity in instrument frame", "display_type": "timeseries", "is_public": "True", "name": "h+ v_inst", "psp_spi_Hv_inst0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spi_Hv_inst(0)", "dataset": "psp-spi-Hmom", "index1": "0", "is_public": "True", "name": "vx", "parameter": "psp_spi_Hv_inst", "start_date": "2018-10-02T04:04:01Z", "stop_date": "2024-04-30T04:07:52Z", "xmlid": "psp_spi_Hv_inst(0)"}, "psp_spi_Hv_inst1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spi_Hv_inst(1)", "dataset": "psp-spi-Hmom", "index1": "1", "is_public": "True", "name": "vy", "parameter": "psp_spi_Hv_inst", "start_date": "2018-10-02T04:04:01Z", "stop_date": "2024-04-30T04:07:52Z", "xmlid": "psp_spi_Hv_inst(1)"}, "psp_spi_Hv_inst2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spi_Hv_inst(2)", "dataset": "psp-spi-Hmom", "index1": "2", "is_public": "True", "name": "vz", "parameter": "psp_spi_Hv_inst", "start_date": "2018-10-02T04:04:01Z", "stop_date": "2024-04-30T04:07:52Z", "xmlid": "psp_spi_Hv_inst(2)"}, "size": "3", "start_date": "2018-10-02T04:04:01Z", "stop_date": "2024-04-30T04:07:52Z", "units": "km/s", "xmlid": "psp_spi_Hv_inst"}, "psp_spi_Hvtot": {"__spz_name__": "h+ |v|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_spi_Hvtot", "dataset": "psp-spi-Hmom", "description": "Particle Velocity magnitude", "display_type": "timeseries", "is_public": "True", "name": "h+ |v|", "start_date": "2018-10-02T04:04:01Z", "stop_date": "2024-04-30T04:07:52Z", "ucd": "phys.magField", "units": "km/s", "xmlid": "psp_spi_Hvtot"}, "psp_spi_Hw": {"__spz_name__": "h+ temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_spi_Hw", "dataset": "psp-spi-Hmom", "description": "Partial Moment Temperature", "display_type": "timeseries", "is_public": "True", "name": "h+ temperature", "start_date": "2018-10-02T04:04:01Z", "stop_date": "2024-04-30T04:07:52Z", "units": "eV", "xmlid": "psp_spi_Hw"}, "psp_spi_Hwt_inst": {"__spz_name__": "h+ t_inst", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_spi_Hwt_inst", "dataset": "psp-spi-Hmom", "description": "Temperature Tensor in instrument frame", "display_type": "timeseries", "is_public": "True", "name": "h+ t_inst", "psp_spi_Hwt_inst0": {"__spz_name__": "Txx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spi_Hwt_inst(0)", "dataset": "psp-spi-Hmom", "index1": "0", "is_public": "True", "name": "Txx", "parameter": "psp_spi_Hwt_inst", "start_date": "2018-10-02T04:04:01Z", "stop_date": "2024-04-30T04:07:52Z", "xmlid": "psp_spi_Hwt_inst(0)"}, "psp_spi_Hwt_inst1": {"__spz_name__": "Tyy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spi_Hwt_inst(1)", "dataset": "psp-spi-Hmom", "index1": "1", "is_public": "True", "name": "Tyy", "parameter": "psp_spi_Hwt_inst", "start_date": "2018-10-02T04:04:01Z", "stop_date": "2024-04-30T04:07:52Z", "xmlid": "psp_spi_Hwt_inst(1)"}, "psp_spi_Hwt_inst2": {"__spz_name__": "Tzz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spi_Hwt_inst(2)", "dataset": "psp-spi-Hmom", "index1": "2", "is_public": "True", "name": "Tzz", "parameter": "psp_spi_Hwt_inst", "start_date": "2018-10-02T04:04:01Z", "stop_date": "2024-04-30T04:07:52Z", "xmlid": "psp_spi_Hwt_inst(2)"}, "psp_spi_Hwt_inst3": {"__spz_name__": "Txy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spi_Hwt_inst(3)", "dataset": "psp-spi-Hmom", "index1": "3", "is_public": "True", "name": "Txy", "parameter": "psp_spi_Hwt_inst", "start_date": "2018-10-02T04:04:01Z", "stop_date": "2024-04-30T04:07:52Z", "xmlid": "psp_spi_Hwt_inst(3)"}, "psp_spi_Hwt_inst4": {"__spz_name__": "Txz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spi_Hwt_inst(4)", "dataset": "psp-spi-Hmom", "index1": "4", "is_public": "True", "name": "Txz", "parameter": "psp_spi_Hwt_inst", "start_date": "2018-10-02T04:04:01Z", "stop_date": "2024-04-30T04:07:52Z", "xmlid": "psp_spi_Hwt_inst(4)"}, "psp_spi_Hwt_inst5": {"__spz_name__": "Tyz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spi_Hwt_inst(5)", "dataset": "psp-spi-Hmom", "index1": "5", "is_public": "True", "name": "Tyz", "parameter": "psp_spi_Hwt_inst", "start_date": "2018-10-02T04:04:01Z", "stop_date": "2024-04-30T04:07:52Z", "xmlid": "psp_spi_Hwt_inst(5)"}, "size": "6", "start_date": "2018-10-02T04:04:01Z", "stop_date": "2024-04-30T04:07:52Z", "units": "eV", "xmlid": "psp_spi_Hwt_inst"}, "sampling": "0.437S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/PSP/SPI/psp-spi-Hmom", "start_date": "2018-10-02T04:04:01Z", "stop_date": "2024-04-30T04:07:52Z", "target": "Heliosphere.Inner", "xmlid": "psp-spi-Hmom"}, "psp_spi_Hsp": {"__spz_name__": "spectrograms", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "psp-spi-Hsp", "att": "auto/psp-spi-Hsp", "dataSource": "SPDF", "desc": "SWEAP SPANAi Level 3 spectrogramms
MinSampling: 0.2S; MaxSampling: 30S
Provider: SPDF", "is_public": "True", "lastModificationDate": "2024-10-06T22:28:02Z", "lastUpdate": "2024-09-25T16:27:37Z", "maxSampling": "30S", "measurement_type": "ThermalPlasma", "name": "spectrograms", "processing_level": "Calibrated", "psp_spi_Hee": {"__spz_name__": "h+ eflux/ener", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_spi_Hee", "dataset": "psp-spi-Hsp", "description": "Differential Energy Flux vs Energy", "display_type": "spectrogram", "is_public": "True", "name": "h+ eflux/ener", "start_date": "2018-10-02T04:04:01Z", "stop_date": "2024-04-30T04:07:52Z", "units": "eV/cm\u00b2-s-ster-eV", "xmlid": "psp_spi_Hee"}, "psp_spi_Heph": {"__spz_name__": "h+ eflux/phi", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_spi_Heph", "dataset": "psp-spi-Hsp", "description": "Differential Energy Flux vs Azimuth Instrument Coordinates", "display_type": "spectrogram", "is_public": "True", "name": "h+ eflux/phi", "start_date": "2018-10-02T04:04:01Z", "stop_date": "2024-04-30T04:07:52Z", "units": "eV/cm\u00b2-s-ster-eV", "xmlid": "psp_spi_Heph"}, "psp_spi_Heth": {"__spz_name__": "h+ eflux/theta", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_spi_Heth", "dataset": "psp-spi-Hsp", "description": "Differential Energy Flux vs Elevation Instrument Coordinates", "display_type": "spectrogram", "is_public": "True", "name": "h+ eflux/theta", "start_date": "2018-10-02T04:04:01Z", "stop_date": "2024-04-30T04:07:52Z", "units": "eV/cm\u00b2-s-ster-eV", "xmlid": "psp_spi_Heth"}, "sampling": "0.2S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/PSP/SPI/psp-spi-Hsp", "start_date": "2018-10-02T04:04:01Z", "stop_date": "2024-04-30T04:07:52Z", "target": "Heliosphere.Inner", "xmlid": "psp-spi-Hsp"}, "xmlid": "psp-spi-proton"}, "xmlid": "PSP_spi"}, "SWEAP_SPC": {"__spz_name__": "SWEAP SPC", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "PSP_spc", "att": "auto/PSP_spc", "desc": "Solar Probe Cup
FaradayCup", "is_public": "True", "name": "SWEAP SPC", "psp_spc_fit": {"__spz_name__": "fits", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "psp-spc-fit", "att": "auto/psp-spc-fit", "dataSource": "SPDF", "desc": "SWEAP Level 3 fits
MinSampling: 0.2S; MaxSampling: 30S
Provider: SPDF", "is_public": "True", "lastModificationDate": "2024-10-06T22:27:52Z", "lastUpdate": "2024-09-27T09:44:01Z", "maxSampling": "30S", "measurement_type": "Spectrum", "name": "fits", "processing_level": "Calibrated", "psp_spc_dn3": {"__spz_name__": "n3_uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_spc_dn3", "dataset": "psp-spc-fit", "description": "Estimated uncertainty on the number density, fitted to the p1 substracted residuals", "display_type": "timeseries", "is_public": "True", "name": "n3_uncertainty", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "units": "cm-3", "xmlid": "psp_spc_dn3"}, "psp_spc_dna": {"__spz_name__": "na_uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_spc_dna", "dataset": "psp-spc-fit", "description": "Estimated uncertainty on the number density, fitted to the \u201cprimary\u201d alpha particle (He++) peak, if resolved", "display_type": "timeseries", "is_public": "True", "name": "na_uncertainty", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "units": "cm-3", "xmlid": "psp_spc_dna"}, "psp_spc_dnp1": {"__spz_name__": "np1_uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_spc_dnp1", "dataset": "psp-spc-fit", "description": "Estimated uncertainty on the number density, fitted to the \u201cprimary\u201d proton peak", "display_type": "timeseries", "is_public": "True", "name": "np1_uncertainty", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "units": "cm-3", "xmlid": "psp_spc_dnp1"}, "psp_spc_dnp_tot": {"__spz_name__": "np_tot_uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_spc_dnp_tot", "dataset": "psp-spc-fit", "description": "Estimated uncertainty on the number density", "display_type": "timeseries", "is_public": "True", "name": "np_tot_uncertainty", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "units": "cm-3", "xmlid": "psp_spc_dnp_tot"}, "psp_spc_dv3": {"__spz_name__": "v3_uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_spc_dv3", "dataset": "psp-spc-fit", "description": "Velocity vector component uncertainties", "display_type": "timeseries", "is_public": "True", "name": "v3_uncertainty", "psp_spc_dv30": {"__spz_name__": "dv3r", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spc_dv3(0)", "dataset": "psp-spc-fit", "index1": "0", "is_public": "True", "name": "dv3r", "parameter": "psp_spc_dv3", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "xmlid": "psp_spc_dv3(0)"}, "psp_spc_dv31": {"__spz_name__": "dv3t", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spc_dv3(1)", "dataset": "psp-spc-fit", "index1": "1", "is_public": "True", "name": "dv3t", "parameter": "psp_spc_dv3", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "xmlid": "psp_spc_dv3(1)"}, "psp_spc_dv32": {"__spz_name__": "dv3n", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spc_dv3(2)", "dataset": "psp-spc-fit", "index1": "2", "is_public": "True", "name": "dv3n", "parameter": "psp_spc_dv3", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "xmlid": "psp_spc_dv3(2)"}, "size": "3", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "units": "km/s", "xmlid": "psp_spc_dv3"}, "psp_spc_dva": {"__spz_name__": "va_uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_spc_dva", "dataset": "psp-spc-fit", "description": "Velocity vector component uncertainties", "display_type": "timeseries", "is_public": "True", "name": "va_uncertainty", "psp_spc_dva0": {"__spz_name__": "dvar", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spc_dva(0)", "dataset": "psp-spc-fit", "index1": "0", "is_public": "True", "name": "dvar", "parameter": "psp_spc_dva", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "xmlid": "psp_spc_dva(0)"}, "psp_spc_dva1": {"__spz_name__": "dvat", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spc_dva(1)", "dataset": "psp-spc-fit", "index1": "1", "is_public": "True", "name": "dvat", "parameter": "psp_spc_dva", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "xmlid": "psp_spc_dva(1)"}, "psp_spc_dva2": {"__spz_name__": "dvan", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spc_dva(2)", "dataset": "psp-spc-fit", "index1": "2", "is_public": "True", "name": "dvan", "parameter": "psp_spc_dva", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "xmlid": "psp_spc_dva(2)"}, "size": "3", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "units": "km/s", "xmlid": "psp_spc_dva"}, "psp_spc_dvp1": {"__spz_name__": "vp1_uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_spc_dvp1", "dataset": "psp-spc-fit", "description": "Velocity vector component upper uncertainties", "display_type": "timeseries", "is_public": "True", "name": "vp1_uncertainty", "psp_spc_dvp10": {"__spz_name__": "dvp1r", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spc_dvp1(0)", "dataset": "psp-spc-fit", "index1": "0", "is_public": "True", "name": "dvp1r", "parameter": "psp_spc_dvp1", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "xmlid": "psp_spc_dvp1(0)"}, "psp_spc_dvp11": {"__spz_name__": "dvp1t", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spc_dvp1(1)", "dataset": "psp-spc-fit", "index1": "1", "is_public": "True", "name": "dvp1t", "parameter": "psp_spc_dvp1", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "xmlid": "psp_spc_dvp1(1)"}, "psp_spc_dvp12": {"__spz_name__": "dvp1n", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spc_dvp1(2)", "dataset": "psp-spc-fit", "index1": "2", "is_public": "True", "name": "dvp1n", "parameter": "psp_spc_dvp1", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "xmlid": "psp_spc_dvp1(2)"}, "size": "3", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "units": "km/s", "xmlid": "psp_spc_dvp1"}, "psp_spc_dvp_tot": {"__spz_name__": "vp_tot_uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_spc_dvp_tot", "dataset": "psp-spc-fit", "description": "Velocity vector component uncertainties", "display_type": "timeseries", "is_public": "True", "name": "vp_tot_uncertainty", "psp_spc_dvp_tot0": {"__spz_name__": "dvp_totr", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spc_dvp_tot(0)", "dataset": "psp-spc-fit", "index1": "0", "is_public": "True", "name": "dvp_totr", "parameter": "psp_spc_dvp_tot", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "xmlid": "psp_spc_dvp_tot(0)"}, "psp_spc_dvp_tot1": {"__spz_name__": "dvp_tott", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spc_dvp_tot(1)", "dataset": "psp-spc-fit", "index1": "1", "is_public": "True", "name": "dvp_tott", "parameter": "psp_spc_dvp_tot", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "xmlid": "psp_spc_dvp_tot(1)"}, "psp_spc_dvp_tot2": {"__spz_name__": "dvp_totn", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spc_dvp_tot(2)", "dataset": "psp-spc-fit", "index1": "2", "is_public": "True", "name": "dvp_totn", "parameter": "psp_spc_dvp_tot", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "xmlid": "psp_spc_dvp_tot(2)"}, "size": "3", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "units": "km/s", "xmlid": "psp_spc_dvp_tot"}, "psp_spc_dw3": {"__spz_name__": "w3_uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_spc_dw3", "dataset": "psp-spc-fit", "description": "Estimated uncertainty on the thermal velocity, fitted to the p1 substracted residuals", "display_type": "timeseries", "is_public": "True", "name": "w3_uncertainty", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "units": "km/s", "xmlid": "psp_spc_dw3"}, "psp_spc_dwa": {"__spz_name__": "wa_uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_spc_dwa", "dataset": "psp-spc-fit", "description": "Estimated uncertainty on the thermal velocity, fitted to the \u201cprimary\u201d alpha particle (He++) peak, if resolved", "display_type": "timeseries", "is_public": "True", "name": "wa_uncertainty", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "units": "km/s", "xmlid": "psp_spc_dwa"}, "psp_spc_dwp1": {"__spz_name__": "wp1_uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_spc_dwp1", "dataset": "psp-spc-fit", "description": "Estimated uncertainty on the thermal velocity, fitted to the \u201cprimary\u201d proton peak", "display_type": "timeseries", "is_public": "True", "name": "wp1_uncertainty", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "units": "km/s", "xmlid": "psp_spc_dwp1"}, "psp_spc_dwp_tot": {"__spz_name__": "wp_tot_uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_spc_dwp_tot", "dataset": "psp-spc-fit", "description": "Estimated uncertainty on the thermal velocity", "display_type": "timeseries", "is_public": "True", "name": "wp_tot_uncertainty", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "units": "km/s", "xmlid": "psp_spc_dwp_tot"}, "psp_spc_n3": {"__spz_name__": "n3", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_spc_n3", "dataset": "psp-spc-fit", "description": "Number density, fitted to the p1 substracted residuals", "display_type": "timeseries", "is_public": "True", "name": "n3", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "units": "cm-3", "xmlid": "psp_spc_n3"}, "psp_spc_na": {"__spz_name__": "na", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_spc_na", "dataset": "psp-spc-fit", "description": "Number density, fitted to the \u201cprimary\u201d alpha particle (He++) peak, if resolved", "display_type": "timeseries", "is_public": "True", "name": "na", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "units": "cm-3", "xmlid": "psp_spc_na"}, "psp_spc_np1": {"__spz_name__": "np1", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_spc_np1", "dataset": "psp-spc-fit", "description": "Number density, fitted to the \u201cprimary\u201d proton peak", "display_type": "timeseries", "is_public": "True", "name": "np1", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "units": "cm-3", "xmlid": "psp_spc_np1"}, "psp_spc_np_tot": {"__spz_name__": "np_tot", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_spc_np_tot", "dataset": "psp-spc-fit", "description": "If p1 and 3 are successfully fitted, total proton density", "display_type": "timeseries", "is_public": "True", "name": "np_tot", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "units": "cm-3", "xmlid": "psp_spc_np_tot"}, "psp_spc_v3": {"__spz_name__": "v3_rtn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_spc_v3", "dataset": "psp-spc-fit", "description": "Velocity vector, estimated from the radial thermal velocity fit and flow angle", "display_type": "timeseries", "is_public": "True", "name": "v3_rtn", "psp_spc_v30": {"__spz_name__": "v3r", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spc_v3(0)", "dataset": "psp-spc-fit", "index1": "0", "is_public": "True", "name": "v3r", "parameter": "psp_spc_v3", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "xmlid": "psp_spc_v3(0)"}, "psp_spc_v31": {"__spz_name__": "v3t", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spc_v3(1)", "dataset": "psp-spc-fit", "index1": "1", "is_public": "True", "name": "v3t", "parameter": "psp_spc_v3", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "xmlid": "psp_spc_v3(1)"}, "psp_spc_v32": {"__spz_name__": "v3n", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spc_v3(2)", "dataset": "psp-spc-fit", "index1": "2", "is_public": "True", "name": "v3n", "parameter": "psp_spc_v3", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "xmlid": "psp_spc_v3(2)"}, "size": "3", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "units": "km/s", "xmlid": "psp_spc_v3"}, "psp_spc_v3_nrm": {"__spz_name__": "|v3|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_spc_v3_nrm", "dataset": "psp-spc-fit", "description": "Velociy vector magnitude", "display_type": "timeseries", "is_public": "True", "name": "|v3|", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "units": "km/s", "xmlid": "psp_spc_v3_nrm"}, "psp_spc_va": {"__spz_name__": "va_rtn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_spc_va", "dataset": "psp-spc-fit", "description": "Velocity vector, estimated from the radial thermal velocity fit and flow angle", "display_type": "timeseries", "is_public": "True", "name": "va_rtn", "psp_spc_va0": {"__spz_name__": "var", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spc_va(0)", "dataset": "psp-spc-fit", "index1": "0", "is_public": "True", "name": "var", "parameter": "psp_spc_va", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "xmlid": "psp_spc_va(0)"}, "psp_spc_va1": {"__spz_name__": "vat", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spc_va(1)", "dataset": "psp-spc-fit", "index1": "1", "is_public": "True", "name": "vat", "parameter": "psp_spc_va", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "xmlid": "psp_spc_va(1)"}, "psp_spc_va2": {"__spz_name__": "van", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spc_va(2)", "dataset": "psp-spc-fit", "index1": "2", "is_public": "True", "name": "van", "parameter": "psp_spc_va", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "xmlid": "psp_spc_va(2)"}, "size": "3", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "units": "km/s", "xmlid": "psp_spc_va"}, "psp_spc_va_nrm": {"__spz_name__": "|va|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_spc_va_nrm", "dataset": "psp-spc-fit", "description": "Velociy vector magnitude", "display_type": "timeseries", "is_public": "True", "name": "|va|", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "units": "km/s", "xmlid": "psp_spc_va_nrm"}, "psp_spc_vp1": {"__spz_name__": "vp1_rtn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_spc_vp1", "dataset": "psp-spc-fit", "description": "Velocity vector, estimated from the radial thermal velocity fit p1 and flow angle", "display_type": "timeseries", "is_public": "True", "name": "vp1_rtn", "psp_spc_vp10": {"__spz_name__": "vp1r", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spc_vp1(0)", "dataset": "psp-spc-fit", "index1": "0", "is_public": "True", "name": "vp1r", "parameter": "psp_spc_vp1", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "xmlid": "psp_spc_vp1(0)"}, "psp_spc_vp11": {"__spz_name__": "vp1t", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spc_vp1(1)", "dataset": "psp-spc-fit", "index1": "1", "is_public": "True", "name": "vp1t", "parameter": "psp_spc_vp1", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "xmlid": "psp_spc_vp1(1)"}, "psp_spc_vp12": {"__spz_name__": "vp1n", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spc_vp1(2)", "dataset": "psp-spc-fit", "index1": "2", "is_public": "True", "name": "vp1n", "parameter": "psp_spc_vp1", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "xmlid": "psp_spc_vp1(2)"}, "size": "3", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "units": "km/s", "xmlid": "psp_spc_vp1"}, "psp_spc_vp1_nrm": {"__spz_name__": "|vp1|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_spc_vp1_nrm", "dataset": "psp-spc-fit", "description": "Velociy vector magnitude", "display_type": "timeseries", "is_public": "True", "name": "|vp1|", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "units": "km/s", "xmlid": "psp_spc_vp1_nrm"}, "psp_spc_vp_tot": {"__spz_name__": "vp_tot_rtn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_spc_vp_tot", "dataset": "psp-spc-fit", "description": "If p1 and 3 are successfully fitted, center of mass velocity vector", "display_type": "timeseries", "is_public": "True", "name": "vp_tot_rtn", "psp_spc_vp_tot0": {"__spz_name__": "vp_totr", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spc_vp_tot(0)", "dataset": "psp-spc-fit", "index1": "0", "is_public": "True", "name": "vp_totr", "parameter": "psp_spc_vp_tot", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "xmlid": "psp_spc_vp_tot(0)"}, "psp_spc_vp_tot1": {"__spz_name__": "vp_tott", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spc_vp_tot(1)", "dataset": "psp-spc-fit", "index1": "1", "is_public": "True", "name": "vp_tott", "parameter": "psp_spc_vp_tot", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "xmlid": "psp_spc_vp_tot(1)"}, "psp_spc_vp_tot2": {"__spz_name__": "vp_totn", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spc_vp_tot(2)", "dataset": "psp-spc-fit", "index1": "2", "is_public": "True", "name": "vp_totn", "parameter": "psp_spc_vp_tot", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "xmlid": "psp_spc_vp_tot(2)"}, "size": "3", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "units": "km/s", "xmlid": "psp_spc_vp_tot"}, "psp_spc_vp_tot_nrm": {"__spz_name__": "|vp_tot|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_spc_vp_tot_nrm", "dataset": "psp-spc-fit", "description": "Velociy vector magnitude", "display_type": "timeseries", "is_public": "True", "name": "|vp_tot|", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "units": "km/s", "xmlid": "psp_spc_vp_tot_nrm"}, "psp_spc_w3": {"__spz_name__": "w3", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_spc_w3", "dataset": "psp-spc-fit", "description": "Thermal velocity = sqrt(2kT/m), fitted to the p1 substracted residuals", "display_type": "timeseries", "is_public": "True", "name": "w3", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "units": "km/s", "xmlid": "psp_spc_w3"}, "psp_spc_wa": {"__spz_name__": "wa", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_spc_wa", "dataset": "psp-spc-fit", "description": "Thermal velocity = sqrt(2kT/m), fitted to the \u201cprimary\u201d alpha particle (He++) peak, if resolved", "display_type": "timeseries", "is_public": "True", "name": "wa", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "units": "km/s", "xmlid": "psp_spc_wa"}, "psp_spc_wp1": {"__spz_name__": "wp1", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_spc_wp1", "dataset": "psp-spc-fit", "description": "Thermal velocity = sqrt(2kT/m), fitted to the \u201cprimary\u201d proton peak", "display_type": "timeseries", "is_public": "True", "name": "wp1", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "units": "km/s", "xmlid": "psp_spc_wp1"}, "psp_spc_wp_tot": {"__spz_name__": "wp_tot", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_spc_wp_tot", "dataset": "psp-spc-fit", "description": "If p1 and 3 are successfully fitted, effective thermal velocity", "display_type": "timeseries", "is_public": "True", "name": "wp_tot", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "units": "km/s", "xmlid": "psp_spc_wp_tot"}, "sampling": "0.2S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/PSP/SPC/psp-spc-fit", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "target": "Heliosphere.Inner", "xmlid": "psp-spc-fit"}, "psp_spc_flag": {"__spz_name__": "quality flags", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "psp-spc-flag", "att": "auto/psp-spc-flag", "dataSource": "SPDF", "desc": "SWEAP Level 3 data quality flags
MinSampling: 0.2S; MaxSampling: 30S
Provider: SPDF", "is_public": "True", "lastModificationDate": "2024-10-06T22:27:52Z", "lastUpdate": "2024-09-27T09:44:01Z", "maxSampling": "30S", "measurement_type": "Spectrum", "name": "quality flags", "processing_level": "Calibrated", "psp_spc_dqf": {"__spz_name__": "data quality flag", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_spc_dqf", "dataset": "psp-spc-flag", "display_type": "timeseries", "is_public": "True", "name": "data quality flag", "psp_spc_dqf0": {"__spz_name__": "flag (1)", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spc_dqf(0)", "dataset": "psp-spc-flag", "index1": "0", "is_public": "True", "name": "flag (1)", "parameter": "psp_spc_dqf", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "xmlid": "psp_spc_dqf(0)"}, "psp_spc_dqf1": {"__spz_name__": "flag (2)", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spc_dqf(1)", "dataset": "psp-spc-flag", "index1": "1", "is_public": "True", "name": "flag (2)", "parameter": "psp_spc_dqf", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "xmlid": "psp_spc_dqf(1)"}, "psp_spc_dqf10": {"__spz_name__": "flag (11)", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spc_dqf(10)", "dataset": "psp-spc-flag", "index1": "10", "is_public": "True", "name": "flag (11)", "parameter": "psp_spc_dqf", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "xmlid": "psp_spc_dqf(10)"}, "psp_spc_dqf11": {"__spz_name__": "flag (12)", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spc_dqf(11)", "dataset": "psp-spc-flag", "index1": "11", "is_public": "True", "name": "flag (12)", "parameter": "psp_spc_dqf", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "xmlid": "psp_spc_dqf(11)"}, "psp_spc_dqf12": {"__spz_name__": "flag (13)", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spc_dqf(12)", "dataset": "psp-spc-flag", "index1": "12", "is_public": "True", "name": "flag (13)", "parameter": "psp_spc_dqf", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "xmlid": "psp_spc_dqf(12)"}, "psp_spc_dqf13": {"__spz_name__": "flag (14)", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spc_dqf(13)", "dataset": "psp-spc-flag", "index1": "13", "is_public": "True", "name": "flag (14)", "parameter": "psp_spc_dqf", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "xmlid": "psp_spc_dqf(13)"}, "psp_spc_dqf14": {"__spz_name__": "flag (15)", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spc_dqf(14)", "dataset": "psp-spc-flag", "index1": "14", "is_public": "True", "name": "flag (15)", "parameter": "psp_spc_dqf", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "xmlid": "psp_spc_dqf(14)"}, "psp_spc_dqf15": {"__spz_name__": "flag (16)", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spc_dqf(15)", "dataset": "psp-spc-flag", "index1": "15", "is_public": "True", "name": "flag (16)", "parameter": "psp_spc_dqf", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "xmlid": "psp_spc_dqf(15)"}, "psp_spc_dqf16": {"__spz_name__": "flag (17)", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spc_dqf(16)", "dataset": "psp-spc-flag", "index1": "16", "is_public": "True", "name": "flag (17)", "parameter": "psp_spc_dqf", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "xmlid": "psp_spc_dqf(16)"}, "psp_spc_dqf17": {"__spz_name__": "flag (18)", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spc_dqf(17)", "dataset": "psp-spc-flag", "index1": "17", "is_public": "True", "name": "flag (18)", "parameter": "psp_spc_dqf", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "xmlid": "psp_spc_dqf(17)"}, "psp_spc_dqf18": {"__spz_name__": "flag (19)", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spc_dqf(18)", "dataset": "psp-spc-flag", "index1": "18", "is_public": "True", "name": "flag (19)", "parameter": "psp_spc_dqf", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "xmlid": "psp_spc_dqf(18)"}, "psp_spc_dqf19": {"__spz_name__": "flag (20)", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spc_dqf(19)", "dataset": "psp-spc-flag", "index1": "19", "is_public": "True", "name": "flag (20)", "parameter": "psp_spc_dqf", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "xmlid": "psp_spc_dqf(19)"}, "psp_spc_dqf2": {"__spz_name__": "flag (3)", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spc_dqf(2)", "dataset": "psp-spc-flag", "index1": "2", "is_public": "True", "name": "flag (3)", "parameter": "psp_spc_dqf", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "xmlid": "psp_spc_dqf(2)"}, "psp_spc_dqf20": {"__spz_name__": "flag (21)", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spc_dqf(20)", "dataset": "psp-spc-flag", "index1": "20", "is_public": "True", "name": "flag (21)", "parameter": "psp_spc_dqf", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "xmlid": "psp_spc_dqf(20)"}, "psp_spc_dqf21": {"__spz_name__": "flag (22)", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spc_dqf(21)", "dataset": "psp-spc-flag", "index1": "21", "is_public": "True", "name": "flag (22)", "parameter": "psp_spc_dqf", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "xmlid": "psp_spc_dqf(21)"}, "psp_spc_dqf22": {"__spz_name__": "flag (23)", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spc_dqf(22)", "dataset": "psp-spc-flag", "index1": "22", "is_public": "True", "name": "flag (23)", "parameter": "psp_spc_dqf", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "xmlid": "psp_spc_dqf(22)"}, "psp_spc_dqf3": {"__spz_name__": "flag (4)", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spc_dqf(3)", "dataset": "psp-spc-flag", "index1": "3", "is_public": "True", "name": "flag (4)", "parameter": "psp_spc_dqf", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "xmlid": "psp_spc_dqf(3)"}, "psp_spc_dqf4": {"__spz_name__": "flag (5)", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spc_dqf(4)", "dataset": "psp-spc-flag", "index1": "4", "is_public": "True", "name": "flag (5)", "parameter": "psp_spc_dqf", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "xmlid": "psp_spc_dqf(4)"}, "psp_spc_dqf5": {"__spz_name__": "flag (6)", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spc_dqf(5)", "dataset": "psp-spc-flag", "index1": "5", "is_public": "True", "name": "flag (6)", "parameter": "psp_spc_dqf", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "xmlid": "psp_spc_dqf(5)"}, "psp_spc_dqf6": {"__spz_name__": "flag (7)", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spc_dqf(6)", "dataset": "psp-spc-flag", "index1": "6", "is_public": "True", "name": "flag (7)", "parameter": "psp_spc_dqf", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "xmlid": "psp_spc_dqf(6)"}, "psp_spc_dqf7": {"__spz_name__": "flag (8)", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spc_dqf(7)", "dataset": "psp-spc-flag", "index1": "7", "is_public": "True", "name": "flag (8)", "parameter": "psp_spc_dqf", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "xmlid": "psp_spc_dqf(7)"}, "psp_spc_dqf8": {"__spz_name__": "flag (9)", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spc_dqf(8)", "dataset": "psp-spc-flag", "index1": "8", "is_public": "True", "name": "flag (9)", "parameter": "psp_spc_dqf", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "xmlid": "psp_spc_dqf(8)"}, "psp_spc_dqf9": {"__spz_name__": "flag (10)", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spc_dqf(9)", "dataset": "psp-spc-flag", "index1": "9", "is_public": "True", "name": "flag (10)", "parameter": "psp_spc_dqf", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "xmlid": "psp_spc_dqf(9)"}, "size": "23", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "xmlid": "psp_spc_dqf"}, "psp_spc_gf": {"__spz_name__": "general_flag", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_spc_gf", "dataset": "psp-spc-flag", "description": "The \u201cGENERAL FLAG\u201d variable signifies, as broadly as possible, whether a given measurement\n has been made under ideal conditions and can be used without caveat. When this variable is\n set to 1, there is a condition present of which the user must be made aware", "display_type": "timeseries", "is_public": "True", "name": "general_flag", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "units": "m-3", "xmlid": "psp_spc_gf"}, "sampling": "0.2S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/PSP/SPC/psp-spc-flag", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "target": "Heliosphere.Inner", "xmlid": "psp-spc-flag"}, "psp_spc_mom": {"__spz_name__": "moments", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "psp-spc-mom", "att": "auto/psp-spc-mom", "dataSource": "SPDF", "desc": "SWEAP Level 3 moments
MinSampling: 0.2S; MaxSampling: 30S
Provider: SPDF", "is_public": "True", "lastModificationDate": "2024-10-06T22:27:52Z", "lastUpdate": "2024-09-27T09:44:01Z", "maxSampling": "30S", "measurement_type": "Spectrum", "name": "moments", "processing_level": "Calibrated", "psp_spc_dnph": {"__spz_name__": "np_mom_deltahigh", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_spc_dnph", "dataset": "psp-spc-mom", "description": "Estimated upper bound on the proton density from moment calculation", "display_type": "timeseries", "is_public": "True", "name": "np_mom_deltahigh", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "units": "cm-3", "xmlid": "psp_spc_dnph"}, "psp_spc_dnpl": {"__spz_name__": "np_mom_deltalow", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_spc_dnpl", "dataset": "psp-spc-mom", "description": "Estimated lower bound on the proton density from moment calculation", "display_type": "timeseries", "is_public": "True", "name": "np_mom_deltalow", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "units": "cm-3", "xmlid": "psp_spc_dnpl"}, "psp_spc_dvph": {"__spz_name__": "vp_mom_rtn_deltahigh", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_spc_dvph", "dataset": "psp-spc-mom", "description": "Proton velocity vector component upper bounds from moment calculation", "display_type": "timeseries", "is_public": "True", "name": "vp_mom_rtn_deltahigh", "psp_spc_dvph0": {"__spz_name__": "dvphr", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spc_dvph(0)", "dataset": "psp-spc-mom", "index1": "0", "is_public": "True", "name": "dvphr", "parameter": "psp_spc_dvph", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "xmlid": "psp_spc_dvph(0)"}, "psp_spc_dvph1": {"__spz_name__": "dvpht", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spc_dvph(1)", "dataset": "psp-spc-mom", "index1": "1", "is_public": "True", "name": "dvpht", "parameter": "psp_spc_dvph", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "xmlid": "psp_spc_dvph(1)"}, "psp_spc_dvph2": {"__spz_name__": "dvphn", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spc_dvph(2)", "dataset": "psp-spc-mom", "index1": "2", "is_public": "True", "name": "dvphn", "parameter": "psp_spc_dvph", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "xmlid": "psp_spc_dvph(2)"}, "size": "3", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "units": "km/s", "xmlid": "psp_spc_dvph"}, "psp_spc_dvpl": {"__spz_name__": "vp_mom_rtn_deltalow", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_spc_dvpl", "dataset": "psp-spc-mom", "description": "Proton velocity vector component lower bounds from moment calculation", "display_type": "timeseries", "is_public": "True", "name": "vp_mom_rtn_deltalow", "psp_spc_dvpl0": {"__spz_name__": "dvplr", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spc_dvpl(0)", "dataset": "psp-spc-mom", "index1": "0", "is_public": "True", "name": "dvplr", "parameter": "psp_spc_dvpl", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "xmlid": "psp_spc_dvpl(0)"}, "psp_spc_dvpl1": {"__spz_name__": "dvplt", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spc_dvpl(1)", "dataset": "psp-spc-mom", "index1": "1", "is_public": "True", "name": "dvplt", "parameter": "psp_spc_dvpl", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "xmlid": "psp_spc_dvpl(1)"}, "psp_spc_dvpl2": {"__spz_name__": "dvpln", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spc_dvpl(2)", "dataset": "psp-spc-mom", "index1": "2", "is_public": "True", "name": "dvpln", "parameter": "psp_spc_dvpl", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "xmlid": "psp_spc_dvpl(2)"}, "size": "3", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "units": "km/s", "xmlid": "psp_spc_dvpl"}, "psp_spc_dwph": {"__spz_name__": "wp_mom_deltahigh", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_spc_dwph", "dataset": "psp-spc-mom", "description": "Estimated upper bound on the proton thermal speed from moment calculation", "display_type": "timeseries", "is_public": "True", "name": "wp_mom_deltahigh", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "xmlid": "psp_spc_dwph"}, "psp_spc_dwpl": {"__spz_name__": "wp_mom_deltalow", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_spc_dwpl", "dataset": "psp-spc-mom", "description": "Estimated lower bound on the proton thermal speed from moment calculation", "display_type": "timeseries", "is_public": "True", "name": "wp_mom_deltalow", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "xmlid": "psp_spc_dwpl"}, "psp_spc_np_mom": {"__spz_name__": "np_mom", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_spc_np_mom", "dataset": "psp-spc-mom", "description": "Proton density", "display_type": "timeseries", "is_public": "True", "name": "np_mom", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "units": "cm-3", "xmlid": "psp_spc_np_mom"}, "psp_spc_vp_mom": {"__spz_name__": "vp_mom_rtn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_spc_vp_mom", "dataset": "psp-spc-mom", "description": "Proton velocity vector, estimated from the radial thermal speed moment and flow angle", "display_type": "timeseries", "is_public": "True", "name": "vp_mom_rtn", "psp_spc_vp_mom0": {"__spz_name__": "vpr", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spc_vp_mom(0)", "dataset": "psp-spc-mom", "index1": "0", "is_public": "True", "name": "vpr", "parameter": "psp_spc_vp_mom", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "xmlid": "psp_spc_vp_mom(0)"}, "psp_spc_vp_mom1": {"__spz_name__": "vpt", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spc_vp_mom(1)", "dataset": "psp-spc-mom", "index1": "1", "is_public": "True", "name": "vpt", "parameter": "psp_spc_vp_mom", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "xmlid": "psp_spc_vp_mom(1)"}, "psp_spc_vp_mom2": {"__spz_name__": "vpn", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_spc_vp_mom(2)", "dataset": "psp-spc-mom", "index1": "2", "is_public": "True", "name": "vpn", "parameter": "psp_spc_vp_mom", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "xmlid": "psp_spc_vp_mom(2)"}, "size": "3", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "units": "km/s", "xmlid": "psp_spc_vp_mom"}, "psp_spc_vp_mom_nrm": {"__spz_name__": "|vp_mom|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_spc_vp_mom_nrm", "dataset": "psp-spc-mom", "description": "Velocity vector magnitude", "display_type": "timeseries", "is_public": "True", "name": "|vp_mom|", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "units": "km/s", "xmlid": "psp_spc_vp_mom_nrm"}, "psp_spc_wp_mom": {"__spz_name__": "wp_mom", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_spc_wp_mom", "dataset": "psp-spc-mom", "description": "Proton thermal velocity. Equal to sqrt(2kT/m)", "display_type": "timeseries", "is_public": "True", "name": "wp_mom", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "units": "km/s", "xmlid": "psp_spc_wp_mom"}, "sampling": "0.2S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/PSP/SPC/psp-spc-mom", "start_date": "2018-10-30T23:59:59Z", "stop_date": "2024-04-13T04:54:22Z", "target": "Heliosphere.Inner", "xmlid": "psp-spc-mom"}, "xmlid": "PSP_spc"}, "__spz_name__": "PSP", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "PSP", "att": "auto/PSP", "desc": "Parker Solar Probe
2018-08-12T07:31:00", "is_public": "True", "name": "PSP", "rank": "1", "target": "Sun", "xmlid": "PSP"}, "PVO": {"Ephemeris": {"__spz_name__": "Ephemeris", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "PioneerVenusOrbiter_ephemeris", "att": "auto/PioneerVenusOrbiter_ephemeris", "desc": "", "is_public": "True", "name": "Ephemeris", "pvo_orb_pos": {"__spz_name__": "orbit venus", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "pvo-orb-pos", "att": "auto/pvo-orb-pos", "dataSource": "PDS", "desc": "
MinSampling: 12S; MaxSampling: 600S
Provider: PDS", "is_public": "True", "lastModificationDate": "2012-03-06T19:14:36Z", "lastUpdate": "2012-03-06T19:15:19Z", "maxSampling": "600S", "measurement_type": "Ephemeris", "name": "orbit venus", "processing_level": "Calibrated", "pvo_orb_alt": {"__spz_name__": "altitude", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pvo_orb_alt", "dataset": "pvo-orb-pos", "display_type": "timeseries", "is_public": "True", "name": "altitude", "start_date": "1978-12-05T06:55:10Z", "stop_date": "1992-10-07T18:14:07Z", "units": "km", "xmlid": "pvo_orb_alt"}, "pvo_orb_clat": {"__spz_name__": "lat_iau_sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pvo_orb_clat", "dataset": "pvo-orb-pos", "display_type": "timeseries", "is_public": "True", "name": "lat_iau_sun", "start_date": "1978-12-05T06:55:10Z", "stop_date": "1992-10-07T18:14:07Z", "ucd": "pos.bodyrc.lat", "units": "deg", "xmlid": "pvo_orb_clat"}, "pvo_orb_clon": {"__spz_name__": "lon_iau_sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pvo_orb_clon", "dataset": "pvo-orb-pos", "display_type": "timeseries", "is_public": "True", "name": "lon_iau_sun", "start_date": "1978-12-05T06:55:10Z", "stop_date": "1992-10-07T18:14:07Z", "ucd": "pos.bodyrc.lon;instr.obsty", "units": "deg", "xmlid": "pvo_orb_clon"}, "pvo_orb_elon": {"__spz_name__": "earth lon_iau_sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pvo_orb_elon", "dataset": "pvo-orb-pos", "display_type": "timeseries", "is_public": "True", "name": "earth lon_iau_sun", "start_date": "1978-12-05T06:55:10Z", "stop_date": "1992-10-07T18:14:07Z", "ucd": "pos.bodyrc.lon;instr.obsty", "units": "degrees", "xmlid": "pvo_orb_elon"}, "pvo_orb_lat": {"__spz_name__": "lat planetographic", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pvo_orb_lat", "dataset": "pvo-orb-pos", "description": "Planetographic latitude of the spacecraft", "display_type": "timeseries", "is_public": "True", "name": "lat planetographic", "start_date": "1978-12-05T06:55:10Z", "stop_date": "1992-10-07T18:14:07Z", "ucd": "pos.bodyrc.lat", "units": "deg", "xmlid": "pvo_orb_lat"}, "pvo_orb_lon": {"__spz_name__": "lon planetographic (east)", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pvo_orb_lon", "dataset": "pvo-orb-pos", "description": "Planetographic longitude of the spacecraft", "display_type": "timeseries", "is_public": "True", "name": "lon planetographic (east)", "start_date": "1978-12-05T06:55:10Z", "stop_date": "1992-10-07T18:14:07Z", "ucd": "pos.bodyrc.lon;instr.obsty", "units": "deg", "xmlid": "pvo_orb_lon"}, "pvo_orb_r": {"__spz_name__": "distance pvo-venus", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pvo_orb_r", "dataset": "pvo-orb-pos", "description": "Range of the spacecraft from the Jupiter center of mass", "display_type": "timeseries", "is_public": "True", "name": "distance pvo-venus", "start_date": "1978-12-05T06:55:10Z", "stop_date": "1992-10-07T18:14:07Z", "ucd": "pos.distance;instr.obsty", "units": "Rv", "xmlid": "pvo_orb_r"}, "pvo_orb_rsun": {"__spz_name__": "distance pvo-sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pvo_orb_rsun", "dataset": "pvo-orb-pos", "display_type": "timeseries", "is_public": "True", "name": "distance pvo-sun", "start_date": "1978-12-05T06:55:10Z", "stop_date": "1992-10-07T18:14:07Z", "ucd": "pos.distance;instr.obsty", "units": "AU", "xmlid": "pvo_orb_rsun"}, "pvo_orb_spvso": {"__spz_name__": "xyz_spin_axis_vso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pvo_orb_spvso", "dataset": "pvo-orb-pos", "display_type": "timeseries", "is_public": "True", "name": "xyz_spin_axis_vso", "pvo_orb_spvso0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "pvo_orb_spvso(0)", "dataset": "pvo-orb-pos", "index1": "0", "is_public": "True", "name": "x", "parameter": "pvo_orb_spvso", "start_date": "1978-12-05T06:55:10Z", "stop_date": "1992-10-07T18:14:07Z", "xmlid": "pvo_orb_spvso(0)"}, "pvo_orb_spvso1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "pvo_orb_spvso(1)", "dataset": "pvo-orb-pos", "index1": "1", "is_public": "True", "name": "y", "parameter": "pvo_orb_spvso", "start_date": "1978-12-05T06:55:10Z", "stop_date": "1992-10-07T18:14:07Z", "xmlid": "pvo_orb_spvso(1)"}, "pvo_orb_spvso2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "pvo_orb_spvso(2)", "dataset": "pvo-orb-pos", "index1": "2", "is_public": "True", "name": "z", "parameter": "pvo_orb_spvso", "start_date": "1978-12-05T06:55:10Z", "stop_date": "1992-10-07T18:14:07Z", "xmlid": "pvo_orb_spvso(2)"}, "size": "3", "start_date": "1978-12-05T06:55:10Z", "stop_date": "1992-10-07T18:14:07Z", "xmlid": "pvo_orb_spvso"}, "pvo_orb_sza": {"__spz_name__": "solar_zenith_angle", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pvo_orb_sza", "dataset": "pvo-orb-pos", "display_type": "timeseries", "is_public": "True", "name": "solar_zenith_angle", "start_date": "1978-12-05T06:55:10Z", "stop_date": "1992-10-07T18:14:07Z", "units": "degrees", "xmlid": "pvo_orb_sza"}, "pvo_orb_xyzvso": {"__spz_name__": "xyz_vso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pvo_orb_xyzvso", "dataset": "pvo-orb-pos", "description": "Pioneer Venus Orbiter trajectory in VSO coordinates", "display_type": "timeseries", "is_public": "True", "name": "xyz_vso", "pvo_orb_xyzvso0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "pvo_orb_xyzvso(0)", "dataset": "pvo-orb-pos", "index1": "0", "is_public": "True", "name": "x", "parameter": "pvo_orb_xyzvso", "start_date": "1978-12-05T06:55:10Z", "stop_date": "1992-10-07T18:14:07Z", "xmlid": "pvo_orb_xyzvso(0)"}, "pvo_orb_xyzvso1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "pvo_orb_xyzvso(1)", "dataset": "pvo-orb-pos", "index1": "1", "is_public": "True", "name": "y", "parameter": "pvo_orb_xyzvso", "start_date": "1978-12-05T06:55:10Z", "stop_date": "1992-10-07T18:14:07Z", "xmlid": "pvo_orb_xyzvso(1)"}, "pvo_orb_xyzvso2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "pvo_orb_xyzvso(2)", "dataset": "pvo-orb-pos", "index1": "2", "is_public": "True", "name": "z", "parameter": "pvo_orb_xyzvso", "start_date": "1978-12-05T06:55:10Z", "stop_date": "1992-10-07T18:14:07Z", "xmlid": "pvo_orb_xyzvso(2)"}, "size": "3", "start_date": "1978-12-05T06:55:10Z", "stop_date": "1992-10-07T18:14:07Z", "ucd": "pos.ephem;instr.obsty", "units": "Rv", "xmlid": "pvo_orb_xyzvso"}, "sampling": "12S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/PioneerVenusOrbiter/Ephemeris/pvo-orb-pos", "start_date": "1978-12-05T06:55:10Z", "stop_date": "1992-10-07T18:14:07Z", "target": "Venus", "xmlid": "pvo-orb-pos"}, "xmlid": "PioneerVenusOrbiter_ephemeris"}, "MAG": {"__spz_name__": "MAG", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "PioneerVenusOrbiter_omag", "att": "auto/PioneerVenusOrbiter_omag", "desc": "OMAG
Magnetometer", "is_public": "True", "name": "MAG", "pvo_mag_12s": {"__spz_name__": "orbits 1-3601", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "pvo-mag-12s", "att": "auto/pvo-mag-12s", "dataSource": "PDS", "desc": "
Sampling: 12S
Provider: PDS", "is_public": "True", "lastModificationDate": "2012-03-06T19:15:48Z", "lastUpdate": "2012-03-06T19:16:30Z", "measurement_type": "MagneticField", "name": "orbits 1-3601", "processing_level": "Calibrated", "pvo_b_12s": {"__spz_name__": "b_sc", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pvo_b_12s", "dataset": "pvo-mag-12s", "description": "Magnetic field vector components in SpaceCraft coordinates", "display_type": "timeseries", "is_public": "True", "name": "b_sc", "pvo_b_12s0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "pvo_b_12s(0)", "dataset": "pvo-mag-12s", "index1": "0", "is_public": "True", "name": "bx", "parameter": "pvo_b_12s", "start_date": "1978-12-05T07:20:18Z", "stop_date": "1988-10-14T14:00:10Z", "xmlid": "pvo_b_12s(0)"}, "pvo_b_12s1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "pvo_b_12s(1)", "dataset": "pvo-mag-12s", "index1": "1", "is_public": "True", "name": "by", "parameter": "pvo_b_12s", "start_date": "1978-12-05T07:20:18Z", "stop_date": "1988-10-14T14:00:10Z", "xmlid": "pvo_b_12s(1)"}, "pvo_b_12s2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "pvo_b_12s(2)", "dataset": "pvo-mag-12s", "index1": "2", "is_public": "True", "name": "bz", "parameter": "pvo_b_12s", "start_date": "1978-12-05T07:20:18Z", "stop_date": "1988-10-14T14:00:10Z", "xmlid": "pvo_b_12s(2)"}, "size": "3", "start_date": "1978-12-05T07:20:18Z", "stop_date": "1988-10-14T14:00:10Z", "ucd": "phys.magField", "units": "nT", "xmlid": "pvo_b_12s"}, "pvo_bmag_12s": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pvo_bmag_12s", "dataset": "pvo-mag-12s", "description": "Magnetic field magnitude", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "1978-12-05T07:20:18Z", "stop_date": "1988-10-14T14:00:10Z", "ucd": "phys.magField", "units": "nT", "xmlid": "pvo_bmag_12s"}, "sampling": "12S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/PioneerVenusOrbiter/MAG/pvo-mag-12s", "start_date": "1978-12-05T07:20:18Z", "stop_date": "1988-10-14T14:00:10Z", "target": "Venus", "xmlid": "pvo-mag-12s"}, "pvo_mag_12s2": {"__spz_name__": "orbits 3602-5055", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "pvo-mag-12s2", "att": "auto/pvo-mag-12s2", "dataSource": "PDS", "desc": "
Sampling: 12S
Provider: PDS", "is_public": "True", "lastModificationDate": "2012-03-06T19:15:22Z", "lastUpdate": "2012-03-06T19:15:25Z", "measurement_type": "MagneticField", "name": "orbits 3602-5055", "processing_level": "Calibrated", "pvo_bz_12s2": {"__spz_name__": "bz_sc", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pvo_bz_12s2", "dataset": "pvo-mag-12s2", "description": "Magnetic field Z-component in SpaceCraft coordinates", "is_public": "True", "name": "bz_sc", "start_date": "1988-10-15T14:00:39Z", "stop_date": "1990-04-17T17:07:58Z", "ucd": "phys.magField", "units": "nT", "xmlid": "pvo_bz_12s2"}, "sampling": "12S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/PioneerVenusOrbiter/MAG/pvo-mag-12s2", "start_date": "1988-10-15T14:00:39Z", "stop_date": "1990-04-17T17:07:58Z", "target": "Venus", "xmlid": "pvo-mag-12s2"}, "xmlid": "PioneerVenusOrbiter_omag"}, "__spz_name__": "PVO", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "PioneerVenusOrbiter", "att": "auto/PioneerVenusOrbiter", "desc": "Pioneer Venus Orbiter
1978-12-05T07:20:07.282Z - 1992-10-08T16:30:39.579", "is_public": "True", "name": "PVO", "rank": "3", "target": "Venus", "xmlid": "PioneerVenusOrbiter"}, "Phobos_2": {"ASPERA": {"__spz_name__": "ASPERA", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Phobos2_aspera", "att": "auto/Phobos2_aspera", "desc": "Automatic Space Plasma Experiment with Rotating Analyzer
MassSpectrometer", "is_public": "True", "name": "ASPERA", "pho_asp_el": {"__spz_name__": "elec spectra", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "pho-asp-el", "att": "auto/pho-asp-el", "dataSource": "IRF", "desc": "
MinSampling: 192S; MaxSampling: 192S
Provider: IRF", "is_public": "True", "lastModificationDate": "2016-08-26T16:55:08Z", "lastUpdate": "2019-12-06T12:02:13Z", "maxSampling": "192S", "measurement_type": "ThermalPlasma", "name": "elec spectra", "pho_el_perp": {"__spz_name__": "e- : perp flow", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pho_el_perp", "dataset": "pho-asp-el", "description": "energy-time spectrogram of electron counts : perpendicular flow", "display_type": "spectrogram", "is_public": "True", "name": "e- : perp flow", "start_date": "1988-07-25T06:21:16Z", "stop_date": "1989-06-19T04:17:28Z", "units": "cnts", "xmlid": "pho_el_perp"}, "pho_el_sun": {"__spz_name__": "e- : sunward flow", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pho_el_sun", "dataset": "pho-asp-el", "description": "energy-time spectrogram of electron counts : sunward flow", "display_type": "spectrogram", "is_public": "True", "name": "e- : sunward flow", "start_date": "1988-07-25T06:21:16Z", "stop_date": "1989-06-19T04:17:28Z", "xmlid": "pho_el_sun"}, "pho_el_tail": {"__spz_name__": "e- : tailward flow", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pho_el_tail", "dataset": "pho-asp-el", "description": "energy-time spectrogram of electron counts : tailward flow", "display_type": "spectrogram", "is_public": "True", "name": "e- : tailward flow", "start_date": "1988-07-25T06:21:16Z", "stop_date": "1989-06-19T04:17:28Z", "units": "cnts", "xmlid": "pho_el_tail"}, "processing_level": "Calibrated", "sampling": "192S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Phobos2/ASPERA/pho-asp-el", "start_date": "1988-07-25T06:21:16Z", "stop_date": "1989-06-19T04:17:28Z", "target": "Mars", "xmlid": "pho-asp-el"}, "pho_asp_ion": {"__spz_name__": "ion spectra", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "pho-asp-ion", "att": "auto/pho-asp-ion", "dataSource": "IRF", "desc": "
MinSampling: 192S; MaxSampling: 192S
Provider: IRF", "is_public": "True", "lastModificationDate": "2016-08-26T17:48:29Z", "lastUpdate": "2019-12-06T11:20:33Z", "maxSampling": "192S", "measurement_type": "ThermalPlasma", "name": "ion spectra", "pho_h_perp": {"__spz_name__": "h+ : perp flow", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pho_h_perp", "dataset": "pho-asp-ion", "description": "energy-time spectrogram of proton counts : perpendicular flow", "display_type": "spectrogram", "is_public": "True", "name": "h+ : perp flow", "start_date": "1988-07-25T06:21:16Z", "stop_date": "1989-06-19T04:17:28Z", "ucd": "phys.flux;phys.atmol.ionStage", "units": "cnts", "xmlid": "pho_h_perp"}, "pho_h_sun": {"__spz_name__": "h+ : sunward flow", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pho_h_sun", "dataset": "pho-asp-ion", "description": "energy-time spectrogram of proton counts : sunward flow", "display_type": "spectrogram", "is_public": "True", "name": "h+ : sunward flow", "start_date": "1988-07-25T06:21:16Z", "stop_date": "1989-06-19T04:17:28Z", "ucd": "phys.flux;phys.atmol.ionStage", "units": "cnts", "xmlid": "pho_h_sun"}, "pho_h_tail": {"__spz_name__": "h+ : tailward flow", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pho_h_tail", "dataset": "pho-asp-ion", "description": "energy-time spectrogram of proton counts : tailward flow", "display_type": "spectrogram", "is_public": "True", "name": "h+ : tailward flow", "start_date": "1988-07-25T06:21:16Z", "stop_date": "1989-06-19T04:17:28Z", "ucd": "phys.flux;phys.atmol.ionStage", "units": "cnts", "xmlid": "pho_h_tail"}, "pho_o_perp": {"__spz_name__": "o+ : perp flow", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pho_o_perp", "dataset": "pho-asp-ion", "description": "energy-time spectrogram of heavy ion counts : perpendicular flow", "display_type": "spectrogram", "is_public": "True", "name": "o+ : perp flow", "start_date": "1988-07-25T06:21:16Z", "stop_date": "1989-06-19T04:17:28Z", "ucd": "phys.flux;phys.atmol.ionStage", "units": "cnts", "xmlid": "pho_o_perp"}, "pho_o_sun": {"__spz_name__": "o+ : sunward flow", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pho_o_sun", "dataset": "pho-asp-ion", "description": "energy-time spectrogram of heavy ion counts : sunward flow", "display_type": "spectrogram", "is_public": "True", "name": "o+ : sunward flow", "start_date": "1988-07-25T06:21:16Z", "stop_date": "1989-06-19T04:17:28Z", "ucd": "phys.flux;phys.atmol.ionStage", "units": "cnts", "xmlid": "pho_o_sun"}, "pho_o_tail": {"__spz_name__": "o+ : tailward flow", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pho_o_tail", "dataset": "pho-asp-ion", "description": "energy-time spectrogram of heavy ion counts : tailward flow", "display_type": "spectrogram", "is_public": "True", "name": "o+ : tailward flow", "start_date": "1988-07-25T06:21:16Z", "stop_date": "1989-06-19T04:17:28Z", "ucd": "phys.flux;phys.atmol.ionStage", "units": "cnts", "xmlid": "pho_o_tail"}, "processing_level": "Calibrated", "sampling": "192S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Phobos2/ASPERA/pho-asp-ion", "start_date": "1988-07-25T06:21:16Z", "stop_date": "1989-06-19T04:17:28Z", "target": "Mars", "xmlid": "pho-asp-ion"}, "xmlid": "Phobos2_aspera"}, "Ephemeris": {"__spz_name__": "Ephemeris", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Phobos2_ephemeris", "att": "auto/Phobos2_ephemeris", "desc": "", "is_public": "True", "name": "Ephemeris", "pho_orb_mso": {"__spz_name__": "orbit", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "pho-orb-mso", "att": "auto/pho-orb-mso", "dataSource": "NAIF", "desc": "
Sampling: 60S
Provider: NAIF", "is_public": "True", "lastModificationDate": "2019-11-15T16:37:44Z", "lastUpdate": "2019-11-15T16:34:04Z", "measurement_type": "Ephemeris", "name": "orbit", "pho2_pho_r": {"__spz_name__": "distance pho2-phobos", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pho2_pho_r", "dataset": "pho-orb-mso", "description": "Distance Phobos2 - Phobos", "display_type": "timeseries", "is_public": "True", "name": "distance pho2-phobos", "start_date": "1989-01-29T13:01:00Z", "stop_date": "1989-03-31T20:52:59Z", "units": "km", "xmlid": "pho2_pho_r"}, "pho2_r": {"__spz_name__": "distance pho2-mars", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pho2_r", "dataset": "pho-orb-mso", "description": "Distance Phobos2 - Mars", "display_type": "timeseries", "is_public": "True", "name": "distance pho2-mars", "start_date": "1989-01-29T13:01:00Z", "stop_date": "1989-03-31T20:52:59Z", "units": "Rm", "xmlid": "pho2_r"}, "pho_xyz_mso": {"__spz_name__": "xyz_mso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pho_xyz_mso", "dataset": "pho-orb-mso", "description": "Spacecraft position in MSO", "display_type": "timeseries", "is_public": "True", "name": "xyz_mso", "pho_xyz_mso0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "pho_xyz_mso(0)", "dataset": "pho-orb-mso", "index1": "0", "is_public": "True", "name": "x", "parameter": "pho_xyz_mso", "start_date": "1989-01-29T13:01:00Z", "stop_date": "1989-03-31T20:52:59Z", "xmlid": "pho_xyz_mso(0)"}, "pho_xyz_mso1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "pho_xyz_mso(1)", "dataset": "pho-orb-mso", "index1": "1", "is_public": "True", "name": "y", "parameter": "pho_xyz_mso", "start_date": "1989-01-29T13:01:00Z", "stop_date": "1989-03-31T20:52:59Z", "xmlid": "pho_xyz_mso(1)"}, "pho_xyz_mso2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "pho_xyz_mso(2)", "dataset": "pho-orb-mso", "index1": "2", "is_public": "True", "name": "z", "parameter": "pho_xyz_mso", "start_date": "1989-01-29T13:01:00Z", "stop_date": "1989-03-31T20:52:59Z", "xmlid": "pho_xyz_mso(2)"}, "size": "3", "start_date": "1989-01-29T13:01:00Z", "stop_date": "1989-03-31T20:52:59Z", "units": "Rm", "xmlid": "pho_xyz_mso"}, "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Phobos2/ephemeris/pho-orb-mso", "start_date": "1989-01-29T13:01:00Z", "stop_date": "1989-03-31T20:52:59Z", "xmlid": "pho-orb-mso"}, "xmlid": "Phobos2_ephemeris"}, "MAG": {"__spz_name__": "MAG", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Phobos2_mag", "att": "auto/Phobos2_mag", "desc": "MAGMA
Magnetometer", "is_public": "True", "name": "MAG", "pho_mag_data": {"__spz_name__": "b field", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "pho-mag-data", "att": "auto/pho-mag-data", "dataSource": "IRF, Sweden", "desc": "
MinSampling: 1.5S; MaxSampling: 45S
Provider: IRF, Sweden", "is_public": "True", "lastModificationDate": "2012-11-15T13:44:46Z", "lastUpdate": "2012-11-15T13:38:35Z", "maxSampling": "45S", "measurement_type": "MagneticField", "name": "b field", "pho_b_mso": {"__spz_name__": "b_mso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pho_b_mso", "dataset": "pho-mag-data", "description": "Magnetic field vector in MSO Cartesian coordinates", "display_type": "timeseries", "is_public": "True", "name": "b_mso", "pho_b_mso0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "pho_b_mso(0)", "dataset": "pho-mag-data", "index1": "0", "is_public": "True", "name": "bx", "parameter": "pho_b_mso", "start_date": "1989-01-30T14:51:06Z", "stop_date": "1989-03-26T12:44:08Z", "xmlid": "pho_b_mso(0)"}, "pho_b_mso1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "pho_b_mso(1)", "dataset": "pho-mag-data", "index1": "1", "is_public": "True", "name": "by", "parameter": "pho_b_mso", "start_date": "1989-01-30T14:51:06Z", "stop_date": "1989-03-26T12:44:08Z", "xmlid": "pho_b_mso(1)"}, "pho_b_mso2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "pho_b_mso(2)", "dataset": "pho-mag-data", "index1": "2", "is_public": "True", "name": "bz", "parameter": "pho_b_mso", "start_date": "1989-01-30T14:51:06Z", "stop_date": "1989-03-26T12:44:08Z", "xmlid": "pho_b_mso(2)"}, "size": "3", "start_date": "1989-01-30T14:51:06Z", "stop_date": "1989-03-26T12:44:08Z", "ucd": "phys.magField", "units": "nT", "xmlid": "pho_b_mso"}, "pho_b_tot": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pho_b_tot", "dataset": "pho-mag-data", "description": "Magnetic field magnitude", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "1989-01-30T14:51:06Z", "stop_date": "1989-03-26T12:44:08Z", "ucd": "phys.magField", "units": "nT", "xmlid": "pho_b_tot"}, "processing_level": "Calibrated", "sampling": "1.5S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Phobos2/MAG/pho-mag-data", "start_date": "1989-01-30T14:51:06Z", "stop_date": "1989-03-26T12:44:08Z", "target": "Mars", "xmlid": "pho-mag-data"}, "xmlid": "Phobos2_mag"}, "__spz_name__": "Phobos-2", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Phobos2", "att": "auto/Phobos2", "desc": "
1988-07-12T00:00:00 - 1989-03-27T00:00:00", "is_public": "True", "name": "Phobos-2", "rank": "8", "target": "Mars", "xmlid": "Phobos2"}, "Pioneer": {"Pioneer_10": {"CPI": {"__spz_name__": "CPI", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Pioneer10_cpi", "att": "auto/Pioneer10_cpi", "desc": "Charged Particle Instrument
Spectrometer", "flyby_jupiter": {"__spz_name__": "flyby jupiter", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "p10-cpi-jup", "is_public": "True", "name": "flyby jupiter", "p10_cpi_ele": {"__spz_name__": "electron flux", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "p10-cpi-ele", "att": "auto/p10-cpi-ele", "dataSource": "ONERA", "desc": "
Sampling: 900S
Provider: ONERA", "is_public": "True", "lastModificationDate": "2012-09-13T17:10:58Z", "lastUpdate": "2012-09-13T17:07:27Z", "measurement_type": "EnergeticParticles", "name": "electron flux", "p10_cpi_feio": {"__spz_name__": "electron int", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "p10_cpi_feio", "dataset": "p10-cpi-ele", "display_type": "timeseries", "is_public": "True", "name": "electron int", "start_date": "1973-11-26T00:22:30Z", "stop_date": "1973-12-17T23:52:30Z", "ucd": "phys.density;phys.electron", "units": "cm-2.sr-1.s-1", "xmlid": "p10_cpi_feio"}, "processing_level": "Calibrated", "sampling": "900S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Pioneer10/CPI/p10-cpi-ele", "start_date": "1973-11-26T00:22:30Z", "stop_date": "1973-12-17T23:52:30Z", "target": "Jupiter", "xmlid": "p10-cpi-ele"}, "p10_cpi_ion": {"__spz_name__": "ion flux", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "p10-cpi-ion", "att": "auto/p10-cpi-ion", "dataSource": "ONERA", "desc": "
Sampling: 900S
Provider: ONERA", "is_public": "True", "lastModificationDate": "2012-09-13T17:56:16Z", "lastUpdate": "2012-09-13T17:54:27Z", "measurement_type": "EnergeticParticles", "name": "ion flux", "p10_cpi_fado": {"__spz_name__": "alpha diff", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "p10_cpi_fado", "dataset": "p10-cpi-ion", "display_type": "timeseries", "is_public": "True", "name": "alpha diff", "start_date": "1973-11-26T00:22:30Z", "stop_date": "1973-12-17T23:52:30Z", "ucd": "phys.flux;phys.atmol.ionStage", "units": "cm-2.sr-1.s-1.MeV-1", "xmlid": "p10_cpi_fado"}, "p10_cpi_fpdo": {"__spz_name__": "proton diff", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "p10_cpi_fpdo", "dataset": "p10-cpi-ion", "display_type": "timeseries", "is_public": "True", "name": "proton diff", "start_date": "1973-11-26T00:22:30Z", "stop_date": "1973-12-17T23:52:30Z", "ucd": "phys.flux;phys.atmol.ionStage", "units": "cm-2.sr-1.s-1.MeV-1", "xmlid": "p10_cpi_fpdo"}, "p10_cpi_fpio": {"__spz_name__": "proton int", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "p10_cpi_fpio", "dataset": "p10-cpi-ion", "display_type": "stackplot", "is_public": "True", "name": "proton int", "p10_cpi_fpio0": {"__spz_name__": "E0", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p10_cpi_fpio(0)", "dataset": "p10-cpi-ion", "index1": "0", "is_public": "True", "name": "E0", "parameter": "p10_cpi_fpio", "start_date": "1973-11-26T00:22:30Z", "stop_date": "1973-12-17T23:52:30Z", "xmlid": "p10_cpi_fpio(0)"}, "p10_cpi_fpio1": {"__spz_name__": "E1", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p10_cpi_fpio(1)", "dataset": "p10-cpi-ion", "index1": "1", "is_public": "True", "name": "E1", "parameter": "p10_cpi_fpio", "start_date": "1973-11-26T00:22:30Z", "stop_date": "1973-12-17T23:52:30Z", "xmlid": "p10_cpi_fpio(1)"}, "size": "2", "start_date": "1973-11-26T00:22:30Z", "stop_date": "1973-12-17T23:52:30Z", "ucd": "phys.flux;phys.atmol.ionStage", "units": "cm-2.sr-1.s-1", "xmlid": "p10_cpi_fpio"}, "processing_level": "Calibrated", "sampling": "900S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Pioneer10/CPI/p10-cpi-ion", "start_date": "1973-11-26T00:22:30Z", "stop_date": "1973-12-17T23:52:30Z", "target": "Jupiter", "xmlid": "p10-cpi-ion"}, "xmlid": "p10-cpi-jup"}, "is_public": "True", "name": "CPI", "xmlid": "Pioneer10_cpi"}, "CRT": {"__spz_name__": "CRT", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Pioneer10_crt", "att": "auto/Pioneer10_crt", "desc": "Cosmic-Ray Telescope
EnergeticParticleInstrument", "flyby_jupiter": {"__spz_name__": "flyby jupiter", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "p10-crt-jup", "is_public": "True", "name": "flyby jupiter", "p10_crt_ele": {"__spz_name__": "electron flux", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "p10-crt-ele", "att": "auto/p10-crt-ele", "dataSource": "ONERA", "desc": "
Sampling: 900S
Provider: ONERA", "is_public": "True", "lastModificationDate": "2012-09-14T09:09:09Z", "lastUpdate": "2012-09-14T09:05:51Z", "measurement_type": "EnergeticParticles", "name": "electron flux", "p10_crt_fedo": {"__spz_name__": "flux_dif", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "p10_crt_fedo", "dataset": "p10-crt-ele", "display_type": "stackplot", "is_public": "True", "name": "flux_dif", "p10_crt_fedo0": {"__spz_name__": "E0", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p10_crt_fedo(0)", "dataset": "p10-crt-ele", "index1": "0", "is_public": "True", "name": "E0", "parameter": "p10_crt_fedo", "start_date": "1973-11-26T00:07:30Z", "stop_date": "1973-12-15T14:52:30Z", "xmlid": "p10_crt_fedo(0)"}, "p10_crt_fedo1": {"__spz_name__": "E1", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p10_crt_fedo(1)", "dataset": "p10-crt-ele", "index1": "1", "is_public": "True", "name": "E1", "parameter": "p10_crt_fedo", "start_date": "1973-11-26T00:07:30Z", "stop_date": "1973-12-15T14:52:30Z", "xmlid": "p10_crt_fedo(1)"}, "p10_crt_fedo2": {"__spz_name__": "E2", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p10_crt_fedo(2)", "dataset": "p10-crt-ele", "index1": "2", "is_public": "True", "name": "E2", "parameter": "p10_crt_fedo", "start_date": "1973-11-26T00:07:30Z", "stop_date": "1973-12-15T14:52:30Z", "xmlid": "p10_crt_fedo(2)"}, "p10_crt_fedo3": {"__spz_name__": "E3", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p10_crt_fedo(3)", "dataset": "p10-crt-ele", "index1": "3", "is_public": "True", "name": "E3", "parameter": "p10_crt_fedo", "start_date": "1973-11-26T00:07:30Z", "stop_date": "1973-12-15T14:52:30Z", "xmlid": "p10_crt_fedo(3)"}, "p10_crt_fedo4": {"__spz_name__": "E4", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p10_crt_fedo(4)", "dataset": "p10-crt-ele", "index1": "4", "is_public": "True", "name": "E4", "parameter": "p10_crt_fedo", "start_date": "1973-11-26T00:07:30Z", "stop_date": "1973-12-15T14:52:30Z", "xmlid": "p10_crt_fedo(4)"}, "size": "5", "start_date": "1973-11-26T00:07:30Z", "stop_date": "1973-12-15T14:52:30Z", "ucd": "phys.flux;phys.electron", "units": "cm-2.sr-1.s-1.MeV-1", "xmlid": "p10_crt_fedo"}, "p10_crt_feio": {"__spz_name__": "flux_int", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "p10_crt_feio", "dataset": "p10-crt-ele", "display_type": "stackplot", "is_public": "True", "name": "flux_int", "p10_crt_feio0": {"__spz_name__": "E0", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p10_crt_feio(0)", "dataset": "p10-crt-ele", "index1": "0", "is_public": "True", "name": "E0", "parameter": "p10_crt_feio", "start_date": "1973-11-26T00:07:30Z", "stop_date": "1973-12-15T14:52:30Z", "xmlid": "p10_crt_feio(0)"}, "p10_crt_feio1": {"__spz_name__": "E1", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p10_crt_feio(1)", "dataset": "p10-crt-ele", "index1": "1", "is_public": "True", "name": "E1", "parameter": "p10_crt_feio", "start_date": "1973-11-26T00:07:30Z", "stop_date": "1973-12-15T14:52:30Z", "xmlid": "p10_crt_feio(1)"}, "size": "2", "start_date": "1973-11-26T00:07:30Z", "stop_date": "1973-12-15T14:52:30Z", "ucd": "phys.density;phys.electron", "units": "cm-2.sr-1.s-1", "xmlid": "p10_crt_feio"}, "processing_level": "Calibrated", "sampling": "900S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Pioneer10/CRT/p10-crt-ele", "start_date": "1973-11-26T00:07:30Z", "stop_date": "1973-12-15T14:52:30Z", "target": "Jupiter", "xmlid": "p10-crt-ele"}, "p10_crt_ion": {"__spz_name__": "ion flux", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "p10-crt-ion", "att": "auto/p10-crt-ion", "dataSource": "ONERA", "desc": "
Sampling: 900S
Provider: ONERA", "is_public": "True", "lastModificationDate": "2012-09-14T09:26:36Z", "lastUpdate": "2012-09-14T09:24:24Z", "measurement_type": "EnergeticParticles", "name": "ion flux", "p10_crt_fpdo": {"__spz_name__": "flux_dif", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "p10_crt_fpdo", "dataset": "p10-crt-ion", "display_type": "stackplot", "is_public": "True", "name": "flux_dif", "p10_crt_fpdo0": {"__spz_name__": "E0", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p10_crt_fpdo(0)", "dataset": "p10-crt-ion", "index1": "0", "is_public": "True", "name": "E0", "parameter": "p10_crt_fpdo", "start_date": "1973-11-26T00:07:30Z", "stop_date": "1973-12-15T21:52:30Z", "xmlid": "p10_crt_fpdo(0)"}, "p10_crt_fpdo1": {"__spz_name__": "E1", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p10_crt_fpdo(1)", "dataset": "p10-crt-ion", "index1": "1", "is_public": "True", "name": "E1", "parameter": "p10_crt_fpdo", "start_date": "1973-11-26T00:07:30Z", "stop_date": "1973-12-15T21:52:30Z", "xmlid": "p10_crt_fpdo(1)"}, "p10_crt_fpdo2": {"__spz_name__": "E2", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p10_crt_fpdo(2)", "dataset": "p10-crt-ion", "index1": "2", "is_public": "True", "name": "E2", "parameter": "p10_crt_fpdo", "start_date": "1973-11-26T00:07:30Z", "stop_date": "1973-12-15T21:52:30Z", "xmlid": "p10_crt_fpdo(2)"}, "size": "3", "start_date": "1973-11-26T00:07:30Z", "stop_date": "1973-12-15T21:52:30Z", "ucd": "phys.flux;phys.atmol.ionStage", "units": "cm-2.sr-1.s-1.MeV-1", "xmlid": "p10_crt_fpdo"}, "p10_crt_fpio": {"__spz_name__": "flux_int", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "p10_crt_fpio", "dataset": "p10-crt-ion", "display_type": "stackplot", "is_public": "True", "name": "flux_int", "p10_crt_fpio0": {"__spz_name__": "E0", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p10_crt_fpio(0)", "dataset": "p10-crt-ion", "index1": "0", "is_public": "True", "name": "E0", "parameter": "p10_crt_fpio", "start_date": "1973-11-26T00:07:30Z", "stop_date": "1973-12-15T21:52:30Z", "xmlid": "p10_crt_fpio(0)"}, "p10_crt_fpio1": {"__spz_name__": "E1", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p10_crt_fpio(1)", "dataset": "p10-crt-ion", "index1": "1", "is_public": "True", "name": "E1", "parameter": "p10_crt_fpio", "start_date": "1973-11-26T00:07:30Z", "stop_date": "1973-12-15T21:52:30Z", "xmlid": "p10_crt_fpio(1)"}, "p10_crt_fpio2": {"__spz_name__": "E2", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p10_crt_fpio(2)", "dataset": "p10-crt-ion", "index1": "2", "is_public": "True", "name": "E2", "parameter": "p10_crt_fpio", "start_date": "1973-11-26T00:07:30Z", "stop_date": "1973-12-15T21:52:30Z", "xmlid": "p10_crt_fpio(2)"}, "p10_crt_fpio3": {"__spz_name__": "E3", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p10_crt_fpio(3)", "dataset": "p10-crt-ion", "index1": "3", "is_public": "True", "name": "E3", "parameter": "p10_crt_fpio", "start_date": "1973-11-26T00:07:30Z", "stop_date": "1973-12-15T21:52:30Z", "xmlid": "p10_crt_fpio(3)"}, "p10_crt_fpio4": {"__spz_name__": "E4", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p10_crt_fpio(4)", "dataset": "p10-crt-ion", "index1": "4", "is_public": "True", "name": "E4", "parameter": "p10_crt_fpio", "start_date": "1973-11-26T00:07:30Z", "stop_date": "1973-12-15T21:52:30Z", "xmlid": "p10_crt_fpio(4)"}, "p10_crt_fpio5": {"__spz_name__": "E5", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p10_crt_fpio(5)", "dataset": "p10-crt-ion", "index1": "5", "is_public": "True", "name": "E5", "parameter": "p10_crt_fpio", "start_date": "1973-11-26T00:07:30Z", "stop_date": "1973-12-15T21:52:30Z", "xmlid": "p10_crt_fpio(5)"}, "p10_crt_fpio6": {"__spz_name__": "E6", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p10_crt_fpio(6)", "dataset": "p10-crt-ion", "index1": "6", "is_public": "True", "name": "E6", "parameter": "p10_crt_fpio", "start_date": "1973-11-26T00:07:30Z", "stop_date": "1973-12-15T21:52:30Z", "xmlid": "p10_crt_fpio(6)"}, "p10_crt_fpio7": {"__spz_name__": "E7", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p10_crt_fpio(7)", "dataset": "p10-crt-ion", "index1": "7", "is_public": "True", "name": "E7", "parameter": "p10_crt_fpio", "start_date": "1973-11-26T00:07:30Z", "stop_date": "1973-12-15T21:52:30Z", "xmlid": "p10_crt_fpio(7)"}, "size": "8", "start_date": "1973-11-26T00:07:30Z", "stop_date": "1973-12-15T21:52:30Z", "ucd": "phys.flux;phys.atmol.ionStage", "units": "cm-2.sr-1.s-1", "xmlid": "p10_crt_fpio"}, "processing_level": "Calibrated", "sampling": "900S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Pioneer10/CRT/p10-crt-ion", "start_date": "1973-11-26T00:07:30Z", "stop_date": "1973-12-15T21:52:30Z", "target": "Jupiter", "xmlid": "p10-crt-ion"}, "xmlid": "p10-crt-jup"}, "is_public": "True", "name": "CRT", "xmlid": "Pioneer10_crt"}, "Ephemeris": {"__spz_name__": "Ephemeris", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Pioneer10_ephemeris", "att": "auto/Pioneer10_ephemeris", "desc": "", "is_public": "True", "name": "Ephemeris", "p10_orb_jup": {"__spz_name__": "orbit jupiter", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "p10-orb-jup", "att": "auto/p10-orb-jup", "dataSource": "PDS", "desc": "
Sampling: 60S
Provider: PDS", "is_public": "True", "lastModificationDate": "2012-03-06T20:14:29Z", "lastUpdate": "2012-03-06T20:14:29Z", "measurement_type": "Ephemeris", "name": "orbit jupiter", "p10_orb_lat": {"__spz_name__": "lat planetographic", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "p10_orb_lat", "dataset": "p10-orb-jup", "description": "Planetographic latitude of the spacecraft", "display_type": "timeseries", "is_public": "True", "name": "lat planetographic", "start_date": "1973-11-03T23:33:59Z", "stop_date": "1973-12-29T23:10:38Z", "ucd": "pos.bodyrc.lat", "units": "deg", "xmlid": "p10_orb_lat"}, "p10_orb_lon": {"__spz_name__": "lon planetographic (east)", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "p10_orb_lon", "dataset": "p10-orb-jup", "description": "Planetographic east longitude of the spacecraft", "display_type": "timeseries", "is_public": "True", "name": "lon planetographic (east)", "start_date": "1973-11-03T23:33:59Z", "stop_date": "1973-12-29T23:10:38Z", "ucd": "pos.bodyrc.lon;instr.obsty", "units": "deg", "xmlid": "p10_orb_lon"}, "p10_orb_lt": {"__spz_name__": "local time", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "p10_orb_lt", "dataset": "p10-orb-jup", "description": "Local Time of the spacecraft", "display_type": "timeseries", "is_public": "True", "name": "local time", "start_date": "1973-11-03T23:33:59Z", "stop_date": "1973-12-29T23:10:38Z", "ucd": "pos.bodyrc.lon;instr.obsty", "units": "hours", "xmlid": "p10_orb_lt"}, "p10_orb_r": {"__spz_name__": "distance p10-jupiter", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "p10_orb_r", "dataset": "p10-orb-jup", "description": "Range of the spacecraft from the Jupiter center of mass", "display_type": "timeseries", "is_public": "True", "name": "distance p10-jupiter", "start_date": "1973-11-03T23:33:59Z", "stop_date": "1973-12-29T23:10:38Z", "ucd": "pos.distance;instr.obsty", "units": "Rj", "xmlid": "p10_orb_r"}, "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Pioneer10/Ephemeris/p10-orb-jup", "start_date": "1973-11-03T23:33:59Z", "stop_date": "1973-12-29T23:10:38Z", "target": "Jupiter", "xmlid": "p10-orb-jup"}, "xmlid": "Pioneer10_ephemeris"}, "GTT": {"__spz_name__": "GTT", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Pioneer10_gtt", "att": "auto/Pioneer10_gtt", "desc": "Geiger Tube Telescope
EnergeticParticleInstrument", "flyby_jupiter": {"__spz_name__": "flyby jupiter", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "p10-gtt-jup", "is_public": "True", "name": "flyby jupiter", "p10_gtt_ele": {"__spz_name__": "electron flux", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "p10-gtt-ele", "att": "auto/p10-gtt-ele", "dataSource": "ONERA", "desc": "
MinSampling: 12S; MaxSampling: 130S
Provider: ONERA", "is_public": "True", "lastModificationDate": "2012-09-13T16:29:56Z", "lastUpdate": "2012-09-13T16:26:47Z", "maxSampling": "130S", "measurement_type": "EnergeticParticles", "name": "electron flux", "p10_gtt_feio": {"__spz_name__": "flux_int", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "p10_gtt_feio", "dataset": "p10-gtt-ele", "display_type": "stackplot", "is_public": "True", "name": "flux_int", "p10_gtt_feio0": {"__spz_name__": "E0", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p10_gtt_feio(0)", "dataset": "p10-gtt-ele", "index1": "0", "is_public": "True", "name": "E0", "parameter": "p10_gtt_feio", "start_date": "1973-11-25T00:00:13Z", "stop_date": "1973-12-18T23:11:15Z", "xmlid": "p10_gtt_feio(0)"}, "p10_gtt_feio1": {"__spz_name__": "E1", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p10_gtt_feio(1)", "dataset": "p10-gtt-ele", "index1": "1", "is_public": "True", "name": "E1", "parameter": "p10_gtt_feio", "start_date": "1973-11-25T00:00:13Z", "stop_date": "1973-12-18T23:11:15Z", "xmlid": "p10_gtt_feio(1)"}, "p10_gtt_feio2": {"__spz_name__": "E2", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p10_gtt_feio(2)", "dataset": "p10-gtt-ele", "index1": "2", "is_public": "True", "name": "E2", "parameter": "p10_gtt_feio", "start_date": "1973-11-25T00:00:13Z", "stop_date": "1973-12-18T23:11:15Z", "xmlid": "p10_gtt_feio(2)"}, "p10_gtt_feio3": {"__spz_name__": "E3", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p10_gtt_feio(3)", "dataset": "p10-gtt-ele", "index1": "3", "is_public": "True", "name": "E3", "parameter": "p10_gtt_feio", "start_date": "1973-11-25T00:00:13Z", "stop_date": "1973-12-18T23:11:15Z", "xmlid": "p10_gtt_feio(3)"}, "p10_gtt_feio4": {"__spz_name__": "E4", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p10_gtt_feio(4)", "dataset": "p10-gtt-ele", "index1": "4", "is_public": "True", "name": "E4", "parameter": "p10_gtt_feio", "start_date": "1973-11-25T00:00:13Z", "stop_date": "1973-12-18T23:11:15Z", "xmlid": "p10_gtt_feio(4)"}, "size": "5", "start_date": "1973-11-25T00:00:13Z", "stop_date": "1973-12-18T23:11:15Z", "ucd": "phys.density;phys.electron", "units": "cm-2.sr-1.s-1", "xmlid": "p10_gtt_feio"}, "processing_level": "Calibrated", "sampling": "12S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Pioneer10/GTT/p10-gtt-ele", "start_date": "1973-11-25T00:00:13Z", "stop_date": "1973-12-18T23:11:15Z", "target": "Jupiter", "xmlid": "p10-gtt-ele"}, "p10_gtt_ion": {"__spz_name__": "ion flux", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "p10-gtt-ion", "att": "auto/p10-gtt-ion", "dataSource": "ONERA", "desc": "
MinSampling: 12S; MaxSampling: 130S
Provider: ONERA", "is_public": "True", "lastModificationDate": "2012-09-13T16:49:20Z", "lastUpdate": "2012-09-13T16:47:05Z", "maxSampling": "130S", "measurement_type": "EnergeticParticles", "name": "ion flux", "p10_gtt_fpdo": {"__spz_name__": "flux_dif", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "p10_gtt_fpdo", "dataset": "p10-gtt-ion", "display_type": "stackplot", "is_public": "True", "name": "flux_dif", "p10_gtt_fpdo0": {"__spz_name__": "E0", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p10_gtt_fpdo(0)", "dataset": "p10-gtt-ion", "index1": "0", "is_public": "True", "name": "E0", "parameter": "p10_gtt_fpdo", "start_date": "1973-11-25T00:00:13Z", "stop_date": "1973-12-18T23:11:15Z", "xmlid": "p10_gtt_fpdo(0)"}, "p10_gtt_fpdo1": {"__spz_name__": "E1", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p10_gtt_fpdo(1)", "dataset": "p10-gtt-ion", "index1": "1", "is_public": "True", "name": "E1", "parameter": "p10_gtt_fpdo", "start_date": "1973-11-25T00:00:13Z", "stop_date": "1973-12-18T23:11:15Z", "xmlid": "p10_gtt_fpdo(1)"}, "p10_gtt_fpdo2": {"__spz_name__": "E2", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p10_gtt_fpdo(2)", "dataset": "p10-gtt-ion", "index1": "2", "is_public": "True", "name": "E2", "parameter": "p10_gtt_fpdo", "start_date": "1973-11-25T00:00:13Z", "stop_date": "1973-12-18T23:11:15Z", "xmlid": "p10_gtt_fpdo(2)"}, "size": "3", "start_date": "1973-11-25T00:00:13Z", "stop_date": "1973-12-18T23:11:15Z", "ucd": "phys.flux;phys.atmol.ionStage", "units": "cm-2.sr-1.s-1.MeV-1", "xmlid": "p10_gtt_fpdo"}, "p10_gtt_fpio": {"__spz_name__": "flux_int", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "p10_gtt_fpio", "dataset": "p10-gtt-ion", "display_type": "stackplot", "is_public": "True", "name": "flux_int", "p10_gtt_fpio0": {"__spz_name__": "E0", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p10_gtt_fpio(0)", "dataset": "p10-gtt-ion", "index1": "0", "is_public": "True", "name": "E0", "parameter": "p10_gtt_fpio", "start_date": "1973-11-25T00:00:13Z", "stop_date": "1973-12-18T23:11:15Z", "xmlid": "p10_gtt_fpio(0)"}, "p10_gtt_fpio1": {"__spz_name__": "E1", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p10_gtt_fpio(1)", "dataset": "p10-gtt-ion", "index1": "1", "is_public": "True", "name": "E1", "parameter": "p10_gtt_fpio", "start_date": "1973-11-25T00:00:13Z", "stop_date": "1973-12-18T23:11:15Z", "xmlid": "p10_gtt_fpio(1)"}, "size": "2", "start_date": "1973-11-25T00:00:13Z", "stop_date": "1973-12-18T23:11:15Z", "ucd": "phys.flux;phys.atmol.ionStage", "units": "cm-2.sr-1.s-1", "xmlid": "p10_gtt_fpio"}, "processing_level": "Calibrated", "sampling": "12S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Pioneer10/GTT/p10-gtt-ion", "start_date": "1973-11-25T00:00:13Z", "stop_date": "1973-12-18T23:11:15Z", "target": "Jupiter", "xmlid": "p10-gtt-ion"}, "xmlid": "p10-gtt-jup"}, "is_public": "True", "name": "GTT", "xmlid": "Pioneer10_gtt"}, "MAG": {"__spz_name__": "MAG", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Pioneer10_mag", "att": "auto/Pioneer10_mag", "desc": "Magnetometer", "flyby_jupiter": {"__spz_name__": "flyby jupiter", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "p10-mag-jup", "is_public": "True", "name": "flyby jupiter", "p10_mag_juphr": {"__spz_name__": "high res", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "p10-mag-juphr", "att": "auto/p10-mag-juphr", "dataSource": "PDS", "desc": "
MinSampling: 0.186S; MaxSampling: 1.5S
Provider: PDS", "is_public": "True", "lastModificationDate": "2012-03-06T20:14:34Z", "lastUpdate": "2012-03-06T20:14:37Z", "maxSampling": "1.5S", "measurement_type": "MagneticField", "name": "high res", "p10_b_juphr": {"__spz_name__": "b_sys3", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "p10_b_juphr", "dataset": "p10-mag-juphr", "description": "Hourly averages of SYS3 components of fine time scale magnetic field vectors", "display_type": "timeseries", "is_public": "True", "name": "b_sys3", "p10_b_juphr0": {"__spz_name__": "br", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p10_b_juphr(0)", "dataset": "p10-mag-juphr", "index1": "0", "is_public": "True", "name": "br", "parameter": "p10_b_juphr", "start_date": "1973-11-24T23:19:36Z", "stop_date": "1973-12-05T23:13:50Z", "xmlid": "p10_b_juphr(0)"}, "p10_b_juphr1": {"__spz_name__": "btheta", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p10_b_juphr(1)", "dataset": "p10-mag-juphr", "index1": "1", "is_public": "True", "name": "btheta", "parameter": "p10_b_juphr", "start_date": "1973-11-24T23:19:36Z", "stop_date": "1973-12-05T23:13:50Z", "xmlid": "p10_b_juphr(1)"}, "p10_b_juphr2": {"__spz_name__": "bphi", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p10_b_juphr(2)", "dataset": "p10-mag-juphr", "index1": "2", "is_public": "True", "name": "bphi", "parameter": "p10_b_juphr", "start_date": "1973-11-24T23:19:36Z", "stop_date": "1973-12-05T23:13:50Z", "xmlid": "p10_b_juphr(2)"}, "size": "3", "start_date": "1973-11-24T23:19:36Z", "stop_date": "1973-12-05T23:13:50Z", "ucd": "phys.magField", "units": "nT", "xmlid": "p10_b_juphr"}, "p10_bmag_juphr": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "p10_bmag_juphr", "dataset": "p10-mag-juphr", "description": "Hourly average of fine time scale magnetic field magnitudes", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "1973-11-24T23:19:36Z", "stop_date": "1973-12-05T23:13:50Z", "ucd": "phys.magField", "units": "nT", "xmlid": "p10_bmag_juphr"}, "processing_level": "Calibrated", "sampling": "0.186S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Pioneer10/MAG/p10-mag-juphr", "start_date": "1973-11-24T23:19:36Z", "stop_date": "1973-12-05T23:13:50Z", "target": "Jupiter", "xmlid": "p10-mag-juphr"}, "p10_mag_jupsys3": {"__spz_name__": "60 sec", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "p10-mag-jupsys3", "att": "auto/p10-mag-jupsys3", "dataSource": "PDS", "desc": "
Sampling: 60S
Provider: PDS", "is_public": "True", "lastModificationDate": "2012-03-06T20:14:37Z", "lastUpdate": "2012-03-06T20:14:37Z", "measurement_type": "MagneticField", "name": "60 sec", "p10_b_jupsys3": {"__spz_name__": "b_sys3", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "p10_b_jupsys3", "dataset": "p10-mag-jupsys3", "description": "Hourly averages of SYS3 components of fine time scale magnetic field vectors", "display_type": "timeseries", "is_public": "True", "name": "b_sys3", "p10_b_jupsys30": {"__spz_name__": "br", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p10_b_jupsys3(0)", "dataset": "p10-mag-jupsys3", "index1": "0", "is_public": "True", "name": "br", "parameter": "p10_b_jupsys3", "start_date": "1973-11-03T23:33:59Z", "stop_date": "1973-12-29T23:10:38Z", "xmlid": "p10_b_jupsys3(0)"}, "p10_b_jupsys31": {"__spz_name__": "btheta", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p10_b_jupsys3(1)", "dataset": "p10-mag-jupsys3", "index1": "1", "is_public": "True", "name": "btheta", "parameter": "p10_b_jupsys3", "start_date": "1973-11-03T23:33:59Z", "stop_date": "1973-12-29T23:10:38Z", "xmlid": "p10_b_jupsys3(1)"}, "p10_b_jupsys32": {"__spz_name__": "bphi", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p10_b_jupsys3(2)", "dataset": "p10-mag-jupsys3", "index1": "2", "is_public": "True", "name": "bphi", "parameter": "p10_b_jupsys3", "start_date": "1973-11-03T23:33:59Z", "stop_date": "1973-12-29T23:10:38Z", "xmlid": "p10_b_jupsys3(2)"}, "size": "3", "start_date": "1973-11-03T23:33:59Z", "stop_date": "1973-12-29T23:10:38Z", "ucd": "phys.magField", "units": "nT", "xmlid": "p10_b_jupsys3"}, "p10_bmag_jupsys3": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "p10_bmag_jupsys3", "dataset": "p10-mag-jupsys3", "description": "Hourly average of fine time scale magnetic field magnitudes", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "1973-11-03T23:33:59Z", "stop_date": "1973-12-29T23:10:38Z", "ucd": "phys.magField", "units": "nT", "xmlid": "p10_bmag_jupsys3"}, "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Pioneer10/MAG/p10-mag-jupsys3", "start_date": "1973-11-03T23:33:59Z", "stop_date": "1973-12-29T23:10:38Z", "target": "Jupiter", "xmlid": "p10-mag-jupsys3"}, "xmlid": "p10-mag-jup"}, "is_public": "True", "name": "MAG", "p10_mag_full": {"__spz_name__": "cruise", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "p10-mag-full", "att": "auto/p10-mag-full", "dataSource": "CDAWeb", "desc": "
Sampling: 1H
Provider: CDAWeb", "is_public": "True", "lastModificationDate": "2012-03-06T20:14:31Z", "lastUpdate": "2012-03-06T20:14:32Z", "measurement_type": "MagneticField", "name": "cruise", "p10_b_full": {"__spz_name__": "b_rtn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "p10_b_full", "dataset": "p10-mag-full", "description": "Hourly averages of RTN components of fine time scale magnetic field vectors", "display_type": "timeseries", "is_public": "True", "name": "b_rtn", "p10_b_full0": {"__spz_name__": "br", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p10_b_full(0)", "dataset": "p10-mag-full", "index1": "0", "is_public": "True", "name": "br", "parameter": "p10_b_full", "start_date": "1972-03-03T00:00:00Z", "stop_date": "1995-12-31T23:00:00Z", "xmlid": "p10_b_full(0)"}, "p10_b_full1": {"__spz_name__": "bt", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p10_b_full(1)", "dataset": "p10-mag-full", "index1": "1", "is_public": "True", "name": "bt", "parameter": "p10_b_full", "start_date": "1972-03-03T00:00:00Z", "stop_date": "1995-12-31T23:00:00Z", "xmlid": "p10_b_full(1)"}, "p10_b_full2": {"__spz_name__": "bn", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p10_b_full(2)", "dataset": "p10-mag-full", "index1": "2", "is_public": "True", "name": "bn", "parameter": "p10_b_full", "start_date": "1972-03-03T00:00:00Z", "stop_date": "1995-12-31T23:00:00Z", "xmlid": "p10_b_full(2)"}, "size": "3", "start_date": "1972-03-03T00:00:00Z", "stop_date": "1995-12-31T23:00:00Z", "ucd": "phys.magField", "units": "nT", "xmlid": "p10_b_full"}, "p10_b_full_phi": {"__spz_name__": "phi", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "p10_b_full_phi", "dataset": "p10-mag-full", "description": "Magnetic field phi angle", "display_type": "timeseries", "is_public": "True", "name": "phi", "start_date": "1972-03-03T00:00:00Z", "stop_date": "1995-12-31T23:00:00Z", "ucd": "phys.magField", "units": "degrees", "xmlid": "p10_b_full_phi"}, "p10_b_full_theta": {"__spz_name__": "theta", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "p10_b_full_theta", "dataset": "p10-mag-full", "description": "Magnetic field theta angle", "display_type": "timeseries", "is_public": "True", "name": "theta", "start_date": "1972-03-03T00:00:00Z", "stop_date": "1995-12-31T23:00:00Z", "ucd": "phys.magField", "units": "degrees", "xmlid": "p10_b_full_theta"}, "p10_bmag_full": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "p10_bmag_full", "dataset": "p10-mag-full", "description": "Hourly average of fine time scale magnetic field magnitudes", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "1972-03-03T00:00:00Z", "stop_date": "1995-12-31T23:00:00Z", "ucd": "phys.magField", "units": "nT", "xmlid": "p10_bmag_full"}, "processing_level": "Calibrated", "sampling": "1H", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Pioneer10/MAG/p10-mag-full", "start_date": "1972-03-03T00:00:00Z", "stop_date": "1995-12-31T23:00:00Z", "target": "Heliosphere", "xmlid": "p10-mag-full"}, "xmlid": "Pioneer10_mag"}, "__spz_name__": "Pioneer 10", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Pioneer10", "att": "auto/Pioneer10", "desc": "1972-012A
1972-03-03T00:00:00 - 1997-03-31T00:00:00", "is_public": "True", "name": "Pioneer 10", "rank": "9", "target": "Jupiter", "xmlid": "Pioneer10"}, "Pioneer_11": {"CPI": {"__spz_name__": "CPI", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Pioneer11_cpi", "att": "auto/Pioneer11_cpi", "desc": "Charged Particle Instrument
Spectrometer", "flyby_jupiter": {"__spz_name__": "flyby jupiter", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "p11-cpi-jup", "is_public": "True", "name": "flyby jupiter", "p11_cpi_ele": {"__spz_name__": "electron flux", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "p11-cpi-ele", "att": "auto/p11-cpi-ele", "dataSource": "ONERA", "desc": "
Sampling: 900S
Provider: ONERA", "is_public": "True", "lastModificationDate": "2012-09-14T11:55:02Z", "lastUpdate": "2012-09-14T11:51:58Z", "measurement_type": "EnergeticParticles", "name": "electron flux", "p11_cpi_feio": {"__spz_name__": "electron int", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "p11_cpi_feio", "dataset": "p11-cpi-ele", "display_type": "timeseries", "is_public": "True", "name": "electron int", "start_date": "1974-11-23T00:07:30Z", "stop_date": "1974-12-11T23:52:30Z", "ucd": "phys.density;phys.electron", "units": "cm-2.sr-1.s-1", "xmlid": "p11_cpi_feio"}, "processing_level": "Calibrated", "sampling": "900S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Pioneer11/CPI/p11-cpi-ele", "start_date": "1974-11-23T00:07:30Z", "stop_date": "1974-12-11T23:52:30Z", "target": "Jupiter", "xmlid": "p11-cpi-ele"}, "p11_cpi_ion": {"__spz_name__": "ion flux", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "p11-cpi-ion", "att": "auto/p11-cpi-ion", "dataSource": "ONERA", "desc": "
Sampling: 900S
Provider: ONERA", "is_public": "True", "lastModificationDate": "2012-09-14T11:58:53Z", "lastUpdate": "2012-09-14T11:57:18Z", "measurement_type": "EnergeticParticles", "name": "ion flux", "p11_cpi_fado": {"__spz_name__": "alpha diff", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "p11_cpi_fado", "dataset": "p11-cpi-ion", "display_type": "timeseries", "is_public": "True", "name": "alpha diff", "start_date": "1974-11-23T00:07:30Z", "stop_date": "1974-12-11T23:52:30Z", "ucd": "phys.flux;phys.atmol.ionStage", "units": "cm-2.sr-1.s-1.MeV-1", "xmlid": "p11_cpi_fado"}, "p11_cpi_faio": {"__spz_name__": "alpha int", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "p11_cpi_faio", "dataset": "p11-cpi-ion", "display_type": "timeseries", "is_public": "True", "name": "alpha int", "start_date": "1974-11-23T00:07:30Z", "stop_date": "1974-12-11T23:52:30Z", "ucd": "phys.flux;phys.atmol.ionStage", "units": "cm-2.sr-1.s-1", "xmlid": "p11_cpi_faio"}, "p11_cpi_fpdo": {"__spz_name__": "proton diff", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "p11_cpi_fpdo", "dataset": "p11-cpi-ion", "display_type": "timeseries", "is_public": "True", "name": "proton diff", "start_date": "1974-11-23T00:07:30Z", "stop_date": "1974-12-11T23:52:30Z", "ucd": "phys.flux;phys.atmol.ionStage", "units": "cm-2.sr-1.s-1.MeV-1", "xmlid": "p11_cpi_fpdo"}, "p11_cpi_fpio": {"__spz_name__": "proton int", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "p11_cpi_fpio", "dataset": "p11-cpi-ion", "display_type": "spectrogram", "is_public": "True", "name": "proton int", "p11_cpi_fpio0": {"__spz_name__": "E0", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p11_cpi_fpio(0)", "dataset": "p11-cpi-ion", "index1": "0", "is_public": "True", "name": "E0", "parameter": "p11_cpi_fpio", "start_date": "1974-11-23T00:07:30Z", "stop_date": "1974-12-11T23:52:30Z", "xmlid": "p11_cpi_fpio(0)"}, "p11_cpi_fpio1": {"__spz_name__": "E1", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p11_cpi_fpio(1)", "dataset": "p11-cpi-ion", "index1": "1", "is_public": "True", "name": "E1", "parameter": "p11_cpi_fpio", "start_date": "1974-11-23T00:07:30Z", "stop_date": "1974-12-11T23:52:30Z", "xmlid": "p11_cpi_fpio(1)"}, "size": "2", "start_date": "1974-11-23T00:07:30Z", "stop_date": "1974-12-11T23:52:30Z", "ucd": "phys.flux;phys.atmol.ionStage", "units": "cm-2.sr-1.s-1", "xmlid": "p11_cpi_fpio"}, "processing_level": "Calibrated", "sampling": "900S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Pioneer11/CPI/p11-cpi-ion", "start_date": "1974-11-23T00:07:30Z", "stop_date": "1974-12-11T23:52:30Z", "target": "Jupiter", "xmlid": "p11-cpi-ion"}, "xmlid": "p11-cpi-jup"}, "is_public": "True", "name": "CPI", "xmlid": "Pioneer11_cpi"}, "CRT": {"__spz_name__": "CRT", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Pioneer11_crt", "att": "auto/Pioneer11_crt", "desc": "Cosmic-Ray Telescope
EnergeticParticleInstrument", "flyby_jupiter": {"__spz_name__": "flyby jupiter", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "p11-crt-jup", "is_public": "True", "name": "flyby jupiter", "p11_crt_ele": {"__spz_name__": "electron flux", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "p11-crt-ele", "att": "auto/p11-crt-ele", "dataSource": "ONERA", "desc": "
Sampling: 900S
Provider: ONERA", "is_public": "True", "lastModificationDate": "2012-09-14T15:27:37Z", "lastUpdate": "2012-09-14T15:25:05Z", "measurement_type": "EnergeticParticles", "name": "electron flux", "p11_crt_fedo": {"__spz_name__": "flux_dif", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "p11_crt_fedo", "dataset": "p11-crt-ele", "display_type": "stackplot", "is_public": "True", "name": "flux_dif", "p11_crt_fedo0": {"__spz_name__": "E0", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p11_crt_fedo(0)", "dataset": "p11-crt-ele", "index1": "0", "is_public": "True", "name": "E0", "parameter": "p11_crt_fedo", "start_date": "1974-11-26T00:07:30Z", "stop_date": "1974-12-09T08:52:30Z", "xmlid": "p11_crt_fedo(0)"}, "p11_crt_fedo1": {"__spz_name__": "E1", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p11_crt_fedo(1)", "dataset": "p11-crt-ele", "index1": "1", "is_public": "True", "name": "E1", "parameter": "p11_crt_fedo", "start_date": "1974-11-26T00:07:30Z", "stop_date": "1974-12-09T08:52:30Z", "xmlid": "p11_crt_fedo(1)"}, "p11_crt_fedo2": {"__spz_name__": "E2", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p11_crt_fedo(2)", "dataset": "p11-crt-ele", "index1": "2", "is_public": "True", "name": "E2", "parameter": "p11_crt_fedo", "start_date": "1974-11-26T00:07:30Z", "stop_date": "1974-12-09T08:52:30Z", "xmlid": "p11_crt_fedo(2)"}, "p11_crt_fedo3": {"__spz_name__": "E3", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p11_crt_fedo(3)", "dataset": "p11-crt-ele", "index1": "3", "is_public": "True", "name": "E3", "parameter": "p11_crt_fedo", "start_date": "1974-11-26T00:07:30Z", "stop_date": "1974-12-09T08:52:30Z", "xmlid": "p11_crt_fedo(3)"}, "p11_crt_fedo4": {"__spz_name__": "E4", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p11_crt_fedo(4)", "dataset": "p11-crt-ele", "index1": "4", "is_public": "True", "name": "E4", "parameter": "p11_crt_fedo", "start_date": "1974-11-26T00:07:30Z", "stop_date": "1974-12-09T08:52:30Z", "xmlid": "p11_crt_fedo(4)"}, "size": "5", "start_date": "1974-11-26T00:07:30Z", "stop_date": "1974-12-09T08:52:30Z", "ucd": "phys.flux;phys.electron", "units": "cm-2.sr-1.s-1.MeV-1", "xmlid": "p11_crt_fedo"}, "p11_crt_feio": {"__spz_name__": "flux_int", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "p11_crt_feio", "dataset": "p11-crt-ele", "display_type": "stackplot", "is_public": "True", "name": "flux_int", "p11_crt_feio0": {"__spz_name__": "E0", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p11_crt_feio(0)", "dataset": "p11-crt-ele", "index1": "0", "is_public": "True", "name": "E0", "parameter": "p11_crt_feio", "start_date": "1974-11-26T00:07:30Z", "stop_date": "1974-12-09T08:52:30Z", "xmlid": "p11_crt_feio(0)"}, "p11_crt_feio1": {"__spz_name__": "E1", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p11_crt_feio(1)", "dataset": "p11-crt-ele", "index1": "1", "is_public": "True", "name": "E1", "parameter": "p11_crt_feio", "start_date": "1974-11-26T00:07:30Z", "stop_date": "1974-12-09T08:52:30Z", "xmlid": "p11_crt_feio(1)"}, "size": "2", "start_date": "1974-11-26T00:07:30Z", "stop_date": "1974-12-09T08:52:30Z", "ucd": "phys.density;phys.electron", "units": "cm-2.sr-1.s-1", "xmlid": "p11_crt_feio"}, "processing_level": "Calibrated", "sampling": "900S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Pioneer11/CRT/p11-crt-ele", "start_date": "1974-11-26T00:07:30Z", "stop_date": "1974-12-09T08:52:30Z", "target": "Jupiter", "xmlid": "p11-crt-ele"}, "p11_crt_ion": {"__spz_name__": "ion flux", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "p11-crt-ion", "att": "auto/p11-crt-ion", "dataSource": "ONERA", "desc": "
Sampling: 900S
Provider: ONERA", "is_public": "True", "lastModificationDate": "2012-09-14T15:29:54Z", "lastUpdate": "2012-09-14T15:28:40Z", "measurement_type": "EnergeticParticles", "name": "ion flux", "p11_crt_fpdo": {"__spz_name__": "flux_dif", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "p11_crt_fpdo", "dataset": "p11-crt-ion", "display_type": "stackplot", "is_public": "True", "name": "flux_dif", "p11_crt_fpdo0": {"__spz_name__": "E0", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p11_crt_fpdo(0)", "dataset": "p11-crt-ion", "index1": "0", "is_public": "True", "name": "E0", "parameter": "p11_crt_fpdo", "start_date": "1974-11-26T00:07:30Z", "stop_date": "1974-12-09T07:52:30Z", "xmlid": "p11_crt_fpdo(0)"}, "p11_crt_fpdo1": {"__spz_name__": "E1", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p11_crt_fpdo(1)", "dataset": "p11-crt-ion", "index1": "1", "is_public": "True", "name": "E1", "parameter": "p11_crt_fpdo", "start_date": "1974-11-26T00:07:30Z", "stop_date": "1974-12-09T07:52:30Z", "xmlid": "p11_crt_fpdo(1)"}, "p11_crt_fpdo2": {"__spz_name__": "E2", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p11_crt_fpdo(2)", "dataset": "p11-crt-ion", "index1": "2", "is_public": "True", "name": "E2", "parameter": "p11_crt_fpdo", "start_date": "1974-11-26T00:07:30Z", "stop_date": "1974-12-09T07:52:30Z", "xmlid": "p11_crt_fpdo(2)"}, "size": "3", "start_date": "1974-11-26T00:07:30Z", "stop_date": "1974-12-09T07:52:30Z", "ucd": "phys.flux;phys.atmol.ionStage", "units": "cm-2.sr-1.s-1.MeV-1", "xmlid": "p11_crt_fpdo"}, "p11_crt_fpio": {"__spz_name__": "flux_int", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "p11_crt_fpio", "dataset": "p11-crt-ion", "display_type": "stackplot", "is_public": "True", "name": "flux_int", "p11_crt_fpio0": {"__spz_name__": "E0", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p11_crt_fpio(0)", "dataset": "p11-crt-ion", "index1": "0", "is_public": "True", "name": "E0", "parameter": "p11_crt_fpio", "start_date": "1974-11-26T00:07:30Z", "stop_date": "1974-12-09T07:52:30Z", "xmlid": "p11_crt_fpio(0)"}, "p11_crt_fpio1": {"__spz_name__": "E1", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p11_crt_fpio(1)", "dataset": "p11-crt-ion", "index1": "1", "is_public": "True", "name": "E1", "parameter": "p11_crt_fpio", "start_date": "1974-11-26T00:07:30Z", "stop_date": "1974-12-09T07:52:30Z", "xmlid": "p11_crt_fpio(1)"}, "p11_crt_fpio2": {"__spz_name__": "E2", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p11_crt_fpio(2)", "dataset": "p11-crt-ion", "index1": "2", "is_public": "True", "name": "E2", "parameter": "p11_crt_fpio", "start_date": "1974-11-26T00:07:30Z", "stop_date": "1974-12-09T07:52:30Z", "xmlid": "p11_crt_fpio(2)"}, "p11_crt_fpio3": {"__spz_name__": "E3", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p11_crt_fpio(3)", "dataset": "p11-crt-ion", "index1": "3", "is_public": "True", "name": "E3", "parameter": "p11_crt_fpio", "start_date": "1974-11-26T00:07:30Z", "stop_date": "1974-12-09T07:52:30Z", "xmlid": "p11_crt_fpio(3)"}, "p11_crt_fpio4": {"__spz_name__": "E4", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p11_crt_fpio(4)", "dataset": "p11-crt-ion", "index1": "4", "is_public": "True", "name": "E4", "parameter": "p11_crt_fpio", "start_date": "1974-11-26T00:07:30Z", "stop_date": "1974-12-09T07:52:30Z", "xmlid": "p11_crt_fpio(4)"}, "p11_crt_fpio5": {"__spz_name__": "E5", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p11_crt_fpio(5)", "dataset": "p11-crt-ion", "index1": "5", "is_public": "True", "name": "E5", "parameter": "p11_crt_fpio", "start_date": "1974-11-26T00:07:30Z", "stop_date": "1974-12-09T07:52:30Z", "xmlid": "p11_crt_fpio(5)"}, "p11_crt_fpio6": {"__spz_name__": "E6", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p11_crt_fpio(6)", "dataset": "p11-crt-ion", "index1": "6", "is_public": "True", "name": "E6", "parameter": "p11_crt_fpio", "start_date": "1974-11-26T00:07:30Z", "stop_date": "1974-12-09T07:52:30Z", "xmlid": "p11_crt_fpio(6)"}, "p11_crt_fpio7": {"__spz_name__": "E7", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p11_crt_fpio(7)", "dataset": "p11-crt-ion", "index1": "7", "is_public": "True", "name": "E7", "parameter": "p11_crt_fpio", "start_date": "1974-11-26T00:07:30Z", "stop_date": "1974-12-09T07:52:30Z", "xmlid": "p11_crt_fpio(7)"}, "size": "8", "start_date": "1974-11-26T00:07:30Z", "stop_date": "1974-12-09T07:52:30Z", "ucd": "phys.flux;phys.atmol.ionStage", "units": "cm-2.sr-1.s-1", "xmlid": "p11_crt_fpio"}, "processing_level": "Calibrated", "sampling": "900S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Pioneer11/CRT/p11-crt-ion", "start_date": "1974-11-26T00:07:30Z", "stop_date": "1974-12-09T07:52:30Z", "target": "Jupiter", "xmlid": "p11-crt-ion"}, "xmlid": "p11-crt-jup"}, "is_public": "True", "name": "CRT", "xmlid": "Pioneer11_crt"}, "Ephemeris": {"__spz_name__": "Ephemeris", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Pioneer11_ephemeris", "att": "auto/Pioneer11_ephemeris", "desc": "", "is_public": "True", "name": "Ephemeris", "p11_orb_jup": {"__spz_name__": "orbit jupiter", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "p11-orb-jup", "att": "auto/p11-orb-jup", "dataSource": "PDS", "desc": "
Sampling: 60S
Provider: PDS", "is_public": "True", "lastModificationDate": "2012-03-06T19:48:48Z", "lastUpdate": "2012-03-06T19:48:48Z", "measurement_type": "Ephemeris", "name": "orbit jupiter", "p11_orb_lat": {"__spz_name__": "lat planetographic", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "p11_orb_lat", "dataset": "p11-orb-jup", "description": "Planetographic latitude of the spacecraft", "display_type": "timeseries", "is_public": "True", "name": "lat planetographic", "start_date": "1974-11-25T23:22:01Z", "stop_date": "1974-12-14T23:17:40Z", "ucd": "pos.bodyrc.lat", "units": "deg", "xmlid": "p11_orb_lat"}, "p11_orb_lon": {"__spz_name__": "lon planetographic (east)", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "p11_orb_lon", "dataset": "p11-orb-jup", "description": "Planetographic east longitude of the spacecraft", "display_type": "timeseries", "is_public": "True", "name": "lon planetographic (east)", "start_date": "1974-11-25T23:22:01Z", "stop_date": "1974-12-14T23:17:40Z", "ucd": "pos.bodyrc.lon;instr.obsty", "units": "deg", "xmlid": "p11_orb_lon"}, "p11_orb_lt": {"__spz_name__": "local time", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "p11_orb_lt", "dataset": "p11-orb-jup", "description": "Local Time of the spacecraft", "display_type": "timeseries", "is_public": "True", "name": "local time", "start_date": "1974-11-25T23:22:01Z", "stop_date": "1974-12-14T23:17:40Z", "ucd": "pos.bodyrc.lon;instr.obsty", "units": "hours", "xmlid": "p11_orb_lt"}, "p11_orb_r": {"__spz_name__": "distance p11-jupiter", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "p11_orb_r", "dataset": "p11-orb-jup", "description": "Range of the spacecraft from the Jupiter center of mass", "display_type": "timeseries", "is_public": "True", "name": "distance p11-jupiter", "start_date": "1974-11-25T23:22:01Z", "stop_date": "1974-12-14T23:17:40Z", "ucd": "pos.distance;instr.obsty", "units": "Rj", "xmlid": "p11_orb_r"}, "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Pioneer11/Ephemeris/p11-orb-jup", "start_date": "1974-11-25T23:22:01Z", "stop_date": "1974-12-14T23:17:40Z", "target": "Jupiter", "xmlid": "p11-orb-jup"}, "xmlid": "Pioneer11_ephemeris"}, "GTT": {"__spz_name__": "GTT", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Pioneer11_gtt", "att": "auto/Pioneer11_gtt", "desc": "Geiger Tube Telescope
EnergeticParticleInstrument", "flyby_jupiter": {"__spz_name__": "flyby jupiter", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "p11-gtt-jup", "is_public": "True", "name": "flyby jupiter", "p11_gtt_ele": {"__spz_name__": "electron flux", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "p11-gtt-ele", "att": "auto/p11-gtt-ele", "dataSource": "ONERA", "desc": "
MinSampling: 12S; MaxSampling: 130S
Provider: ONERA", "is_public": "True", "lastModificationDate": "2012-09-14T10:55:12Z", "lastUpdate": "2012-09-14T10:51:46Z", "maxSampling": "130S", "measurement_type": "EnergeticParticles", "name": "electron flux", "p11_gtt_feio": {"__spz_name__": "flux_int", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "p11_gtt_feio", "dataset": "p11-gtt-ele", "display_type": "stackplot", "is_public": "True", "name": "flux_int", "p11_gtt_feio0": {"__spz_name__": "E0", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p11_gtt_feio(0)", "dataset": "p11-gtt-ele", "index1": "0", "is_public": "True", "name": "E0", "parameter": "p11_gtt_feio", "start_date": "1974-11-23T00:00:13Z", "stop_date": "1974-12-12T23:18:07Z", "xmlid": "p11_gtt_feio(0)"}, "p11_gtt_feio1": {"__spz_name__": "E1", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p11_gtt_feio(1)", "dataset": "p11-gtt-ele", "index1": "1", "is_public": "True", "name": "E1", "parameter": "p11_gtt_feio", "start_date": "1974-11-23T00:00:13Z", "stop_date": "1974-12-12T23:18:07Z", "xmlid": "p11_gtt_feio(1)"}, "p11_gtt_feio2": {"__spz_name__": "E2", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p11_gtt_feio(2)", "dataset": "p11-gtt-ele", "index1": "2", "is_public": "True", "name": "E2", "parameter": "p11_gtt_feio", "start_date": "1974-11-23T00:00:13Z", "stop_date": "1974-12-12T23:18:07Z", "xmlid": "p11_gtt_feio(2)"}, "p11_gtt_feio3": {"__spz_name__": "E3", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p11_gtt_feio(3)", "dataset": "p11-gtt-ele", "index1": "3", "is_public": "True", "name": "E3", "parameter": "p11_gtt_feio", "start_date": "1974-11-23T00:00:13Z", "stop_date": "1974-12-12T23:18:07Z", "xmlid": "p11_gtt_feio(3)"}, "p11_gtt_feio4": {"__spz_name__": "E4", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p11_gtt_feio(4)", "dataset": "p11-gtt-ele", "index1": "4", "is_public": "True", "name": "E4", "parameter": "p11_gtt_feio", "start_date": "1974-11-23T00:00:13Z", "stop_date": "1974-12-12T23:18:07Z", "xmlid": "p11_gtt_feio(4)"}, "size": "5", "start_date": "1974-11-23T00:00:13Z", "stop_date": "1974-12-12T23:18:07Z", "ucd": "phys.density;phys.electron", "units": "cm-2.sr-1.s-1", "xmlid": "p11_gtt_feio"}, "processing_level": "Calibrated", "sampling": "12S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Pioneer11/GTT/p11-gtt-ele", "start_date": "1974-11-23T00:00:13Z", "stop_date": "1974-12-12T23:18:07Z", "target": "Jupiter", "xmlid": "p11-gtt-ele"}, "p11_gtt_ion": {"__spz_name__": "ion flux", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "p11-gtt-ion", "att": "auto/p11-gtt-ion", "dataSource": "ONERA", "desc": "
MinSampling: 12S; MaxSampling: 130S
Provider: ONERA", "is_public": "True", "lastModificationDate": "2012-09-14T10:59:59Z", "lastUpdate": "2012-09-14T10:58:03Z", "maxSampling": "130S", "measurement_type": "EnergeticParticles", "name": "ion flux", "p11_gtt_fpdo": {"__spz_name__": "flux_dif", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "p11_gtt_fpdo", "dataset": "p11-gtt-ion", "display_type": "stackplot", "is_public": "True", "name": "flux_dif", "p11_gtt_fpdo0": {"__spz_name__": "E0", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p11_gtt_fpdo(0)", "dataset": "p11-gtt-ion", "index1": "0", "is_public": "True", "name": "E0", "parameter": "p11_gtt_fpdo", "start_date": "1974-11-23T00:00:13Z", "stop_date": "1974-12-12T23:18:07Z", "xmlid": "p11_gtt_fpdo(0)"}, "p11_gtt_fpdo1": {"__spz_name__": "E1", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p11_gtt_fpdo(1)", "dataset": "p11-gtt-ion", "index1": "1", "is_public": "True", "name": "E1", "parameter": "p11_gtt_fpdo", "start_date": "1974-11-23T00:00:13Z", "stop_date": "1974-12-12T23:18:07Z", "xmlid": "p11_gtt_fpdo(1)"}, "p11_gtt_fpdo2": {"__spz_name__": "E2", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p11_gtt_fpdo(2)", "dataset": "p11-gtt-ion", "index1": "2", "is_public": "True", "name": "E2", "parameter": "p11_gtt_fpdo", "start_date": "1974-11-23T00:00:13Z", "stop_date": "1974-12-12T23:18:07Z", "xmlid": "p11_gtt_fpdo(2)"}, "size": "3", "start_date": "1974-11-23T00:00:13Z", "stop_date": "1974-12-12T23:18:07Z", "ucd": "phys.flux;phys.atmol.ionStage", "units": "cm-2.sr-1.s-1.MeV-1", "xmlid": "p11_gtt_fpdo"}, "p11_gtt_fpio": {"__spz_name__": "flux_int", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "p11_gtt_fpio", "dataset": "p11-gtt-ion", "display_type": "stackplot", "is_public": "True", "name": "flux_int", "p11_gtt_fpio0": {"__spz_name__": "E0", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p11_gtt_fpio(0)", "dataset": "p11-gtt-ion", "index1": "0", "is_public": "True", "name": "E0", "parameter": "p11_gtt_fpio", "start_date": "1974-11-23T00:00:13Z", "stop_date": "1974-12-12T23:18:07Z", "xmlid": "p11_gtt_fpio(0)"}, "p11_gtt_fpio1": {"__spz_name__": "E1", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p11_gtt_fpio(1)", "dataset": "p11-gtt-ion", "index1": "1", "is_public": "True", "name": "E1", "parameter": "p11_gtt_fpio", "start_date": "1974-11-23T00:00:13Z", "stop_date": "1974-12-12T23:18:07Z", "xmlid": "p11_gtt_fpio(1)"}, "size": "2", "start_date": "1974-11-23T00:00:13Z", "stop_date": "1974-12-12T23:18:07Z", "ucd": "phys.flux;phys.atmol.ionStage", "units": "cm-2.sr-1.s-1", "xmlid": "p11_gtt_fpio"}, "processing_level": "Calibrated", "sampling": "12S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Pioneer11/GTT/p11-gtt-ion", "start_date": "1974-11-23T00:00:13Z", "stop_date": "1974-12-12T23:18:07Z", "target": "Jupiter", "xmlid": "p11-gtt-ion"}, "xmlid": "p11-gtt-jup"}, "is_public": "True", "name": "GTT", "xmlid": "Pioneer11_gtt"}, "MAG": {"__spz_name__": "MAG", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Pioneer11_mag", "att": "auto/Pioneer11_mag", "desc": "Magnetometer", "flyby_jupiter": {"__spz_name__": "flyby jupiter", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "p11-mag-jup", "is_public": "True", "name": "flyby jupiter", "p11_mag_juphr": {"__spz_name__": "high res", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "p11-mag-juphr", "att": "auto/p11-mag-juphr", "dataSource": "PDS", "desc": "
MinSampling: 0.093S; MaxSampling: 1.5S
Provider: PDS", "is_public": "True", "lastModificationDate": "2012-03-06T19:49:05Z", "lastUpdate": "2012-03-06T19:49:17Z", "maxSampling": "1.5S", "measurement_type": "MagneticField", "name": "high res", "p11_b_juphr": {"__spz_name__": "b_sys3", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "p11_b_juphr", "dataset": "p11-mag-juphr", "description": "Hourly averages of SYS3 components of fine time scale magnetic field vectors", "display_type": "timeseries", "is_public": "True", "name": "b_sys3", "p11_b_juphr0": {"__spz_name__": "br", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p11_b_juphr(0)", "dataset": "p11-mag-juphr", "index1": "0", "is_public": "True", "name": "br", "parameter": "p11_b_juphr", "start_date": "1974-11-25T23:21:01Z", "stop_date": "1974-12-14T23:18:21Z", "xmlid": "p11_b_juphr(0)"}, "p11_b_juphr1": {"__spz_name__": "btheta", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p11_b_juphr(1)", "dataset": "p11-mag-juphr", "index1": "1", "is_public": "True", "name": "btheta", "parameter": "p11_b_juphr", "start_date": "1974-11-25T23:21:01Z", "stop_date": "1974-12-14T23:18:21Z", "xmlid": "p11_b_juphr(1)"}, "p11_b_juphr2": {"__spz_name__": "bphi", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p11_b_juphr(2)", "dataset": "p11-mag-juphr", "index1": "2", "is_public": "True", "name": "bphi", "parameter": "p11_b_juphr", "start_date": "1974-11-25T23:21:01Z", "stop_date": "1974-12-14T23:18:21Z", "xmlid": "p11_b_juphr(2)"}, "size": "3", "start_date": "1974-11-25T23:21:01Z", "stop_date": "1974-12-14T23:18:21Z", "ucd": "phys.magField", "units": "nT", "xmlid": "p11_b_juphr"}, "p11_bmag_juphr": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "p11_bmag_juphr", "dataset": "p11-mag-juphr", "description": "Hourly average of fine time scale magnetic field magnitudes", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "1974-11-25T23:21:01Z", "stop_date": "1974-12-14T23:18:21Z", "ucd": "phys.magField", "units": "nT", "xmlid": "p11_bmag_juphr"}, "processing_level": "Calibrated", "sampling": "0.093S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Pioneer11/MAG/p11-mag-juphr", "start_date": "1974-11-25T23:21:01Z", "stop_date": "1974-12-14T23:18:21Z", "target": "Jupiter", "xmlid": "p11-mag-juphr"}, "p11_mag_jupsys3": {"__spz_name__": "60 sec", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "p11-mag-jupsys3", "att": "auto/p11-mag-jupsys3", "dataSource": "PDS", "desc": "
Sampling: 60S
Provider: PDS", "is_public": "True", "lastModificationDate": "2012-03-06T19:49:17Z", "lastUpdate": "2012-03-06T19:49:17Z", "measurement_type": "MagneticField", "name": "60 sec", "p11_b_jupsys3": {"__spz_name__": "b_sys3", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "p11_b_jupsys3", "dataset": "p11-mag-jupsys3", "description": "Hourly averages of SYS3 components of fine time scale magnetic field vectors", "display_type": "timeseries", "is_public": "True", "name": "b_sys3", "p11_b_jupsys30": {"__spz_name__": "br", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p11_b_jupsys3(0)", "dataset": "p11-mag-jupsys3", "index1": "0", "is_public": "True", "name": "br", "parameter": "p11_b_jupsys3", "start_date": "1974-11-25T23:22:01Z", "stop_date": "1974-12-14T23:17:40Z", "xmlid": "p11_b_jupsys3(0)"}, "p11_b_jupsys31": {"__spz_name__": "btheta", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p11_b_jupsys3(1)", "dataset": "p11-mag-jupsys3", "index1": "1", "is_public": "True", "name": "btheta", "parameter": "p11_b_jupsys3", "start_date": "1974-11-25T23:22:01Z", "stop_date": "1974-12-14T23:17:40Z", "xmlid": "p11_b_jupsys3(1)"}, "p11_b_jupsys32": {"__spz_name__": "bphi", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p11_b_jupsys3(2)", "dataset": "p11-mag-jupsys3", "index1": "2", "is_public": "True", "name": "bphi", "parameter": "p11_b_jupsys3", "start_date": "1974-11-25T23:22:01Z", "stop_date": "1974-12-14T23:17:40Z", "xmlid": "p11_b_jupsys3(2)"}, "size": "3", "start_date": "1974-11-25T23:22:01Z", "stop_date": "1974-12-14T23:17:40Z", "ucd": "phys.magField", "units": "nT", "xmlid": "p11_b_jupsys3"}, "p11_bmag_jupsys3": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "p11_bmag_jupsys3", "dataset": "p11-mag-jupsys3", "description": "Hourly average of fine time scale magnetic field magnitudes", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "1974-11-25T23:22:01Z", "stop_date": "1974-12-14T23:17:40Z", "ucd": "phys.magField", "units": "nT", "xmlid": "p11_bmag_jupsys3"}, "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Pioneer11/MAG/p11-mag-jupsys3", "start_date": "1974-11-25T23:22:01Z", "stop_date": "1974-12-14T23:17:40Z", "target": "Jupiter", "xmlid": "p11-mag-jupsys3"}, "xmlid": "p11-mag-jup"}, "is_public": "True", "name": "MAG", "p11_mag_full": {"__spz_name__": "cruise", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "p11-mag-full", "att": "auto/p11-mag-full", "dataSource": "CDAWeb", "desc": "
Sampling: 1H
Provider: CDAWeb", "is_public": "True", "lastModificationDate": "2012-03-06T19:48:49Z", "lastUpdate": "2012-03-06T19:48:51Z", "measurement_type": "MagneticField", "name": "cruise", "p11_b_full": {"__spz_name__": "b_rtn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "p11_b_full", "dataset": "p11-mag-full", "description": "Hourly averages of RTN components of fine time scale magnetic field vectors", "display_type": "timeseries", "is_public": "True", "name": "b_rtn", "p11_b_full0": {"__spz_name__": "br", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p11_b_full(0)", "dataset": "p11-mag-full", "index1": "0", "is_public": "True", "name": "br", "parameter": "p11_b_full", "start_date": "1973-04-06T00:00:00Z", "stop_date": "1992-08-01T23:00:00Z", "xmlid": "p11_b_full(0)"}, "p11_b_full1": {"__spz_name__": "bt", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p11_b_full(1)", "dataset": "p11-mag-full", "index1": "1", "is_public": "True", "name": "bt", "parameter": "p11_b_full", "start_date": "1973-04-06T00:00:00Z", "stop_date": "1992-08-01T23:00:00Z", "xmlid": "p11_b_full(1)"}, "p11_b_full2": {"__spz_name__": "bn", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "p11_b_full(2)", "dataset": "p11-mag-full", "index1": "2", "is_public": "True", "name": "bn", "parameter": "p11_b_full", "start_date": "1973-04-06T00:00:00Z", "stop_date": "1992-08-01T23:00:00Z", "xmlid": "p11_b_full(2)"}, "size": "3", "start_date": "1973-04-06T00:00:00Z", "stop_date": "1992-08-01T23:00:00Z", "ucd": "phys.magField", "units": "nT", "xmlid": "p11_b_full"}, "p11_b_full_phi": {"__spz_name__": "phi", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "p11_b_full_phi", "dataset": "p11-mag-full", "description": "Magnetic field phi angle", "display_type": "timeseries", "is_public": "True", "name": "phi", "start_date": "1973-04-06T00:00:00Z", "stop_date": "1992-08-01T23:00:00Z", "ucd": "phys.magField", "units": "degrees", "xmlid": "p11_b_full_phi"}, "p11_b_full_theta": {"__spz_name__": "theta", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "p11_b_full_theta", "dataset": "p11-mag-full", "description": "Magnetic field theta angle", "display_type": "timeseries", "is_public": "True", "name": "theta", "start_date": "1973-04-06T00:00:00Z", "stop_date": "1992-08-01T23:00:00Z", "ucd": "phys.magField", "units": "degrees", "xmlid": "p11_b_full_theta"}, "p11_bmag_full": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "p11_bmag_full", "dataset": "p11-mag-full", "description": "Hourly average of fine time scale magnetic field magnitudes", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "1973-04-06T00:00:00Z", "stop_date": "1992-08-01T23:00:00Z", "ucd": "phys.magField", "units": "nT", "xmlid": "p11_bmag_full"}, "processing_level": "Calibrated", "sampling": "1H", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Pioneer11/MAG/p11-mag-full", "start_date": "1973-04-06T00:00:00Z", "stop_date": "1992-08-01T23:00:00Z", "target": "Heliosphere", "xmlid": "p11-mag-full"}, "xmlid": "Pioneer11_mag"}, "__spz_name__": "Pioneer 11", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Pioneer11", "att": "auto/Pioneer11", "desc": "1973-019A
1973-04-06T00:00:00 - 1995-09-30T00:00:00", "is_public": "True", "name": "Pioneer 11", "rank": "4", "target": "Heliosphere.NearEarth", "xmlid": "Pioneer11"}, "__spz_name__": "Pioneer", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Pioneer", "att": "auto/Pioneer", "desc": "The Pioneer Missions
1972-03-03T00:00:00 - 1997-03-31T00:00:00", "is_public": "True", "name": "Pioneer", "rank": "99", "target": "Heliosphere", "xmlid": "Pioneer"}, "Planets_Properties": {"Earth": {"__spz_name__": "Earth", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "PlanetsProperties_earth", "att": "auto/PlanetsProperties_earth", "desc": "Unspecified", "earth_info_mag": {"__spz_name__": "earth dipole", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "earth-info-mag", "att": "auto/earth-info-mag", "dataSource": "IRAP", "desc": "Geomagnetic Properties
Sampling: 1M
Provider: IRAP", "is_public": "True", "lastUpdate": "2020-07-31T00:00:00Z", "measurement_type": "MagneticField", "name": "earth dipole", "processing_level": "Calibrated", "roll_angle_60": {"__spz_name__": "roll angle", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "roll_angle_60", "dataset": "earth-info-mag", "description": "The angle between the projection of the Earth magnetic moment on the\n YZGSE plane and the ZGSE direction", "is_public": "True", "name": "roll angle", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2025-01-01T00:00:00Z", "units": "deg", "xmlid": "roll_angle_60"}, "sampling": "1M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Planets/Earth/earth-info-mag", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2025-01-01T00:00:00Z", "target": "Earth", "tilt_angle_60": {"__spz_name__": "tilt angle", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "tilt_angle_60", "dataset": "earth-info-mag", "description": "The angle between the ZSM (the opposite of the Earth magnetic moment) and ZGSM\n directions", "is_public": "True", "name": "tilt angle", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2025-01-01T00:00:00Z", "units": "deg", "xmlid": "tilt_angle_60"}, "xmlid": "earth-info-mag"}, "is_public": "True", "name": "Earth", "rank": "6", "xmlid": "PlanetsProperties_earth"}, "__spz_name__": "Planets Properties", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "PlanetsProperties", "att": "auto/PlanetsProperties", "desc": "
1970-01-01T00:00:00", "is_public": "True", "name": "Planets Properties", "rank": "99", "target": "Heliosphere", "xmlid": "PlanetsProperties"}, "Polar": {"Analytical_Models": {"__spz_name__": "Analytical Models", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "POLAR_models", "att": "auto/POLAR_models", "desc": "", "is_public": "True", "name": "Analytical Models", "plr_msph_models": {"PriorID": "plr-orb-all", "__spz_name__": "distance to neutral sheet", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "plr-msph-models", "att": "auto/plr-msph-models", "dataSource": "IRAP", "desc": "Distance to model neutral sheet
Sampling: 1M
Provider: IRAP", "dz_fairfield70_plr_xyz": {"__spz_name__": "dZ Fairfield70", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "dz_fairfield70_plr_xyz", "dataset": "plr-msph-models", "description": "Distance (Re) from s/c location to Fairfield1970 neutral sheet position. Depends on spacecraft location in SM coordinates and dipole tilt angle. Valid for Ysm less than 15 Re.", "is_public": "True", "name": "dZ Fairfield70", "predefined": "1", "start_date": "1996-02-27T00:00:00Z", "stop_date": "2008-02-16T23:59:00Z", "template": "dz_fairfield70_##ORBIT##", "units": "Re", "xmlid": "dz_fairfield70_plr_xyz"}, "dz_fairfield80_plr_xyz": {"__spz_name__": "dZ Fairfield80", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "dz_fairfield80_plr_xyz", "dataset": "plr-msph-models", "description": "Distance (Re) from s/c location to Fairfield1980 neutral sheet position. Depends on spacecraft location in SM coordinates and dipole tilt angle.", "is_public": "True", "name": "dZ Fairfield80", "predefined": "1", "start_date": "1996-02-27T00:00:00Z", "stop_date": "2008-02-16T23:59:00Z", "template": "dz_fairfield80_##ORBIT##", "units": "Re", "xmlid": "dz_fairfield80_plr_xyz"}, "is_public": "True", "lastModificationDate": "2012-03-06T20:30:21Z", "lastUpdate": "2012-03-06T20:31:03Z", "measurement_type": "Ephemeris", "name": "distance to neutral sheet", "processing_level": "Calibrated", "sampling": "1M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/POLAR/Models/plr-msph-models", "start_date": "1996-02-27T00:00:00Z", "stop_date": "2008-02-16T23:59:00Z", "target": "Earth", "xmlid": "plr-msph-models"}, "plr_t96_model": {"PriorID": "plr-orb-all", "__spz_name__": "T96 field model", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "plr-t96-model", "att": "auto/plr-t96-model", "b_t96gse_plr_xyz": {"__spz_name__": "b_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_t96gse_plr_xyz", "b_t96gse_plr_xyz0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gse_plr_xyz(0)", "dataset": "plr-t96-model", "index1": "0", "is_public": "True", "name": "bx", "parameter": "b_t96gse_plr_xyz", "start_date": "1996-02-27T00:00:00Z", "stop_date": "2008-02-16T23:59:00Z", "xmlid": "b_t96gse_plr_xyz(0)"}, "b_t96gse_plr_xyz1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gse_plr_xyz(1)", "dataset": "plr-t96-model", "index1": "1", "is_public": "True", "name": "by", "parameter": "b_t96gse_plr_xyz", "start_date": "1996-02-27T00:00:00Z", "stop_date": "2008-02-16T23:59:00Z", "xmlid": "b_t96gse_plr_xyz(1)"}, "b_t96gse_plr_xyz2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gse_plr_xyz(2)", "dataset": "plr-t96-model", "index1": "2", "is_public": "True", "name": "bz", "parameter": "b_t96gse_plr_xyz", "start_date": "1996-02-27T00:00:00Z", "stop_date": "2008-02-16T23:59:00Z", "xmlid": "b_t96gse_plr_xyz(2)"}, "dataset": "plr-t96-model", "is_public": "True", "name": "b_gse", "predefined": "1", "size": "3", "start_date": "1996-02-27T00:00:00Z", "stop_date": "2008-02-16T23:59:00Z", "template": "b_t96gse_##ORBIT##", "units": "nT", "xmlid": "b_t96gse_plr_xyz"}, "b_t96gsm_plr_xyz": {"__spz_name__": "b_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_t96gsm_plr_xyz", "b_t96gsm_plr_xyz0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gsm_plr_xyz(0)", "dataset": "plr-t96-model", "index1": "0", "is_public": "True", "name": "bx", "parameter": "b_t96gsm_plr_xyz", "start_date": "1996-02-27T00:00:00Z", "stop_date": "2008-02-16T23:59:00Z", "xmlid": "b_t96gsm_plr_xyz(0)"}, "b_t96gsm_plr_xyz1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gsm_plr_xyz(1)", "dataset": "plr-t96-model", "index1": "1", "is_public": "True", "name": "by", "parameter": "b_t96gsm_plr_xyz", "start_date": "1996-02-27T00:00:00Z", "stop_date": "2008-02-16T23:59:00Z", "xmlid": "b_t96gsm_plr_xyz(1)"}, "b_t96gsm_plr_xyz2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gsm_plr_xyz(2)", "dataset": "plr-t96-model", "index1": "2", "is_public": "True", "name": "bz", "parameter": "b_t96gsm_plr_xyz", "start_date": "1996-02-27T00:00:00Z", "stop_date": "2008-02-16T23:59:00Z", "xmlid": "b_t96gsm_plr_xyz(2)"}, "dataset": "plr-t96-model", "is_public": "True", "name": "b_gsm", "predefined": "1", "size": "3", "start_date": "1996-02-27T00:00:00Z", "stop_date": "2008-02-16T23:59:00Z", "template": "b_t96gsm_##ORBIT##", "units": "nT", "xmlid": "b_t96gsm_plr_xyz"}, "b_t96tot_plr_xyz": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_t96tot_plr_xyz", "dataset": "plr-t96-model", "is_public": "True", "name": "|b|", "predefined": "1", "start_date": "1996-02-27T00:00:00Z", "stop_date": "2008-02-16T23:59:00Z", "template": "b_t96tot_##ORBIT##", "units": "nT", "xmlid": "b_t96tot_plr_xyz"}, "dataSource": "IRAP", "desc": "Tsyganenko96 geomagnetospheric magnetic field model
Sampling: 1M
Provider: IRAP", "is_public": "True", "lastModificationDate": "2012-03-06T20:30:21Z", "lastUpdate": "2012-03-06T20:31:03Z", "measurement_type": "MagneticField", "name": "T96 field model", "processing_level": "Calibrated", "sampling": "1M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/POLAR/Models/plr-t96-model", "start_date": "1996-02-27T00:00:00Z", "stop_date": "2008-02-16T23:59:00Z", "target": "Earth", "xmlid": "plr-t96-model"}, "xmlid": "POLAR_models"}, "Ephemeris": {"__spz_name__": "Ephemeris", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "POLAR_ephemeris", "att": "auto/POLAR_ephemeris", "desc": "", "is_public": "True", "name": "Ephemeris", "plr_orb_all": {"__spz_name__": "orbit", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "plr-orb-all", "att": "auto/plr-orb-all", "dataSource": "CDAWeb", "desc": "
Sampling: 60S
Provider: CDAWeb", "is_public": "True", "lastModificationDate": "2012-03-06T20:30:21Z", "lastUpdate": "2012-03-06T20:31:03Z", "measurement_type": "Ephemeris", "name": "orbit", "plr_r": {"__spz_name__": "distance polar-earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "plr_r", "dataset": "plr-orb-all", "display_type": "timeseries", "is_public": "True", "name": "distance polar-earth", "start_date": "1996-02-27T00:00:00Z", "stop_date": "2008-02-16T23:59:00Z", "ucd": "pos.distance;instr.obsty", "xmlid": "plr_r"}, "plr_xyz": {"__spz_name__": "xyz_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "plr_xyz", "dataset": "plr-orb-all", "display_type": "timeseries", "is_public": "True", "name": "xyz_gse", "plr_xyz0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "plr_xyz(0)", "dataset": "plr-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "plr_xyz", "start_date": "1996-02-27T00:00:00Z", "stop_date": "2008-02-16T23:59:00Z", "xmlid": "plr_xyz(0)"}, "plr_xyz1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "plr_xyz(1)", "dataset": "plr-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "plr_xyz", "start_date": "1996-02-27T00:00:00Z", "stop_date": "2008-02-16T23:59:00Z", "xmlid": "plr_xyz(1)"}, "plr_xyz2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "plr_xyz(2)", "dataset": "plr-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "plr_xyz", "start_date": "1996-02-27T00:00:00Z", "stop_date": "2008-02-16T23:59:00Z", "xmlid": "plr_xyz(2)"}, "size": "3", "start_date": "1996-02-27T00:00:00Z", "stop_date": "2008-02-16T23:59:00Z", "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "Re", "xmlid": "plr_xyz"}, "plr_xyz_gsm": {"__spz_name__": "xyz_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "plr_xyz_gsm", "dataset": "plr-orb-all", "display_type": "timeseries", "is_public": "True", "name": "xyz_gsm", "plr_xyz_gsm0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "plr_xyz_gsm(0)", "dataset": "plr-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "plr_xyz_gsm", "start_date": "1996-02-27T00:00:00Z", "stop_date": "2008-02-16T23:59:00Z", "xmlid": "plr_xyz_gsm(0)"}, "plr_xyz_gsm1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "plr_xyz_gsm(1)", "dataset": "plr-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "plr_xyz_gsm", "start_date": "1996-02-27T00:00:00Z", "stop_date": "2008-02-16T23:59:00Z", "xmlid": "plr_xyz_gsm(1)"}, "plr_xyz_gsm2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "plr_xyz_gsm(2)", "dataset": "plr-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "plr_xyz_gsm", "start_date": "1996-02-27T00:00:00Z", "stop_date": "2008-02-16T23:59:00Z", "xmlid": "plr_xyz_gsm(2)"}, "size": "3", "start_date": "1996-02-27T00:00:00Z", "stop_date": "2008-02-16T23:59:00Z", "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "Re", "xmlid": "plr_xyz_gsm"}, "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/POLAR/Ephemeris/plr-orb-all", "start_date": "1996-02-27T00:00:00Z", "stop_date": "2008-02-16T23:59:00Z", "xmlid": "plr-orb-all"}, "xmlid": "POLAR_ephemeris"}, "HYDRA": {"__spz_name__": "HYDRA", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "POLAR_hydra", "att": "auto/POLAR_hydra", "desc": "Hot Plasma Analyzer (Hydra)
ElectrostaticAnalyser", "is_public": "True", "name": "HYDRA", "plr_hyd_h0": {"__spz_name__": "ion and electron fluxes", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "plr-hyd-h0", "att": "auto/plr-hyd-h0", "dataSource": "CDAWeb", "desc": "Polar HYDRA 13.8s spectra
Sampling: 13.8S
Provider: CDAWeb", "is_public": "True", "lastModificationDate": "2020-12-07T18:27:08Z", "lastUpdate": "2020-12-08T10:29:31Z", "measurement_type": "ThermalPlasma", "name": "ion and electron fluxes", "plr_hyd_h0edef": {"__spz_name__": "e- flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "plr_hyd_h0edef", "dataset": "plr-hyd-h0", "display_type": "spectrogram", "is_public": "True", "name": "e- flux", "start_date": "1996-03-20T00:00:06Z", "stop_date": "2008-03-31T23:59:52Z", "units": "1/(cm\u00b2-s-sr)", "xmlid": "plr_hyd_h0edef"}, "plr_hyd_h0idef": {"__spz_name__": "ion flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "plr_hyd_h0idef", "dataset": "plr-hyd-h0", "display_type": "spectrogram", "is_public": "True", "name": "ion flux", "start_date": "1996-03-20T00:00:06Z", "stop_date": "2008-03-31T23:59:52Z", "units": "1/(cm\u00b2-s-sr)", "xmlid": "plr_hyd_h0idef"}, "processing_level": "Calibrated", "sampling": "13.8S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/POLAR/Hydra/plr-hyd-h0", "start_date": "1996-03-20T00:00:06Z", "stop_date": "2008-03-31T23:59:52Z", "xmlid": "plr-hyd-h0"}, "plr_hyd_mom": {"__spz_name__": "plasma moments", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "plr-hyd-mom", "att": "auto/plr-hyd-mom", "dataSource": "CDAWeb", "desc": "Polar Fast Plasma Analyzer 13.8 second Resolution Moments
Sampling: 14S
Provider: CDAWeb", "is_public": "True", "lastModificationDate": "2020-11-13T14:21:17Z", "lastUpdate": "2020-11-13T13:47:56Z", "measurement_type": "ThermalPlasma", "name": "plasma moments", "plr_el_n": {"__spz_name__": "e- density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "plr_el_n", "dataset": "plr-hyd-mom", "display_type": "timeseries", "is_public": "True", "name": "e- density", "start_date": "1996-03-20T14:38:27Z", "stop_date": "2008-04-15T21:00:18Z", "units": "cm\u207b\u00b3", "xmlid": "plr_el_n"}, "plr_el_t_para": {"__spz_name__": "e- t_para", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "plr_el_t_para", "dataset": "plr-hyd-mom", "description": "Electron Moment Parallel Mean Energy in eV", "display_type": "timeseries", "is_public": "True", "name": "e- t_para", "start_date": "1996-03-20T14:38:27Z", "stop_date": "2008-04-15T21:00:18Z", "units": "eV", "xmlid": "plr_el_t_para"}, "plr_el_t_perp": {"__spz_name__": "e- t_perp", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "plr_el_t_perp", "dataset": "plr-hyd-mom", "description": "Electron Moment Perpendicular Mean Energy in eV", "display_type": "timeseries", "is_public": "True", "name": "e- t_perp", "start_date": "1996-03-20T14:38:27Z", "stop_date": "2008-04-15T21:00:18Z", "units": "eV", "xmlid": "plr_el_t_perp"}, "plr_el_v_gsm": {"__spz_name__": "e- v_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "plr_el_v_gsm", "dataset": "plr-hyd-mom", "display_type": "timeseries", "is_public": "True", "name": "e- v_gsm", "plr_el_v_gsm0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "plr_el_v_gsm(0)", "dataset": "plr-hyd-mom", "index1": "0", "is_public": "True", "name": "vx", "parameter": "plr_el_v_gsm", "start_date": "1996-03-20T14:38:27Z", "stop_date": "2008-04-15T21:00:18Z", "xmlid": "plr_el_v_gsm(0)"}, "plr_el_v_gsm1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "plr_el_v_gsm(1)", "dataset": "plr-hyd-mom", "index1": "1", "is_public": "True", "name": "vy", "parameter": "plr_el_v_gsm", "start_date": "1996-03-20T14:38:27Z", "stop_date": "2008-04-15T21:00:18Z", "xmlid": "plr_el_v_gsm(1)"}, "plr_el_v_gsm2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "plr_el_v_gsm(2)", "dataset": "plr-hyd-mom", "index1": "2", "is_public": "True", "name": "vz", "parameter": "plr_el_v_gsm", "start_date": "1996-03-20T14:38:27Z", "stop_date": "2008-04-15T21:00:18Z", "xmlid": "plr_el_v_gsm(2)"}, "size": "3", "start_date": "1996-03-20T14:38:27Z", "stop_date": "2008-04-15T21:00:18Z", "units": "km/s", "xmlid": "plr_el_v_gsm"}, "plr_i_t_para": {"__spz_name__": "ion t_para", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "plr_i_t_para", "dataset": "plr-hyd-mom", "description": "Ion Moment Parallel Mean Energy in eV", "display_type": "timeseries", "is_public": "True", "name": "ion t_para", "start_date": "1996-03-20T14:38:27Z", "stop_date": "2008-04-15T21:00:18Z", "units": "eV", "xmlid": "plr_i_t_para"}, "plr_i_t_perp": {"__spz_name__": "ion t_perp", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "plr_i_t_perp", "dataset": "plr-hyd-mom", "description": "Ion Moment Perpendicular Mean Energy in eV", "display_type": "timeseries", "is_public": "True", "name": "ion t_perp", "start_date": "1996-03-20T14:38:27Z", "stop_date": "2008-04-15T21:00:18Z", "units": "eV", "xmlid": "plr_i_t_perp"}, "plr_i_v_gsm": {"__spz_name__": "ion v_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "plr_i_v_gsm", "dataset": "plr-hyd-mom", "description": "Ion Bulk_Velocity in km/s", "display_type": "timeseries", "is_public": "True", "name": "ion v_gsm", "plr_i_v_gsm0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "plr_i_v_gsm(0)", "dataset": "plr-hyd-mom", "index1": "0", "is_public": "True", "name": "vx", "parameter": "plr_i_v_gsm", "start_date": "1996-03-20T14:38:27Z", "stop_date": "2008-04-15T21:00:18Z", "xmlid": "plr_i_v_gsm(0)"}, "plr_i_v_gsm1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "plr_i_v_gsm(1)", "dataset": "plr-hyd-mom", "index1": "1", "is_public": "True", "name": "vy", "parameter": "plr_i_v_gsm", "start_date": "1996-03-20T14:38:27Z", "stop_date": "2008-04-15T21:00:18Z", "xmlid": "plr_i_v_gsm(1)"}, "plr_i_v_gsm2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "plr_i_v_gsm(2)", "dataset": "plr-hyd-mom", "index1": "2", "is_public": "True", "name": "vz", "parameter": "plr_i_v_gsm", "start_date": "1996-03-20T14:38:27Z", "stop_date": "2008-04-15T21:00:18Z", "xmlid": "plr_i_v_gsm(2)"}, "size": "3", "start_date": "1996-03-20T14:38:27Z", "stop_date": "2008-04-15T21:00:18Z", "units": "km/s", "xmlid": "plr_i_v_gsm"}, "plr_n_ion": {"__spz_name__": "ion density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "plr_n_ion", "dataset": "plr-hyd-mom", "description": "Ion Moment Density", "display_type": "timeseries", "is_public": "True", "name": "ion density", "start_date": "1996-03-20T14:38:27Z", "stop_date": "2008-04-15T21:00:18Z", "units": "cm\u207b\u00b3", "xmlid": "plr_n_ion"}, "processing_level": "Calibrated", "sampling": "14S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/POLAR/Hydra/plr-hyd-mom", "start_date": "1996-03-20T14:38:27Z", "stop_date": "2008-04-15T21:00:18Z", "xmlid": "plr-hyd-mom"}, "xmlid": "POLAR_hydra"}, "MFE": {"__spz_name__": "MFE", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "POLAR_mfe", "att": "auto/POLAR_mfe", "desc": "Magnetic Fields Experiment
Magnetometer", "is_public": "True", "name": "MFE", "plr_mfe_k0": {"__spz_name__": "key parameters", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "plr-mfe-k0", "att": "auto/plr-mfe-k0", "dataSource": "CDAWeb", "desc": "MFE Key Parameters
Sampling: 55.2S
Provider: CDAWeb", "is_public": "True", "lastModificationDate": "2012-03-06T20:31:15Z", "lastUpdate": "2012-03-06T20:31:45Z", "measurement_type": "MagneticField", "name": "key parameters", "plr_b": {"__spz_name__": "b_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "plr_b", "dataset": "plr-mfe-k0", "description": "Observed vector magnetic field in cartesian GSE (0.92 min res.)", "display_type": "timeseries", "is_public": "True", "name": "b_gse", "plr_b0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "plr_b(0)", "dataset": "plr-mfe-k0", "index1": "0", "is_public": "True", "name": "bx", "parameter": "plr_b", "start_date": "1996-03-16T00:00:55Z", "stop_date": "2006-05-31T23:59:48Z", "xmlid": "plr_b(0)"}, "plr_b1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "plr_b(1)", "dataset": "plr-mfe-k0", "index1": "1", "is_public": "True", "name": "by", "parameter": "plr_b", "start_date": "1996-03-16T00:00:55Z", "stop_date": "2006-05-31T23:59:48Z", "xmlid": "plr_b(1)"}, "plr_b2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "plr_b(2)", "dataset": "plr-mfe-k0", "index1": "2", "is_public": "True", "name": "bz", "parameter": "plr_b", "start_date": "1996-03-16T00:00:55Z", "stop_date": "2006-05-31T23:59:48Z", "xmlid": "plr_b(2)"}, "size": "3", "start_date": "1996-03-16T00:00:55Z", "stop_date": "2006-05-31T23:59:48Z", "ucd": "phys.magField", "units": "nT", "xmlid": "plr_b"}, "plr_b_gsm": {"__spz_name__": "b_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "plr_b_gsm", "dataset": "plr-mfe-k0", "description": "Observed vector magnetic field in cartesian GSM (0.92 min res.)", "display_type": "timeseries", "is_public": "True", "name": "b_gsm", "plr_b_gsm0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "plr_b_gsm(0)", "dataset": "plr-mfe-k0", "index1": "0", "is_public": "True", "name": "bx", "parameter": "plr_b_gsm", "start_date": "1996-03-16T00:00:55Z", "stop_date": "2006-05-31T23:59:48Z", "xmlid": "plr_b_gsm(0)"}, "plr_b_gsm1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "plr_b_gsm(1)", "dataset": "plr-mfe-k0", "index1": "1", "is_public": "True", "name": "by", "parameter": "plr_b_gsm", "start_date": "1996-03-16T00:00:55Z", "stop_date": "2006-05-31T23:59:48Z", "xmlid": "plr_b_gsm(1)"}, "plr_b_gsm2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "plr_b_gsm(2)", "dataset": "plr-mfe-k0", "index1": "2", "is_public": "True", "name": "bz", "parameter": "plr_b_gsm", "start_date": "1996-03-16T00:00:55Z", "stop_date": "2006-05-31T23:59:48Z", "xmlid": "plr_b_gsm(2)"}, "size": "3", "start_date": "1996-03-16T00:00:55Z", "stop_date": "2006-05-31T23:59:48Z", "ucd": "phys.magField", "units": "nT", "xmlid": "plr_b_gsm"}, "plr_b_tot": {"__spz_name__": "\u239cb|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "plr_b_tot", "dataset": "plr-mfe-k0", "description": "Scalar magnitude of the magnetic field in nT", "display_type": "timeseries", "is_public": "True", "name": "\u239cb|", "start_date": "1996-03-16T00:00:55Z", "stop_date": "2006-05-31T23:59:48Z", "ucd": "Phys.magField", "units": "nT", "xmlid": "plr_b_tot"}, "processing_level": "Calibrated", "sampling": "55.2S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/POLAR/MFE/plr-mfe-k0", "start_date": "1996-03-16T00:00:55Z", "stop_date": "2006-05-31T23:59:48Z", "target": "Earth.Magnetosphere", "xmlid": "plr-mfe-k0"}, "xmlid": "POLAR_mfe"}, "__spz_name__": "Polar", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "POLAR", "att": "auto/POLAR", "desc": "Polar Plasma Laboratory
1996-02-24T11:24:00 - 2008-04-28T00:00:00", "is_public": "True", "name": "Polar", "rank": "6", "target": "Earth.Magnetosphere", "xmlid": "POLAR"}, "Rosetta": {"AUX": {"__spz_name__": "AUX", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Rosetta_auxilliary", "att": "auto/Rosetta_auxilliary", "desc": "", "is_public": "True", "name": "AUX", "ros_aux_all": {"__spz_name__": "Orbit/Attitude", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ros-aux-all", "att": "auto/ros-aux-all", "dataSource": "", "desc": "
Sampling: 60S", "is_public": "True", "lastModificationDate": "2017-07-19T00:15:05Z", "lastUpdate": "2017-07-19T00:15:05Z", "measurement_type": "Ephemeris", "name": "Orbit/Attitude", "processing_level": "Calibrated", "ros_aux_caa": {"__spz_name__": "Comet aspect angle", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_aux_caa", "dataset": "ros-aux-all", "is_public": "True", "name": "Comet aspect angle", "start_date": "2014-06-01T00:00:00Z", "stop_date": "2016-09-30T23:59:00Z", "units": "deg", "xmlid": "ros_aux_caa"}, "ros_aux_saa": {"__spz_name__": "Sun aspect angle", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_aux_saa", "dataset": "ros-aux-all", "is_public": "True", "name": "Sun aspect angle", "start_date": "2014-06-01T00:00:00Z", "stop_date": "2016-09-30T23:59:00Z", "units": "deg", "xmlid": "ros_aux_saa"}, "ros_cg_v": {"__spz_name__": "C-G velocity ECLIPJ2000", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_cg_v", "dataset": "ros-aux-all", "is_public": "True", "name": "C-G velocity ECLIPJ2000", "ros_cg_v0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ros_cg_v(0)", "dataset": "ros-aux-all", "index1": "0", "is_public": "True", "name": "vx", "parameter": "ros_cg_v", "start_date": "2014-06-01T00:00:00Z", "stop_date": "2016-09-30T23:59:00Z", "xmlid": "ros_cg_v(0)"}, "ros_cg_v1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ros_cg_v(1)", "dataset": "ros-aux-all", "index1": "1", "is_public": "True", "name": "vy", "parameter": "ros_cg_v", "start_date": "2014-06-01T00:00:00Z", "stop_date": "2016-09-30T23:59:00Z", "xmlid": "ros_cg_v(1)"}, "ros_cg_v2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ros_cg_v(2)", "dataset": "ros-aux-all", "index1": "2", "is_public": "True", "name": "vz", "parameter": "ros_cg_v", "start_date": "2014-06-01T00:00:00Z", "stop_date": "2016-09-30T23:59:00Z", "xmlid": "ros_cg_v(2)"}, "size": "3", "start_date": "2014-06-01T00:00:00Z", "stop_date": "2016-09-30T23:59:00Z", "units": "km/s", "xmlid": "ros_cg_v"}, "ros_cg_xyz": {"__spz_name__": "C-G orbit ECLIPJ2000", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_cg_xyz", "dataset": "ros-aux-all", "is_public": "True", "name": "C-G orbit ECLIPJ2000", "ros_cg_xyz0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ros_cg_xyz(0)", "dataset": "ros-aux-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "ros_cg_xyz", "start_date": "2014-06-01T00:00:00Z", "stop_date": "2016-09-30T23:59:00Z", "xmlid": "ros_cg_xyz(0)"}, "ros_cg_xyz1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ros_cg_xyz(1)", "dataset": "ros-aux-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "ros_cg_xyz", "start_date": "2014-06-01T00:00:00Z", "stop_date": "2016-09-30T23:59:00Z", "xmlid": "ros_cg_xyz(1)"}, "ros_cg_xyz2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ros_cg_xyz(2)", "dataset": "ros-aux-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "ros_cg_xyz", "start_date": "2014-06-01T00:00:00Z", "stop_date": "2016-09-30T23:59:00Z", "xmlid": "ros_cg_xyz(2)"}, "size": "3", "start_date": "2014-06-01T00:00:00Z", "stop_date": "2016-09-30T23:59:00Z", "units": "AU", "xmlid": "ros_cg_xyz"}, "ros_sc_v": {"__spz_name__": "Rosetta velocity ECLIPJ2000", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_sc_v", "dataset": "ros-aux-all", "is_public": "True", "name": "Rosetta velocity ECLIPJ2000", "ros_sc_v0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ros_sc_v(0)", "dataset": "ros-aux-all", "index1": "0", "is_public": "True", "name": "vx", "parameter": "ros_sc_v", "start_date": "2014-06-01T00:00:00Z", "stop_date": "2016-09-30T23:59:00Z", "xmlid": "ros_sc_v(0)"}, "ros_sc_v1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ros_sc_v(1)", "dataset": "ros-aux-all", "index1": "1", "is_public": "True", "name": "vy", "parameter": "ros_sc_v", "start_date": "2014-06-01T00:00:00Z", "stop_date": "2016-09-30T23:59:00Z", "xmlid": "ros_sc_v(1)"}, "ros_sc_v2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ros_sc_v(2)", "dataset": "ros-aux-all", "index1": "2", "is_public": "True", "name": "vz", "parameter": "ros_sc_v", "start_date": "2014-06-01T00:00:00Z", "stop_date": "2016-09-30T23:59:00Z", "xmlid": "ros_sc_v(2)"}, "size": "3", "start_date": "2014-06-01T00:00:00Z", "stop_date": "2016-09-30T23:59:00Z", "units": "km/s", "xmlid": "ros_sc_v"}, "ros_sc_xyz": {"__spz_name__": "Rosetta orbit ECLIPJ2000", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_sc_xyz", "dataset": "ros-aux-all", "is_public": "True", "name": "Rosetta orbit ECLIPJ2000", "ros_sc_xyz0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ros_sc_xyz(0)", "dataset": "ros-aux-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "ros_sc_xyz", "start_date": "2014-06-01T00:00:00Z", "stop_date": "2016-09-30T23:59:00Z", "xmlid": "ros_sc_xyz(0)"}, "ros_sc_xyz1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ros_sc_xyz(1)", "dataset": "ros-aux-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "ros_sc_xyz", "start_date": "2014-06-01T00:00:00Z", "stop_date": "2016-09-30T23:59:00Z", "xmlid": "ros_sc_xyz(1)"}, "ros_sc_xyz2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ros_sc_xyz(2)", "dataset": "ros-aux-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "ros_sc_xyz", "start_date": "2014-06-01T00:00:00Z", "stop_date": "2016-09-30T23:59:00Z", "xmlid": "ros_sc_xyz(2)"}, "size": "3", "start_date": "2014-06-01T00:00:00Z", "stop_date": "2016-09-30T23:59:00Z", "units": "km", "xmlid": "ros_sc_xyz"}, "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Rosetta/AUXILLIARY/ros-aux-all", "start_date": "2014-06-01T00:00:00Z", "stop_date": "2016-09-30T23:59:00Z", "target": "Comet", "xmlid": "ros-aux-all"}, "xmlid": "Rosetta_auxilliary"}, "Ephemeris": {"__spz_name__": "Ephemeris", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Rosetta_ephemeris", "att": "auto/Rosetta_ephemeris", "desc": "", "is_public": "True", "name": "Ephemeris", "ros_orb_comet": {"__spz_name__": "orbit comet/C-G (67P)", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ros-orb-comet", "att": "auto/ros-orb-comet", "dataSource": "PSA", "desc": "Rosetta position : orbit Churi (C-G / 67P)
Sampling: 60S
Provider: PSA", "is_public": "True", "lastModificationDate": "2017-10-11T11:01:23Z", "lastUpdate": "2018-06-13T16:32:20Z", "measurement_type": "Ephemeris", "name": "orbit comet/C-G (67P)", "processing_level": "Calibrated", "ros_cg_r": {"__spz_name__": "distance ros-C-G", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_cg_r", "dataset": "ros-orb-comet", "display_type": "timeseries", "is_public": "True", "name": "distance ros-C-G", "start_date": "2014-01-01T00:01:07Z", "stop_date": "2016-09-30T23:59:08Z", "units": "km", "xmlid": "ros_cg_r"}, "ros_lat_ck": {"__spz_name__": "lat C-G_ck", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_lat_ck", "dataset": "ros-orb-comet", "display_type": "timeseries", "is_public": "True", "name": "lat C-G_ck", "start_date": "2014-01-01T00:01:07Z", "stop_date": "2016-09-30T23:59:08Z", "units": "deg", "xmlid": "ros_lat_ck"}, "ros_lon_ck": {"__spz_name__": "lon C-G_ck", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_lon_ck", "dataset": "ros-orb-comet", "display_type": "timeseries", "is_public": "True", "name": "lon C-G_ck", "start_date": "2014-01-01T00:01:07Z", "stop_date": "2016-09-30T23:59:08Z", "units": "deg", "xmlid": "ros_lon_ck"}, "ros_xyz_cseq": {"__spz_name__": "xyz_cseq", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_xyz_cseq", "dataset": "ros-orb-comet", "display_type": "timeseries", "is_public": "True", "name": "xyz_cseq", "ros_xyz_cseq0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ros_xyz_cseq(0)", "dataset": "ros-orb-comet", "index1": "0", "is_public": "True", "name": "x", "parameter": "ros_xyz_cseq", "start_date": "2014-01-01T00:01:07Z", "stop_date": "2016-09-30T23:59:08Z", "xmlid": "ros_xyz_cseq(0)"}, "ros_xyz_cseq1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ros_xyz_cseq(1)", "dataset": "ros-orb-comet", "index1": "1", "is_public": "True", "name": "y", "parameter": "ros_xyz_cseq", "start_date": "2014-01-01T00:01:07Z", "stop_date": "2016-09-30T23:59:08Z", "xmlid": "ros_xyz_cseq(1)"}, "ros_xyz_cseq2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ros_xyz_cseq(2)", "dataset": "ros-orb-comet", "index1": "2", "is_public": "True", "name": "z", "parameter": "ros_xyz_cseq", "start_date": "2014-01-01T00:01:07Z", "stop_date": "2016-09-30T23:59:08Z", "xmlid": "ros_xyz_cseq(2)"}, "size": "3", "start_date": "2014-01-01T00:01:07Z", "stop_date": "2016-09-30T23:59:08Z", "ucd": "pos.ephem;instr.obsty", "units": "km", "xmlid": "ros_xyz_cseq"}, "ros_xyz_cso": {"__spz_name__": "xyz_cso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_xyz_cso", "dataset": "ros-orb-comet", "display_type": "timeseries", "is_public": "True", "name": "xyz_cso", "ros_xyz_cso0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ros_xyz_cso(0)", "dataset": "ros-orb-comet", "index1": "0", "is_public": "True", "name": "x", "parameter": "ros_xyz_cso", "start_date": "2014-01-01T00:01:07Z", "stop_date": "2016-09-30T23:59:08Z", "xmlid": "ros_xyz_cso(0)"}, "ros_xyz_cso1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ros_xyz_cso(1)", "dataset": "ros-orb-comet", "index1": "1", "is_public": "True", "name": "y", "parameter": "ros_xyz_cso", "start_date": "2014-01-01T00:01:07Z", "stop_date": "2016-09-30T23:59:08Z", "xmlid": "ros_xyz_cso(1)"}, "ros_xyz_cso2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ros_xyz_cso(2)", "dataset": "ros-orb-comet", "index1": "2", "is_public": "True", "name": "z", "parameter": "ros_xyz_cso", "start_date": "2014-01-01T00:01:07Z", "stop_date": "2016-09-30T23:59:08Z", "xmlid": "ros_xyz_cso(2)"}, "size": "3", "start_date": "2014-01-01T00:01:07Z", "stop_date": "2016-09-30T23:59:08Z", "ucd": "pos.ephem;instr.obsty", "units": "km", "xmlid": "ros_xyz_cso"}, "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Rosetta/Ephemeris/ros-orb-comet", "start_date": "2014-01-01T00:01:07Z", "stop_date": "2016-09-30T23:59:08Z", "xmlid": "ros-orb-comet"}, "ros_orb_cruise": {"__spz_name__": "cruise", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ros-orb-cruise", "att": "auto/ros-orb-cruise", "dataSource": "PSA", "desc": "
Sampling: 1H
Provider: PSA", "is_public": "True", "lastModificationDate": "2014-08-26T12:48:18Z", "lastUpdate": "2014-08-26T12:45:57Z", "measurement_type": "Ephemeris", "name": "cruise", "processing_level": "Calibrated", "r_sun_ros": {"__spz_name__": "distance ros-sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "r_sun_ros", "dataset": "ros-orb-cruise", "display_type": "timeseries", "is_public": "True", "name": "distance ros-sun", "start_date": "2004-03-03T00:00:00Z", "stop_date": "2014-08-04T00:00:00Z", "units": "AU", "xmlid": "r_sun_ros"}, "ros_xyz_hci": {"__spz_name__": "xyz_hci", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_xyz_hci", "dataset": "ros-orb-cruise", "display_type": "timeseries", "is_public": "True", "name": "xyz_hci", "ros_xyz_hci0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ros_xyz_hci(0)", "dataset": "ros-orb-cruise", "index1": "0", "is_public": "True", "name": "x", "parameter": "ros_xyz_hci", "start_date": "2004-03-03T00:00:00Z", "stop_date": "2014-08-04T00:00:00Z", "xmlid": "ros_xyz_hci(0)"}, "ros_xyz_hci1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ros_xyz_hci(1)", "dataset": "ros-orb-cruise", "index1": "1", "is_public": "True", "name": "y", "parameter": "ros_xyz_hci", "start_date": "2004-03-03T00:00:00Z", "stop_date": "2014-08-04T00:00:00Z", "xmlid": "ros_xyz_hci(1)"}, "ros_xyz_hci2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ros_xyz_hci(2)", "dataset": "ros-orb-cruise", "index1": "2", "is_public": "True", "name": "z", "parameter": "ros_xyz_hci", "start_date": "2004-03-03T00:00:00Z", "stop_date": "2014-08-04T00:00:00Z", "xmlid": "ros_xyz_hci(2)"}, "size": "3", "start_date": "2004-03-03T00:00:00Z", "stop_date": "2014-08-04T00:00:00Z", "ucd": "pos.ephem;instr.obsty", "units": "AU", "xmlid": "ros_xyz_hci"}, "ros_xyz_hee": {"__spz_name__": "xyz_hee", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_xyz_hee", "dataset": "ros-orb-cruise", "is_public": "True", "name": "xyz_hee", "ros_xyz_hee0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ros_xyz_hee(0)", "dataset": "ros-orb-cruise", "index1": "0", "is_public": "True", "name": "x", "parameter": "ros_xyz_hee", "start_date": "2004-03-03T00:00:00Z", "stop_date": "2014-08-04T00:00:00Z", "xmlid": "ros_xyz_hee(0)"}, "ros_xyz_hee1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ros_xyz_hee(1)", "dataset": "ros-orb-cruise", "index1": "1", "is_public": "True", "name": "y", "parameter": "ros_xyz_hee", "start_date": "2004-03-03T00:00:00Z", "stop_date": "2014-08-04T00:00:00Z", "xmlid": "ros_xyz_hee(1)"}, "ros_xyz_hee2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ros_xyz_hee(2)", "dataset": "ros-orb-cruise", "index1": "2", "is_public": "True", "name": "z", "parameter": "ros_xyz_hee", "start_date": "2004-03-03T00:00:00Z", "stop_date": "2014-08-04T00:00:00Z", "xmlid": "ros_xyz_hee(2)"}, "size": "3", "start_date": "2004-03-03T00:00:00Z", "stop_date": "2014-08-04T00:00:00Z", "units": "AU", "xmlid": "ros_xyz_hee"}, "ros_xyz_heeq": {"__spz_name__": "xyz_heeq", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_xyz_heeq", "dataset": "ros-orb-cruise", "display_type": "timeseries", "is_public": "True", "name": "xyz_heeq", "ros_xyz_heeq0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ros_xyz_heeq(0)", "dataset": "ros-orb-cruise", "index1": "0", "is_public": "True", "name": "x", "parameter": "ros_xyz_heeq", "start_date": "2004-03-03T00:00:00Z", "stop_date": "2014-08-04T00:00:00Z", "xmlid": "ros_xyz_heeq(0)"}, "ros_xyz_heeq1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ros_xyz_heeq(1)", "dataset": "ros-orb-cruise", "index1": "1", "is_public": "True", "name": "y", "parameter": "ros_xyz_heeq", "start_date": "2004-03-03T00:00:00Z", "stop_date": "2014-08-04T00:00:00Z", "xmlid": "ros_xyz_heeq(1)"}, "ros_xyz_heeq2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ros_xyz_heeq(2)", "dataset": "ros-orb-cruise", "index1": "2", "is_public": "True", "name": "z", "parameter": "ros_xyz_heeq", "start_date": "2004-03-03T00:00:00Z", "stop_date": "2014-08-04T00:00:00Z", "xmlid": "ros_xyz_heeq(2)"}, "size": "3", "start_date": "2004-03-03T00:00:00Z", "stop_date": "2014-08-04T00:00:00Z", "ucd": "pos.ephem;instr.obsty", "units": "AU", "xmlid": "ros_xyz_heeq"}, "sampling": "1H", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Rosetta/Ephemeris/ros-orb-cruise", "start_date": "2004-03-03T00:00:00Z", "stop_date": "2014-08-04T00:00:00Z", "xmlid": "ros-orb-cruise"}, "ros_orb_earth1": {"__spz_name__": "flyby earth 1", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ros-orb-earth1", "att": "auto/ros-orb-earth1", "dataSource": "PSA", "desc": "
Sampling: 60S
Provider: PSA", "is_public": "True", "lastModificationDate": "2024-06-10T11:47:59Z", "lastUpdate": "2024-06-10T11:47:05Z", "measurement_type": "Ephemeris", "name": "flyby earth 1", "processing_level": "Calibrated", "ros_r_earth1": {"__spz_name__": "distance ros-earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_r_earth1", "dataset": "ros-orb-earth1", "is_public": "True", "name": "distance ros-earth", "start_date": "2005-03-03T00:00:00Z", "stop_date": "2005-03-06T23:59:00Z", "ucd": "pos.ephem;instr.obsty", "units": "Re", "xmlid": "ros_r_earth1"}, "ros_xyz_earth1": {"__spz_name__": "xyz_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_xyz_earth1", "dataset": "ros-orb-earth1", "display_type": "timeseries", "is_public": "True", "name": "xyz_gse", "ros_xyz_earth10": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ros_xyz_earth1(0)", "dataset": "ros-orb-earth1", "index1": "0", "is_public": "True", "name": "x", "parameter": "ros_xyz_earth1", "start_date": "2005-03-03T00:00:00Z", "stop_date": "2005-03-06T23:59:00Z", "xmlid": "ros_xyz_earth1(0)"}, "ros_xyz_earth11": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ros_xyz_earth1(1)", "dataset": "ros-orb-earth1", "index1": "1", "is_public": "True", "name": "y", "parameter": "ros_xyz_earth1", "start_date": "2005-03-03T00:00:00Z", "stop_date": "2005-03-06T23:59:00Z", "xmlid": "ros_xyz_earth1(1)"}, "ros_xyz_earth12": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ros_xyz_earth1(2)", "dataset": "ros-orb-earth1", "index1": "2", "is_public": "True", "name": "z", "parameter": "ros_xyz_earth1", "start_date": "2005-03-03T00:00:00Z", "stop_date": "2005-03-06T23:59:00Z", "xmlid": "ros_xyz_earth1(2)"}, "size": "3", "start_date": "2005-03-03T00:00:00Z", "stop_date": "2005-03-06T23:59:00Z", "ucd": "pos.ephem;instr.obsty", "units": "Re", "xmlid": "ros_xyz_earth1"}, "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Rosetta/Ephemeris/ros-orb-earth1", "start_date": "2005-03-03T00:00:00Z", "stop_date": "2005-03-06T23:59:00Z", "target": "Earth", "xmlid": "ros-orb-earth1"}, "ros_orb_earth2": {"__spz_name__": "flyby earth 2", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ros-orb-earth2", "att": "auto/ros-orb-earth2", "dataSource": "PSA", "desc": "
Sampling: 60S
Provider: PSA", "is_public": "True", "lastModificationDate": "2024-06-10T12:04:57Z", "lastUpdate": "2024-06-10T12:04:20Z", "measurement_type": "Ephemeris", "name": "flyby earth 2", "processing_level": "Calibrated", "ros_r_earth2": {"__spz_name__": "distance ros-earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_r_earth2", "dataset": "ros-orb-earth2", "is_public": "True", "name": "distance ros-earth", "start_date": "2007-10-11T00:00:00Z", "stop_date": "2007-12-11T23:58:59Z", "ucd": "pos.ephem;instr.obsty", "units": "Re", "xmlid": "ros_r_earth2"}, "ros_xyz_earth2": {"__spz_name__": "xyz_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_xyz_earth2", "dataset": "ros-orb-earth2", "display_type": "timeseries", "is_public": "True", "name": "xyz_gse", "ros_xyz_earth20": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ros_xyz_earth2(0)", "dataset": "ros-orb-earth2", "index1": "0", "is_public": "True", "name": "x", "parameter": "ros_xyz_earth2", "start_date": "2007-10-11T00:00:00Z", "stop_date": "2007-12-11T23:58:59Z", "xmlid": "ros_xyz_earth2(0)"}, "ros_xyz_earth21": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ros_xyz_earth2(1)", "dataset": "ros-orb-earth2", "index1": "1", "is_public": "True", "name": "y", "parameter": "ros_xyz_earth2", "start_date": "2007-10-11T00:00:00Z", "stop_date": "2007-12-11T23:58:59Z", "xmlid": "ros_xyz_earth2(1)"}, "ros_xyz_earth22": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ros_xyz_earth2(2)", "dataset": "ros-orb-earth2", "index1": "2", "is_public": "True", "name": "z", "parameter": "ros_xyz_earth2", "start_date": "2007-10-11T00:00:00Z", "stop_date": "2007-12-11T23:58:59Z", "xmlid": "ros_xyz_earth2(2)"}, "size": "3", "start_date": "2007-10-11T00:00:00Z", "stop_date": "2007-12-11T23:58:59Z", "ucd": "pos.ephem;instr.obsty", "units": "Re", "xmlid": "ros_xyz_earth2"}, "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Rosetta/Ephemeris/ros-orb-earth2", "start_date": "2007-10-11T00:00:00Z", "stop_date": "2007-12-11T23:58:59Z", "target": "Earth", "xmlid": "ros-orb-earth2"}, "ros_orb_earth3": {"__spz_name__": "flyby earth 3", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ros-orb-earth3", "att": "auto/ros-orb-earth3", "dataSource": "PSA", "desc": "
Sampling: 60S
Provider: PSA", "is_public": "True", "lastModificationDate": "2024-06-10T12:06:25Z", "lastUpdate": "2024-06-10T12:05:45Z", "measurement_type": "Ephemeris", "name": "flyby earth 3", "processing_level": "Calibrated", "ros_r_earth3": {"__spz_name__": "distance ros-earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_r_earth3", "dataset": "ros-orb-earth3", "is_public": "True", "name": "distance ros-earth", "start_date": "2009-10-16T00:00:00Z", "stop_date": "2010-01-19T23:58:59Z", "ucd": "pos.ephem;instr.obsty", "units": "Re", "xmlid": "ros_r_earth3"}, "ros_xyz_earth3": {"__spz_name__": "xyz_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_xyz_earth3", "dataset": "ros-orb-earth3", "is_public": "True", "name": "xyz_gse", "ros_xyz_earth30": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ros_xyz_earth3(0)", "dataset": "ros-orb-earth3", "index1": "0", "is_public": "True", "name": "x", "parameter": "ros_xyz_earth3", "start_date": "2009-10-16T00:00:00Z", "stop_date": "2010-01-19T23:58:59Z", "xmlid": "ros_xyz_earth3(0)"}, "ros_xyz_earth31": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ros_xyz_earth3(1)", "dataset": "ros-orb-earth3", "index1": "1", "is_public": "True", "name": "y", "parameter": "ros_xyz_earth3", "start_date": "2009-10-16T00:00:00Z", "stop_date": "2010-01-19T23:58:59Z", "xmlid": "ros_xyz_earth3(1)"}, "ros_xyz_earth32": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ros_xyz_earth3(2)", "dataset": "ros-orb-earth3", "index1": "2", "is_public": "True", "name": "z", "parameter": "ros_xyz_earth3", "start_date": "2009-10-16T00:00:00Z", "stop_date": "2010-01-19T23:58:59Z", "xmlid": "ros_xyz_earth3(2)"}, "size": "3", "start_date": "2009-10-16T00:00:00Z", "stop_date": "2010-01-19T23:58:59Z", "ucd": "pos.ephem;instr.obsty", "units": "Re", "xmlid": "ros_xyz_earth3"}, "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Rosetta/Ephemeris/ros-orb-earth3", "start_date": "2009-10-16T00:00:00Z", "stop_date": "2010-01-19T23:58:59Z", "target": "Earth", "xmlid": "ros-orb-earth3"}, "ros_orb_mars": {"__spz_name__": "flyby mars", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ros-orb-mars", "att": "auto/ros-orb-mars", "dataSource": "PSA", "desc": "
Sampling: 60S
Provider: PSA", "is_public": "True", "lastModificationDate": "2024-06-10T12:35:44Z", "lastUpdate": "2024-06-10T12:35:13Z", "measurement_type": "Ephemeris", "name": "flyby mars", "processing_level": "Calibrated", "ros_r_mars": {"__spz_name__": "distance ros-mars", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_r_mars", "dataset": "ros-orb-mars", "is_public": "True", "name": "distance ros-mars", "start_date": "2007-01-24T00:00:00Z", "stop_date": "2007-04-25T23:58:59Z", "ucd": "pos.ephem;instr.obsty", "units": "Re", "xmlid": "ros_r_mars"}, "ros_xyz_mars": {"__spz_name__": "xyz_mso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_xyz_mars", "dataset": "ros-orb-mars", "display_type": "timeseries", "is_public": "True", "name": "xyz_mso", "ros_xyz_mars0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ros_xyz_mars(0)", "dataset": "ros-orb-mars", "index1": "0", "is_public": "True", "name": "x", "parameter": "ros_xyz_mars", "start_date": "2007-01-24T00:00:00Z", "stop_date": "2007-04-25T23:58:59Z", "xmlid": "ros_xyz_mars(0)"}, "ros_xyz_mars1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ros_xyz_mars(1)", "dataset": "ros-orb-mars", "index1": "1", "is_public": "True", "name": "y", "parameter": "ros_xyz_mars", "start_date": "2007-01-24T00:00:00Z", "stop_date": "2007-04-25T23:58:59Z", "xmlid": "ros_xyz_mars(1)"}, "ros_xyz_mars2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ros_xyz_mars(2)", "dataset": "ros-orb-mars", "index1": "2", "is_public": "True", "name": "z", "parameter": "ros_xyz_mars", "start_date": "2007-01-24T00:00:00Z", "stop_date": "2007-04-25T23:58:59Z", "xmlid": "ros_xyz_mars(2)"}, "size": "3", "start_date": "2007-01-24T00:00:00Z", "stop_date": "2007-04-25T23:58:59Z", "ucd": "pos.ephem;instr.obsty", "units": "Rm", "xmlid": "ros_xyz_mars"}, "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Rosetta/Ephemeris/ros-orb-mars", "start_date": "2007-01-24T00:00:00Z", "stop_date": "2007-04-25T23:58:59Z", "target": "Mars", "xmlid": "ros-orb-mars"}, "sun_pol_cgck": {"__spz_name__": "sun in C-G_CK frame", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "sun-pol-cgck", "att": "auto/sun-pol-cgck", "dataSource": "PSA", "desc": "Sun position in C-G CK (comet-fixed) frame
Sampling: 60S
Provider: PSA", "is_public": "True", "lastModificationDate": "2017-10-11T12:20:30Z", "lastUpdate": "2018-06-13T11:52:27Z", "measurement_type": "Ephemeris", "name": "sun in C-G_CK frame", "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Rosetta/Ephemeris/sun-pol-cgck", "start_date": "2014-01-01T00:01:07Z", "stop_date": "2016-09-30T23:59:08Z", "sun_cg_lat": {"__spz_name__": "sun lat C-G_CK", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sun_cg_lat", "dataset": "sun-pol-cgck", "display_type": "timeseries", "is_public": "True", "name": "sun lat C-G_CK", "start_date": "2014-01-01T00:01:07Z", "stop_date": "2016-09-30T23:59:08Z", "units": "deg", "xmlid": "sun_cg_lat"}, "sun_cg_lon": {"__spz_name__": "sun lon C-G_CK", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sun_cg_lon", "dataset": "sun-pol-cgck", "display_type": "timeseries", "is_public": "True", "name": "sun lon C-G_CK", "start_date": "2014-01-01T00:01:07Z", "stop_date": "2016-09-30T23:59:08Z", "units": "deg", "xmlid": "sun_cg_lon"}, "sun_cg_r": {"__spz_name__": "distance C_G-sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sun_cg_r", "dataset": "sun-pol-cgck", "display_type": "timeseries", "is_public": "True", "name": "distance C_G-sun", "start_date": "2014-01-01T00:01:07Z", "stop_date": "2016-09-30T23:59:08Z", "units": "AU", "xmlid": "sun_cg_r"}, "xmlid": "sun-pol-cgck"}, "xmlid": "Rosetta_ephemeris"}, "IES": {"__spz_name__": "IES", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Rosetta_ies", "att": "auto/Rosetta_ies", "desc": "Ion and Electron Sensor
ElectrostaticAnalyser", "electrons": {"__spz_name__": "electrons", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "ros-elc-all", "is_public": "True", "name": "electrons", "ros_elc_az": {"__spz_name__": "azimuthal spectra : countrate", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ros-elc-az", "att": "auto/ros-elc-az", "dataSource": "SwRI / ImperialCollege", "desc": "electron azimuthal spectra : countrates
Sampling: 128S
Provider: SwRI / ImperialCollege", "is_public": "True", "lastModificationDate": "2018-03-23T00:15:07Z", "lastUpdate": "2017-03-18T00:15:10Z", "measurement_type": "ThermalPlasma", "name": "azimuthal spectra : countrate", "processing_level": "Calibrated", "ros_elc_az": {"__spz_name__": "e- countrate", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_elc_az", "dataset": "ros-elc-az", "display_type": "spectrogram", "is_public": "True", "name": "e- countrate", "start_date": "2010-11-29T23:18:19Z", "stop_date": "2016-09-30T23:58:44Z", "units": "s\u207b\u00b9", "xmlid": "ros_elc_az"}, "sampling": "128S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Rosetta/IES/ros-elc-az", "start_date": "2010-11-29T23:18:19Z", "stop_date": "2016-09-30T23:58:44Z", "target": "Comet", "xmlid": "ros-elc-az"}, "ros_elc_azimuth": {"__spz_name__": "azimuthal spectra : eflux", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ros-elc-azimuth", "att": "auto/ros-elc-azimuth", "dataSource": "SwRI", "desc": "electron azimuthal spectra : dE fluxes
Sampling: 128S
Provider: SwRI", "is_public": "True", "lastModificationDate": "2019-03-18T17:51:58Z", "lastUpdate": "2019-03-14T15:58:49Z", "measurement_type": "ThermalPlasma", "name": "azimuthal spectra : eflux", "processing_level": "Calibrated", "ros_elc_az_flux": {"__spz_name__": "e- flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_elc_az_flux", "dataset": "ros-elc-azimuth", "display_type": "spectrogram", "is_public": "True", "name": "e- flux", "start_date": "2014-03-25T00:36:27Z", "stop_date": "2016-09-30T23:58:44Z", "units": "eV/(m\u00b2*s*sr*eV)", "xmlid": "ros_elc_az_flux"}, "sampling": "128S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Rosetta/IES/ros-elc-azimuth", "start_date": "2014-03-25T00:36:27Z", "stop_date": "2016-09-30T23:58:44Z", "target": "Comet", "xmlid": "ros-elc-azimuth"}, "ros_elc_elev": {"__spz_name__": "elevation spectra : eflux", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ros-elc-elev", "att": "auto/ros-elc-elev", "dataSource": "SwRI", "desc": "electron elevation spectra : dE fluxes
MinSampling: 128S; MaxSampling: 1024S
Provider: SwRI", "is_public": "True", "lastModificationDate": "2019-03-18T17:52:01Z", "lastUpdate": "2019-03-18T17:39:57Z", "maxSampling": "1024S", "measurement_type": "ThermalPlasma", "name": "elevation spectra : eflux", "processing_level": "Calibrated", "ros_elc_elv_flux": {"__spz_name__": "e- flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_elc_elv_flux", "dataset": "ros-elc-elev", "display_type": "spectrogram", "is_public": "True", "name": "e- flux", "start_date": "2014-03-25T00:36:27Z", "stop_date": "2016-09-30T23:58:44Z", "units": "eV/(m\u00b2*s*sr*eV)", "xmlid": "ros_elc_elv_flux"}, "sampling": "128S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Rosetta/IES/ros-elc-elev", "start_date": "2014-03-25T00:36:27Z", "stop_date": "2016-09-30T23:58:44Z", "target": "Comet", "xmlid": "ros-elc-elev"}, "ros_elc_elv": {"__spz_name__": "elevation spectra : countrate", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ros-elc-elv", "att": "auto/ros-elc-elv", "dataSource": "SwRI / ImperialCollege", "desc": "electron elevation spectra : countrate
Sampling: 128S
Provider: SwRI / ImperialCollege", "is_public": "True", "lastModificationDate": "2018-03-23T00:15:08Z", "lastUpdate": "2017-03-18T00:15:11Z", "measurement_type": "ThermalPlasma", "name": "elevation spectra : countrate", "processing_level": "Calibrated", "ros_elc_elv": {"__spz_name__": "e- countrate", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_elc_elv", "dataset": "ros-elc-elv", "display_type": "spectrogram", "is_public": "True", "name": "e- countrate", "start_date": "2010-11-29T23:18:19Z", "stop_date": "2016-09-30T23:58:44Z", "units": "s\u207b\u00b9", "xmlid": "ros_elc_elv"}, "sampling": "128S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Rosetta/IES/ros-elc-elv", "start_date": "2010-11-29T23:18:19Z", "stop_date": "2016-09-30T23:58:44Z", "target": "Comet", "xmlid": "ros-elc-elv"}, "ros_elc_en": {"__spz_name__": "energy spectra : countrate", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ros-elc-en", "att": "auto/ros-elc-en", "dataSource": "SwRI / ImperialCollege", "desc": "electron energy spectra : countrates
Sampling: 128S
Provider: SwRI / ImperialCollege", "is_public": "True", "lastModificationDate": "2018-03-23T00:15:05Z", "lastUpdate": "2017-03-18T00:15:07Z", "measurement_type": "ThermalPlasma", "name": "energy spectra : countrate", "processing_level": "Calibrated", "ros_elc_spec": {"__spz_name__": "e- countrate", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_elc_spec", "dataset": "ros-elc-en", "display_type": "spectrogram", "is_public": "True", "name": "e- countrate", "start_date": "2010-11-29T23:18:19Z", "stop_date": "2016-09-30T23:58:44Z", "units": "s\u207b\u00b9", "xmlid": "ros_elc_spec"}, "sampling": "128S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Rosetta/IES/ros-elc-en", "start_date": "2010-11-29T23:18:19Z", "stop_date": "2016-09-30T23:58:44Z", "target": "Comet", "xmlid": "ros-elc-en"}, "ros_elc_energy": {"__spz_name__": "energy spectra : eflux", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ros-elc-energy", "att": "auto/ros-elc-energy", "dataSource": "SwRI", "desc": "electron energy spectra : dE fluxes
MinSampling: 128S; MaxSampling: 1024S
Provider: SwRI", "is_public": "True", "lastModificationDate": "2019-03-18T16:49:01Z", "lastUpdate": "2019-03-13T16:04:06Z", "maxSampling": "1024S", "measurement_type": "ThermalPlasma", "name": "energy spectra : eflux", "processing_level": "Calibrated", "ros_elc_eflux": {"__spz_name__": "e- flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_elc_eflux", "dataset": "ros-elc-energy", "display_type": "spectrogram", "is_public": "True", "name": "e- flux", "start_date": "2014-03-25T00:36:27Z", "stop_date": "2016-09-30T23:58:44Z", "units": "eV/(m\u00b2*s*sr*eV)", "xmlid": "ros_elc_eflux"}, "sampling": "128S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Rosetta/IES/ros-elc-energy", "start_date": "2014-03-25T00:36:27Z", "stop_date": "2016-09-30T23:58:44Z", "target": "Comet", "xmlid": "ros-elc-energy"}, "xmlid": "ros-elc-all"}, "ions": {"__spz_name__": "ions", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "ros-ion-all", "is_public": "True", "name": "ions", "ros_ion_az": {"__spz_name__": "azimuthal spectra : countrate", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ros-ion-az", "att": "auto/ros-ion-az", "dataSource": "SwRI / ImperialCollege", "desc": "ion azimuthal spectra : countrate
Sampling: 128S
Provider: SwRI / ImperialCollege", "is_public": "True", "lastModificationDate": "2018-03-23T00:15:09Z", "lastUpdate": "2017-03-18T00:15:14Z", "measurement_type": "ThermalPlasma", "name": "azimuthal spectra : countrate", "processing_level": "Calibrated", "ros_ion_az": {"__spz_name__": "ion countrate", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_ion_az", "dataset": "ros-ion-az", "display_type": "spectrogram", "is_public": "True", "name": "ion countrate", "start_date": "2010-11-29T23:18:19Z", "stop_date": "2016-09-30T23:58:44Z", "units": "s\u207b\u00b9", "xmlid": "ros_ion_az"}, "sampling": "128S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Rosetta/IES/ros-ion-az", "start_date": "2010-11-29T23:18:19Z", "stop_date": "2016-09-30T23:58:44Z", "target": "Comet", "xmlid": "ros-ion-az"}, "ros_ion_azimuth": {"__spz_name__": "azimuthal spectra : eflux", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ros-ion-azimuth", "att": "auto/ros-ion-azimuth", "dataSource": "SwRI", "desc": "ion azimuthal spectra : dE flux
MinSampling: 128S; MaxSampling: 1024S
Provider: SwRI", "is_public": "True", "lastModificationDate": "2019-03-19T12:06:29Z", "lastUpdate": "2019-03-19T10:34:08Z", "maxSampling": "1024S", "measurement_type": "ThermalPlasma", "name": "azimuthal spectra : eflux", "processing_level": "Calibrated", "ros_ion_az_flux": {"__spz_name__": "ion flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_ion_az_flux", "dataset": "ros-ion-azimuth", "display_type": "spectrogram", "is_public": "True", "name": "ion flux", "start_date": "2014-03-25T00:36:27Z", "stop_date": "2016-09-30T23:58:44Z", "units": "eV/(m\u00b2*s*sr*eV)", "xmlid": "ros_ion_az_flux"}, "sampling": "128S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Rosetta/IES/ros-ion-azimuth", "start_date": "2014-03-25T00:36:27Z", "stop_date": "2016-09-30T23:58:44Z", "target": "Comet", "xmlid": "ros-ion-azimuth"}, "ros_ion_elev": {"__spz_name__": "elevation spectra : eflux", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ros-ion-elev", "att": "auto/ros-ion-elev", "dataSource": "SwRI / ImperialCollege", "desc": "ion elevation spectra : dE flux
MinSampling: 128S; MaxSampling: 1024S
Provider: SwRI / ImperialCollege", "is_public": "True", "lastModificationDate": "2019-03-19T10:22:21Z", "lastUpdate": "2019-03-19T10:22:05Z", "maxSampling": "1024S", "measurement_type": "ThermalPlasma", "name": "elevation spectra : eflux", "processing_level": "Calibrated", "ros_ion_elv_flux": {"__spz_name__": "ion flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_ion_elv_flux", "dataset": "ros-ion-elev", "display_type": "spectrogram", "is_public": "True", "name": "ion flux", "start_date": "2014-03-25T00:36:27Z", "stop_date": "2016-09-30T23:58:44Z", "units": "eV/(m\u00b2*s*sr*eV)", "xmlid": "ros_ion_elv_flux"}, "sampling": "128S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Rosetta/IES/ros-ion-elev", "start_date": "2014-03-25T00:36:27Z", "stop_date": "2016-09-30T23:58:44Z", "target": "Comet", "xmlid": "ros-ion-elev"}, "ros_ion_elv": {"__spz_name__": "elevation spectra : countrate", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ros-ion-elv", "att": "auto/ros-ion-elv", "dataSource": "SwRI / ImperialCollege", "desc": "ion elevation spectra : countrate
Sampling: 128S
Provider: SwRI / ImperialCollege", "is_public": "True", "lastModificationDate": "2018-03-23T00:15:08Z", "lastUpdate": "2017-03-18T00:15:13Z", "measurement_type": "ThermalPlasma", "name": "elevation spectra : countrate", "processing_level": "Calibrated", "ros_ion_elv": {"__spz_name__": "ion counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_ion_elv", "dataset": "ros-ion-elv", "display_type": "spectrogram", "is_public": "True", "name": "ion counts", "start_date": "2010-11-29T23:18:19Z", "stop_date": "2016-09-30T23:58:44Z", "units": "s\u207b\u00b9", "xmlid": "ros_ion_elv"}, "sampling": "128S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Rosetta/IES/ros-ion-elv", "start_date": "2010-11-29T23:18:19Z", "stop_date": "2016-09-30T23:58:44Z", "target": "Comet", "xmlid": "ros-ion-elv"}, "ros_ion_en": {"__spz_name__": "energy spectra : countrate", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ros-ion-en", "att": "auto/ros-ion-en", "dataSource": "SwRI / ImperialCollege", "desc": "ion energy spectra : countrates
Sampling: 128S
Provider: SwRI / ImperialCollege", "is_public": "True", "lastModificationDate": "2018-03-23T00:15:06Z", "lastUpdate": "2017-03-18T00:15:08Z", "measurement_type": "ThermalPlasma", "name": "energy spectra : countrate", "processing_level": "Calibrated", "ros_ion_spec": {"__spz_name__": "ion countrate", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_ion_spec", "dataset": "ros-ion-en", "display_type": "spectrogram", "is_public": "True", "name": "ion countrate", "start_date": "2010-11-29T23:18:19Z", "stop_date": "2016-09-30T23:58:44Z", "units": "s\u207b\u00b9", "xmlid": "ros_ion_spec"}, "sampling": "128S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Rosetta/IES/ros-ion-en", "start_date": "2010-11-29T23:18:19Z", "stop_date": "2016-09-30T23:58:44Z", "target": "Comet", "xmlid": "ros-ion-en"}, "ros_ion_energy": {"__spz_name__": "energy spectra : eflux", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ros-ion-energy", "att": "auto/ros-ion-energy", "dataSource": "SwRI", "desc": "ion energy spectra : dE flux
MinSampling: 128S; MaxSampling: 1024S
Provider: SwRI", "is_public": "True", "lastModificationDate": "2019-03-18T16:49:05Z", "lastUpdate": "2019-03-13T16:13:34Z", "maxSampling": "1024S", "measurement_type": "ThermalPlasma", "name": "energy spectra : eflux", "processing_level": "Calibrated", "ros_ion_eflux": {"__spz_name__": "ion flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_ion_eflux", "dataset": "ros-ion-energy", "display_type": "spectrogram", "is_public": "True", "name": "ion flux", "start_date": "2014-03-25T00:36:27Z", "stop_date": "2016-09-30T23:58:44Z", "units": "eV/(m\u00b2*s*sr*eV)", "xmlid": "ros_ion_eflux"}, "sampling": "128S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Rosetta/IES/ros-ion-energy", "start_date": "2014-03-25T00:36:27Z", "stop_date": "2016-09-30T23:58:44Z", "target": "Comet", "xmlid": "ros-ion-energy"}, "xmlid": "ros-ion-all"}, "is_public": "True", "name": "IES", "xmlid": "Rosetta_ies"}, "LAP": {"__spz_name__": "LAP", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Rosetta_lap", "att": "auto/Rosetta_lap", "desc": "Langmuir Probe
LangmuirProbe", "is_public": "True", "name": "LAP", "ros_lap_asw": {"__spz_name__": "parameters from sweeps (ASW)", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ros-lap-asw", "att": "auto/ros-lap-asw", "dataSource": "PSA", "desc": "Analyzed sweeps (ASW). Miscellaneous physical high-level quantities derived from individual sweeps.
MinSampling: 0.016S; MaxSampling: 128S
Provider: PSA", "is_public": "True", "lastModificationDate": "2019-08-29T13:25:53Z", "lastUpdate": "2019-08-29T13:24:49Z", "maxSampling": "128S", "measurement_type": "ThermalPlasma", "name": "parameters from sweeps (ASW)", "processing_level": "Calibrated", "ros_lap_asw_f": {"__spz_name__": "quality flag", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_lap_asw_f", "dataset": "ros-lap-asw", "description": "Quality flag constructed as the sum of multiple terms, depending on what quality related effects are present. Each digit is either in \nthe range 0 (best) to 7 (worst), or 9 (not used)", "display_type": "timeseries", "is_public": "True", "name": "quality flag", "start_date": "2014-03-24T08:13:00Z", "stop_date": "2016-09-28T23:55:32Z", "xmlid": "ros_lap_asw_f"}, "ros_lap_ipho": {"__spz_name__": "i_ph0_s", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_lap_ipho", "dataset": "ros-lap-asw", "description": "Photosaturation current derived from individual sweep. As LAP1 has shown no significant \ncontamination effects, these estimates should be directly proportional to the EUV flux at Rosetta position in the 20-130 nm band.", "display_type": "timeseries", "is_public": "True", "name": "i_ph0_s", "start_date": "2014-03-24T08:13:00Z", "stop_date": "2016-09-28T23:55:32Z", "units": "A", "xmlid": "ros_lap_ipho"}, "ros_lap_ipho_q": {"__spz_name__": "i_ph0_s : qual", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_lap_ipho_q", "dataset": "ros-lap-asw", "description": "Quality value in the range 0 (worst) to 1 (best). Corresponds to goodness of fit or how well the model fits the data", "display_type": "timeseries", "is_public": "True", "name": "i_ph0_s : qual", "start_date": "2014-03-24T08:13:00Z", "stop_date": "2016-09-28T23:55:32Z", "xmlid": "ros_lap_ipho_q"}, "ros_lap_neft": {"__spz_name__": "n_e_fix_t", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_lap_neft", "dataset": "ros-lap-asw", "description": "Electron density derived from individual sweep. An electron temperature is assumed to be fixed (value of 5 eV)", "display_type": "timeseries", "is_public": "True", "name": "n_e_fix_t", "start_date": "2014-03-24T08:13:00Z", "stop_date": "2016-09-28T23:55:32Z", "units": "cm\u207b\u00b3", "xmlid": "ros_lap_neft"}, "ros_lap_neft_q": {"__spz_name__": "n_e_fix_t : qual", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_lap_neft_q", "dataset": "ros-lap-asw", "description": "Quality value in the range 0 (worst) to 1 (best). Corresponds to goodness of fit or how well the model fits the data", "display_type": "timeseries", "is_public": "True", "name": "n_e_fix_t : qual", "start_date": "2014-03-24T08:13:00Z", "stop_date": "2016-09-28T23:55:32Z", "xmlid": "ros_lap_neft_q"}, "ros_lap_te": {"__spz_name__": "t_e", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_lap_te", "dataset": "ros-lap-asw", "description": "Electron temperature derived from exponential part of sweep", "display_type": "timeseries", "is_public": "True", "name": "t_e", "start_date": "2014-03-24T08:13:00Z", "stop_date": "2016-09-28T23:55:32Z", "units": "eV", "xmlid": "ros_lap_te"}, "ros_lap_te_q": {"__spz_name__": "t_e : qual", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_lap_te_q", "dataset": "ros-lap-asw", "description": "Quality value in the range 0 (worst) to 1 (best). Corresponds to goodness of fit or how well the model fits the data", "display_type": "timeseries", "is_public": "True", "name": "t_e : qual", "start_date": "2014-03-24T08:13:00Z", "stop_date": "2016-09-28T23:55:32Z", "xmlid": "ros_lap_te_q"}, "ros_lap_te_xcalc": {"__spz_name__": "t_e_xcal", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_lap_te_xcalc", "dataset": "ros-lap-asw", "description": "Electron temperature, derived by using the linear part of the electron current of the sweep, and density measurement from RPCMIP.", "display_type": "timeseries", "is_public": "True", "name": "t_e_xcal", "start_date": "2014-03-24T08:13:00Z", "stop_date": "2016-09-28T23:55:32Z", "units": "eV", "xmlid": "ros_lap_te_xcalc"}, "ros_lap_te_xcalc_q": {"__spz_name__": "t_e_xcal : qual", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_lap_te_xcalc_q", "dataset": "ros-lap-asw", "description": "Quality value in the range 0 (worst) to 1 (best). Corresponds to goodness of fit or how well the model fits the data", "display_type": "timeseries", "is_public": "True", "name": "t_e_xcal : qual", "start_date": "2014-03-24T08:13:00Z", "stop_date": "2016-09-28T23:55:32Z", "xmlid": "ros_lap_te_xcalc_q"}, "ros_lap_usc_asw": {"__spz_name__": "v_ph_knee", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_lap_usc_asw", "dataset": "ros-lap-asw", "description": "Photoelectron knee potential", "display_type": "timeseries", "is_public": "True", "name": "v_ph_knee", "start_date": "2014-03-24T08:13:00Z", "stop_date": "2016-09-28T23:55:32Z", "units": "V", "xmlid": "ros_lap_usc_asw"}, "ros_lap_usc_asw_q": {"__spz_name__": "v_ph_knee : qual", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_lap_usc_asw_q", "dataset": "ros-lap-asw", "description": "Quality value in the range 0 (worst) to 1 (best). Corresponds to goodness of fit or how well the model fits the data", "display_type": "timeseries", "is_public": "True", "name": "v_ph_knee : qual", "start_date": "2014-03-24T08:13:00Z", "stop_date": "2016-09-28T23:55:32Z", "xmlid": "ros_lap_usc_asw_q"}, "ros_lap_vi_asw": {"__spz_name__": "v_ion_eff_xcal", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_lap_vi_asw", "dataset": "ros-lap-asw", "description": "Effective ion speed derived from individual sweep (speed; always non-negative scalar), while assuming a specific ion mass. Cross-calibrated with RPCMIP", "display_type": "timeseries", "is_public": "True", "name": "v_ion_eff_xcal", "start_date": "2014-03-24T08:13:00Z", "stop_date": "2016-09-28T23:55:32Z", "units": "m/s", "xmlid": "ros_lap_vi_asw"}, "ros_lap_vi_asw_q": {"__spz_name__": "v_ion_eff_xcal : qual", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_lap_vi_asw_q", "dataset": "ros-lap-asw", "description": "Quality value in the range 0 (worst) to 1 (best). Corresponds to goodness of fit or how well the model fits the data", "display_type": "timeseries", "is_public": "True", "name": "v_ion_eff_xcal : qual", "start_date": "2014-03-24T08:13:00Z", "stop_date": "2016-09-28T23:55:32Z", "xmlid": "ros_lap_vi_asw_q"}, "sampling": "0.016S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Rosetta/LAP/ros-lap-asw", "start_date": "2014-03-24T08:13:00Z", "stop_date": "2016-09-28T23:55:32Z", "xmlid": "ros-lap-asw"}, "ros_lap_efl": {"__spz_name__": "e-field component (EFL)", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ros-lap-efl", "att": "auto/ros-lap-efl", "dataSource": "PSA", "desc": "Electric field component, calculated on ground by\ntaking the difference between floating probe measurements on both probes and\ndividing by distance
MinSampling: 0.05S; MaxSampling: 35S
Provider: PSA", "is_public": "True", "lastModificationDate": "2019-09-02T11:15:31Z", "lastUpdate": "2019-09-02T11:02:22Z", "maxSampling": "35S", "measurement_type": "ThermalPlasma", "name": "e-field component (EFL)", "processing_level": "Calibrated", "ros_lap_efl": {"__spz_name__": "e-field comp", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_lap_efl", "dataset": "ros-lap-efl", "description": "Electric field component, calculated on ground by \n taking the difference between floating probe measurements on both probes and \n dividing by distance, (V_P2-V_P1)/L. Positive value refers to electric field \n pointing in the direction from probe 1 to probe 2.", "display_type": "timeseries", "is_public": "True", "name": "e-field comp", "start_date": "2015-05-20T15:17:20Z", "stop_date": "2016-09-30T10:30:20Z", "units": "mV/m", "xmlid": "ros_lap_efl"}, "ros_lap_efl_f": {"__spz_name__": "quality flag", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_lap_efl_f", "dataset": "ros-lap-efl", "description": "Quality flag constructed as the sum of multiple terms, depending on what quality related effects are present. Each digit is either in \nthe range 0 (best) to 7 (worst), or 9 (not used).", "display_type": "timeseries", "is_public": "True", "name": "quality flag", "start_date": "2015-05-20T15:17:20Z", "stop_date": "2016-09-30T10:30:20Z", "xmlid": "ros_lap_efl_f"}, "ros_lap_efl_s": {"__spz_name__": "sampling conf", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_lap_efl_s", "dataset": "ros-lap-efl", "description": "Number that describes the exact combination of onboard s/w averaging and downsampling. The exact values are pointers into a table \nthat describes both the number of samples that are averaged over and the downsampling rate", "display_type": "timeseries", "is_public": "True", "name": "sampling conf", "start_date": "2015-05-20T15:17:20Z", "stop_date": "2016-09-30T10:30:20Z", "xmlid": "ros_lap_efl_s"}, "sampling": "0.05S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Rosetta/LAP/ros-lap-efl", "start_date": "2015-05-20T15:17:20Z", "stop_date": "2016-09-30T10:30:20Z", "xmlid": "ros-lap-efl"}, "ros_lap_ned": {"__spz_name__": "plasma density (NED)", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ros-lap-ned", "att": "auto/ros-lap-ned", "dataSource": "PSA", "desc": "Plasma density derived from individual spacecraft\npotential measurements on one illuminated probe.
MinSampling: 32S; MaxSampling: 160S
Provider: PSA", "is_public": "True", "lastModificationDate": "2019-08-29T15:13:05Z", "lastUpdate": "2019-08-29T14:39:30Z", "maxSampling": "160S", "measurement_type": "ThermalPlasma", "name": "plasma density (NED)", "processing_level": "Calibrated", "ros_lap_ned": {"__spz_name__": "n_e (ned)", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_lap_ned", "dataset": "ros-lap-ned", "description": "Plasma density derived from individual spacecraft potential measurements on one illuminated probe", "display_type": "timeseries", "is_public": "True", "name": "n_e (ned)", "start_date": "2014-03-24T15:21:18Z", "stop_date": "2016-09-30T10:36:32Z", "units": "cm\u207b\u00b3", "xmlid": "ros_lap_ned"}, "ros_lap_ned_f": {"__spz_name__": "quality flag", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_lap_ned_f", "dataset": "ros-lap-ned", "description": "Quality flag constructed as the sum of multiple terms, \ndepending on what quality related effects are present. Each digit is either in \nthe range 0 (best) to 7 (worst), or 9 (not used)", "display_type": "timeseries", "is_public": "True", "name": "quality flag", "start_date": "2014-03-24T15:21:18Z", "stop_date": "2016-09-30T10:36:32Z", "xmlid": "ros_lap_ned_f"}, "ros_lap_ned_q": {"__spz_name__": "n_e : qual", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_lap_ned_q", "dataset": "ros-lap-ned", "description": "Quality value in the range 0 (worst) to 1 (best).Corresponds to goodness of fit or how well the model fits the data.", "display_type": "timeseries", "is_public": "True", "name": "n_e : qual", "start_date": "2014-03-24T15:21:18Z", "stop_date": "2016-09-30T10:36:32Z", "units": "n/a", "xmlid": "ros_lap_ned_q"}, "ros_lap_ned_s": {"__spz_name__": "data source", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_lap_ned_s", "dataset": "ros-lap-ned", "display_type": "timeseries", "is_public": "True", "name": "data source", "start_date": "2014-03-24T15:21:18Z", "stop_date": "2016-09-30T10:36:32Z", "xmlid": "ros_lap_ned_s"}, "sampling": "32S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Rosetta/LAP/ros-lap-ned", "start_date": "2014-03-24T15:21:18Z", "stop_date": "2016-09-30T10:36:32Z", "xmlid": "ros-lap-ned"}, "ros_lap_nel": {"__spz_name__": "plasma density (NEL)", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ros-lap-nel", "att": "auto/ros-lap-nel", "dataSource": "PSA", "desc": "Plasma density which contains the highest time resolution cross-calibrated density data, \nwhen RPC-MIP is not delivering cross-calibrated density products
MinSampling: 0.016S; MaxSampling: 128S
Provider: PSA", "is_public": "True", "lastModificationDate": "2019-08-27T12:05:09Z", "lastUpdate": "2019-08-26T18:52:52Z", "maxSampling": "128S", "measurement_type": "ThermalPlasma", "name": "plasma density (NEL)", "processing_level": "Calibrated", "ros_lap_nel": {"__spz_name__": "n_e (nel)", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_lap_nel", "dataset": "ros-lap-nel", "description": "Plasma density which contains the highest time resolution cross-calibrated density data, \nwhen RPC-MIP is not delivering cross-calibrated density products", "display_type": "timeseries", "is_public": "True", "name": "n_e (nel)", "start_date": "2014-11-06T13:04:34Z", "stop_date": "2016-09-30T10:36:40Z", "units": "cm\u207b\u00b3", "xmlid": "ros_lap_nel"}, "ros_lap_nel_f": {"__spz_name__": "quality flag", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_lap_nel_f", "dataset": "ros-lap-nel", "description": "Quality flag constructed as the sum of multiple terms, \ndepending on what quality related effects are present. Each digit is either in \nthe range 0 (best) to 7 (worst), or 9 (not used)", "display_type": "timeseries", "is_public": "True", "name": "quality flag", "start_date": "2014-11-06T13:04:34Z", "stop_date": "2016-09-30T10:36:40Z", "xmlid": "ros_lap_nel_f"}, "ros_lap_nel_good": {"__spz_name__": "n_e_good (qual_nel> 0.2)", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_lap_nel_good", "dataset": "ros-lap-nel", "description": "Plasma density which contains the highest time resolution cross-calibrated density data, \nwhen RPC-MIP is not delivering cross-calibrated density products. Quality value > 0.2", "display_type": "timeseries", "is_public": "True", "name": "n_e_good (qual_nel> 0.2)", "start_date": "2014-11-06T13:04:34Z", "stop_date": "2016-09-30T10:36:40Z", "units": "cm\u207b\u00b3", "xmlid": "ros_lap_nel_good"}, "ros_lap_nel_q": {"__spz_name__": "n_e : qual", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_lap_nel_q", "dataset": "ros-lap-nel", "description": "Quality value in the range 0 (worst) to 1 (best). Corresponds to goodness of fit or how well the model fits the data.", "display_type": "timeseries", "is_public": "True", "name": "n_e : qual", "start_date": "2014-11-06T13:04:34Z", "stop_date": "2016-09-30T10:36:40Z", "xmlid": "ros_lap_nel_q"}, "ros_lap_nel_s": {"__spz_name__": "data source", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_lap_nel_s", "dataset": "ros-lap-nel", "display_type": "timeseries", "is_public": "True", "name": "data source", "start_date": "2014-11-06T13:04:34Z", "stop_date": "2016-09-30T10:36:40Z", "xmlid": "ros_lap_nel_s"}, "sampling": "0.016S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Rosetta/LAP/ros-lap-nel", "start_date": "2014-11-06T13:04:34Z", "stop_date": "2016-09-30T10:36:40Z", "xmlid": "ros-lap-nel"}, "ros_lap_pho": {"__spz_name__": "photosaturation current (PHO)", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ros-lap-pho", "att": "auto/ros-lap-pho", "dataSource": "PSA", "desc": "Photosaturation current derived collectively from multiple sweeps
Sampling: 60S
Provider: PSA", "is_public": "True", "lastModificationDate": "2019-09-02T15:17:49Z", "lastUpdate": "2019-09-02T15:17:39Z", "measurement_type": "ThermalPlasma", "name": "photosaturation current (PHO)", "processing_level": "Calibrated", "ros_lap_pho": {"__spz_name__": "i_ph0_60m", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_lap_pho", "dataset": "ros-lap-pho", "description": "Photosaturation current derived collectively from multiple sweeps", "display_type": "timeseries", "is_public": "True", "name": "i_ph0_60m", "start_date": "2014-03-24T09:30:00Z", "stop_date": "2016-09-29T00:30:00Z", "units": "A", "xmlid": "ros_lap_pho"}, "ros_lap_pho_f": {"__spz_name__": "quality flag", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_lap_pho_f", "dataset": "ros-lap-pho", "description": "Quality flag constructed as the sum of multiple terms, \ndepending on what quality related effects are present. Each digit is either in \nthe range 0 (best) to 7 (worst), or 9 (not used)", "display_type": "timeseries", "is_public": "True", "name": "quality flag", "start_date": "2014-03-24T09:30:00Z", "stop_date": "2016-09-29T00:30:00Z", "xmlid": "ros_lap_pho_f"}, "ros_lap_pho_q": {"__spz_name__": "i_ph0_60m : qual", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_lap_pho_q", "dataset": "ros-lap-pho", "description": "Quality value in the range 0 (worst) to 1 (best). \nCorresponds to goodness of fit or how well the model fits the data.", "display_type": "timeseries", "is_public": "True", "name": "i_ph0_60m : qual", "start_date": "2014-03-24T09:30:00Z", "stop_date": "2016-09-29T00:30:00Z", "xmlid": "ros_lap_pho_q"}, "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Rosetta/LAP/ros-lap-pho", "start_date": "2014-03-24T09:30:00Z", "stop_date": "2016-09-29T00:30:00Z", "xmlid": "ros-lap-pho"}, "ros_lap_usc": {"__spz_name__": "s/c potential (USC)", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ros-lap-usc", "att": "auto/ros-lap-usc", "dataSource": "PSA", "desc": "Spacecraft potential
MinSampling: 32S; MaxSampling: 160S
Provider: PSA", "is_public": "True", "lastModificationDate": "2019-08-27T12:05:12Z", "lastUpdate": "2019-08-27T11:50:24Z", "maxSampling": "160S", "measurement_type": "ThermalPlasma", "name": "s/c potential (USC)", "processing_level": "Calibrated", "ros_lap_usc": {"__spz_name__": "u_sc", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_lap_usc", "dataset": "ros-lap-usc", "display_type": "timeseries", "is_public": "True", "name": "u_sc", "start_date": "2014-03-24T15:21:18Z", "stop_date": "2016-09-30T10:36:32Z", "units": "V", "xmlid": "ros_lap_usc"}, "ros_lap_usc_f": {"__spz_name__": "quality flag", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_lap_usc_f", "dataset": "ros-lap-usc", "description": "Quality flag constructed as the sum of multiple terms, \ndepending on what quality related effects are present. Each digit is either in \nthe range 0 (best) to 7 (worst), or 9 (not used)", "display_type": "timeseries", "is_public": "True", "name": "quality flag", "start_date": "2014-03-24T15:21:18Z", "stop_date": "2016-09-30T10:36:32Z", "xmlid": "ros_lap_usc_f"}, "ros_lap_usc_q": {"__spz_name__": "u_sc : qual", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_lap_usc_q", "dataset": "ros-lap-usc", "description": "Quality value in the range 0 (worst) to 1 (best). \nCorresponds to goodness of fit or how well the model fits the data.", "display_type": "timeseries", "is_public": "True", "name": "u_sc : qual", "start_date": "2014-03-24T15:21:18Z", "stop_date": "2016-09-30T10:36:32Z", "xmlid": "ros_lap_usc_q"}, "ros_lap_usc_s": {"__spz_name__": "data source", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_lap_usc_s", "dataset": "ros-lap-usc", "display_type": "timeseries", "is_public": "True", "name": "data source", "start_date": "2014-03-24T15:21:18Z", "stop_date": "2016-09-30T10:36:32Z", "xmlid": "ros_lap_usc_s"}, "sampling": "32S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Rosetta/LAP/ros-lap-usc", "start_date": "2014-03-24T15:21:18Z", "stop_date": "2016-09-30T10:36:32Z", "xmlid": "ros-lap-usc"}, "xmlid": "Rosetta_lap"}, "MAG": {"__spz_name__": "MAG", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Rosetta_mag", "att": "auto/Rosetta_mag", "desc": "Fluxgate Magnetometer
Magnetometer", "inboard_sensor": {"__spz_name__": "inboard sensor", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Inboard_Sensor", "is_public": "True", "name": "inboard sensor", "ros_magib_1s": {"__spz_name__": "1 s", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ros-magib-1s", "att": "auto/ros-magib-1s", "dataSource": "PSA", "desc": "Inboard calibrated; burst mode
Sampling: 1S
Provider: PSA", "is_public": "True", "lastModificationDate": "2019-04-02T15:26:54Z", "lastUpdate": "2019-03-26T20:09:18Z", "measurement_type": "MagneticField", "name": "1 s", "processing_level": "Calibrated", "ros_ib_1s": {"__spz_name__": "b_cseq", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_ib_1s", "dataset": "ros-magib-1s", "display_type": "timeseries", "is_public": "True", "name": "b_cseq", "ros_ib_1s0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ros_ib_1s(0)", "dataset": "ros-magib-1s", "index1": "0", "is_public": "True", "name": "bx", "parameter": "ros_ib_1s", "start_date": "2014-11-22T02:01:57Z", "stop_date": "2016-09-30T10:39:24Z", "xmlid": "ros_ib_1s(0)"}, "ros_ib_1s1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ros_ib_1s(1)", "dataset": "ros-magib-1s", "index1": "1", "is_public": "True", "name": "by", "parameter": "ros_ib_1s", "start_date": "2014-11-22T02:01:57Z", "stop_date": "2016-09-30T10:39:24Z", "xmlid": "ros_ib_1s(1)"}, "ros_ib_1s2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ros_ib_1s(2)", "dataset": "ros-magib-1s", "index1": "2", "is_public": "True", "name": "bz", "parameter": "ros_ib_1s", "start_date": "2014-11-22T02:01:57Z", "stop_date": "2016-09-30T10:39:24Z", "xmlid": "ros_ib_1s(2)"}, "size": "3", "start_date": "2014-11-22T02:01:57Z", "stop_date": "2016-09-30T10:39:24Z", "ucd": "phys.magField", "units": "nT", "xmlid": "ros_ib_1s"}, "ros_ib_1stot": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_ib_1stot", "dataset": "ros-magib-1s", "is_public": "True", "name": "|b|", "start_date": "2014-11-22T02:01:57Z", "stop_date": "2016-09-30T10:39:24Z", "ucd": "phys.magField", "units": "nT", "xmlid": "ros_ib_1stot"}, "sampling": "1S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Rosetta/MAG/ros-magib-1s", "start_date": "2014-11-22T02:01:57Z", "stop_date": "2016-09-30T10:39:24Z", "xmlid": "ros-magib-1s"}, "ros_magib_32s": {"__spz_name__": "32 s", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ros-magib-32s", "att": "auto/ros-magib-32s", "dataSource": "PSA", "desc": "Inboard calibrated; normal mode
Sampling: 32S
Provider: PSA", "is_public": "True", "lastModificationDate": "2019-04-02T15:26:58Z", "lastUpdate": "2019-03-26T20:08:54Z", "measurement_type": "MagneticField", "name": "32 s", "processing_level": "Calibrated", "ros_ib_32s": {"__spz_name__": "b_cseq", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_ib_32s", "dataset": "ros-magib-32s", "display_type": "timeseries", "is_public": "True", "name": "b_cseq", "ros_ib_32s0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ros_ib_32s(0)", "dataset": "ros-magib-32s", "index1": "0", "is_public": "True", "name": "bx", "parameter": "ros_ib_32s", "start_date": "2014-11-22T00:00:38Z", "stop_date": "2016-09-29T12:11:28Z", "xmlid": "ros_ib_32s(0)"}, "ros_ib_32s1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ros_ib_32s(1)", "dataset": "ros-magib-32s", "index1": "1", "is_public": "True", "name": "by", "parameter": "ros_ib_32s", "start_date": "2014-11-22T00:00:38Z", "stop_date": "2016-09-29T12:11:28Z", "xmlid": "ros_ib_32s(1)"}, "ros_ib_32s2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ros_ib_32s(2)", "dataset": "ros-magib-32s", "index1": "2", "is_public": "True", "name": "bz", "parameter": "ros_ib_32s", "start_date": "2014-11-22T00:00:38Z", "stop_date": "2016-09-29T12:11:28Z", "xmlid": "ros_ib_32s(2)"}, "size": "3", "start_date": "2014-11-22T00:00:38Z", "stop_date": "2016-09-29T12:11:28Z", "ucd": "phys.magField", "units": "nT", "xmlid": "ros_ib_32s"}, "ros_ib_32stot": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_ib_32stot", "dataset": "ros-magib-32s", "is_public": "True", "name": "|b|", "start_date": "2014-11-22T00:00:38Z", "stop_date": "2016-09-29T12:11:28Z", "ucd": "phys.magField", "units": "nT", "xmlid": "ros_ib_32stot"}, "sampling": "32S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Rosetta/MAG/ros-magib-32s", "start_date": "2014-11-22T00:00:38Z", "stop_date": "2016-09-29T12:11:28Z", "xmlid": "ros-magib-32s"}, "ros_magib_rsmp": {"__spz_name__": "60 s : resampled", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ros-magib-rsmp", "att": "auto/ros-magib-rsmp", "dataSource": "Imperial College", "desc": "Inboard calibrated; resampled
Sampling: 60S
Provider: Imperial College", "is_public": "True", "lastModificationDate": "2022-07-18T11:52:02Z", "lastUpdate": "2022-07-18T11:52:03Z", "measurement_type": "MagneticField", "name": "60 s : resampled", "processing_level": "Calibrated", "ros_ib_rsmp": {"__spz_name__": "b_cseq", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_ib_rsmp", "dataset": "ros-magib-rsmp", "display_type": "timeseries", "is_public": "True", "name": "b_cseq", "ros_ib_rsmp0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ros_ib_rsmp(0)", "dataset": "ros-magib-rsmp", "index1": "0", "is_public": "True", "name": "bx", "parameter": "ros_ib_rsmp", "start_date": "2004-03-17T22:59:02Z", "stop_date": "2016-09-30T10:38:53Z", "xmlid": "ros_ib_rsmp(0)"}, "ros_ib_rsmp1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ros_ib_rsmp(1)", "dataset": "ros-magib-rsmp", "index1": "1", "is_public": "True", "name": "by", "parameter": "ros_ib_rsmp", "start_date": "2004-03-17T22:59:02Z", "stop_date": "2016-09-30T10:38:53Z", "xmlid": "ros_ib_rsmp(1)"}, "ros_ib_rsmp2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ros_ib_rsmp(2)", "dataset": "ros-magib-rsmp", "index1": "2", "is_public": "True", "name": "bz", "parameter": "ros_ib_rsmp", "start_date": "2004-03-17T22:59:02Z", "stop_date": "2016-09-30T10:38:53Z", "xmlid": "ros_ib_rsmp(2)"}, "size": "3", "start_date": "2004-03-17T22:59:02Z", "stop_date": "2016-09-30T10:38:53Z", "ucd": "phys.magField", "units": "nT", "xmlid": "ros_ib_rsmp"}, "ros_ib_totrsmp": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_ib_totrsmp", "dataset": "ros-magib-rsmp", "is_public": "True", "name": "|b|", "start_date": "2004-03-17T22:59:02Z", "stop_date": "2016-09-30T10:38:53Z", "ucd": "phys.magField", "units": "nT", "xmlid": "ros_ib_totrsmp"}, "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Rosetta/MAG/ros-magib-rsmp", "start_date": "2004-03-17T22:59:02Z", "stop_date": "2016-09-30T10:38:53Z", "xmlid": "ros-magib-rsmp"}, "ros_magib_rsmp1s": {"__spz_name__": "1 s : resampled", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ros-magib-rsmp1s", "att": "auto/ros-magib-rsmp1s", "dataSource": "Imperial College", "desc": "Inboard calibrated; resampled
Sampling: 1S
Provider: Imperial College", "is_public": "True", "lastModificationDate": "2019-04-04T10:23:25Z", "lastUpdate": "2019-04-03T18:14:39Z", "measurement_type": "MagneticField", "name": "1 s : resampled", "processing_level": "Calibrated", "ros_ib_rsmp1": {"__spz_name__": "b_cseq", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_ib_rsmp1", "dataset": "ros-magib-rsmp1s", "display_type": "timeseries", "is_public": "True", "name": "b_cseq", "ros_ib_rsmp10": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ros_ib_rsmp1(0)", "dataset": "ros-magib-rsmp1s", "index1": "0", "is_public": "True", "name": "bx", "parameter": "ros_ib_rsmp1", "start_date": "2004-03-17T22:58:33Z", "stop_date": "2016-09-30T10:39:23Z", "xmlid": "ros_ib_rsmp1(0)"}, "ros_ib_rsmp11": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ros_ib_rsmp1(1)", "dataset": "ros-magib-rsmp1s", "index1": "1", "is_public": "True", "name": "by", "parameter": "ros_ib_rsmp1", "start_date": "2004-03-17T22:58:33Z", "stop_date": "2016-09-30T10:39:23Z", "xmlid": "ros_ib_rsmp1(1)"}, "ros_ib_rsmp12": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ros_ib_rsmp1(2)", "dataset": "ros-magib-rsmp1s", "index1": "2", "is_public": "True", "name": "bz", "parameter": "ros_ib_rsmp1", "start_date": "2004-03-17T22:58:33Z", "stop_date": "2016-09-30T10:39:23Z", "xmlid": "ros_ib_rsmp1(2)"}, "size": "3", "start_date": "2004-03-17T22:58:33Z", "stop_date": "2016-09-30T10:39:23Z", "ucd": "phys.magField", "units": "nT", "xmlid": "ros_ib_rsmp1"}, "ros_ib_totrsmp1": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_ib_totrsmp1", "dataset": "ros-magib-rsmp1s", "is_public": "True", "name": "|b|", "start_date": "2004-03-17T22:58:33Z", "stop_date": "2016-09-30T10:39:23Z", "ucd": "phys.magField", "units": "nT", "xmlid": "ros_ib_totrsmp1"}, "sampling": "1S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Rosetta/MAG/ros-magib-rsmp1s", "start_date": "2004-03-17T22:58:33Z", "stop_date": "2016-09-30T10:39:23Z", "target": "Comet", "xmlid": "ros-magib-rsmp1s"}, "xmlid": "Inboard_Sensor"}, "is_public": "True", "name": "MAG", "outboard_sensor": {"__spz_name__": "outboard sensor", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Outboard_Sensor", "is_public": "True", "name": "outboard sensor", "ros_magob_1s": {"__spz_name__": "1 s", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ros-magob-1s", "att": "auto/ros-magob-1s", "dataSource": "PSA", "desc": "Onboard calibrated; normal mode
Sampling: 1S
Provider: PSA", "is_public": "True", "lastModificationDate": "2019-04-02T15:28:16Z", "lastUpdate": "2019-03-29T02:43:44Z", "measurement_type": "MagneticField", "name": "1 s", "processing_level": "Calibrated", "ros_ob_1s": {"__spz_name__": "b_cseq", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_ob_1s", "dataset": "ros-magob-1s", "display_type": "timeseries", "is_public": "True", "name": "b_cseq", "ros_ob_1s0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ros_ob_1s(0)", "dataset": "ros-magob-1s", "index1": "0", "is_public": "True", "name": "bx", "parameter": "ros_ob_1s", "start_date": "2014-11-22T00:00:15Z", "stop_date": "2016-09-29T12:11:35Z", "xmlid": "ros_ob_1s(0)"}, "ros_ob_1s1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ros_ob_1s(1)", "dataset": "ros-magob-1s", "index1": "1", "is_public": "True", "name": "by", "parameter": "ros_ob_1s", "start_date": "2014-11-22T00:00:15Z", "stop_date": "2016-09-29T12:11:35Z", "xmlid": "ros_ob_1s(1)"}, "ros_ob_1s2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ros_ob_1s(2)", "dataset": "ros-magob-1s", "index1": "2", "is_public": "True", "name": "bz", "parameter": "ros_ob_1s", "start_date": "2014-11-22T00:00:15Z", "stop_date": "2016-09-29T12:11:35Z", "xmlid": "ros_ob_1s(2)"}, "size": "3", "start_date": "2014-11-22T00:00:15Z", "stop_date": "2016-09-29T12:11:35Z", "ucd": "phys.magField", "units": "nT", "xmlid": "ros_ob_1s"}, "ros_ob_1stot": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_ob_1stot", "dataset": "ros-magob-1s", "is_public": "True", "name": "|b|", "start_date": "2014-11-22T00:00:15Z", "stop_date": "2016-09-29T12:11:35Z", "ucd": "phys.magField", "units": "nT", "xmlid": "ros_ob_1stot"}, "sampling": "1S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Rosetta/MAG/ros-magob-1s", "start_date": "2014-11-22T00:00:15Z", "stop_date": "2016-09-29T12:11:35Z", "xmlid": "ros-magob-1s"}, "ros_magob_20hz": {"__spz_name__": "0.05 s", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ros-magob-20hz", "att": "auto/ros-magob-20hz", "dataSource": "PSA", "desc": "Onboard calibrated; burst mode
Sampling: 1S
Provider: PSA", "is_public": "True", "lastModificationDate": "2019-04-02T15:31:54Z", "lastUpdate": "2019-03-29T02:45:19Z", "measurement_type": "MagneticField", "name": "0.05 s", "processing_level": "Calibrated", "ros_ob_20hz": {"__spz_name__": "b_cseq", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_ob_20hz", "dataset": "ros-magob-20hz", "display_type": "timeseries", "is_public": "True", "name": "b_cseq", "ros_ob_20hz0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ros_ob_20hz(0)", "dataset": "ros-magob-20hz", "index1": "0", "is_public": "True", "name": "bx", "parameter": "ros_ob_20hz", "start_date": "2014-11-22T02:01:57Z", "stop_date": "2016-09-30T10:39:25Z", "xmlid": "ros_ob_20hz(0)"}, "ros_ob_20hz1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ros_ob_20hz(1)", "dataset": "ros-magob-20hz", "index1": "1", "is_public": "True", "name": "by", "parameter": "ros_ob_20hz", "start_date": "2014-11-22T02:01:57Z", "stop_date": "2016-09-30T10:39:25Z", "xmlid": "ros_ob_20hz(1)"}, "ros_ob_20hz2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ros_ob_20hz(2)", "dataset": "ros-magob-20hz", "index1": "2", "is_public": "True", "name": "bz", "parameter": "ros_ob_20hz", "start_date": "2014-11-22T02:01:57Z", "stop_date": "2016-09-30T10:39:25Z", "xmlid": "ros_ob_20hz(2)"}, "size": "3", "start_date": "2014-11-22T02:01:57Z", "stop_date": "2016-09-30T10:39:25Z", "ucd": "phys.magField", "units": "nT", "xmlid": "ros_ob_20hz"}, "ros_ob_20hztot": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_ob_20hztot", "dataset": "ros-magob-20hz", "is_public": "True", "name": "|b|", "start_date": "2014-11-22T02:01:57Z", "stop_date": "2016-09-30T10:39:25Z", "ucd": "phys.magField", "units": "nT", "xmlid": "ros_ob_20hztot"}, "sampling": "1S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Rosetta/MAG/ros-magob-20hz", "start_date": "2014-11-22T02:01:57Z", "stop_date": "2016-09-30T10:39:25Z", "xmlid": "ros-magob-20hz"}, "ros_magob_rsmp": {"__spz_name__": "60 s : resampled", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ros-magob-rsmp", "att": "auto/ros-magob-rsmp", "dataSource": "Imperial College", "desc": "Outboard calibrated; resampled
Sampling: 60S
Provider: Imperial College", "is_public": "True", "lastModificationDate": "2022-07-18T11:54:48Z", "lastUpdate": "2022-07-18T11:54:49Z", "measurement_type": "MagneticField", "name": "60 s : resampled", "processing_level": "Calibrated", "ros_ob_rsmp": {"__spz_name__": "b_cseq", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_ob_rsmp", "dataset": "ros-magob-rsmp", "display_type": "timeseries", "is_public": "True", "name": "b_cseq", "ros_ob_rsmp0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ros_ob_rsmp(0)", "dataset": "ros-magob-rsmp", "index1": "0", "is_public": "True", "name": "bx", "parameter": "ros_ob_rsmp", "start_date": "2004-03-17T22:58:38Z", "stop_date": "2016-09-30T10:38:02Z", "xmlid": "ros_ob_rsmp(0)"}, "ros_ob_rsmp1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ros_ob_rsmp(1)", "dataset": "ros-magob-rsmp", "index1": "1", "is_public": "True", "name": "by", "parameter": "ros_ob_rsmp", "start_date": "2004-03-17T22:58:38Z", "stop_date": "2016-09-30T10:38:02Z", "xmlid": "ros_ob_rsmp(1)"}, "ros_ob_rsmp2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ros_ob_rsmp(2)", "dataset": "ros-magob-rsmp", "index1": "2", "is_public": "True", "name": "bz", "parameter": "ros_ob_rsmp", "start_date": "2004-03-17T22:58:38Z", "stop_date": "2016-09-30T10:38:02Z", "xmlid": "ros_ob_rsmp(2)"}, "size": "3", "start_date": "2004-03-17T22:58:38Z", "stop_date": "2016-09-30T10:38:02Z", "ucd": "phys.magField", "units": "nT", "xmlid": "ros_ob_rsmp"}, "ros_ob_totrsmp": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_ob_totrsmp", "dataset": "ros-magob-rsmp", "is_public": "True", "name": "|b|", "start_date": "2004-03-17T22:58:38Z", "stop_date": "2016-09-30T10:38:02Z", "ucd": "phys.magField", "units": "nT", "xmlid": "ros_ob_totrsmp"}, "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Rosetta/MAG/ros-magob-rsmp", "start_date": "2004-03-17T22:58:38Z", "stop_date": "2016-09-30T10:38:02Z", "target": "Comet", "xmlid": "ros-magob-rsmp"}, "ros_magob_rsmp1s": {"__spz_name__": "1 s : resampled", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ros-magob-rsmp1s", "att": "auto/ros-magob-rsmp1s", "dataSource": "Imperial College", "desc": "Outboard calibrated; resampled
Sampling: 1S
Provider: Imperial College", "is_public": "True", "lastModificationDate": "2019-04-04T10:22:57Z", "lastUpdate": "2019-04-03T17:32:33Z", "measurement_type": "MagneticField", "name": "1 s : resampled", "processing_level": "Calibrated", "ros_ob_rsmp1": {"__spz_name__": "b_cseq", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_ob_rsmp1", "dataset": "ros-magob-rsmp1s", "display_type": "timeseries", "is_public": "True", "name": "b_cseq", "ros_ob_rsmp10": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ros_ob_rsmp1(0)", "dataset": "ros-magob-rsmp1s", "index1": "0", "is_public": "True", "name": "bx", "parameter": "ros_ob_rsmp1", "start_date": "2004-03-17T22:58:09Z", "stop_date": "2016-09-30T10:39:17Z", "xmlid": "ros_ob_rsmp1(0)"}, "ros_ob_rsmp11": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ros_ob_rsmp1(1)", "dataset": "ros-magob-rsmp1s", "index1": "1", "is_public": "True", "name": "by", "parameter": "ros_ob_rsmp1", "start_date": "2004-03-17T22:58:09Z", "stop_date": "2016-09-30T10:39:17Z", "xmlid": "ros_ob_rsmp1(1)"}, "ros_ob_rsmp12": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ros_ob_rsmp1(2)", "dataset": "ros-magob-rsmp1s", "index1": "2", "is_public": "True", "name": "bz", "parameter": "ros_ob_rsmp1", "start_date": "2004-03-17T22:58:09Z", "stop_date": "2016-09-30T10:39:17Z", "xmlid": "ros_ob_rsmp1(2)"}, "size": "3", "start_date": "2004-03-17T22:58:09Z", "stop_date": "2016-09-30T10:39:17Z", "ucd": "phys.magField", "units": "nT", "xmlid": "ros_ob_rsmp1"}, "ros_ob_totrsmp1": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_ob_totrsmp1", "dataset": "ros-magob-rsmp1s", "is_public": "True", "name": "|b|", "start_date": "2004-03-17T22:58:09Z", "stop_date": "2016-09-30T10:39:17Z", "ucd": "phys.magField", "units": "nT", "xmlid": "ros_ob_totrsmp1"}, "sampling": "1S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Rosetta/MAG/ros-magob-rsmp1s", "start_date": "2004-03-17T22:58:09Z", "stop_date": "2016-09-30T10:39:17Z", "target": "Comet", "xmlid": "ros-magob-rsmp1s"}, "xmlid": "Outboard_Sensor"}, "xmlid": "Rosetta_mag"}, "MIP": {"__spz_name__": "MIP", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Rosetta_mip", "att": "auto/Rosetta_mip", "desc": "Mutual Impedance Probe
Antenna", "is_public": "True", "long_Debye_length_mode": {"__spz_name__": "long Debye length mode", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "ros-mip-longdebye", "is_public": "True", "name": "long Debye length mode", "ros_mip_ldl": {"__spz_name__": "power", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ros-mip-ldl", "att": "auto/ros-mip-ldl", "dataSource": "LPC2E via ImperialCollege", "desc": "long Debye length mode : power
MinSampling: 2.5S; MaxSampling: 32S
Provider: LPC2E via ImperialCollege", "is_public": "True", "lastModificationDate": "2017-12-01T00:56:24Z", "lastUpdate": "2017-12-01T00:55:09Z", "maxSampling": "32S", "measurement_type": "Waves", "name": "power", "processing_level": "Calibrated", "ros_mip_ldlp": {"__spz_name__": "ldl power", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_mip_ldlp", "dataset": "ros-mip-ldl", "display_type": "spectrogram", "is_public": "True", "name": "ldl power", "start_date": "2014-05-13T14:39:49Z", "stop_date": "2016-09-24T10:57:13Z", "units": "dB", "xmlid": "ros_mip_ldlp"}, "sampling": "2.5S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Rosetta/MIP/ros-mip-ldl", "start_date": "2014-05-13T14:39:49Z", "stop_date": "2016-09-24T10:57:13Z", "xmlid": "ros-mip-ldl"}, "ros_mip_ldlphase": {"__spz_name__": "phase", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ros-mip-ldlphase", "att": "auto/ros-mip-ldlphase", "dataSource": "LPC2E via ImperialCollege", "desc": "long Debye length mode : phase
MinSampling: 2.5S; MaxSampling: 32S
Provider: LPC2E via ImperialCollege", "is_public": "True", "lastModificationDate": "2017-12-01T01:01:57Z", "lastUpdate": "2017-12-01T01:00:46Z", "maxSampling": "32S", "measurement_type": "Waves", "name": "phase", "processing_level": "Calibrated", "ros_mip_ldlph": {"__spz_name__": "ldl phase", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_mip_ldlph", "dataset": "ros-mip-ldlphase", "display_type": "spectrogram", "is_public": "True", "name": "ldl phase", "start_date": "2014-05-13T14:39:49Z", "stop_date": "2016-09-24T10:57:13Z", "units": "deg", "xmlid": "ros_mip_ldlph"}, "sampling": "2.5S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Rosetta/MIP/ros-mip-ldlphase", "start_date": "2014-05-13T14:39:49Z", "stop_date": "2016-09-24T10:57:13Z", "xmlid": "ros-mip-ldlphase"}, "xmlid": "ros-mip-longdebye"}, "name": "MIP", "ros_mip_estim": {"__spz_name__": "plasma density", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ros-mip-estim", "att": "auto/ros-mip-estim", "dataSource": "PSA", "desc": "plasma density proxy
MinSampling: 2.65S; MaxSampling: 128S
Provider: PSA", "is_public": "True", "lastModificationDate": "2019-10-15T11:54:36Z", "lastUpdate": "2019-10-15T11:54:55Z", "maxSampling": "128S", "measurement_type": "Waves", "name": "plasma density", "processing_level": "Calibrated", "ros_mip_dens": {"__spz_name__": "density proxy", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_mip_dens", "dataset": "ros-mip-estim", "display_type": "timeseries", "is_public": "True", "name": "density proxy", "start_date": "2014-08-07T12:18:07Z", "stop_date": "2016-09-30T10:38:31Z", "units": "cm\u207b\u00b3", "xmlid": "ros_mip_dens"}, "ros_mip_unc": {"__spz_name__": "density uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_mip_unc", "dataset": "ros-mip-estim", "display_type": "timeseries", "is_public": "True", "name": "density uncertainty", "start_date": "2014-08-07T12:18:07Z", "stop_date": "2016-09-30T10:38:31Z", "units": "cm\u207b\u00b3", "xmlid": "ros_mip_unc"}, "sampling": "2.65S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Rosetta/MIP/ros-mip-estim", "start_date": "2014-08-07T12:18:07Z", "stop_date": "2016-09-30T10:38:31Z", "xmlid": "ros-mip-estim"}, "ros_mip_pass": {"__spz_name__": "passive full mode", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ros-mip-pass", "att": "auto/ros-mip-pass", "dataSource": "LPC2E via ImperialCollege", "desc": "passive full mode
MinSampling: 3.5S; MaxSampling: 32S
Provider: LPC2E via ImperialCollege", "is_public": "True", "lastModificationDate": "2018-09-26T12:29:15Z", "lastUpdate": "2017-12-01T00:49:01Z", "maxSampling": "32S", "measurement_type": "Waves", "name": "passive full mode", "processing_level": "Calibrated", "ros_mip_passp": {"__spz_name__": "passfull power", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_mip_passp", "dataset": "ros-mip-pass", "display_type": "spectrogram", "is_public": "True", "name": "passfull power", "start_date": "2014-05-09T15:21:06Z", "stop_date": "2016-09-30T10:39:10Z", "units": "dB", "xmlid": "ros_mip_passp"}, "sampling": "3.5S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Rosetta/MIP/ros-mip-pass", "start_date": "2014-05-09T15:21:06Z", "stop_date": "2016-09-30T10:39:10Z", "xmlid": "ros-mip-pass"}, "ros_mip_pasw": {"__spz_name__": "passive window mode", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ros-mip-pasw", "att": "auto/ros-mip-pasw", "dataSource": "LPC2E via ImperialCollege", "desc": "
MinSampling: 1.2S; MaxSampling: 32S
Provider: LPC2E via ImperialCollege", "is_public": "True", "lastModificationDate": "2018-09-26T12:44:17Z", "lastUpdate": "2017-12-01T00:57:39Z", "maxSampling": "32S", "measurement_type": "Waves", "name": "passive window mode", "processing_level": "Calibrated", "ros_mip_paswp": {"__spz_name__": "passwindow power", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_mip_paswp", "dataset": "ros-mip-pasw", "display_type": "spectrogram", "is_public": "True", "name": "passwindow power", "start_date": "2014-05-13T14:39:55Z", "stop_date": "2016-09-24T10:57:09Z", "units": "dB", "xmlid": "ros_mip_paswp"}, "sampling": "1.2S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Rosetta/MIP/ros-mip-pasw", "start_date": "2014-05-13T14:39:55Z", "stop_date": "2016-09-24T10:57:09Z", "xmlid": "ros-mip-pasw"}, "survey_full_mode": {"__spz_name__": "survey full mode", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "ros-mip-survey", "is_public": "True", "name": "survey full mode", "ros_mip_surv": {"__spz_name__": "power", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ros-mip-surv", "att": "auto/ros-mip-surv", "dataSource": "LPC2E via ImperialCollege", "desc": "survey full mode : power
MinSampling: 5S; MaxSampling: 32S
Provider: LPC2E via ImperialCollege", "is_public": "True", "lastModificationDate": "2018-09-26T12:20:38Z", "lastUpdate": "2017-12-01T00:38:33Z", "maxSampling": "32S", "measurement_type": "Waves", "name": "power", "processing_level": "Calibrated", "ros_mip_survp": {"__spz_name__": "survey power", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_mip_survp", "dataset": "ros-mip-surv", "display_type": "spectrogram", "is_public": "True", "name": "survey power", "start_date": "2014-05-09T15:20:52Z", "stop_date": "2016-09-30T10:39:11Z", "units": "dB", "xmlid": "ros_mip_survp"}, "sampling": "5S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Rosetta/MIP/ros-mip-surv", "start_date": "2014-05-09T15:20:52Z", "stop_date": "2016-09-30T10:39:11Z", "xmlid": "ros-mip-surv"}, "ros_mip_survphase": {"__spz_name__": "phase", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ros-mip-survphase", "att": "auto/ros-mip-survphase", "dataSource": "LPC2E via ImperialCollege", "desc": "survey full mode : phase
MinSampling: 5S; MaxSampling: 32S
Provider: LPC2E via ImperialCollege", "is_public": "True", "lastModificationDate": "2018-09-25T17:50:18Z", "lastUpdate": "2017-12-01T01:04:30Z", "maxSampling": "32S", "measurement_type": "Waves", "name": "phase", "processing_level": "Calibrated", "ros_mip_survph": {"__spz_name__": "survey phase", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_mip_survph", "dataset": "ros-mip-survphase", "display_type": "spectrogram", "is_public": "True", "name": "survey phase", "start_date": "2014-05-09T15:20:52Z", "stop_date": "2016-09-30T10:39:11Z", "units": "deg", "xmlid": "ros_mip_survph"}, "sampling": "5S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Rosetta/MIP/ros-mip-survphase", "start_date": "2014-05-09T15:20:52Z", "stop_date": "2016-09-30T10:39:11Z", "xmlid": "ros-mip-survphase"}, "xmlid": "ros-mip-survey"}, "xmlid": "Rosetta_mip"}, "ROSINA": {"COPS_housekeeping": {"__spz_name__": "COPS housekeeping", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "ros-rsn-hk", "is_public": "True", "name": "COPS housekeeping", "ros_rsn_bg": {"__spz_name__": "both gauges mode", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ros-rsn-bg", "att": "auto/ros-rsn-bg", "dataSource": "PSA", "desc": "Pressure from COPS sensor : HouseKeeping : Both Gauges (BG) mode
Sampling: 60S
Provider: PSA", "is_public": "True", "lastModificationDate": "2019-03-19T19:01:47Z", "lastUpdate": "2019-03-19T19:02:27Z", "measurement_type": "NeutralGas", "name": "both gauges mode", "processing_level": "Calibrated", "ros_rsn_bg_ng": {"__spz_name__": "nude gauge : pressure", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_rsn_bg_ng", "dataset": "ros-rsn-bg", "display_type": "timeseries", "is_public": "True", "name": "nude gauge : pressure", "start_date": "2014-11-19T02:46:52Z", "stop_date": "2016-09-30T10:37:52Z", "units": "nPa", "xmlid": "ros_rsn_bg_ng"}, "ros_rsn_bg_rg": {"__spz_name__": "ram gauge : pressure", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_rsn_bg_rg", "dataset": "ros-rsn-bg", "display_type": "timeseries", "is_public": "True", "name": "ram gauge : pressure", "start_date": "2014-11-19T02:46:52Z", "stop_date": "2016-09-30T10:37:52Z", "units": "nPa", "xmlid": "ros_rsn_bg_rg"}, "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Rosetta/RSN/ros-rsn-bg", "start_date": "2014-11-19T02:46:52Z", "stop_date": "2016-09-30T10:37:52Z", "xmlid": "ros-rsn-bg"}, "ros_rsn_cops": {"__spz_name__": "all modes merged", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ros-rsn-cops", "att": "auto/ros-rsn-cops", "dataSource": "PSA", "desc": "Pressure from COPS sensor : HouseKeeping : all modes merged
Sampling: 60S
Provider: PSA", "is_public": "True", "lastModificationDate": "2019-03-20T12:23:41Z", "lastUpdate": "2019-03-20T11:56:10Z", "measurement_type": "NeutralGas", "name": "all modes merged", "processing_level": "Calibrated", "ros_rsn_all_ng": {"__spz_name__": "nude gauge : pressure", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_rsn_all_ng", "dataset": "ros-rsn-cops", "display_type": "timeseries", "is_public": "True", "name": "nude gauge : pressure", "start_date": "2014-11-19T02:46:52Z", "stop_date": "2016-09-30T10:37:52Z", "units": "nPa", "xmlid": "ros_rsn_all_ng"}, "ros_rsn_all_rg": {"__spz_name__": "ram gauge : pressure", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_rsn_all_rg", "dataset": "ros-rsn-cops", "display_type": "timeseries", "is_public": "True", "name": "ram gauge : pressure", "start_date": "2014-11-19T02:46:52Z", "stop_date": "2016-09-30T10:37:52Z", "units": "nPa", "xmlid": "ros_rsn_all_rg"}, "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Rosetta/RSN/ros-rsn-cops", "start_date": "2014-11-19T02:46:52Z", "stop_date": "2016-09-30T10:37:52Z", "xmlid": "ros-rsn-cops"}, "ros_rsn_ng": {"__spz_name__": "nude gauge mode", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ros-rsn-ng", "att": "auto/ros-rsn-ng", "dataSource": "PSA", "desc": "Pressure from COPS sensor : HouseKeeping : Nude Gauge (NG) mode
Sampling: 60S
Provider: PSA", "is_public": "True", "lastModificationDate": "2019-03-19T18:49:59Z", "lastUpdate": "2019-03-19T18:49:19Z", "measurement_type": "NeutralGas", "name": "nude gauge mode", "processing_level": "Calibrated", "ros_rsn_ng_ng": {"__spz_name__": "nude gauge : pressure", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_rsn_ng_ng", "dataset": "ros-rsn-ng", "display_type": "timeseries", "is_public": "True", "name": "nude gauge : pressure", "start_date": "2015-01-14T04:26:52Z", "stop_date": "2016-09-05T06:34:55Z", "units": "nPa", "xmlid": "ros_rsn_ng_ng"}, "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Rosetta/RSN/ros-rsn-ng", "start_date": "2015-01-14T04:26:52Z", "stop_date": "2016-09-05T06:34:55Z", "xmlid": "ros-rsn-ng"}, "ros_rsn_rg": {"__spz_name__": "ram gauge mode", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ros-rsn-rg", "att": "auto/ros-rsn-rg", "dataSource": "PSA", "desc": "Pressure from COPS sensor : HouseKeeping : Ram Gauge (RG) mode
Sampling: 60S
Provider: PSA", "is_public": "True", "lastModificationDate": "2019-03-19T19:07:08Z", "lastUpdate": "2019-03-19T19:07:54Z", "measurement_type": "NeutralGas", "name": "ram gauge mode", "processing_level": "Calibrated", "ros_rsn_rg_rg": {"__spz_name__": "ram gauge : pressure", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_rsn_rg_rg", "dataset": "ros-rsn-rg", "display_type": "timeseries", "is_public": "True", "name": "ram gauge : pressure", "start_date": "2016-02-20T06:13:40Z", "stop_date": "2016-08-29T10:49:38Z", "units": "nPa", "xmlid": "ros_rsn_rg_rg"}, "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Rosetta/RSN/ros-rsn-rg", "start_date": "2016-02-20T06:13:40Z", "stop_date": "2016-08-29T10:49:38Z", "xmlid": "ros-rsn-rg"}, "xmlid": "ros-rsn-hk"}, "COPS_science_mode": {"__spz_name__": "COPS science mode", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "ros-rsn-sci", "is_public": "True", "name": "COPS science mode", "ros_rsn_sn": {"__spz_name__": "nude gauge mode", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ros-rsn-sn", "att": "auto/ros-rsn-sn", "dataSource": "PSA", "desc": "Pressure from COPS sensor : Science (SN) mode : Nude Gauge
Sampling: 2S
Provider: PSA", "is_public": "True", "lastModificationDate": "2019-03-21T10:36:18Z", "lastUpdate": "2019-03-21T10:31:27Z", "measurement_type": "NeutralGas", "name": "nude gauge mode", "processing_level": "Calibrated", "ros_rsn_sn_ng": {"__spz_name__": "nude gauge : pressure", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_rsn_sn_ng", "dataset": "ros-rsn-sn", "display_type": "timeseries", "is_public": "True", "name": "nude gauge : pressure", "start_date": "2014-12-15T00:22:51Z", "stop_date": "2016-09-30T10:17:55Z", "units": "nPa", "xmlid": "ros_rsn_sn_ng"}, "sampling": "2S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Rosetta/RSN/ros-rsn-sn", "start_date": "2014-12-15T00:22:51Z", "stop_date": "2016-09-30T10:17:55Z", "xmlid": "ros-rsn-sn"}, "ros_rsn_sr": {"__spz_name__": "ram gauge mode", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ros-rsn-sr", "att": "auto/ros-rsn-sr", "dataSource": "PSA", "desc": "Pressure from COPS sensor : Science (SG) mode : Ram Gauge
Sampling: 2S
Provider: PSA", "is_public": "True", "lastModificationDate": "2019-03-21T17:41:05Z", "lastUpdate": "2019-03-21T17:35:25Z", "measurement_type": "NeutralGas", "name": "ram gauge mode", "processing_level": "Calibrated", "ros_rsn_sr_rg": {"__spz_name__": "ram gauge : pressure", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_rsn_sr_rg", "dataset": "ros-rsn-sr", "display_type": "timeseries", "is_public": "True", "name": "ram gauge : pressure", "start_date": "2014-12-15T00:22:51Z", "stop_date": "2016-09-30T10:17:55Z", "units": "nPa", "xmlid": "ros_rsn_sr_rg"}, "sampling": "2S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Rosetta/RSN/ros-rsn-sr", "start_date": "2014-12-15T00:22:51Z", "stop_date": "2016-09-30T10:17:55Z", "xmlid": "ros-rsn-sr"}, "xmlid": "ros-rsn-sci"}, "__spz_name__": "ROSINA", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Rosetta_rsn", "att": "auto/Rosetta_rsn", "desc": "Rosetta Orbiter Spectrometer for Ion and Neutral Analysis
MassSpectrometer", "is_public": "True", "name": "ROSINA", "ros_rsn_den": {"__spz_name__": "density/pressure", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ros-rsn-den", "att": "auto/ros-rsn-den", "dataSource": "University of Bern via ImperialCollege", "desc": "density / pressure from COPS sensor : preliminary
Sampling: 60S
Provider: University of Bern via ImperialCollege", "is_public": "True", "lastModificationDate": "2018-03-23T00:55:58Z", "lastUpdate": "2017-09-22T00:31:52Z", "measurement_type": "NeutralGas", "name": "density/pressure", "processing_level": "Calibrated", "ros_rsn_n_ng": {"__spz_name__": "nude gauge : density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_rsn_n_ng", "dataset": "ros-rsn-den", "display_type": "timeseries", "is_public": "True", "name": "nude gauge : density", "start_date": "2014-03-29T16:29:44Z", "stop_date": "2016-09-30T10:23:36Z", "units": "cm\u207b\u00b3", "xmlid": "ros_rsn_n_ng"}, "ros_rsn_p_ng": {"__spz_name__": "nude gauge : pressure", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_rsn_p_ng", "dataset": "ros-rsn-den", "display_type": "timeseries", "is_public": "True", "name": "nude gauge : pressure", "start_date": "2014-03-29T16:29:44Z", "stop_date": "2016-09-30T10:23:36Z", "units": "nPa", "xmlid": "ros_rsn_p_ng"}, "ros_rsn_p_rg": {"__spz_name__": "ram gauge : pressure", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_rsn_p_rg", "dataset": "ros-rsn-den", "display_type": "timeseries", "is_public": "True", "name": "ram gauge : pressure", "start_date": "2014-03-29T16:29:44Z", "stop_date": "2016-09-30T10:23:36Z", "units": "nPa", "xmlid": "ros_rsn_p_rg"}, "ros_rsn_proxy": {"__spz_name__": "outgassing rate proxy", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_rsn_proxy", "dataset": "ros-rsn-den", "display_type": "timeseries", "is_public": "True", "name": "outgassing rate proxy", "start_date": "2014-03-29T16:29:44Z", "stop_date": "2016-09-30T10:23:36Z", "units": "molecules/m", "xmlid": "ros_rsn_proxy"}, "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Rosetta/RSN/ros-rsn-den", "start_date": "2014-03-29T16:29:44Z", "stop_date": "2016-09-30T10:23:36Z", "xmlid": "ros-rsn-den"}, "xmlid": "Rosetta_rsn"}, "__spz_name__": "Rosetta", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Rosetta", "att": "auto/Rosetta", "desc": "ESA mission to the comet Churjumov-Gerasimenko
2004-03-02T07:17:00 - 2016-09-30T00:00:00
C-G arrival : 2014-08-06T00:00:00", "is_public": "True", "name": "Rosetta", "rank": "94", "target": "Comet", "xmlid": "Rosetta"}, "SOHO": {"COSTEP": {"EPHIN": {"__spz_name__": "EPHIN", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "soho-costep-ephin", "is_public": "True", "name": "EPHIN", "soho_ephin_10min": {"__spz_name__": "10 min", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "soho-ephin-10min", "att": "auto/soho-ephin-10min", "dataSource": "http://ulysses.physik.uni-kiel.de/costep/level3/l3i/", "desc": "
Sampling: 10M
Provider: http://ulysses.physik.uni-kiel.de/costep/level3/l3i/", "is_public": "True", "lastModificationDate": "2024-10-06T22:38:27Z", "lastUpdate": "2024-10-06T22:38:26Z", "measurement_type": "EnergeticParticles", "name": "10 min", "processing_level": "ValueAdded", "sampling": "10M", "soho_ephin_10minhe": {"__spz_name__": "He flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "soho_ephin_10minhe", "dataset": "soho-ephin-10min", "is_public": "True", "name": "He flux", "size": "4", "soho_ephin_10minhe0": {"__spz_name__": "4.3 - 7.8 MeV/n", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "soho_ephin_10minhe(0)", "dataset": "soho-ephin-10min", "index1": "0", "is_public": "True", "name": "4.3 - 7.8 MeV/n", "parameter": "soho_ephin_10minhe", "start_date": "1995-12-08T00:00:00Z", "stop_date": "2024-10-03T23:50:00Z", "xmlid": "soho_ephin_10minhe(0)"}, "soho_ephin_10minhe1": {"__spz_name__": "7.8 - 25 MeV/n", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "soho_ephin_10minhe(1)", "dataset": "soho-ephin-10min", "index1": "1", "is_public": "True", "name": "7.8 - 25 MeV/n", "parameter": "soho_ephin_10minhe", "start_date": "1995-12-08T00:00:00Z", "stop_date": "2024-10-03T23:50:00Z", "xmlid": "soho_ephin_10minhe(1)"}, "soho_ephin_10minhe2": {"__spz_name__": "25 - 40.9 MeV/n", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "soho_ephin_10minhe(2)", "dataset": "soho-ephin-10min", "index1": "2", "is_public": "True", "name": "25 - 40.9 MeV/n", "parameter": "soho_ephin_10minhe", "start_date": "1995-12-08T00:00:00Z", "stop_date": "2024-10-03T23:50:00Z", "xmlid": "soho_ephin_10minhe(2)"}, "soho_ephin_10minhe3": {"__spz_name__": "40.9 - 53 MeV/n", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "soho_ephin_10minhe(3)", "dataset": "soho-ephin-10min", "index1": "3", "is_public": "True", "name": "40.9 - 53 MeV/n", "parameter": "soho_ephin_10minhe", "start_date": "1995-12-08T00:00:00Z", "stop_date": "2024-10-03T23:50:00Z", "xmlid": "soho_ephin_10minhe(3)"}, "start_date": "1995-12-08T00:00:00Z", "stop_date": "2024-10-03T23:50:00Z", "units": "1/(cm\u00b2 s sr MeV/n)", "xmlid": "soho_ephin_10minhe"}, "soho_ephin_10minp": {"__spz_name__": "proton flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "soho_ephin_10minp", "dataset": "soho-ephin-10min", "is_public": "True", "name": "proton flux", "size": "4", "soho_ephin_10minp0": {"__spz_name__": "4.3 - 7.8 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "soho_ephin_10minp(0)", "dataset": "soho-ephin-10min", "index1": "0", "is_public": "True", "name": "4.3 - 7.8 MeV", "parameter": "soho_ephin_10minp", "start_date": "1995-12-08T00:00:00Z", "stop_date": "2024-10-03T23:50:00Z", "xmlid": "soho_ephin_10minp(0)"}, "soho_ephin_10minp1": {"__spz_name__": "7.8 - 25 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "soho_ephin_10minp(1)", "dataset": "soho-ephin-10min", "index1": "1", "is_public": "True", "name": "7.8 - 25 MeV", "parameter": "soho_ephin_10minp", "start_date": "1995-12-08T00:00:00Z", "stop_date": "2024-10-03T23:50:00Z", "xmlid": "soho_ephin_10minp(1)"}, "soho_ephin_10minp2": {"__spz_name__": "25 - 40.9 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "soho_ephin_10minp(2)", "dataset": "soho-ephin-10min", "index1": "2", "is_public": "True", "name": "25 - 40.9 MeV", "parameter": "soho_ephin_10minp", "start_date": "1995-12-08T00:00:00Z", "stop_date": "2024-10-03T23:50:00Z", "xmlid": "soho_ephin_10minp(2)"}, "soho_ephin_10minp3": {"__spz_name__": "40.9 - 53 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "soho_ephin_10minp(3)", "dataset": "soho-ephin-10min", "index1": "3", "is_public": "True", "name": "40.9 - 53 MeV", "parameter": "soho_ephin_10minp", "start_date": "1995-12-08T00:00:00Z", "stop_date": "2024-10-03T23:50:00Z", "xmlid": "soho_ephin_10minp(3)"}, "start_date": "1995-12-08T00:00:00Z", "stop_date": "2024-10-03T23:50:00Z", "units": "1/(cm\u00b2 s sr MeV)", "xmlid": "soho_ephin_10minp"}, "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/SOHO/COSTEP/soho-ephin-10min", "start_date": "1995-12-08T00:00:00Z", "stop_date": "2024-10-03T23:50:00Z", "target": "Heliosphere.NearEarth", "xmlid": "soho-ephin-10min"}, "soho_ephin_1min": {"__spz_name__": "1 min", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "soho-ephin-1min", "att": "auto/soho-ephin-1min", "dataSource": "http://ulysses.physik.uni-kiel.de/costep/level3/l3i/", "desc": "
Sampling: 1M
Provider: http://ulysses.physik.uni-kiel.de/costep/level3/l3i/", "is_public": "True", "lastModificationDate": "2024-10-06T22:38:41Z", "lastUpdate": "2024-10-06T22:38:40Z", "measurement_type": "EnergeticParticles", "name": "1 min", "processing_level": "ValueAdded", "sampling": "1M", "soho_ephin_1minhe": {"__spz_name__": "He flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "soho_ephin_1minhe", "dataset": "soho-ephin-1min", "is_public": "True", "name": "He flux", "size": "4", "soho_ephin_1minhe0": {"__spz_name__": "4.3 - 7.8 MeV/n", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "soho_ephin_1minhe(0)", "dataset": "soho-ephin-1min", "index1": "0", "is_public": "True", "name": "4.3 - 7.8 MeV/n", "parameter": "soho_ephin_1minhe", "start_date": "1995-12-08T00:01:00Z", "stop_date": "2024-10-03T23:59:00Z", "xmlid": "soho_ephin_1minhe(0)"}, "soho_ephin_1minhe1": {"__spz_name__": "7.8 - 25 MeV/n", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "soho_ephin_1minhe(1)", "dataset": "soho-ephin-1min", "index1": "1", "is_public": "True", "name": "7.8 - 25 MeV/n", "parameter": "soho_ephin_1minhe", "start_date": "1995-12-08T00:01:00Z", "stop_date": "2024-10-03T23:59:00Z", "xmlid": "soho_ephin_1minhe(1)"}, "soho_ephin_1minhe2": {"__spz_name__": "25 - 40.9 MeV/n", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "soho_ephin_1minhe(2)", "dataset": "soho-ephin-1min", "index1": "2", "is_public": "True", "name": "25 - 40.9 MeV/n", "parameter": "soho_ephin_1minhe", "start_date": "1995-12-08T00:01:00Z", "stop_date": "2024-10-03T23:59:00Z", "xmlid": "soho_ephin_1minhe(2)"}, "soho_ephin_1minhe3": {"__spz_name__": "40.9 - 53 MeV/n", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "soho_ephin_1minhe(3)", "dataset": "soho-ephin-1min", "index1": "3", "is_public": "True", "name": "40.9 - 53 MeV/n", "parameter": "soho_ephin_1minhe", "start_date": "1995-12-08T00:01:00Z", "stop_date": "2024-10-03T23:59:00Z", "xmlid": "soho_ephin_1minhe(3)"}, "start_date": "1995-12-08T00:01:00Z", "stop_date": "2024-10-03T23:59:00Z", "units": "1/(cm\u00b2 s sr MeV/n)", "xmlid": "soho_ephin_1minhe"}, "soho_ephin_1minp": {"__spz_name__": "proton flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "soho_ephin_1minp", "dataset": "soho-ephin-1min", "is_public": "True", "name": "proton flux", "size": "4", "soho_ephin_1minp0": {"__spz_name__": "4.3 - 7.8 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "soho_ephin_1minp(0)", "dataset": "soho-ephin-1min", "index1": "0", "is_public": "True", "name": "4.3 - 7.8 MeV", "parameter": "soho_ephin_1minp", "start_date": "1995-12-08T00:01:00Z", "stop_date": "2024-10-03T23:59:00Z", "xmlid": "soho_ephin_1minp(0)"}, "soho_ephin_1minp1": {"__spz_name__": "7.8 - 25 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "soho_ephin_1minp(1)", "dataset": "soho-ephin-1min", "index1": "1", "is_public": "True", "name": "7.8 - 25 MeV", "parameter": "soho_ephin_1minp", "start_date": "1995-12-08T00:01:00Z", "stop_date": "2024-10-03T23:59:00Z", "xmlid": "soho_ephin_1minp(1)"}, "soho_ephin_1minp2": {"__spz_name__": "25 - 40.9 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "soho_ephin_1minp(2)", "dataset": "soho-ephin-1min", "index1": "2", "is_public": "True", "name": "25 - 40.9 MeV", "parameter": "soho_ephin_1minp", "start_date": "1995-12-08T00:01:00Z", "stop_date": "2024-10-03T23:59:00Z", "xmlid": "soho_ephin_1minp(2)"}, "soho_ephin_1minp3": {"__spz_name__": "40.9 - 53 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "soho_ephin_1minp(3)", "dataset": "soho-ephin-1min", "index1": "3", "is_public": "True", "name": "40.9 - 53 MeV", "parameter": "soho_ephin_1minp", "start_date": "1995-12-08T00:01:00Z", "stop_date": "2024-10-03T23:59:00Z", "xmlid": "soho_ephin_1minp(3)"}, "start_date": "1995-12-08T00:01:00Z", "stop_date": "2024-10-03T23:59:00Z", "units": "1/(cm\u00b2 s sr MeV)", "xmlid": "soho_ephin_1minp"}, "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/SOHO/COSTEP/soho-ephin-1min", "start_date": "1995-12-08T00:01:00Z", "stop_date": "2024-10-03T23:59:00Z", "target": "Heliosphere.NearEarth", "xmlid": "soho-ephin-1min"}, "soho_ephin_60min": {"__spz_name__": "1 hour", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "soho-ephin-60min", "att": "auto/soho-ephin-60min", "dataSource": "http://ulysses.physik.uni-kiel.de/costep/level3/l3i/", "desc": "
Sampling: 60M
Provider: http://ulysses.physik.uni-kiel.de/costep/level3/l3i/", "is_public": "True", "lastModificationDate": "2024-10-06T22:38:15Z", "lastUpdate": "2024-10-06T22:38:15Z", "measurement_type": "EnergeticParticles", "name": "1 hour", "processing_level": "ValueAdded", "sampling": "60M", "soho_ephin_60minhe": {"__spz_name__": "He flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "soho_ephin_60minhe", "dataset": "soho-ephin-60min", "is_public": "True", "name": "He flux", "size": "4", "soho_ephin_60minhe0": {"__spz_name__": "4.3 - 7.8 MeV/n", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "soho_ephin_60minhe(0)", "dataset": "soho-ephin-60min", "index1": "0", "is_public": "True", "name": "4.3 - 7.8 MeV/n", "parameter": "soho_ephin_60minhe", "start_date": "1995-12-08T00:00:00Z", "stop_date": "2024-10-03T23:00:00Z", "xmlid": "soho_ephin_60minhe(0)"}, "soho_ephin_60minhe1": {"__spz_name__": "7.8 - 25 MeV/n", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "soho_ephin_60minhe(1)", "dataset": "soho-ephin-60min", "index1": "1", "is_public": "True", "name": "7.8 - 25 MeV/n", "parameter": "soho_ephin_60minhe", "start_date": "1995-12-08T00:00:00Z", "stop_date": "2024-10-03T23:00:00Z", "xmlid": "soho_ephin_60minhe(1)"}, "soho_ephin_60minhe2": {"__spz_name__": "25 - 40.9 MeV/n", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "soho_ephin_60minhe(2)", "dataset": "soho-ephin-60min", "index1": "2", "is_public": "True", "name": "25 - 40.9 MeV/n", "parameter": "soho_ephin_60minhe", "start_date": "1995-12-08T00:00:00Z", "stop_date": "2024-10-03T23:00:00Z", "xmlid": "soho_ephin_60minhe(2)"}, "soho_ephin_60minhe3": {"__spz_name__": "40.9 - 53 MeV/n", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "soho_ephin_60minhe(3)", "dataset": "soho-ephin-60min", "index1": "3", "is_public": "True", "name": "40.9 - 53 MeV/n", "parameter": "soho_ephin_60minhe", "start_date": "1995-12-08T00:00:00Z", "stop_date": "2024-10-03T23:00:00Z", "xmlid": "soho_ephin_60minhe(3)"}, "start_date": "1995-12-08T00:00:00Z", "stop_date": "2024-10-03T23:00:00Z", "units": "1/(cm\u00b2 s sr MeV/n)", "xmlid": "soho_ephin_60minhe"}, "soho_ephin_60minp": {"__spz_name__": "proton flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "soho_ephin_60minp", "dataset": "soho-ephin-60min", "is_public": "True", "name": "proton flux", "size": "4", "soho_ephin_60minp0": {"__spz_name__": "4.3 - 7.8 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "soho_ephin_60minp(0)", "dataset": "soho-ephin-60min", "index1": "0", "is_public": "True", "name": "4.3 - 7.8 MeV", "parameter": "soho_ephin_60minp", "start_date": "1995-12-08T00:00:00Z", "stop_date": "2024-10-03T23:00:00Z", "xmlid": "soho_ephin_60minp(0)"}, "soho_ephin_60minp1": {"__spz_name__": "7.8 - 25 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "soho_ephin_60minp(1)", "dataset": "soho-ephin-60min", "index1": "1", "is_public": "True", "name": "7.8 - 25 MeV", "parameter": "soho_ephin_60minp", "start_date": "1995-12-08T00:00:00Z", "stop_date": "2024-10-03T23:00:00Z", "xmlid": "soho_ephin_60minp(1)"}, "soho_ephin_60minp2": {"__spz_name__": "25 - 40.9 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "soho_ephin_60minp(2)", "dataset": "soho-ephin-60min", "index1": "2", "is_public": "True", "name": "25 - 40.9 MeV", "parameter": "soho_ephin_60minp", "start_date": "1995-12-08T00:00:00Z", "stop_date": "2024-10-03T23:00:00Z", "xmlid": "soho_ephin_60minp(2)"}, "soho_ephin_60minp3": {"__spz_name__": "40.9 - 53 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "soho_ephin_60minp(3)", "dataset": "soho-ephin-60min", "index1": "3", "is_public": "True", "name": "40.9 - 53 MeV", "parameter": "soho_ephin_60minp", "start_date": "1995-12-08T00:00:00Z", "stop_date": "2024-10-03T23:00:00Z", "xmlid": "soho_ephin_60minp(3)"}, "start_date": "1995-12-08T00:00:00Z", "stop_date": "2024-10-03T23:00:00Z", "units": "1/(cm\u00b2 s sr MeV)", "xmlid": "soho_ephin_60minp"}, "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/SOHO/COSTEP/soho-ephin-60min", "start_date": "1995-12-08T00:00:00Z", "stop_date": "2024-10-03T23:00:00Z", "target": "Heliosphere.NearEarth", "xmlid": "soho-ephin-60min"}, "xmlid": "soho-costep-ephin"}, "__spz_name__": "COSTEP", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "SOHO_costep", "att": "auto/SOHO_costep", "desc": "Comprehensive Suprathermal and Energetic Particle Instrument (COSTEP)
EnergeticParticleInstrument", "is_public": "True", "name": "COSTEP", "xmlid": "SOHO_costep"}, "ERNE": {"__spz_name__": "ERNE", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "SOHO_erne", "att": "auto/SOHO_erne", "desc": "Energetic and Relativistic Nuclei and Electrons
EnergeticParticleInstrument", "is_public": "True", "name": "ERNE", "soho_erne_hed": {"__spz_name__": "HED", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "soho-erne-hed", "att": "auto/soho-erne-hed", "dataSource": "https://srl.utu.fi/export/", "desc": "HED detector
Sampling: 1M
Provider: https://srl.utu.fi/export/", "is_public": "True", "lastModificationDate": "2024-10-06T22:38:03Z", "lastUpdate": "2024-09-25T12:06:45Z", "measurement_type": "EnergeticParticles", "name": "HED", "processing_level": "Calibrated", "sampling": "1M", "soho_erne_heda": {"__spz_name__": "4He flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "soho_erne_heda", "dataset": "soho-erne-hed", "is_public": "True", "name": "4He flux", "size": "10", "soho_erne_heda0": {"__spz_name__": "13 - 16 MeV/n", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "soho_erne_heda(0)", "dataset": "soho-erne-hed", "index1": "0", "is_public": "True", "name": "13 - 16 MeV/n", "parameter": "soho_erne_heda", "start_date": "1996-05-07T17:19:56Z", "stop_date": "2024-09-22T23:59:32Z", "xmlid": "soho_erne_heda(0)"}, "soho_erne_heda1": {"__spz_name__": "16 - 20 MeV/n", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "soho_erne_heda(1)", "dataset": "soho-erne-hed", "index1": "1", "is_public": "True", "name": "16 - 20 MeV/n", "parameter": "soho_erne_heda", "start_date": "1996-05-07T17:19:56Z", "stop_date": "2024-09-22T23:59:32Z", "xmlid": "soho_erne_heda(1)"}, "soho_erne_heda2": {"__spz_name__": "20 - 25 MeV/n", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "soho_erne_heda(2)", "dataset": "soho-erne-hed", "index1": "2", "is_public": "True", "name": "20 - 25 MeV/n", "parameter": "soho_erne_heda", "start_date": "1996-05-07T17:19:56Z", "stop_date": "2024-09-22T23:59:32Z", "xmlid": "soho_erne_heda(2)"}, "soho_erne_heda3": {"__spz_name__": "25 - 32 MeV/n", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "soho_erne_heda(3)", "dataset": "soho-erne-hed", "index1": "3", "is_public": "True", "name": "25 - 32 MeV/n", "parameter": "soho_erne_heda", "start_date": "1996-05-07T17:19:56Z", "stop_date": "2024-09-22T23:59:32Z", "xmlid": "soho_erne_heda(3)"}, "soho_erne_heda4": {"__spz_name__": "32 - 40 MeV/n", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "soho_erne_heda(4)", "dataset": "soho-erne-hed", "index1": "4", "is_public": "True", "name": "32 - 40 MeV/n", "parameter": "soho_erne_heda", "start_date": "1996-05-07T17:19:56Z", "stop_date": "2024-09-22T23:59:32Z", "xmlid": "soho_erne_heda(4)"}, "soho_erne_heda5": {"__spz_name__": "40 - 50 MeV/n", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "soho_erne_heda(5)", "dataset": "soho-erne-hed", "index1": "5", "is_public": "True", "name": "40 - 50 MeV/n", "parameter": "soho_erne_heda", "start_date": "1996-05-07T17:19:56Z", "stop_date": "2024-09-22T23:59:32Z", "xmlid": "soho_erne_heda(5)"}, "soho_erne_heda6": {"__spz_name__": "50 - 64 MeV/n", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "soho_erne_heda(6)", "dataset": "soho-erne-hed", "index1": "6", "is_public": "True", "name": "50 - 64 MeV/n", "parameter": "soho_erne_heda", "start_date": "1996-05-07T17:19:56Z", "stop_date": "2024-09-22T23:59:32Z", "xmlid": "soho_erne_heda(6)"}, "soho_erne_heda7": {"__spz_name__": "64 - 80 MeV/n", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "soho_erne_heda(7)", "dataset": "soho-erne-hed", "index1": "7", "is_public": "True", "name": "64 - 80 MeV/n", "parameter": "soho_erne_heda", "start_date": "1996-05-07T17:19:56Z", "stop_date": "2024-09-22T23:59:32Z", "xmlid": "soho_erne_heda(7)"}, "soho_erne_heda8": {"__spz_name__": "80 - 100 MeV/n", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "soho_erne_heda(8)", "dataset": "soho-erne-hed", "index1": "8", "is_public": "True", "name": "80 - 100 MeV/n", "parameter": "soho_erne_heda", "start_date": "1996-05-07T17:19:56Z", "stop_date": "2024-09-22T23:59:32Z", "xmlid": "soho_erne_heda(8)"}, "soho_erne_heda9": {"__spz_name__": "100 - 130 MeV/n", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "soho_erne_heda(9)", "dataset": "soho-erne-hed", "index1": "9", "is_public": "True", "name": "100 - 130 MeV/n", "parameter": "soho_erne_heda", "start_date": "1996-05-07T17:19:56Z", "stop_date": "2024-09-22T23:59:32Z", "xmlid": "soho_erne_heda(9)"}, "start_date": "1996-05-07T17:19:56Z", "stop_date": "2024-09-22T23:59:32Z", "units": "1/(cm\u00b2 sr s MeV/n)", "xmlid": "soho_erne_heda"}, "soho_erne_hedp": {"__spz_name__": "proton flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "soho_erne_hedp", "dataset": "soho-erne-hed", "is_public": "True", "name": "proton flux", "size": "10", "soho_erne_hedp0": {"__spz_name__": "13 - 16 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "soho_erne_hedp(0)", "dataset": "soho-erne-hed", "index1": "0", "is_public": "True", "name": "13 - 16 MeV", "parameter": "soho_erne_hedp", "start_date": "1996-05-07T17:19:56Z", "stop_date": "2024-09-22T23:59:32Z", "xmlid": "soho_erne_hedp(0)"}, "soho_erne_hedp1": {"__spz_name__": "16 - 20 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "soho_erne_hedp(1)", "dataset": "soho-erne-hed", "index1": "1", "is_public": "True", "name": "16 - 20 MeV", "parameter": "soho_erne_hedp", "start_date": "1996-05-07T17:19:56Z", "stop_date": "2024-09-22T23:59:32Z", "xmlid": "soho_erne_hedp(1)"}, "soho_erne_hedp2": {"__spz_name__": "20 - 25 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "soho_erne_hedp(2)", "dataset": "soho-erne-hed", "index1": "2", "is_public": "True", "name": "20 - 25 MeV", "parameter": "soho_erne_hedp", "start_date": "1996-05-07T17:19:56Z", "stop_date": "2024-09-22T23:59:32Z", "xmlid": "soho_erne_hedp(2)"}, "soho_erne_hedp3": {"__spz_name__": "25 - 32 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "soho_erne_hedp(3)", "dataset": "soho-erne-hed", "index1": "3", "is_public": "True", "name": "25 - 32 MeV", "parameter": "soho_erne_hedp", "start_date": "1996-05-07T17:19:56Z", "stop_date": "2024-09-22T23:59:32Z", "xmlid": "soho_erne_hedp(3)"}, "soho_erne_hedp4": {"__spz_name__": "32 - 40 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "soho_erne_hedp(4)", "dataset": "soho-erne-hed", "index1": "4", "is_public": "True", "name": "32 - 40 MeV", "parameter": "soho_erne_hedp", "start_date": "1996-05-07T17:19:56Z", "stop_date": "2024-09-22T23:59:32Z", "xmlid": "soho_erne_hedp(4)"}, "soho_erne_hedp5": {"__spz_name__": "40 - 50 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "soho_erne_hedp(5)", "dataset": "soho-erne-hed", "index1": "5", "is_public": "True", "name": "40 - 50 MeV", "parameter": "soho_erne_hedp", "start_date": "1996-05-07T17:19:56Z", "stop_date": "2024-09-22T23:59:32Z", "xmlid": "soho_erne_hedp(5)"}, "soho_erne_hedp6": {"__spz_name__": "50 - 64 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "soho_erne_hedp(6)", "dataset": "soho-erne-hed", "index1": "6", "is_public": "True", "name": "50 - 64 MeV", "parameter": "soho_erne_hedp", "start_date": "1996-05-07T17:19:56Z", "stop_date": "2024-09-22T23:59:32Z", "xmlid": "soho_erne_hedp(6)"}, "soho_erne_hedp7": {"__spz_name__": "64 - 80 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "soho_erne_hedp(7)", "dataset": "soho-erne-hed", "index1": "7", "is_public": "True", "name": "64 - 80 MeV", "parameter": "soho_erne_hedp", "start_date": "1996-05-07T17:19:56Z", "stop_date": "2024-09-22T23:59:32Z", "xmlid": "soho_erne_hedp(7)"}, "soho_erne_hedp8": {"__spz_name__": "80 - 100 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "soho_erne_hedp(8)", "dataset": "soho-erne-hed", "index1": "8", "is_public": "True", "name": "80 - 100 MeV", "parameter": "soho_erne_hedp", "start_date": "1996-05-07T17:19:56Z", "stop_date": "2024-09-22T23:59:32Z", "xmlid": "soho_erne_hedp(8)"}, "soho_erne_hedp9": {"__spz_name__": "100 - 130 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "soho_erne_hedp(9)", "dataset": "soho-erne-hed", "index1": "9", "is_public": "True", "name": "100 - 130 MeV", "parameter": "soho_erne_hedp", "start_date": "1996-05-07T17:19:56Z", "stop_date": "2024-09-22T23:59:32Z", "xmlid": "soho_erne_hedp(9)"}, "start_date": "1996-05-07T17:19:56Z", "stop_date": "2024-09-22T23:59:32Z", "units": "1/(cm\u00b2 sr s MeV)", "xmlid": "soho_erne_hedp"}, "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/SOHO/ERNE/soho-erne-hed", "start_date": "1996-05-07T17:19:56Z", "stop_date": "2024-09-22T23:59:32Z", "target": "Heliosphere.NearEarth", "xmlid": "soho-erne-hed"}, "soho_erne_led": {"__spz_name__": "LED", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "soho-erne-led", "att": "auto/soho-erne-led", "dataSource": "https://srl.utu.fi/export/", "desc": "LED detector
Sampling: 1M
Provider: https://srl.utu.fi/export/", "is_public": "True", "lastModificationDate": "2024-10-06T22:38:04Z", "lastUpdate": "2024-01-25T12:37:38Z", "measurement_type": "EnergeticParticles", "name": "LED", "processing_level": "Calibrated", "sampling": "1M", "soho_erne_leda": {"__spz_name__": "4He flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "soho_erne_leda", "dataset": "soho-erne-led", "is_public": "True", "name": "4He flux", "size": "10", "soho_erne_leda0": {"__spz_name__": "1.3 - 1.6 MeV/n", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "soho_erne_leda(0)", "dataset": "soho-erne-led", "index1": "0", "is_public": "True", "name": "1.3 - 1.6 MeV/n", "parameter": "soho_erne_leda", "start_date": "1996-05-07T17:19:56Z", "stop_date": "2023-07-19T14:19:14Z", "xmlid": "soho_erne_leda(0)"}, "soho_erne_leda1": {"__spz_name__": "1.6 - 2.0 MeV/n", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "soho_erne_leda(1)", "dataset": "soho-erne-led", "index1": "1", "is_public": "True", "name": "1.6 - 2.0 MeV/n", "parameter": "soho_erne_leda", "start_date": "1996-05-07T17:19:56Z", "stop_date": "2023-07-19T14:19:14Z", "xmlid": "soho_erne_leda(1)"}, "soho_erne_leda2": {"__spz_name__": "2.0 - 2.5 MeV/n", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "soho_erne_leda(2)", "dataset": "soho-erne-led", "index1": "2", "is_public": "True", "name": "2.0 - 2.5 MeV/n", "parameter": "soho_erne_leda", "start_date": "1996-05-07T17:19:56Z", "stop_date": "2023-07-19T14:19:14Z", "xmlid": "soho_erne_leda(2)"}, "soho_erne_leda3": {"__spz_name__": "2.5 - 3.2 MeV/n", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "soho_erne_leda(3)", "dataset": "soho-erne-led", "index1": "3", "is_public": "True", "name": "2.5 - 3.2 MeV/n", "parameter": "soho_erne_leda", "start_date": "1996-05-07T17:19:56Z", "stop_date": "2023-07-19T14:19:14Z", "xmlid": "soho_erne_leda(3)"}, "soho_erne_leda4": {"__spz_name__": "3.2 - 4.0 MeV/n", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "soho_erne_leda(4)", "dataset": "soho-erne-led", "index1": "4", "is_public": "True", "name": "3.2 - 4.0 MeV/n", "parameter": "soho_erne_leda", "start_date": "1996-05-07T17:19:56Z", "stop_date": "2023-07-19T14:19:14Z", "xmlid": "soho_erne_leda(4)"}, "soho_erne_leda5": {"__spz_name__": "4.0 - 5.0 MeV/n", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "soho_erne_leda(5)", "dataset": "soho-erne-led", "index1": "5", "is_public": "True", "name": "4.0 - 5.0 MeV/n", "parameter": "soho_erne_leda", "start_date": "1996-05-07T17:19:56Z", "stop_date": "2023-07-19T14:19:14Z", "xmlid": "soho_erne_leda(5)"}, "soho_erne_leda6": {"__spz_name__": "5.0 - 6.4 MeV/n", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "soho_erne_leda(6)", "dataset": "soho-erne-led", "index1": "6", "is_public": "True", "name": "5.0 - 6.4 MeV/n", "parameter": "soho_erne_leda", "start_date": "1996-05-07T17:19:56Z", "stop_date": "2023-07-19T14:19:14Z", "xmlid": "soho_erne_leda(6)"}, "soho_erne_leda7": {"__spz_name__": "6.4 - 8.0 MeV/n", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "soho_erne_leda(7)", "dataset": "soho-erne-led", "index1": "7", "is_public": "True", "name": "6.4 - 8.0 MeV/n", "parameter": "soho_erne_leda", "start_date": "1996-05-07T17:19:56Z", "stop_date": "2023-07-19T14:19:14Z", "xmlid": "soho_erne_leda(7)"}, "soho_erne_leda8": {"__spz_name__": "8.0 - 10 MeV/n", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "soho_erne_leda(8)", "dataset": "soho-erne-led", "index1": "8", "is_public": "True", "name": "8.0 - 10 MeV/n", "parameter": "soho_erne_leda", "start_date": "1996-05-07T17:19:56Z", "stop_date": "2023-07-19T14:19:14Z", "xmlid": "soho_erne_leda(8)"}, "soho_erne_leda9": {"__spz_name__": "10 - 13 MeV/n", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "soho_erne_leda(9)", "dataset": "soho-erne-led", "index1": "9", "is_public": "True", "name": "10 - 13 MeV/n", "parameter": "soho_erne_leda", "start_date": "1996-05-07T17:19:56Z", "stop_date": "2023-07-19T14:19:14Z", "xmlid": "soho_erne_leda(9)"}, "start_date": "1996-05-07T17:19:56Z", "stop_date": "2023-07-19T14:19:14Z", "units": "1/(cm\u00b2 sr s MeV/n)", "xmlid": "soho_erne_leda"}, "soho_erne_ledp": {"__spz_name__": "proton flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "soho_erne_ledp", "dataset": "soho-erne-led", "is_public": "True", "name": "proton flux", "size": "10", "soho_erne_ledp0": {"__spz_name__": "1.3 - 1.6 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "soho_erne_ledp(0)", "dataset": "soho-erne-led", "index1": "0", "is_public": "True", "name": "1.3 - 1.6 MeV", "parameter": "soho_erne_ledp", "start_date": "1996-05-07T17:19:56Z", "stop_date": "2023-07-19T14:19:14Z", "xmlid": "soho_erne_ledp(0)"}, "soho_erne_ledp1": {"__spz_name__": "1.6 - 2.0 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "soho_erne_ledp(1)", "dataset": "soho-erne-led", "index1": "1", "is_public": "True", "name": "1.6 - 2.0 MeV", "parameter": "soho_erne_ledp", "start_date": "1996-05-07T17:19:56Z", "stop_date": "2023-07-19T14:19:14Z", "xmlid": "soho_erne_ledp(1)"}, "soho_erne_ledp2": {"__spz_name__": "2.0 - 2.5 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "soho_erne_ledp(2)", "dataset": "soho-erne-led", "index1": "2", "is_public": "True", "name": "2.0 - 2.5 MeV", "parameter": "soho_erne_ledp", "start_date": "1996-05-07T17:19:56Z", "stop_date": "2023-07-19T14:19:14Z", "xmlid": "soho_erne_ledp(2)"}, "soho_erne_ledp3": {"__spz_name__": "2.5 - 3.2 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "soho_erne_ledp(3)", "dataset": "soho-erne-led", "index1": "3", "is_public": "True", "name": "2.5 - 3.2 MeV", "parameter": "soho_erne_ledp", "start_date": "1996-05-07T17:19:56Z", "stop_date": "2023-07-19T14:19:14Z", "xmlid": "soho_erne_ledp(3)"}, "soho_erne_ledp4": {"__spz_name__": "3.2 - 4.0 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "soho_erne_ledp(4)", "dataset": "soho-erne-led", "index1": "4", "is_public": "True", "name": "3.2 - 4.0 MeV", "parameter": "soho_erne_ledp", "start_date": "1996-05-07T17:19:56Z", "stop_date": "2023-07-19T14:19:14Z", "xmlid": "soho_erne_ledp(4)"}, "soho_erne_ledp5": {"__spz_name__": "4.0 - 5.0 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "soho_erne_ledp(5)", "dataset": "soho-erne-led", "index1": "5", "is_public": "True", "name": "4.0 - 5.0 MeV", "parameter": "soho_erne_ledp", "start_date": "1996-05-07T17:19:56Z", "stop_date": "2023-07-19T14:19:14Z", "xmlid": "soho_erne_ledp(5)"}, "soho_erne_ledp6": {"__spz_name__": "5.0 - 6.4 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "soho_erne_ledp(6)", "dataset": "soho-erne-led", "index1": "6", "is_public": "True", "name": "5.0 - 6.4 MeV", "parameter": "soho_erne_ledp", "start_date": "1996-05-07T17:19:56Z", "stop_date": "2023-07-19T14:19:14Z", "xmlid": "soho_erne_ledp(6)"}, "soho_erne_ledp7": {"__spz_name__": "6.4 - 8.0 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "soho_erne_ledp(7)", "dataset": "soho-erne-led", "index1": "7", "is_public": "True", "name": "6.4 - 8.0 MeV", "parameter": "soho_erne_ledp", "start_date": "1996-05-07T17:19:56Z", "stop_date": "2023-07-19T14:19:14Z", "xmlid": "soho_erne_ledp(7)"}, "soho_erne_ledp8": {"__spz_name__": "8.0 - 10 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "soho_erne_ledp(8)", "dataset": "soho-erne-led", "index1": "8", "is_public": "True", "name": "8.0 - 10 MeV", "parameter": "soho_erne_ledp", "start_date": "1996-05-07T17:19:56Z", "stop_date": "2023-07-19T14:19:14Z", "xmlid": "soho_erne_ledp(8)"}, "soho_erne_ledp9": {"__spz_name__": "10 - 13 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "soho_erne_ledp(9)", "dataset": "soho-erne-led", "index1": "9", "is_public": "True", "name": "10 - 13 MeV", "parameter": "soho_erne_ledp", "start_date": "1996-05-07T17:19:56Z", "stop_date": "2023-07-19T14:19:14Z", "xmlid": "soho_erne_ledp(9)"}, "start_date": "1996-05-07T17:19:56Z", "stop_date": "2023-07-19T14:19:14Z", "units": "1/(cm\u00b2 sr s MeV)", "xmlid": "soho_erne_ledp"}, "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/SOHO/ERNE/soho-erne-led", "start_date": "1996-05-07T17:19:56Z", "stop_date": "2023-07-19T14:19:14Z", "target": "Heliosphere.NearEarth", "xmlid": "soho-erne-led"}, "xmlid": "SOHO_erne"}, "__spz_name__": "SOHO", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "SOHO", "att": "auto/SOHO", "desc": "1995-065A
1995-12-02T00:00:00Z", "is_public": "True", "name": "SOHO", "rank": "4", "target": "Heliosphere.NearEarth", "xmlid": "SOHO"}, "STEREO": {"STEREO_A": {"Ephemeris": {"__spz_name__": "Ephemeris", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "STEREO-A_ephemeris", "att": "auto/STEREO-A_ephemeris", "desc": "", "is_public": "True", "name": "Ephemeris", "sta_l2_orb": {"__spz_name__": "orbit", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "sta-l2-orb", "att": "auto/sta-l2-orb", "dataSource": "https://sohowww.nascom.nasa.gov", "desc": "STEREO-A orbit
Sampling: 900S
Provider: https://sohowww.nascom.nasa.gov", "is_public": "True", "lastModificationDate": "2024-10-02T02:07:06Z", "lastUpdate": "2024-10-02T02:07:05Z", "measurement_type": "Ephemeris", "name": "orbit", "processing_level": "Calibrated", "sampling": "900S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/STEREO-A/Ephemeris/sta-l2-orb", "sta_lat_hci": {"__spz_name__": "lat hci", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_lat_hci", "dataset": "sta-l2-orb", "display_type": "timeseries", "is_public": "True", "name": "lat hci", "start_date": "2006-10-26T00:00:00Z", "stop_date": "2025-12-31T23:45:00Z", "units": "deg", "xmlid": "sta_lat_hci"}, "sta_lat_hee": {"__spz_name__": "lat hee", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_lat_hee", "dataset": "sta-l2-orb", "display_type": "timeseries", "is_public": "True", "name": "lat hee", "start_date": "2006-10-26T00:00:00Z", "stop_date": "2025-12-31T23:45:00Z", "units": "deg", "xmlid": "sta_lat_hee"}, "sta_lat_sun": {"__spz_name__": "lat iau_sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_lat_sun", "dataset": "sta-l2-orb", "display_type": "timeseries", "is_public": "True", "name": "lat iau_sun", "start_date": "2006-10-26T00:00:00Z", "stop_date": "2025-12-31T23:45:00Z", "units": "deg", "xmlid": "sta_lat_sun"}, "sta_lon_hci": {"__spz_name__": "lon hci", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_lon_hci", "dataset": "sta-l2-orb", "display_type": "timeseries", "is_public": "True", "name": "lon hci", "start_date": "2006-10-26T00:00:00Z", "stop_date": "2025-12-31T23:45:00Z", "units": "deg", "xmlid": "sta_lon_hci"}, "sta_lon_hee": {"__spz_name__": "lon hee", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_lon_hee", "dataset": "sta-l2-orb", "display_type": "timeseries", "is_public": "True", "name": "lon hee", "start_date": "2006-10-26T00:00:00Z", "stop_date": "2025-12-31T23:45:00Z", "units": "deg", "xmlid": "sta_lon_hee"}, "sta_lon_sun": {"__spz_name__": "lon iau_sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_lon_sun", "dataset": "sta-l2-orb", "display_type": "timeseries", "is_public": "True", "name": "lon iau_sun", "start_date": "2006-10-26T00:00:00Z", "stop_date": "2025-12-31T23:45:00Z", "units": "deg", "xmlid": "sta_lon_sun"}, "sta_r_gse": {"__spz_name__": "distance sta-earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_r_gse", "dataset": "sta-l2-orb", "display_type": "timeseries", "is_public": "True", "name": "distance sta-earth", "start_date": "2006-10-26T00:00:00Z", "stop_date": "2025-12-31T23:45:00Z", "ucd": "pos.distance", "units": "Re", "xmlid": "sta_r_gse"}, "sta_r_hee": {"__spz_name__": "distance sta-sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_r_hee", "dataset": "sta-l2-orb", "display_type": "timeseries", "is_public": "True", "name": "distance sta-sun", "start_date": "2006-10-26T00:00:00Z", "stop_date": "2025-12-31T23:45:00Z", "ucd": "pos.distance", "units": "AU", "xmlid": "sta_r_hee"}, "sta_xyz_gse": {"__spz_name__": "xyz_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_xyz_gse", "dataset": "sta-l2-orb", "display_type": "timeseries", "is_public": "True", "name": "xyz_gse", "size": "3", "sta_xyz_gse0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_xyz_gse(0)", "dataset": "sta-l2-orb", "index1": "0", "is_public": "True", "name": "x", "parameter": "sta_xyz_gse", "start_date": "2006-10-26T00:00:00Z", "stop_date": "2025-12-31T23:45:00Z", "xmlid": "sta_xyz_gse(0)"}, "sta_xyz_gse1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_xyz_gse(1)", "dataset": "sta-l2-orb", "index1": "1", "is_public": "True", "name": "y", "parameter": "sta_xyz_gse", "start_date": "2006-10-26T00:00:00Z", "stop_date": "2025-12-31T23:45:00Z", "xmlid": "sta_xyz_gse(1)"}, "sta_xyz_gse2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_xyz_gse(2)", "dataset": "sta-l2-orb", "index1": "2", "is_public": "True", "name": "z", "parameter": "sta_xyz_gse", "start_date": "2006-10-26T00:00:00Z", "stop_date": "2025-12-31T23:45:00Z", "xmlid": "sta_xyz_gse(2)"}, "start_date": "2006-10-26T00:00:00Z", "stop_date": "2025-12-31T23:45:00Z", "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "Re", "xmlid": "sta_xyz_gse"}, "sta_xyz_hci": {"__spz_name__": "xyz_hci", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_xyz_hci", "dataset": "sta-l2-orb", "display_type": "timeseries", "is_public": "True", "name": "xyz_hci", "size": "3", "sta_xyz_hci0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_xyz_hci(0)", "dataset": "sta-l2-orb", "index1": "0", "is_public": "True", "name": "x", "parameter": "sta_xyz_hci", "start_date": "2006-10-26T00:00:00Z", "stop_date": "2025-12-31T23:45:00Z", "xmlid": "sta_xyz_hci(0)"}, "sta_xyz_hci1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_xyz_hci(1)", "dataset": "sta-l2-orb", "index1": "1", "is_public": "True", "name": "y", "parameter": "sta_xyz_hci", "start_date": "2006-10-26T00:00:00Z", "stop_date": "2025-12-31T23:45:00Z", "xmlid": "sta_xyz_hci(1)"}, "sta_xyz_hci2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_xyz_hci(2)", "dataset": "sta-l2-orb", "index1": "2", "is_public": "True", "name": "z", "parameter": "sta_xyz_hci", "start_date": "2006-10-26T00:00:00Z", "stop_date": "2025-12-31T23:45:00Z", "xmlid": "sta_xyz_hci(2)"}, "start_date": "2006-10-26T00:00:00Z", "stop_date": "2025-12-31T23:45:00Z", "units": "AU", "xmlid": "sta_xyz_hci"}, "sta_xyz_hee": {"__spz_name__": "xyz_hee", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_xyz_hee", "dataset": "sta-l2-orb", "display_type": "timeseries", "is_public": "True", "name": "xyz_hee", "size": "3", "sta_xyz_hee0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_xyz_hee(0)", "dataset": "sta-l2-orb", "index1": "0", "is_public": "True", "name": "x", "parameter": "sta_xyz_hee", "start_date": "2006-10-26T00:00:00Z", "stop_date": "2025-12-31T23:45:00Z", "xmlid": "sta_xyz_hee(0)"}, "sta_xyz_hee1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_xyz_hee(1)", "dataset": "sta-l2-orb", "index1": "1", "is_public": "True", "name": "y", "parameter": "sta_xyz_hee", "start_date": "2006-10-26T00:00:00Z", "stop_date": "2025-12-31T23:45:00Z", "xmlid": "sta_xyz_hee(1)"}, "sta_xyz_hee2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_xyz_hee(2)", "dataset": "sta-l2-orb", "index1": "2", "is_public": "True", "name": "z", "parameter": "sta_xyz_hee", "start_date": "2006-10-26T00:00:00Z", "stop_date": "2025-12-31T23:45:00Z", "xmlid": "sta_xyz_hee(2)"}, "start_date": "2006-10-26T00:00:00Z", "stop_date": "2025-12-31T23:45:00Z", "ucd": "pos.ephem;pos.heliocentric;instr.obsty", "units": "AU", "xmlid": "sta_xyz_hee"}, "sta_xyz_iausun": {"__spz_name__": "xyz_iau_sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_xyz_iausun", "dataset": "sta-l2-orb", "display_type": "timeseries", "is_public": "True", "name": "xyz_iau_sun", "size": "3", "sta_xyz_iausun0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_xyz_iausun(0)", "dataset": "sta-l2-orb", "index1": "0", "is_public": "True", "name": "x", "parameter": "sta_xyz_iausun", "start_date": "2006-10-26T00:00:00Z", "stop_date": "2025-12-31T23:45:00Z", "xmlid": "sta_xyz_iausun(0)"}, "sta_xyz_iausun1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_xyz_iausun(1)", "dataset": "sta-l2-orb", "index1": "1", "is_public": "True", "name": "y", "parameter": "sta_xyz_iausun", "start_date": "2006-10-26T00:00:00Z", "stop_date": "2025-12-31T23:45:00Z", "xmlid": "sta_xyz_iausun(1)"}, "sta_xyz_iausun2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_xyz_iausun(2)", "dataset": "sta-l2-orb", "index1": "2", "is_public": "True", "name": "z", "parameter": "sta_xyz_iausun", "start_date": "2006-10-26T00:00:00Z", "stop_date": "2025-12-31T23:45:00Z", "xmlid": "sta_xyz_iausun(2)"}, "start_date": "2006-10-26T00:00:00Z", "stop_date": "2025-12-31T23:45:00Z", "units": "AU", "xmlid": "sta_xyz_iausun"}, "start_date": "2006-10-26T00:00:00Z", "stop_date": "2025-12-31T23:45:00Z", "xmlid": "sta-l2-orb"}, "xmlid": "STEREO-A_ephemeris"}, "HET": {"__spz_name__": "HET", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "STEREO-A_het", "att": "auto/STEREO-A_het", "desc": "High Energy Telescope
ParticleDetector", "is_public": "True", "name": "HET", "sta_het_1d": {"__spz_name__": "1 day", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "sta-het-1d", "att": "auto/sta-het-1d", "dataSource": "CDAWeb", "desc": "electrons and protons flux 1 day rate
Sampling: 24H
Provider: CDAWeb", "is_public": "True", "lastModificationDate": "2024-10-06T22:19:31Z", "lastUpdate": "2024-10-06T22:19:31Z", "measurement_type": "EnergeticParticles", "name": "1 day", "processing_level": "Calibrated", "sampling": "24H", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/STEREO-A/HET/sta-het-1d", "sta_het_1d_efl": {"__spz_name__": "e- flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_het_1d_efl", "dataset": "sta-het-1d", "display_type": "timeseries", "is_public": "True", "name": "e- flux", "size": "3", "sta_het_1d_efl0": {"__spz_name__": "0.7-1.4 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1d_efl(0)", "dataset": "sta-het-1d", "index1": "0", "is_public": "True", "name": "0.7-1.4 MeV", "parameter": "sta_het_1d_efl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T00:00:00Z", "xmlid": "sta_het_1d_efl(0)"}, "sta_het_1d_efl1": {"__spz_name__": "1.4-2.8 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1d_efl(1)", "dataset": "sta-het-1d", "index1": "1", "is_public": "True", "name": "1.4-2.8 MeV", "parameter": "sta_het_1d_efl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T00:00:00Z", "xmlid": "sta_het_1d_efl(1)"}, "sta_het_1d_efl2": {"__spz_name__": "2.8-4.0 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1d_efl(2)", "dataset": "sta-het-1d", "index1": "2", "is_public": "True", "name": "2.8-4.0 MeV", "parameter": "sta_het_1d_efl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T00:00:00Z", "xmlid": "sta_het_1d_efl(2)"}, "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T00:00:00Z", "units": "1/(cm2-sr-sec-MeV)", "xmlid": "sta_het_1d_efl"}, "sta_het_1d_eflu": {"__spz_name__": "e- flux uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_het_1d_eflu", "dataset": "sta-het-1d", "display_type": "timeseries", "is_public": "True", "name": "e- flux uncertainty", "size": "3", "sta_het_1d_eflu0": {"__spz_name__": "0.7-1.4 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1d_eflu(0)", "dataset": "sta-het-1d", "index1": "0", "is_public": "True", "name": "0.7-1.4 MeV", "parameter": "sta_het_1d_eflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T00:00:00Z", "xmlid": "sta_het_1d_eflu(0)"}, "sta_het_1d_eflu1": {"__spz_name__": "1.4-2.8 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1d_eflu(1)", "dataset": "sta-het-1d", "index1": "1", "is_public": "True", "name": "1.4-2.8 MeV", "parameter": "sta_het_1d_eflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T00:00:00Z", "xmlid": "sta_het_1d_eflu(1)"}, "sta_het_1d_eflu2": {"__spz_name__": "2.8-4.0 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1d_eflu(2)", "dataset": "sta-het-1d", "index1": "2", "is_public": "True", "name": "2.8-4.0 MeV", "parameter": "sta_het_1d_eflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T00:00:00Z", "xmlid": "sta_het_1d_eflu(2)"}, "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T00:00:00Z", "units": "1/(cm2-sr-sec-MeV)", "xmlid": "sta_het_1d_eflu"}, "sta_het_1d_hfl": {"__spz_name__": "h+ flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_het_1d_hfl", "dataset": "sta-het-1d", "display_type": "timeseries", "is_public": "True", "name": "h+ flux", "size": "11", "sta_het_1d_hfl0": {"__spz_name__": "13.6-15.1 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1d_hfl(0)", "dataset": "sta-het-1d", "index1": "0", "is_public": "True", "name": "13.6-15.1 MeV", "parameter": "sta_het_1d_hfl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T00:00:00Z", "xmlid": "sta_het_1d_hfl(0)"}, "sta_het_1d_hfl1": {"__spz_name__": "14.9-17.1 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1d_hfl(1)", "dataset": "sta-het-1d", "index1": "1", "is_public": "True", "name": "14.9-17.1 MeV", "parameter": "sta_het_1d_hfl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T00:00:00Z", "xmlid": "sta_het_1d_hfl(1)"}, "sta_het_1d_hfl10": {"__spz_name__": "60.0-100.0 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1d_hfl(10)", "dataset": "sta-het-1d", "index1": "10", "is_public": "True", "name": "60.0-100.0 MeV", "parameter": "sta_het_1d_hfl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T00:00:00Z", "xmlid": "sta_het_1d_hfl(10)"}, "sta_het_1d_hfl2": {"__spz_name__": "17.0-19.3 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1d_hfl(2)", "dataset": "sta-het-1d", "index1": "2", "is_public": "True", "name": "17.0-19.3 MeV", "parameter": "sta_het_1d_hfl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T00:00:00Z", "xmlid": "sta_het_1d_hfl(2)"}, "sta_het_1d_hfl3": {"__spz_name__": "20.8-23.8 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1d_hfl(3)", "dataset": "sta-het-1d", "index1": "3", "is_public": "True", "name": "20.8-23.8 MeV", "parameter": "sta_het_1d_hfl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T00:00:00Z", "xmlid": "sta_het_1d_hfl(3)"}, "sta_het_1d_hfl4": {"__spz_name__": "23.8-26.4 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1d_hfl(4)", "dataset": "sta-het-1d", "index1": "4", "is_public": "True", "name": "23.8-26.4 MeV", "parameter": "sta_het_1d_hfl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T00:00:00Z", "xmlid": "sta_het_1d_hfl(4)"}, "sta_het_1d_hfl5": {"__spz_name__": "26.3-29.7 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1d_hfl(5)", "dataset": "sta-het-1d", "index1": "5", "is_public": "True", "name": "26.3-29.7 MeV", "parameter": "sta_het_1d_hfl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T00:00:00Z", "xmlid": "sta_het_1d_hfl(5)"}, "sta_het_1d_hfl6": {"__spz_name__": "29.5-33.4 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1d_hfl(6)", "dataset": "sta-het-1d", "index1": "6", "is_public": "True", "name": "29.5-33.4 MeV", "parameter": "sta_het_1d_hfl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T00:00:00Z", "xmlid": "sta_het_1d_hfl(6)"}, "sta_het_1d_hfl7": {"__spz_name__": "33.4-35.8 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1d_hfl(7)", "dataset": "sta-het-1d", "index1": "7", "is_public": "True", "name": "33.4-35.8 MeV", "parameter": "sta_het_1d_hfl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T00:00:00Z", "xmlid": "sta_het_1d_hfl(7)"}, "sta_het_1d_hfl8": {"__spz_name__": "35.5-40.5 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1d_hfl(8)", "dataset": "sta-het-1d", "index1": "8", "is_public": "True", "name": "35.5-40.5 MeV", "parameter": "sta_het_1d_hfl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T00:00:00Z", "xmlid": "sta_het_1d_hfl(8)"}, "sta_het_1d_hfl9": {"__spz_name__": "40.0-60.0 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1d_hfl(9)", "dataset": "sta-het-1d", "index1": "9", "is_public": "True", "name": "40.0-60.0 MeV", "parameter": "sta_het_1d_hfl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T00:00:00Z", "xmlid": "sta_het_1d_hfl(9)"}, "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T00:00:00Z", "units": "1/(cm2-sr-sec-MeV)", "xmlid": "sta_het_1d_hfl"}, "sta_het_1d_hflu": {"__spz_name__": "h+ flux uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_het_1d_hflu", "dataset": "sta-het-1d", "display_type": "timeseries", "is_public": "True", "name": "h+ flux uncertainty", "size": "11", "sta_het_1d_hflu0": {"__spz_name__": "13.6-15.1 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1d_hflu(0)", "dataset": "sta-het-1d", "index1": "0", "is_public": "True", "name": "13.6-15.1 MeV", "parameter": "sta_het_1d_hflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T00:00:00Z", "xmlid": "sta_het_1d_hflu(0)"}, "sta_het_1d_hflu1": {"__spz_name__": "14.9-17.1 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1d_hflu(1)", "dataset": "sta-het-1d", "index1": "1", "is_public": "True", "name": "14.9-17.1 MeV", "parameter": "sta_het_1d_hflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T00:00:00Z", "xmlid": "sta_het_1d_hflu(1)"}, "sta_het_1d_hflu10": {"__spz_name__": "60.0-100.0 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1d_hflu(10)", "dataset": "sta-het-1d", "index1": "10", "is_public": "True", "name": "60.0-100.0 MeV", "parameter": "sta_het_1d_hflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T00:00:00Z", "xmlid": "sta_het_1d_hflu(10)"}, "sta_het_1d_hflu2": {"__spz_name__": "17.0-19.3 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1d_hflu(2)", "dataset": "sta-het-1d", "index1": "2", "is_public": "True", "name": "17.0-19.3 MeV", "parameter": "sta_het_1d_hflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T00:00:00Z", "xmlid": "sta_het_1d_hflu(2)"}, "sta_het_1d_hflu3": {"__spz_name__": "20.8-23.8 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1d_hflu(3)", "dataset": "sta-het-1d", "index1": "3", "is_public": "True", "name": "20.8-23.8 MeV", "parameter": "sta_het_1d_hflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T00:00:00Z", "xmlid": "sta_het_1d_hflu(3)"}, "sta_het_1d_hflu4": {"__spz_name__": "23.8-26.4 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1d_hflu(4)", "dataset": "sta-het-1d", "index1": "4", "is_public": "True", "name": "23.8-26.4 MeV", "parameter": "sta_het_1d_hflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T00:00:00Z", "xmlid": "sta_het_1d_hflu(4)"}, "sta_het_1d_hflu5": {"__spz_name__": "26.3-29.7 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1d_hflu(5)", "dataset": "sta-het-1d", "index1": "5", "is_public": "True", "name": "26.3-29.7 MeV", "parameter": "sta_het_1d_hflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T00:00:00Z", "xmlid": "sta_het_1d_hflu(5)"}, "sta_het_1d_hflu6": {"__spz_name__": "29.5-33.4 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1d_hflu(6)", "dataset": "sta-het-1d", "index1": "6", "is_public": "True", "name": "29.5-33.4 MeV", "parameter": "sta_het_1d_hflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T00:00:00Z", "xmlid": "sta_het_1d_hflu(6)"}, "sta_het_1d_hflu7": {"__spz_name__": "33.4-35.8 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1d_hflu(7)", "dataset": "sta-het-1d", "index1": "7", "is_public": "True", "name": "33.4-35.8 MeV", "parameter": "sta_het_1d_hflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T00:00:00Z", "xmlid": "sta_het_1d_hflu(7)"}, "sta_het_1d_hflu8": {"__spz_name__": "35.5-40.5 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1d_hflu(8)", "dataset": "sta-het-1d", "index1": "8", "is_public": "True", "name": "35.5-40.5 MeV", "parameter": "sta_het_1d_hflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T00:00:00Z", "xmlid": "sta_het_1d_hflu(8)"}, "sta_het_1d_hflu9": {"__spz_name__": "40.0-60.0 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1d_hflu(9)", "dataset": "sta-het-1d", "index1": "9", "is_public": "True", "name": "40.0-60.0 MeV", "parameter": "sta_het_1d_hflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T00:00:00Z", "xmlid": "sta_het_1d_hflu(9)"}, "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T00:00:00Z", "units": "1/(cm2-sr-sec-MeV)", "xmlid": "sta_het_1d_hflu"}, "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T00:00:00Z", "target": "Heliosphere.Remote1AU", "xmlid": "sta-het-1d"}, "sta_het_1h": {"__spz_name__": "1 hour", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "sta-het-1h", "att": "auto/sta-het-1h", "dataSource": "CDAWeb", "desc": "electrons and protons flux 1 hour rate
Sampling: 3600S
Provider: CDAWeb", "is_public": "True", "lastModificationDate": "2024-10-06T22:19:39Z", "lastUpdate": "2024-10-06T22:19:39Z", "measurement_type": "EnergeticParticles", "name": "1 hour", "processing_level": "Calibrated", "sampling": "3600S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/STEREO-A/HET/sta-het-1h", "sta_het_1h_efl": {"__spz_name__": "e- flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_het_1h_efl", "dataset": "sta-het-1h", "display_type": "timeseries", "is_public": "True", "name": "e- flux", "size": "3", "sta_het_1h_efl0": {"__spz_name__": "0.7-1.4 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1h_efl(0)", "dataset": "sta-het-1h", "index1": "0", "is_public": "True", "name": "0.7-1.4 MeV", "parameter": "sta_het_1h_efl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T23:00:00Z", "xmlid": "sta_het_1h_efl(0)"}, "sta_het_1h_efl1": {"__spz_name__": "1.4-2.8 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1h_efl(1)", "dataset": "sta-het-1h", "index1": "1", "is_public": "True", "name": "1.4-2.8 MeV", "parameter": "sta_het_1h_efl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T23:00:00Z", "xmlid": "sta_het_1h_efl(1)"}, "sta_het_1h_efl2": {"__spz_name__": "2.8-4.0 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1h_efl(2)", "dataset": "sta-het-1h", "index1": "2", "is_public": "True", "name": "2.8-4.0 MeV", "parameter": "sta_het_1h_efl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T23:00:00Z", "xmlid": "sta_het_1h_efl(2)"}, "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T23:00:00Z", "units": "1/(cm2-sr-sec-MeV)", "xmlid": "sta_het_1h_efl"}, "sta_het_1h_eflu": {"__spz_name__": "e- flux uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_het_1h_eflu", "dataset": "sta-het-1h", "display_type": "timeseries", "is_public": "True", "name": "e- flux uncertainty", "size": "3", "sta_het_1h_eflu0": {"__spz_name__": "0.7-1.4 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1h_eflu(0)", "dataset": "sta-het-1h", "index1": "0", "is_public": "True", "name": "0.7-1.4 MeV", "parameter": "sta_het_1h_eflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T23:00:00Z", "xmlid": "sta_het_1h_eflu(0)"}, "sta_het_1h_eflu1": {"__spz_name__": "1.4-2.8 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1h_eflu(1)", "dataset": "sta-het-1h", "index1": "1", "is_public": "True", "name": "1.4-2.8 MeV", "parameter": "sta_het_1h_eflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T23:00:00Z", "xmlid": "sta_het_1h_eflu(1)"}, "sta_het_1h_eflu2": {"__spz_name__": "2.8-4.0 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1h_eflu(2)", "dataset": "sta-het-1h", "index1": "2", "is_public": "True", "name": "2.8-4.0 MeV", "parameter": "sta_het_1h_eflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T23:00:00Z", "xmlid": "sta_het_1h_eflu(2)"}, "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T23:00:00Z", "units": "1/(cm2-sr-sec-MeV)", "xmlid": "sta_het_1h_eflu"}, "sta_het_1h_hfl": {"__spz_name__": "h+ flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_het_1h_hfl", "dataset": "sta-het-1h", "display_type": "timeseries", "is_public": "True", "name": "h+ flux", "size": "11", "sta_het_1h_hfl0": {"__spz_name__": "13.6-15.1 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1h_hfl(0)", "dataset": "sta-het-1h", "index1": "0", "is_public": "True", "name": "13.6-15.1 MeV", "parameter": "sta_het_1h_hfl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T23:00:00Z", "xmlid": "sta_het_1h_hfl(0)"}, "sta_het_1h_hfl1": {"__spz_name__": "14.9-17.1 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1h_hfl(1)", "dataset": "sta-het-1h", "index1": "1", "is_public": "True", "name": "14.9-17.1 MeV", "parameter": "sta_het_1h_hfl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T23:00:00Z", "xmlid": "sta_het_1h_hfl(1)"}, "sta_het_1h_hfl10": {"__spz_name__": "60.0-100.0 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1h_hfl(10)", "dataset": "sta-het-1h", "index1": "10", "is_public": "True", "name": "60.0-100.0 MeV", "parameter": "sta_het_1h_hfl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T23:00:00Z", "xmlid": "sta_het_1h_hfl(10)"}, "sta_het_1h_hfl2": {"__spz_name__": "17.0-19.3 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1h_hfl(2)", "dataset": "sta-het-1h", "index1": "2", "is_public": "True", "name": "17.0-19.3 MeV", "parameter": "sta_het_1h_hfl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T23:00:00Z", "xmlid": "sta_het_1h_hfl(2)"}, "sta_het_1h_hfl3": {"__spz_name__": "20.8-23.8 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1h_hfl(3)", "dataset": "sta-het-1h", "index1": "3", "is_public": "True", "name": "20.8-23.8 MeV", "parameter": "sta_het_1h_hfl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T23:00:00Z", "xmlid": "sta_het_1h_hfl(3)"}, "sta_het_1h_hfl4": {"__spz_name__": "23.8-26.4 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1h_hfl(4)", "dataset": "sta-het-1h", "index1": "4", "is_public": "True", "name": "23.8-26.4 MeV", "parameter": "sta_het_1h_hfl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T23:00:00Z", "xmlid": "sta_het_1h_hfl(4)"}, "sta_het_1h_hfl5": {"__spz_name__": "26.3-29.7 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1h_hfl(5)", "dataset": "sta-het-1h", "index1": "5", "is_public": "True", "name": "26.3-29.7 MeV", "parameter": "sta_het_1h_hfl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T23:00:00Z", "xmlid": "sta_het_1h_hfl(5)"}, "sta_het_1h_hfl6": {"__spz_name__": "29.5-33.4 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1h_hfl(6)", "dataset": "sta-het-1h", "index1": "6", "is_public": "True", "name": "29.5-33.4 MeV", "parameter": "sta_het_1h_hfl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T23:00:00Z", "xmlid": "sta_het_1h_hfl(6)"}, "sta_het_1h_hfl7": {"__spz_name__": "33.4-35.8 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1h_hfl(7)", "dataset": "sta-het-1h", "index1": "7", "is_public": "True", "name": "33.4-35.8 MeV", "parameter": "sta_het_1h_hfl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T23:00:00Z", "xmlid": "sta_het_1h_hfl(7)"}, "sta_het_1h_hfl8": {"__spz_name__": "35.5-40.5 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1h_hfl(8)", "dataset": "sta-het-1h", "index1": "8", "is_public": "True", "name": "35.5-40.5 MeV", "parameter": "sta_het_1h_hfl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T23:00:00Z", "xmlid": "sta_het_1h_hfl(8)"}, "sta_het_1h_hfl9": {"__spz_name__": "40.0-60.0 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1h_hfl(9)", "dataset": "sta-het-1h", "index1": "9", "is_public": "True", "name": "40.0-60.0 MeV", "parameter": "sta_het_1h_hfl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T23:00:00Z", "xmlid": "sta_het_1h_hfl(9)"}, "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T23:00:00Z", "units": "1/(cm2-sr-sec-MeV)", "xmlid": "sta_het_1h_hfl"}, "sta_het_1h_hflu": {"__spz_name__": "h+ flux uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_het_1h_hflu", "dataset": "sta-het-1h", "display_type": "timeseries", "is_public": "True", "name": "h+ flux uncertainty", "size": "11", "sta_het_1h_hflu0": {"__spz_name__": "13.6-15.1 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1h_hflu(0)", "dataset": "sta-het-1h", "index1": "0", "is_public": "True", "name": "13.6-15.1 MeV", "parameter": "sta_het_1h_hflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T23:00:00Z", "xmlid": "sta_het_1h_hflu(0)"}, "sta_het_1h_hflu1": {"__spz_name__": "14.9-17.1 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1h_hflu(1)", "dataset": "sta-het-1h", "index1": "1", "is_public": "True", "name": "14.9-17.1 MeV", "parameter": "sta_het_1h_hflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T23:00:00Z", "xmlid": "sta_het_1h_hflu(1)"}, "sta_het_1h_hflu10": {"__spz_name__": "60.0-100.0 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1h_hflu(10)", "dataset": "sta-het-1h", "index1": "10", "is_public": "True", "name": "60.0-100.0 MeV", "parameter": "sta_het_1h_hflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T23:00:00Z", "xmlid": "sta_het_1h_hflu(10)"}, "sta_het_1h_hflu2": {"__spz_name__": "17.0-19.3 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1h_hflu(2)", "dataset": "sta-het-1h", "index1": "2", "is_public": "True", "name": "17.0-19.3 MeV", "parameter": "sta_het_1h_hflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T23:00:00Z", "xmlid": "sta_het_1h_hflu(2)"}, "sta_het_1h_hflu3": {"__spz_name__": "20.8-23.8 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1h_hflu(3)", "dataset": "sta-het-1h", "index1": "3", "is_public": "True", "name": "20.8-23.8 MeV", "parameter": "sta_het_1h_hflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T23:00:00Z", "xmlid": "sta_het_1h_hflu(3)"}, "sta_het_1h_hflu4": {"__spz_name__": "23.8-26.4 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1h_hflu(4)", "dataset": "sta-het-1h", "index1": "4", "is_public": "True", "name": "23.8-26.4 MeV", "parameter": "sta_het_1h_hflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T23:00:00Z", "xmlid": "sta_het_1h_hflu(4)"}, "sta_het_1h_hflu5": {"__spz_name__": "26.3-29.7 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1h_hflu(5)", "dataset": "sta-het-1h", "index1": "5", "is_public": "True", "name": "26.3-29.7 MeV", "parameter": "sta_het_1h_hflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T23:00:00Z", "xmlid": "sta_het_1h_hflu(5)"}, "sta_het_1h_hflu6": {"__spz_name__": "29.5-33.4 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1h_hflu(6)", "dataset": "sta-het-1h", "index1": "6", "is_public": "True", "name": "29.5-33.4 MeV", "parameter": "sta_het_1h_hflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T23:00:00Z", "xmlid": "sta_het_1h_hflu(6)"}, "sta_het_1h_hflu7": {"__spz_name__": "33.4-35.8 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1h_hflu(7)", "dataset": "sta-het-1h", "index1": "7", "is_public": "True", "name": "33.4-35.8 MeV", "parameter": "sta_het_1h_hflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T23:00:00Z", "xmlid": "sta_het_1h_hflu(7)"}, "sta_het_1h_hflu8": {"__spz_name__": "35.5-40.5 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1h_hflu(8)", "dataset": "sta-het-1h", "index1": "8", "is_public": "True", "name": "35.5-40.5 MeV", "parameter": "sta_het_1h_hflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T23:00:00Z", "xmlid": "sta_het_1h_hflu(8)"}, "sta_het_1h_hflu9": {"__spz_name__": "40.0-60.0 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1h_hflu(9)", "dataset": "sta-het-1h", "index1": "9", "is_public": "True", "name": "40.0-60.0 MeV", "parameter": "sta_het_1h_hflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T23:00:00Z", "xmlid": "sta_het_1h_hflu(9)"}, "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T23:00:00Z", "units": "1/(cm2-sr-sec-MeV)", "xmlid": "sta_het_1h_hflu"}, "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T23:00:00Z", "target": "Heliosphere.Remote1AU", "xmlid": "sta-het-1h"}, "sta_het_1min": {"__spz_name__": "1 minute", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "sta-het-1min", "att": "auto/sta-het-1min", "dataSource": "CDAWeb", "desc": "electrons and protons flux 1 minute rate
Sampling: 60S
Provider: CDAWeb", "is_public": "True", "lastModificationDate": "2024-10-06T22:19:58Z", "lastUpdate": "2024-10-06T22:19:58Z", "measurement_type": "EnergeticParticles", "name": "1 minute", "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/STEREO-A/HET/sta-het-1min", "sta_het_1min_efl": {"__spz_name__": "e- flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_het_1min_efl", "dataset": "sta-het-1min", "display_type": "timeseries", "is_public": "True", "name": "e- flux", "size": "3", "sta_het_1min_efl0": {"__spz_name__": "0.7-1.4 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1min_efl(0)", "dataset": "sta-het-1min", "index1": "0", "is_public": "True", "name": "0.7-1.4 MeV", "parameter": "sta_het_1min_efl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T23:59:00Z", "xmlid": "sta_het_1min_efl(0)"}, "sta_het_1min_efl1": {"__spz_name__": "1.4-2.8 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1min_efl(1)", "dataset": "sta-het-1min", "index1": "1", "is_public": "True", "name": "1.4-2.8 MeV", "parameter": "sta_het_1min_efl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T23:59:00Z", "xmlid": "sta_het_1min_efl(1)"}, "sta_het_1min_efl2": {"__spz_name__": "2.8-4.0 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1min_efl(2)", "dataset": "sta-het-1min", "index1": "2", "is_public": "True", "name": "2.8-4.0 MeV", "parameter": "sta_het_1min_efl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T23:59:00Z", "xmlid": "sta_het_1min_efl(2)"}, "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T23:59:00Z", "units": "1/(cm2-sr-sec-MeV)", "xmlid": "sta_het_1min_efl"}, "sta_het_1min_eflu": {"__spz_name__": "e- flux uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_het_1min_eflu", "dataset": "sta-het-1min", "display_type": "timeseries", "is_public": "True", "name": "e- flux uncertainty", "size": "3", "sta_het_1min_eflu0": {"__spz_name__": "0.7-1.4 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1min_eflu(0)", "dataset": "sta-het-1min", "index1": "0", "is_public": "True", "name": "0.7-1.4 MeV", "parameter": "sta_het_1min_eflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T23:59:00Z", "xmlid": "sta_het_1min_eflu(0)"}, "sta_het_1min_eflu1": {"__spz_name__": "1.4-2.8 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1min_eflu(1)", "dataset": "sta-het-1min", "index1": "1", "is_public": "True", "name": "1.4-2.8 MeV", "parameter": "sta_het_1min_eflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T23:59:00Z", "xmlid": "sta_het_1min_eflu(1)"}, "sta_het_1min_eflu2": {"__spz_name__": "2.8-4.0 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1min_eflu(2)", "dataset": "sta-het-1min", "index1": "2", "is_public": "True", "name": "2.8-4.0 MeV", "parameter": "sta_het_1min_eflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T23:59:00Z", "xmlid": "sta_het_1min_eflu(2)"}, "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T23:59:00Z", "units": "1/(cm2-sr-sec-MeV)", "xmlid": "sta_het_1min_eflu"}, "sta_het_1min_hfl": {"__spz_name__": "h+ flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_het_1min_hfl", "dataset": "sta-het-1min", "display_type": "timeseries", "is_public": "True", "name": "h+ flux", "size": "11", "sta_het_1min_hfl0": {"__spz_name__": "13.6-15.1 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1min_hfl(0)", "dataset": "sta-het-1min", "index1": "0", "is_public": "True", "name": "13.6-15.1 MeV", "parameter": "sta_het_1min_hfl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T23:59:00Z", "xmlid": "sta_het_1min_hfl(0)"}, "sta_het_1min_hfl1": {"__spz_name__": "14.9-17.1 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1min_hfl(1)", "dataset": "sta-het-1min", "index1": "1", "is_public": "True", "name": "14.9-17.1 MeV", "parameter": "sta_het_1min_hfl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T23:59:00Z", "xmlid": "sta_het_1min_hfl(1)"}, "sta_het_1min_hfl10": {"__spz_name__": "60.0-100.0 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1min_hfl(10)", "dataset": "sta-het-1min", "index1": "10", "is_public": "True", "name": "60.0-100.0 MeV", "parameter": "sta_het_1min_hfl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T23:59:00Z", "xmlid": "sta_het_1min_hfl(10)"}, "sta_het_1min_hfl2": {"__spz_name__": "17.0-19.3 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1min_hfl(2)", "dataset": "sta-het-1min", "index1": "2", "is_public": "True", "name": "17.0-19.3 MeV", "parameter": "sta_het_1min_hfl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T23:59:00Z", "xmlid": "sta_het_1min_hfl(2)"}, "sta_het_1min_hfl3": {"__spz_name__": "20.8-23.8 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1min_hfl(3)", "dataset": "sta-het-1min", "index1": "3", "is_public": "True", "name": "20.8-23.8 MeV", "parameter": "sta_het_1min_hfl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T23:59:00Z", "xmlid": "sta_het_1min_hfl(3)"}, "sta_het_1min_hfl4": {"__spz_name__": "23.8-26.4 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1min_hfl(4)", "dataset": "sta-het-1min", "index1": "4", "is_public": "True", "name": "23.8-26.4 MeV", "parameter": "sta_het_1min_hfl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T23:59:00Z", "xmlid": "sta_het_1min_hfl(4)"}, "sta_het_1min_hfl5": {"__spz_name__": "26.3-29.7 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1min_hfl(5)", "dataset": "sta-het-1min", "index1": "5", "is_public": "True", "name": "26.3-29.7 MeV", "parameter": "sta_het_1min_hfl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T23:59:00Z", "xmlid": "sta_het_1min_hfl(5)"}, "sta_het_1min_hfl6": {"__spz_name__": "29.5-33.4 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1min_hfl(6)", "dataset": "sta-het-1min", "index1": "6", "is_public": "True", "name": "29.5-33.4 MeV", "parameter": "sta_het_1min_hfl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T23:59:00Z", "xmlid": "sta_het_1min_hfl(6)"}, "sta_het_1min_hfl7": {"__spz_name__": "33.4-35.8 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1min_hfl(7)", "dataset": "sta-het-1min", "index1": "7", "is_public": "True", "name": "33.4-35.8 MeV", "parameter": "sta_het_1min_hfl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T23:59:00Z", "xmlid": "sta_het_1min_hfl(7)"}, "sta_het_1min_hfl8": {"__spz_name__": "35.5-40.5 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1min_hfl(8)", "dataset": "sta-het-1min", "index1": "8", "is_public": "True", "name": "35.5-40.5 MeV", "parameter": "sta_het_1min_hfl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T23:59:00Z", "xmlid": "sta_het_1min_hfl(8)"}, "sta_het_1min_hfl9": {"__spz_name__": "40.0-60.0 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1min_hfl(9)", "dataset": "sta-het-1min", "index1": "9", "is_public": "True", "name": "40.0-60.0 MeV", "parameter": "sta_het_1min_hfl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T23:59:00Z", "xmlid": "sta_het_1min_hfl(9)"}, "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T23:59:00Z", "units": "1/(cm2-sr-sec-MeV)", "xmlid": "sta_het_1min_hfl"}, "sta_het_1min_hflu": {"__spz_name__": "h+ flux uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_het_1min_hflu", "dataset": "sta-het-1min", "display_type": "timeseries", "is_public": "True", "name": "h+ flux uncertainty", "size": "11", "sta_het_1min_hflu0": {"__spz_name__": "13.6-15.1 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1min_hflu(0)", "dataset": "sta-het-1min", "index1": "0", "is_public": "True", "name": "13.6-15.1 MeV", "parameter": "sta_het_1min_hflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T23:59:00Z", "xmlid": "sta_het_1min_hflu(0)"}, "sta_het_1min_hflu1": {"__spz_name__": "14.9-17.1 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1min_hflu(1)", "dataset": "sta-het-1min", "index1": "1", "is_public": "True", "name": "14.9-17.1 MeV", "parameter": "sta_het_1min_hflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T23:59:00Z", "xmlid": "sta_het_1min_hflu(1)"}, "sta_het_1min_hflu10": {"__spz_name__": "60.0-100.0 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1min_hflu(10)", "dataset": "sta-het-1min", "index1": "10", "is_public": "True", "name": "60.0-100.0 MeV", "parameter": "sta_het_1min_hflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T23:59:00Z", "xmlid": "sta_het_1min_hflu(10)"}, "sta_het_1min_hflu2": {"__spz_name__": "17.0-19.3 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1min_hflu(2)", "dataset": "sta-het-1min", "index1": "2", "is_public": "True", "name": "17.0-19.3 MeV", "parameter": "sta_het_1min_hflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T23:59:00Z", "xmlid": "sta_het_1min_hflu(2)"}, "sta_het_1min_hflu3": {"__spz_name__": "20.8-23.8 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1min_hflu(3)", "dataset": "sta-het-1min", "index1": "3", "is_public": "True", "name": "20.8-23.8 MeV", "parameter": "sta_het_1min_hflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T23:59:00Z", "xmlid": "sta_het_1min_hflu(3)"}, "sta_het_1min_hflu4": {"__spz_name__": "23.8-26.4 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1min_hflu(4)", "dataset": "sta-het-1min", "index1": "4", "is_public": "True", "name": "23.8-26.4 MeV", "parameter": "sta_het_1min_hflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T23:59:00Z", "xmlid": "sta_het_1min_hflu(4)"}, "sta_het_1min_hflu5": {"__spz_name__": "26.3-29.7 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1min_hflu(5)", "dataset": "sta-het-1min", "index1": "5", "is_public": "True", "name": "26.3-29.7 MeV", "parameter": "sta_het_1min_hflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T23:59:00Z", "xmlid": "sta_het_1min_hflu(5)"}, "sta_het_1min_hflu6": {"__spz_name__": "29.5-33.4 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1min_hflu(6)", "dataset": "sta-het-1min", "index1": "6", "is_public": "True", "name": "29.5-33.4 MeV", "parameter": "sta_het_1min_hflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T23:59:00Z", "xmlid": "sta_het_1min_hflu(6)"}, "sta_het_1min_hflu7": {"__spz_name__": "33.4-35.8 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1min_hflu(7)", "dataset": "sta-het-1min", "index1": "7", "is_public": "True", "name": "33.4-35.8 MeV", "parameter": "sta_het_1min_hflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T23:59:00Z", "xmlid": "sta_het_1min_hflu(7)"}, "sta_het_1min_hflu8": {"__spz_name__": "35.5-40.5 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1min_hflu(8)", "dataset": "sta-het-1min", "index1": "8", "is_public": "True", "name": "35.5-40.5 MeV", "parameter": "sta_het_1min_hflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T23:59:00Z", "xmlid": "sta_het_1min_hflu(8)"}, "sta_het_1min_hflu9": {"__spz_name__": "40.0-60.0 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_het_1min_hflu(9)", "dataset": "sta-het-1min", "index1": "9", "is_public": "True", "name": "40.0-60.0 MeV", "parameter": "sta_het_1min_hflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T23:59:00Z", "xmlid": "sta_het_1min_hflu(9)"}, "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T23:59:00Z", "units": "1/(cm2-sr-sec-MeV)", "xmlid": "sta_het_1min_hflu"}, "start_date": "2006-12-01T00:00:00Z", "stop_date": "2024-09-29T23:59:00Z", "target": "Heliosphere.Remote1AU", "xmlid": "sta-het-1min"}, "xmlid": "STEREO-A_het"}, "LET": {"__spz_name__": "LET", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "STEREO-A_let", "att": "auto/STEREO-A_let", "desc": "Low Energy Telescope
ParticleDetector", "is_public": "True", "name": "LET", "sta_let_10min": {"__spz_name__": "10 min", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "sta-let-10min", "att": "auto/sta-let-10min", "dataSource": "Caltech Space Radiation Lab", "desc": "Ion flux 10 minutes rate
Sampling: 600S
Provider: Caltech Space Radiation Lab", "is_public": "True", "lastModificationDate": "2024-09-23T08:53:23Z", "lastUpdate": "2024-09-23T08:52:50Z", "measurement_type": "EnergeticParticles", "name": "10 min", "processing_level": "Calibrated", "sampling": "600S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/STEREO-A/LET/sta-let-10min", "sta_let_10m_Alcr": {"__spz_name__": "Al counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_10m_Alcr", "dataset": "sta-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "Al counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:50:00Z", "units": "counts/hour", "xmlid": "sta_let_10m_Alcr"}, "sta_let_10m_Alf": {"__spz_name__": "Al flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_10m_Alf", "dataset": "sta-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "Al flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:50:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_10m_Alf"}, "sta_let_10m_Alu": {"__spz_name__": "Al uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_10m_Alu", "dataset": "sta-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "Al uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:50:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_10m_Alu"}, "sta_let_10m_Arcr": {"__spz_name__": "Ar counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_10m_Arcr", "dataset": "sta-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "Ar counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:50:00Z", "units": "counts/hour", "xmlid": "sta_let_10m_Arcr"}, "sta_let_10m_Arf": {"__spz_name__": "Ar flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_10m_Arf", "dataset": "sta-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "Ar flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:50:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_10m_Arf"}, "sta_let_10m_Aru": {"__spz_name__": "Ar uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_10m_Aru", "dataset": "sta-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "Ar uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:50:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_10m_Aru"}, "sta_let_10m_Cacr": {"__spz_name__": "Ca counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_10m_Cacr", "dataset": "sta-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "Ca counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:50:00Z", "units": "counts/hour", "xmlid": "sta_let_10m_Cacr"}, "sta_let_10m_Caf": {"__spz_name__": "Ca flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_10m_Caf", "dataset": "sta-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "Ca flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:50:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_10m_Caf"}, "sta_let_10m_Cau": {"__spz_name__": "Ca uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_10m_Cau", "dataset": "sta-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "Ca uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:50:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_10m_Cau"}, "sta_let_10m_Ccr": {"__spz_name__": "C counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_10m_Ccr", "dataset": "sta-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "C counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:50:00Z", "units": "counts/hour", "xmlid": "sta_let_10m_Ccr"}, "sta_let_10m_Cf": {"__spz_name__": "C flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_10m_Cf", "dataset": "sta-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "C flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:50:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_10m_Cf"}, "sta_let_10m_Cu": {"__spz_name__": "C uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_10m_Cu", "dataset": "sta-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "C uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:50:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_10m_Cu"}, "sta_let_10m_Fecr": {"__spz_name__": "Fe counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_10m_Fecr", "dataset": "sta-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "Fe counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:50:00Z", "units": "counts/hour", "xmlid": "sta_let_10m_Fecr"}, "sta_let_10m_Fef": {"__spz_name__": "Fe flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_10m_Fef", "dataset": "sta-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "Fe flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:50:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_10m_Fef"}, "sta_let_10m_Feu": {"__spz_name__": "Fe uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_10m_Feu", "dataset": "sta-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "Fe uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:50:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_10m_Feu"}, "sta_let_10m_Hcr": {"__spz_name__": "H counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_10m_Hcr", "dataset": "sta-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "H counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:50:00Z", "units": "counts/hour", "xmlid": "sta_let_10m_Hcr"}, "sta_let_10m_He4cr": {"__spz_name__": "He4 counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_10m_He4cr", "dataset": "sta-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "He4 counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:50:00Z", "units": "counts/hour", "xmlid": "sta_let_10m_He4cr"}, "sta_let_10m_He4f": {"__spz_name__": "He4 flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_10m_He4f", "dataset": "sta-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "He4 flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:50:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_10m_He4f"}, "sta_let_10m_He4u": {"__spz_name__": "He4 uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_10m_He4u", "dataset": "sta-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "He4 uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:50:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_10m_He4u"}, "sta_let_10m_Hf": {"__spz_name__": "H flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_10m_Hf", "dataset": "sta-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "H flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:50:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_10m_Hf"}, "sta_let_10m_Hu": {"__spz_name__": "H uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_10m_Hu", "dataset": "sta-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "H uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:50:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_10m_Hu"}, "sta_let_10m_Mgcr": {"__spz_name__": "Mg counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_10m_Mgcr", "dataset": "sta-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "Mg counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:50:00Z", "units": "counts/hour", "xmlid": "sta_let_10m_Mgcr"}, "sta_let_10m_Mgf": {"__spz_name__": "Mg flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_10m_Mgf", "dataset": "sta-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "Mg flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:50:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_10m_Mgf"}, "sta_let_10m_Mgu": {"__spz_name__": "Mg uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_10m_Mgu", "dataset": "sta-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "Mg uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:50:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_10m_Mgu"}, "sta_let_10m_Nacr": {"__spz_name__": "Na counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_10m_Nacr", "dataset": "sta-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "Na counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:50:00Z", "units": "counts/hour", "xmlid": "sta_let_10m_Nacr"}, "sta_let_10m_Naf": {"__spz_name__": "Na flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_10m_Naf", "dataset": "sta-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "Na flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:50:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_10m_Naf"}, "sta_let_10m_Nau": {"__spz_name__": "Na uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_10m_Nau", "dataset": "sta-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "Na uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:50:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_10m_Nau"}, "sta_let_10m_Ncr": {"__spz_name__": "N counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_10m_Ncr", "dataset": "sta-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "N counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:50:00Z", "units": "counts/hour", "xmlid": "sta_let_10m_Ncr"}, "sta_let_10m_Necr": {"__spz_name__": "Ne counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_10m_Necr", "dataset": "sta-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "Ne counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:50:00Z", "units": "counts/hour", "xmlid": "sta_let_10m_Necr"}, "sta_let_10m_Nef": {"__spz_name__": "Ne flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_10m_Nef", "dataset": "sta-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "Ne flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:50:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_10m_Nef"}, "sta_let_10m_Neu": {"__spz_name__": "Ne uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_10m_Neu", "dataset": "sta-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "Ne uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:50:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_10m_Neu"}, "sta_let_10m_Nf": {"__spz_name__": "N flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_10m_Nf", "dataset": "sta-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "N flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:50:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_10m_Nf"}, "sta_let_10m_Nicr": {"__spz_name__": "Ni counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_10m_Nicr", "dataset": "sta-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "Ni counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:50:00Z", "units": "counts/hour", "xmlid": "sta_let_10m_Nicr"}, "sta_let_10m_Nif": {"__spz_name__": "Ni flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_10m_Nif", "dataset": "sta-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "Ni flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:50:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_10m_Nif"}, "sta_let_10m_Niu": {"__spz_name__": "Ni uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_10m_Niu", "dataset": "sta-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "Ni uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:50:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_10m_Niu"}, "sta_let_10m_Nu": {"__spz_name__": "N uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_10m_Nu", "dataset": "sta-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "N uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:50:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_10m_Nu"}, "sta_let_10m_Ocr": {"__spz_name__": "O counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_10m_Ocr", "dataset": "sta-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "O counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:50:00Z", "units": "counts/hour", "xmlid": "sta_let_10m_Ocr"}, "sta_let_10m_Of": {"__spz_name__": "O flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_10m_Of", "dataset": "sta-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "O flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:50:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_10m_Of"}, "sta_let_10m_Ou": {"__spz_name__": "O uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_10m_Ou", "dataset": "sta-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "O uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:50:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_10m_Ou"}, "sta_let_10m_Scr": {"__spz_name__": "S counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_10m_Scr", "dataset": "sta-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "S counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:50:00Z", "units": "counts/hour", "xmlid": "sta_let_10m_Scr"}, "sta_let_10m_Sf": {"__spz_name__": "S flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_10m_Sf", "dataset": "sta-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "S flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:50:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_10m_Sf"}, "sta_let_10m_Sicr": {"__spz_name__": "Si counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_10m_Sicr", "dataset": "sta-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "Si counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:50:00Z", "units": "counts/hour", "xmlid": "sta_let_10m_Sicr"}, "sta_let_10m_Sif": {"__spz_name__": "Si flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_10m_Sif", "dataset": "sta-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "Si flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:50:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_10m_Sif"}, "sta_let_10m_Siu": {"__spz_name__": "Si uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_10m_Siu", "dataset": "sta-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "Si uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:50:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_10m_Siu"}, "sta_let_10m_Su": {"__spz_name__": "S uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_10m_Su", "dataset": "sta-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "S uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:50:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_10m_Su"}, "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:50:00Z", "target": "Heliosphere.Remote1AU", "xmlid": "sta-let-10min"}, "sta_let_1day": {"__spz_name__": "1 day", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "sta-let-1day", "att": "auto/sta-let-1day", "dataSource": "Caltech Space Radiation Lab", "desc": "Ion flux 1 day rate
Sampling: 24H
Provider: Caltech Space Radiation Lab", "is_public": "True", "lastModificationDate": "2024-09-23T08:55:27Z", "lastUpdate": "2024-09-23T08:55:26Z", "measurement_type": "EnergeticParticles", "name": "1 day", "processing_level": "Calibrated", "sampling": "24H", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/STEREO-A/LET/sta-let-1day", "sta_let_1d_Alcr": {"__spz_name__": "Al counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1d_Alcr", "dataset": "sta-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "Al counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T00:00:00Z", "units": "counts/hour", "xmlid": "sta_let_1d_Alcr"}, "sta_let_1d_Alf": {"__spz_name__": "Al flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1d_Alf", "dataset": "sta-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "Al flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T00:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1d_Alf"}, "sta_let_1d_Alu": {"__spz_name__": "Al uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1d_Alu", "dataset": "sta-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "Al uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T00:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1d_Alu"}, "sta_let_1d_Arcr": {"__spz_name__": "Ar counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1d_Arcr", "dataset": "sta-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "Ar counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T00:00:00Z", "units": "counts/hour", "xmlid": "sta_let_1d_Arcr"}, "sta_let_1d_Arf": {"__spz_name__": "Ar flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1d_Arf", "dataset": "sta-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "Ar flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T00:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1d_Arf"}, "sta_let_1d_Aru": {"__spz_name__": "Ar uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1d_Aru", "dataset": "sta-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "Ar uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T00:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1d_Aru"}, "sta_let_1d_Cacr": {"__spz_name__": "Ca counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1d_Cacr", "dataset": "sta-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "Ca counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T00:00:00Z", "units": "counts/hour", "xmlid": "sta_let_1d_Cacr"}, "sta_let_1d_Caf": {"__spz_name__": "Ca flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1d_Caf", "dataset": "sta-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "Ca flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T00:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1d_Caf"}, "sta_let_1d_Cau": {"__spz_name__": "Ca uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1d_Cau", "dataset": "sta-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "Ca uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T00:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1d_Cau"}, "sta_let_1d_Ccr": {"__spz_name__": "C counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1d_Ccr", "dataset": "sta-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "C counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T00:00:00Z", "units": "counts/hour", "xmlid": "sta_let_1d_Ccr"}, "sta_let_1d_Cf": {"__spz_name__": "C flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1d_Cf", "dataset": "sta-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "C flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T00:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1d_Cf"}, "sta_let_1d_Cu": {"__spz_name__": "C uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1d_Cu", "dataset": "sta-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "C uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T00:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1d_Cu"}, "sta_let_1d_Fecr": {"__spz_name__": "Fe counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1d_Fecr", "dataset": "sta-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "Fe counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T00:00:00Z", "units": "counts/hour", "xmlid": "sta_let_1d_Fecr"}, "sta_let_1d_Fef": {"__spz_name__": "Fe flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1d_Fef", "dataset": "sta-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "Fe flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T00:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1d_Fef"}, "sta_let_1d_Feu": {"__spz_name__": "Fe uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1d_Feu", "dataset": "sta-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "Fe uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T00:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1d_Feu"}, "sta_let_1d_Hcr": {"__spz_name__": "H counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1d_Hcr", "dataset": "sta-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "H counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T00:00:00Z", "units": "counts/hour", "xmlid": "sta_let_1d_Hcr"}, "sta_let_1d_He4cr": {"__spz_name__": "He4 counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1d_He4cr", "dataset": "sta-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "He4 counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T00:00:00Z", "units": "counts/hour", "xmlid": "sta_let_1d_He4cr"}, "sta_let_1d_He4f": {"__spz_name__": "He4 flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1d_He4f", "dataset": "sta-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "He4 flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T00:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1d_He4f"}, "sta_let_1d_He4u": {"__spz_name__": "He4 uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1d_He4u", "dataset": "sta-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "He4 uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T00:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1d_He4u"}, "sta_let_1d_Hf": {"__spz_name__": "H flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1d_Hf", "dataset": "sta-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "H flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T00:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1d_Hf"}, "sta_let_1d_Hu": {"__spz_name__": "H uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1d_Hu", "dataset": "sta-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "H uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T00:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1d_Hu"}, "sta_let_1d_Mgcr": {"__spz_name__": "Mg counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1d_Mgcr", "dataset": "sta-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "Mg counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T00:00:00Z", "units": "counts/hour", "xmlid": "sta_let_1d_Mgcr"}, "sta_let_1d_Mgf": {"__spz_name__": "Mg flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1d_Mgf", "dataset": "sta-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "Mg flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T00:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1d_Mgf"}, "sta_let_1d_Mgu": {"__spz_name__": "Mg uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1d_Mgu", "dataset": "sta-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "Mg uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T00:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1d_Mgu"}, "sta_let_1d_Nacr": {"__spz_name__": "Na counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1d_Nacr", "dataset": "sta-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "Na counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T00:00:00Z", "units": "counts/hour", "xmlid": "sta_let_1d_Nacr"}, "sta_let_1d_Naf": {"__spz_name__": "Na flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1d_Naf", "dataset": "sta-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "Na flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T00:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1d_Naf"}, "sta_let_1d_Nau": {"__spz_name__": "Na uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1d_Nau", "dataset": "sta-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "Na uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T00:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1d_Nau"}, "sta_let_1d_Ncr": {"__spz_name__": "N counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1d_Ncr", "dataset": "sta-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "N counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T00:00:00Z", "units": "counts/hour", "xmlid": "sta_let_1d_Ncr"}, "sta_let_1d_Necr": {"__spz_name__": "Ne counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1d_Necr", "dataset": "sta-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "Ne counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T00:00:00Z", "units": "counts/hour", "xmlid": "sta_let_1d_Necr"}, "sta_let_1d_Nef": {"__spz_name__": "Ne flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1d_Nef", "dataset": "sta-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "Ne flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T00:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1d_Nef"}, "sta_let_1d_Neu": {"__spz_name__": "Ne uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1d_Neu", "dataset": "sta-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "Ne uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T00:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1d_Neu"}, "sta_let_1d_Nf": {"__spz_name__": "N flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1d_Nf", "dataset": "sta-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "N flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T00:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1d_Nf"}, "sta_let_1d_Nicr": {"__spz_name__": "Ni counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1d_Nicr", "dataset": "sta-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "Ni counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T00:00:00Z", "units": "counts/hour", "xmlid": "sta_let_1d_Nicr"}, "sta_let_1d_Nif": {"__spz_name__": "Ni flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1d_Nif", "dataset": "sta-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "Ni flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T00:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1d_Nif"}, "sta_let_1d_Niu": {"__spz_name__": "Ni uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1d_Niu", "dataset": "sta-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "Ni uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T00:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1d_Niu"}, "sta_let_1d_Nu": {"__spz_name__": "N uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1d_Nu", "dataset": "sta-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "N uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T00:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1d_Nu"}, "sta_let_1d_Ocr": {"__spz_name__": "O counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1d_Ocr", "dataset": "sta-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "O counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T00:00:00Z", "units": "counts/hour", "xmlid": "sta_let_1d_Ocr"}, "sta_let_1d_Of": {"__spz_name__": "O flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1d_Of", "dataset": "sta-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "O flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T00:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1d_Of"}, "sta_let_1d_Ou": {"__spz_name__": "O uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1d_Ou", "dataset": "sta-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "O uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T00:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1d_Ou"}, "sta_let_1d_Scr": {"__spz_name__": "S counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1d_Scr", "dataset": "sta-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "S counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T00:00:00Z", "units": "counts/hour", "xmlid": "sta_let_1d_Scr"}, "sta_let_1d_Sf": {"__spz_name__": "S flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1d_Sf", "dataset": "sta-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "S flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T00:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1d_Sf"}, "sta_let_1d_Sicr": {"__spz_name__": "Si counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1d_Sicr", "dataset": "sta-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "Si counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T00:00:00Z", "units": "counts/hour", "xmlid": "sta_let_1d_Sicr"}, "sta_let_1d_Sif": {"__spz_name__": "Si flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1d_Sif", "dataset": "sta-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "Si flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T00:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1d_Sif"}, "sta_let_1d_Siu": {"__spz_name__": "Si uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1d_Siu", "dataset": "sta-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "Si uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T00:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1d_Siu"}, "sta_let_1d_Su": {"__spz_name__": "S uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1d_Su", "dataset": "sta-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "S uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T00:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1d_Su"}, "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T00:00:00Z", "target": "Heliosphere.Remote1AU", "xmlid": "sta-let-1day"}, "sta_let_1hour": {"__spz_name__": "1 hour", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "sta-let-1hour", "att": "auto/sta-let-1hour", "dataSource": "Caltech Space Radiation Lab", "desc": "Ion flux 1 hour rate
Sampling: 1H
Provider: Caltech Space Radiation Lab", "is_public": "True", "lastModificationDate": "2024-09-23T08:54:35Z", "lastUpdate": "2024-09-23T08:54:30Z", "measurement_type": "EnergeticParticles", "name": "1 hour", "processing_level": "Calibrated", "sampling": "1H", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/STEREO-A/LET/sta-let-1hour", "sta_let_1h_Alcr": {"__spz_name__": "Al counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1h_Alcr", "dataset": "sta-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "Al counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:00:00Z", "units": "counts/hour", "xmlid": "sta_let_1h_Alcr"}, "sta_let_1h_Alf": {"__spz_name__": "Al flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1h_Alf", "dataset": "sta-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "Al flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1h_Alf"}, "sta_let_1h_Alu": {"__spz_name__": "Al uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1h_Alu", "dataset": "sta-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "Al uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1h_Alu"}, "sta_let_1h_Arcr": {"__spz_name__": "Ar counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1h_Arcr", "dataset": "sta-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "Ar counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:00:00Z", "units": "counts/hour", "xmlid": "sta_let_1h_Arcr"}, "sta_let_1h_Arf": {"__spz_name__": "Ar flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1h_Arf", "dataset": "sta-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "Ar flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1h_Arf"}, "sta_let_1h_Aru": {"__spz_name__": "Ar uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1h_Aru", "dataset": "sta-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "Ar uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1h_Aru"}, "sta_let_1h_Cacr": {"__spz_name__": "Ca counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1h_Cacr", "dataset": "sta-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "Ca counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:00:00Z", "units": "counts/hour", "xmlid": "sta_let_1h_Cacr"}, "sta_let_1h_Caf": {"__spz_name__": "Ca flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1h_Caf", "dataset": "sta-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "Ca flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1h_Caf"}, "sta_let_1h_Cau": {"__spz_name__": "Ca uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1h_Cau", "dataset": "sta-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "Ca uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1h_Cau"}, "sta_let_1h_Ccr": {"__spz_name__": "C counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1h_Ccr", "dataset": "sta-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "C counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:00:00Z", "units": "counts/hour", "xmlid": "sta_let_1h_Ccr"}, "sta_let_1h_Cf": {"__spz_name__": "C flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1h_Cf", "dataset": "sta-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "C flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1h_Cf"}, "sta_let_1h_Cu": {"__spz_name__": "C uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1h_Cu", "dataset": "sta-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "C uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1h_Cu"}, "sta_let_1h_Fecr": {"__spz_name__": "Fe counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1h_Fecr", "dataset": "sta-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "Fe counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:00:00Z", "units": "counts/hour", "xmlid": "sta_let_1h_Fecr"}, "sta_let_1h_Fef": {"__spz_name__": "Fe flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1h_Fef", "dataset": "sta-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "Fe flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1h_Fef"}, "sta_let_1h_Feu": {"__spz_name__": "Fe uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1h_Feu", "dataset": "sta-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "Fe uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1h_Feu"}, "sta_let_1h_Hcr": {"__spz_name__": "H counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1h_Hcr", "dataset": "sta-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "H counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:00:00Z", "units": "counts/hour", "xmlid": "sta_let_1h_Hcr"}, "sta_let_1h_He4cr": {"__spz_name__": "He4 counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1h_He4cr", "dataset": "sta-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "He4 counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:00:00Z", "units": "counts/hour", "xmlid": "sta_let_1h_He4cr"}, "sta_let_1h_He4f": {"__spz_name__": "He4 flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1h_He4f", "dataset": "sta-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "He4 flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1h_He4f"}, "sta_let_1h_He4u": {"__spz_name__": "He4 uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1h_He4u", "dataset": "sta-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "He4 uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1h_He4u"}, "sta_let_1h_Hf": {"__spz_name__": "H flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1h_Hf", "dataset": "sta-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "H flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1h_Hf"}, "sta_let_1h_Hu": {"__spz_name__": "H uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1h_Hu", "dataset": "sta-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "H uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1h_Hu"}, "sta_let_1h_Mgcr": {"__spz_name__": "Mg counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1h_Mgcr", "dataset": "sta-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "Mg counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:00:00Z", "units": "counts/hour", "xmlid": "sta_let_1h_Mgcr"}, "sta_let_1h_Mgf": {"__spz_name__": "Mg flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1h_Mgf", "dataset": "sta-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "Mg flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1h_Mgf"}, "sta_let_1h_Mgu": {"__spz_name__": "Mg uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1h_Mgu", "dataset": "sta-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "Mg uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1h_Mgu"}, "sta_let_1h_Nacr": {"__spz_name__": "Na counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1h_Nacr", "dataset": "sta-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "Na counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:00:00Z", "units": "counts/hour", "xmlid": "sta_let_1h_Nacr"}, "sta_let_1h_Naf": {"__spz_name__": "Na flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1h_Naf", "dataset": "sta-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "Na flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1h_Naf"}, "sta_let_1h_Nau": {"__spz_name__": "Na uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1h_Nau", "dataset": "sta-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "Na uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1h_Nau"}, "sta_let_1h_Ncr": {"__spz_name__": "N counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1h_Ncr", "dataset": "sta-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "N counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:00:00Z", "units": "counts/hour", "xmlid": "sta_let_1h_Ncr"}, "sta_let_1h_Necr": {"__spz_name__": "Ne counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1h_Necr", "dataset": "sta-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "Ne counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:00:00Z", "units": "counts/hour", "xmlid": "sta_let_1h_Necr"}, "sta_let_1h_Nef": {"__spz_name__": "Ne flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1h_Nef", "dataset": "sta-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "Ne flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1h_Nef"}, "sta_let_1h_Neu": {"__spz_name__": "Ne uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1h_Neu", "dataset": "sta-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "Ne uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1h_Neu"}, "sta_let_1h_Nf": {"__spz_name__": "N flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1h_Nf", "dataset": "sta-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "N flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1h_Nf"}, "sta_let_1h_Nicr": {"__spz_name__": "Ni counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1h_Nicr", "dataset": "sta-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "Ni counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:00:00Z", "units": "counts/hour", "xmlid": "sta_let_1h_Nicr"}, "sta_let_1h_Nif": {"__spz_name__": "Ni flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1h_Nif", "dataset": "sta-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "Ni flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1h_Nif"}, "sta_let_1h_Niu": {"__spz_name__": "Ni uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1h_Niu", "dataset": "sta-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "Ni uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1h_Niu"}, "sta_let_1h_Nu": {"__spz_name__": "N uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1h_Nu", "dataset": "sta-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "N uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1h_Nu"}, "sta_let_1h_Ocr": {"__spz_name__": "O counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1h_Ocr", "dataset": "sta-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "O counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:00:00Z", "units": "counts/hour", "xmlid": "sta_let_1h_Ocr"}, "sta_let_1h_Of": {"__spz_name__": "O flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1h_Of", "dataset": "sta-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "O flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1h_Of"}, "sta_let_1h_Ou": {"__spz_name__": "O uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1h_Ou", "dataset": "sta-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "O uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1h_Ou"}, "sta_let_1h_Scr": {"__spz_name__": "S counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1h_Scr", "dataset": "sta-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "S counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:00:00Z", "units": "counts/hour", "xmlid": "sta_let_1h_Scr"}, "sta_let_1h_Sf": {"__spz_name__": "S flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1h_Sf", "dataset": "sta-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "S flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1h_Sf"}, "sta_let_1h_Sicr": {"__spz_name__": "Si counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1h_Sicr", "dataset": "sta-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "Si counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:00:00Z", "units": "counts/hour", "xmlid": "sta_let_1h_Sicr"}, "sta_let_1h_Sif": {"__spz_name__": "Si flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1h_Sif", "dataset": "sta-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "Si flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1h_Sif"}, "sta_let_1h_Siu": {"__spz_name__": "Si uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1h_Siu", "dataset": "sta-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "Si uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1h_Siu"}, "sta_let_1h_Su": {"__spz_name__": "S uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1h_Su", "dataset": "sta-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "S uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1h_Su"}, "start_date": "2006-11-13T00:00:00Z", "stop_date": "2024-07-31T23:00:00Z", "target": "Heliosphere.Remote1AU", "xmlid": "sta-let-1hour"}, "sta_let_1min": {"__spz_name__": "1 min", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "sta-let-1min", "att": "auto/sta-let-1min", "dataSource": "Caltech Space Radiation Lab", "desc": "Ion flux 1 minute rate
Sampling: 60S
Provider: Caltech Space Radiation Lab", "is_public": "True", "lastModificationDate": "2024-03-20T14:44:34Z", "lastUpdate": "2024-03-20T14:44:29Z", "measurement_type": "EnergeticParticles", "name": "1 min", "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/STEREO-A/LET/sta-let-1min", "sta_let_1m_Alcr": {"__spz_name__": "Al counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1m_Alcr", "dataset": "sta-let-1min", "display_type": "spectrogram", "is_public": "True", "name": "Al counts", "start_date": "2006-11-14T17:51:35Z", "stop_date": "2024-01-31T23:59:10Z", "units": "counts/minute", "xmlid": "sta_let_1m_Alcr"}, "sta_let_1m_Alf": {"__spz_name__": "Al flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1m_Alf", "dataset": "sta-let-1min", "display_type": "spectrogram", "is_public": "True", "name": "Al flux", "start_date": "2006-11-14T17:51:35Z", "stop_date": "2024-01-31T23:59:10Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1m_Alf"}, "sta_let_1m_Arcr": {"__spz_name__": "Ar counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1m_Arcr", "dataset": "sta-let-1min", "display_type": "spectrogram", "is_public": "True", "name": "Ar counts", "start_date": "2006-11-14T17:51:35Z", "stop_date": "2024-01-31T23:59:10Z", "units": "counts/minute", "xmlid": "sta_let_1m_Arcr"}, "sta_let_1m_Arf": {"__spz_name__": "Ar flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1m_Arf", "dataset": "sta-let-1min", "display_type": "spectrogram", "is_public": "True", "name": "Ar flux", "start_date": "2006-11-14T17:51:35Z", "stop_date": "2024-01-31T23:59:10Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1m_Arf"}, "sta_let_1m_Cacr": {"__spz_name__": "Ca counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1m_Cacr", "dataset": "sta-let-1min", "display_type": "spectrogram", "is_public": "True", "name": "Ca counts", "start_date": "2006-11-14T17:51:35Z", "stop_date": "2024-01-31T23:59:10Z", "units": "counts/minute", "xmlid": "sta_let_1m_Cacr"}, "sta_let_1m_Caf": {"__spz_name__": "Ca flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1m_Caf", "dataset": "sta-let-1min", "display_type": "spectrogram", "is_public": "True", "name": "Ca flux", "start_date": "2006-11-14T17:51:35Z", "stop_date": "2024-01-31T23:59:10Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1m_Caf"}, "sta_let_1m_Ccr": {"__spz_name__": "C counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1m_Ccr", "dataset": "sta-let-1min", "display_type": "spectrogram", "is_public": "True", "name": "C counts", "start_date": "2006-11-14T17:51:35Z", "stop_date": "2024-01-31T23:59:10Z", "units": "counts/minute", "xmlid": "sta_let_1m_Ccr"}, "sta_let_1m_Cf": {"__spz_name__": "C flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1m_Cf", "dataset": "sta-let-1min", "display_type": "spectrogram", "is_public": "True", "name": "C flux", "start_date": "2006-11-14T17:51:35Z", "stop_date": "2024-01-31T23:59:10Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1m_Cf"}, "sta_let_1m_Fecr": {"__spz_name__": "Fe counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1m_Fecr", "dataset": "sta-let-1min", "display_type": "spectrogram", "is_public": "True", "name": "Fe counts", "start_date": "2006-11-14T17:51:35Z", "stop_date": "2024-01-31T23:59:10Z", "units": "counts/minute", "xmlid": "sta_let_1m_Fecr"}, "sta_let_1m_Fef": {"__spz_name__": "Fe flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1m_Fef", "dataset": "sta-let-1min", "display_type": "spectrogram", "is_public": "True", "name": "Fe flux", "start_date": "2006-11-14T17:51:35Z", "stop_date": "2024-01-31T23:59:10Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1m_Fef"}, "sta_let_1m_Hcr": {"__spz_name__": "H counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1m_Hcr", "dataset": "sta-let-1min", "display_type": "spectrogram", "is_public": "True", "name": "H counts", "start_date": "2006-11-14T17:51:35Z", "stop_date": "2024-01-31T23:59:10Z", "units": "counts/minute", "xmlid": "sta_let_1m_Hcr"}, "sta_let_1m_He3cr": {"__spz_name__": "He3 counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1m_He3cr", "dataset": "sta-let-1min", "display_type": "spectrogram", "is_public": "True", "name": "He3 counts", "start_date": "2006-11-14T17:51:35Z", "stop_date": "2024-01-31T23:59:10Z", "units": "counts/minute", "xmlid": "sta_let_1m_He3cr"}, "sta_let_1m_He3f": {"__spz_name__": "He3 flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1m_He3f", "dataset": "sta-let-1min", "display_type": "spectrogram", "is_public": "True", "name": "He3 flux", "start_date": "2006-11-14T17:51:35Z", "stop_date": "2024-01-31T23:59:10Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1m_He3f"}, "sta_let_1m_He4cr": {"__spz_name__": "He4 counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1m_He4cr", "dataset": "sta-let-1min", "display_type": "spectrogram", "is_public": "True", "name": "He4 counts", "start_date": "2006-11-14T17:51:35Z", "stop_date": "2024-01-31T23:59:10Z", "units": "counts/minute", "xmlid": "sta_let_1m_He4cr"}, "sta_let_1m_He4f": {"__spz_name__": "He4 flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1m_He4f", "dataset": "sta-let-1min", "display_type": "spectrogram", "is_public": "True", "name": "He4 flux", "start_date": "2006-11-14T17:51:35Z", "stop_date": "2024-01-31T23:59:10Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1m_He4f"}, "sta_let_1m_Hecr": {"__spz_name__": "He counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1m_Hecr", "dataset": "sta-let-1min", "display_type": "spectrogram", "is_public": "True", "name": "He counts", "start_date": "2006-11-14T17:51:35Z", "stop_date": "2024-01-31T23:59:10Z", "units": "counts/minute", "xmlid": "sta_let_1m_Hecr"}, "sta_let_1m_Hef": {"__spz_name__": "He flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1m_Hef", "dataset": "sta-let-1min", "display_type": "spectrogram", "is_public": "True", "name": "He flux", "start_date": "2006-11-14T17:51:35Z", "stop_date": "2024-01-31T23:59:10Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1m_Hef"}, "sta_let_1m_Hf": {"__spz_name__": "H flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1m_Hf", "dataset": "sta-let-1min", "display_type": "spectrogram", "is_public": "True", "name": "H flux", "start_date": "2006-11-14T17:51:35Z", "stop_date": "2024-01-31T23:59:10Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1m_Hf"}, "sta_let_1m_Mgcr": {"__spz_name__": "Mg counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1m_Mgcr", "dataset": "sta-let-1min", "display_type": "spectrogram", "is_public": "True", "name": "Mg counts", "start_date": "2006-11-14T17:51:35Z", "stop_date": "2024-01-31T23:59:10Z", "units": "counts/minute", "xmlid": "sta_let_1m_Mgcr"}, "sta_let_1m_Mgf": {"__spz_name__": "Mg flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1m_Mgf", "dataset": "sta-let-1min", "display_type": "spectrogram", "is_public": "True", "name": "Mg flux", "start_date": "2006-11-14T17:51:35Z", "stop_date": "2024-01-31T23:59:10Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1m_Mgf"}, "sta_let_1m_Nacr": {"__spz_name__": "Na counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1m_Nacr", "dataset": "sta-let-1min", "display_type": "spectrogram", "is_public": "True", "name": "Na counts", "start_date": "2006-11-14T17:51:35Z", "stop_date": "2024-01-31T23:59:10Z", "units": "counts/minute", "xmlid": "sta_let_1m_Nacr"}, "sta_let_1m_Naf": {"__spz_name__": "Na flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1m_Naf", "dataset": "sta-let-1min", "display_type": "spectrogram", "is_public": "True", "name": "Na flux", "start_date": "2006-11-14T17:51:35Z", "stop_date": "2024-01-31T23:59:10Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1m_Naf"}, "sta_let_1m_Ncr": {"__spz_name__": "N counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1m_Ncr", "dataset": "sta-let-1min", "display_type": "spectrogram", "is_public": "True", "name": "N counts", "start_date": "2006-11-14T17:51:35Z", "stop_date": "2024-01-31T23:59:10Z", "units": "counts/minute", "xmlid": "sta_let_1m_Ncr"}, "sta_let_1m_Necr": {"__spz_name__": "Ne counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1m_Necr", "dataset": "sta-let-1min", "display_type": "spectrogram", "is_public": "True", "name": "Ne counts", "start_date": "2006-11-14T17:51:35Z", "stop_date": "2024-01-31T23:59:10Z", "units": "counts/minute", "xmlid": "sta_let_1m_Necr"}, "sta_let_1m_Nef": {"__spz_name__": "Ne flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1m_Nef", "dataset": "sta-let-1min", "display_type": "spectrogram", "is_public": "True", "name": "Ne flux", "start_date": "2006-11-14T17:51:35Z", "stop_date": "2024-01-31T23:59:10Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1m_Nef"}, "sta_let_1m_Nf": {"__spz_name__": "N flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1m_Nf", "dataset": "sta-let-1min", "display_type": "spectrogram", "is_public": "True", "name": "N flux", "start_date": "2006-11-14T17:51:35Z", "stop_date": "2024-01-31T23:59:10Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1m_Nf"}, "sta_let_1m_Nicr": {"__spz_name__": "Ni counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1m_Nicr", "dataset": "sta-let-1min", "display_type": "spectrogram", "is_public": "True", "name": "Ni counts", "start_date": "2006-11-14T17:51:35Z", "stop_date": "2024-01-31T23:59:10Z", "units": "counts/minute", "xmlid": "sta_let_1m_Nicr"}, "sta_let_1m_Nif": {"__spz_name__": "Ni flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1m_Nif", "dataset": "sta-let-1min", "display_type": "spectrogram", "is_public": "True", "name": "Ni flux", "start_date": "2006-11-14T17:51:35Z", "stop_date": "2024-01-31T23:59:10Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1m_Nif"}, "sta_let_1m_Ocr": {"__spz_name__": "O counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1m_Ocr", "dataset": "sta-let-1min", "display_type": "spectrogram", "is_public": "True", "name": "O counts", "start_date": "2006-11-14T17:51:35Z", "stop_date": "2024-01-31T23:59:10Z", "units": "counts/minute", "xmlid": "sta_let_1m_Ocr"}, "sta_let_1m_Of": {"__spz_name__": "O flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1m_Of", "dataset": "sta-let-1min", "display_type": "spectrogram", "is_public": "True", "name": "O flux", "start_date": "2006-11-14T17:51:35Z", "stop_date": "2024-01-31T23:59:10Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1m_Of"}, "sta_let_1m_Scr": {"__spz_name__": "S counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1m_Scr", "dataset": "sta-let-1min", "display_type": "spectrogram", "is_public": "True", "name": "S counts", "start_date": "2006-11-14T17:51:35Z", "stop_date": "2024-01-31T23:59:10Z", "units": "counts/minute", "xmlid": "sta_let_1m_Scr"}, "sta_let_1m_Sf": {"__spz_name__": "S flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1m_Sf", "dataset": "sta-let-1min", "display_type": "spectrogram", "is_public": "True", "name": "S flux", "start_date": "2006-11-14T17:51:35Z", "stop_date": "2024-01-31T23:59:10Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1m_Sf"}, "sta_let_1m_Sicr": {"__spz_name__": "Si counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1m_Sicr", "dataset": "sta-let-1min", "display_type": "spectrogram", "is_public": "True", "name": "Si counts", "start_date": "2006-11-14T17:51:35Z", "stop_date": "2024-01-31T23:59:10Z", "units": "counts/minute", "xmlid": "sta_let_1m_Sicr"}, "sta_let_1m_Sif": {"__spz_name__": "Si flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_let_1m_Sif", "dataset": "sta-let-1min", "display_type": "spectrogram", "is_public": "True", "name": "Si flux", "start_date": "2006-11-14T17:51:35Z", "stop_date": "2024-01-31T23:59:10Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_let_1m_Sif"}, "start_date": "2006-11-14T17:51:35Z", "stop_date": "2024-01-31T23:59:10Z", "target": "Heliosphere.Remote1AU", "xmlid": "sta-let-1min"}, "xmlid": "STEREO-A_let"}, "MAG": {"__spz_name__": "MAG", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "STEREO-A_mag", "att": "auto/STEREO-A_mag", "desc": "IMPACT Magnetometer
Magnetometer", "is_public": "True", "name": "MAG", "sta_b_1min": {"__spz_name__": "1 min", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "sta-b-1min", "att": "auto/sta-b-1min", "dataSource": "UCLA", "desc": "Magnetic Field : 1 min averaged
Sampling: 60S
Provider: UCLA", "is_public": "True", "lastModificationDate": "2024-08-12T03:38:24Z", "lastUpdate": "2024-08-12T03:38:24Z", "measurement_type": "MagneticField", "name": "1 min", "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/STEREO-A/MAG/sta-b-1min", "sta_b_rtn": {"__spz_name__": "b_rtn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_b_rtn", "dataset": "sta-b-1min", "display_type": "timeseries", "is_public": "True", "name": "b_rtn", "size": "3", "sta_b_rtn0": {"__spz_name__": "br", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_b_rtn(0)", "dataset": "sta-b-1min", "index1": "0", "is_public": "True", "name": "br", "parameter": "sta_b_rtn", "start_date": "2006-11-07T00:00:30Z", "stop_date": "2024-05-31T23:59:30Z", "xmlid": "sta_b_rtn(0)"}, "sta_b_rtn1": {"__spz_name__": "bt", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_b_rtn(1)", "dataset": "sta-b-1min", "index1": "1", "is_public": "True", "name": "bt", "parameter": "sta_b_rtn", "start_date": "2006-11-07T00:00:30Z", "stop_date": "2024-05-31T23:59:30Z", "xmlid": "sta_b_rtn(1)"}, "sta_b_rtn2": {"__spz_name__": "bn", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_b_rtn(2)", "dataset": "sta-b-1min", "index1": "2", "is_public": "True", "name": "bn", "parameter": "sta_b_rtn", "start_date": "2006-11-07T00:00:30Z", "stop_date": "2024-05-31T23:59:30Z", "xmlid": "sta_b_rtn(2)"}, "start_date": "2006-11-07T00:00:30Z", "stop_date": "2024-05-31T23:59:30Z", "ucd": "phys.magField", "units": "nT", "xmlid": "sta_b_rtn"}, "sta_b_rtn_phi": {"__spz_name__": "phi", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_b_rtn_phi", "dataset": "sta-b-1min", "description": "Magnetic field phi angle", "display_type": "timeseries", "is_public": "True", "name": "phi", "start_date": "2006-11-07T00:00:30Z", "stop_date": "2024-05-31T23:59:30Z", "ucd": "phys.magField", "units": "degrees", "xmlid": "sta_b_rtn_phi"}, "sta_b_rtn_theta": {"__spz_name__": "theta", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_b_rtn_theta", "dataset": "sta-b-1min", "description": "Magnetic field theta angle", "display_type": "timeseries", "is_public": "True", "name": "theta", "start_date": "2006-11-07T00:00:30Z", "stop_date": "2024-05-31T23:59:30Z", "ucd": "phys.magField", "units": "degrees", "xmlid": "sta_b_rtn_theta"}, "sta_b_sc": {"__spz_name__": "b_sc", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_b_sc", "dataset": "sta-b-1min", "display_type": "timeseries", "is_public": "True", "name": "b_sc", "size": "3", "sta_b_sc0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_b_sc(0)", "dataset": "sta-b-1min", "index1": "0", "is_public": "True", "name": "bx", "parameter": "sta_b_sc", "start_date": "2006-11-07T00:00:30Z", "stop_date": "2024-05-31T23:59:30Z", "xmlid": "sta_b_sc(0)"}, "sta_b_sc1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_b_sc(1)", "dataset": "sta-b-1min", "index1": "1", "is_public": "True", "name": "by", "parameter": "sta_b_sc", "start_date": "2006-11-07T00:00:30Z", "stop_date": "2024-05-31T23:59:30Z", "xmlid": "sta_b_sc(1)"}, "sta_b_sc2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_b_sc(2)", "dataset": "sta-b-1min", "index1": "2", "is_public": "True", "name": "bz", "parameter": "sta_b_sc", "start_date": "2006-11-07T00:00:30Z", "stop_date": "2024-05-31T23:59:30Z", "xmlid": "sta_b_sc(2)"}, "start_date": "2006-11-07T00:00:30Z", "stop_date": "2024-05-31T23:59:30Z", "ucd": "phys.magField", "units": "nT", "xmlid": "sta_b_sc"}, "sta_btot_1min": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_btot_1min", "dataset": "sta-b-1min", "description": "Scalar magnitude of the magnetic field in nT", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "2006-11-07T00:00:30Z", "stop_date": "2024-05-31T23:59:30Z", "ucd": "phys.magField", "units": "nT", "xmlid": "sta_btot_1min"}, "start_date": "2006-11-07T00:00:30Z", "stop_date": "2024-05-31T23:59:30Z", "xmlid": "sta-b-1min"}, "sta_mag_mag": {"__spz_name__": "1 sec", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "sta-mag-mag", "att": "auto/sta-mag-mag", "dataSource": "UCLA", "desc": "Magnetic Field : 1 sec averaged
Sampling: 1S
Provider: UCLA", "is_public": "True", "lastModificationDate": "2019-07-21T23:03:34Z", "lastUpdate": "2019-07-21T23:03:27Z", "measurement_type": "MagneticField", "name": "1 sec", "processing_level": "Calibrated", "sampling": "1S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/STEREO-A/MAG/sta-mag-mag", "sta_b": {"__spz_name__": "b_rtn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_b", "dataset": "sta-mag-mag", "display_type": "timeseries", "is_public": "True", "name": "b_rtn", "size": "3", "sta_b0": {"__spz_name__": "br", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_b(0)", "dataset": "sta-mag-mag", "index1": "0", "is_public": "True", "name": "br", "parameter": "sta_b", "start_date": "2006-11-07T00:00:00Z", "stop_date": "2019-04-29T23:59:59Z", "xmlid": "sta_b(0)"}, "sta_b1": {"__spz_name__": "bt", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_b(1)", "dataset": "sta-mag-mag", "index1": "1", "is_public": "True", "name": "bt", "parameter": "sta_b", "start_date": "2006-11-07T00:00:00Z", "stop_date": "2019-04-29T23:59:59Z", "xmlid": "sta_b(1)"}, "sta_b2": {"__spz_name__": "bn", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_b(2)", "dataset": "sta-mag-mag", "index1": "2", "is_public": "True", "name": "bn", "parameter": "sta_b", "start_date": "2006-11-07T00:00:00Z", "stop_date": "2019-04-29T23:59:59Z", "xmlid": "sta_b(2)"}, "start_date": "2006-11-07T00:00:00Z", "stop_date": "2019-04-29T23:59:59Z", "ucd": "phys.magField", "units": "nT", "xmlid": "sta_b"}, "sta_b_phi": {"__spz_name__": "phi", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_b_phi", "dataset": "sta-mag-mag", "description": "Magnetic field phi angle", "display_type": "timeseries", "is_public": "True", "name": "phi", "start_date": "2006-11-07T00:00:00Z", "stop_date": "2019-04-29T23:59:59Z", "ucd": "phys.magField", "units": "degrees", "xmlid": "sta_b_phi"}, "sta_b_theta": {"__spz_name__": "theta", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_b_theta", "dataset": "sta-mag-mag", "description": "Magnetic field theta angle", "display_type": "timeseries", "is_public": "True", "name": "theta", "start_date": "2006-11-07T00:00:00Z", "stop_date": "2019-04-29T23:59:59Z", "ucd": "phys.magField", "units": "degrees", "xmlid": "sta_b_theta"}, "sta_btot": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_btot", "dataset": "sta-mag-mag", "description": "Scalar magnitude of the magnetic field in nT", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "2006-11-07T00:00:00Z", "stop_date": "2019-04-29T23:59:59Z", "ucd": "phys.magField", "units": "nT", "xmlid": "sta_btot"}, "start_date": "2006-11-07T00:00:00Z", "stop_date": "2019-04-29T23:59:59Z", "xmlid": "sta-mag-mag"}, "xmlid": "STEREO-A_mag"}, "PLASTIC": {"__spz_name__": "PLASTIC", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "STEREO-A_plastic", "att": "auto/STEREO-A_plastic", "desc": "Plasma and Supra-Thermal Ion Composition
EnergeticParticleInstrument", "is_public": "True", "name": "PLASTIC", "sta_l2_pla": {"__spz_name__": "proton 1D fit", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "sta-l2-pla", "att": "auto/sta-l2-pla", "dataSource": "UNH", "desc": "STEREO PLASTIC proton parameters from 1D Maxwellian fits
Sampling: 60S
Provider: UNH", "is_public": "True", "lastModificationDate": "2024-03-25T03:47:08Z", "lastUpdate": "2024-03-25T03:47:08Z", "measurement_type": "ThermalPlasma", "name": "proton 1D fit", "np_sta": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "np_sta", "dataset": "sta-l2-pla", "display_type": "timeseries", "is_public": "True", "name": "density", "start_date": "2007-01-31T23:59:30Z", "stop_date": "2023-12-31T23:59:40Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm-3", "xmlid": "np_sta"}, "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/STEREO-A/PLASTIC/sta-l2-pla", "start_date": "2007-01-31T23:59:30Z", "stop_date": "2023-12-31T23:59:40Z", "vp_sta": {"__spz_name__": "v_rtn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vp_sta", "dataset": "sta-l2-pla", "display_type": "timeseries", "is_public": "True", "name": "v_rtn", "size": "3", "start_date": "2007-01-31T23:59:30Z", "stop_date": "2023-12-31T23:59:40Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "vp_sta0": {"__spz_name__": "vr", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vp_sta(0)", "dataset": "sta-l2-pla", "index1": "0", "is_public": "True", "name": "vr", "parameter": "vp_sta", "start_date": "2007-01-31T23:59:30Z", "stop_date": "2023-12-31T23:59:40Z", "xmlid": "vp_sta(0)"}, "vp_sta1": {"__spz_name__": "vt", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vp_sta(1)", "dataset": "sta-l2-pla", "index1": "1", "is_public": "True", "name": "vt", "parameter": "vp_sta", "start_date": "2007-01-31T23:59:30Z", "stop_date": "2023-12-31T23:59:40Z", "xmlid": "vp_sta(1)"}, "vp_sta2": {"__spz_name__": "vn", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vp_sta(2)", "dataset": "sta-l2-pla", "index1": "2", "is_public": "True", "name": "vn", "parameter": "vp_sta", "start_date": "2007-01-31T23:59:30Z", "stop_date": "2023-12-31T23:59:40Z", "xmlid": "vp_sta(2)"}, "xmlid": "vp_sta"}, "vpbulk_sta": {"__spz_name__": "|v|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vpbulk_sta", "dataset": "sta-l2-pla", "description": "Scalar magnitude of the velocity in km/s", "display_type": "timeseries", "is_public": "True", "name": "|v|", "start_date": "2007-01-31T23:59:30Z", "stop_date": "2023-12-31T23:59:40Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "vpbulk_sta"}, "vth_sta": {"__spz_name__": "v_thermal", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vth_sta", "dataset": "sta-l2-pla", "display_type": "timeseries", "is_public": "True", "name": "v_thermal", "start_date": "2007-01-31T23:59:30Z", "stop_date": "2023-12-31T23:59:40Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "vth_sta"}, "xmlid": "sta-l2-pla"}, "xmlid": "STEREO-A_plastic"}, "SEPT": {"__spz_name__": "SEPT", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "STEREO-A_sept", "att": "auto/STEREO-A_sept", "desc": "Solar Electron Proton Telescope
ParticleDetector", "is_public": "True", "name": "SEPT", "sta_sept_1day": {"__spz_name__": "1 day", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "sta-sept-1day", "att": "auto/sta-sept-1day", "dataSource": "University of Kiel", "desc": "Electron and Proton flux 1 day rate
Sampling: 24H
Provider: University of Kiel", "is_public": "True", "lastModificationDate": "2024-02-09T10:40:11Z", "lastUpdate": "2024-02-09T10:35:07Z", "measurement_type": "EnergeticParticles", "name": "1 day", "processing_level": "Calibrated", "sampling": "24H", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/STEREO-A/SEPT/sta-sept-1day", "sta_sept_1d_ef": {"__spz_name__": "e- flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_sept_1d_ef", "dataset": "sta-sept-1day", "display_type": "spectrogram", "is_public": "True", "name": "e- flux", "start_date": "2006-11-14T12:00:00Z", "stop_date": "2023-11-03T12:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_sept_1d_ef"}, "sta_sept_1d_eu": {"__spz_name__": "e- uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_sept_1d_eu", "dataset": "sta-sept-1day", "display_type": "spectrogram", "is_public": "True", "name": "e- uncertainty", "start_date": "2006-11-14T12:00:00Z", "stop_date": "2023-11-03T12:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_sept_1d_eu"}, "sta_sept_1d_hf": {"__spz_name__": "h+ flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_sept_1d_hf", "dataset": "sta-sept-1day", "display_type": "spectrogram", "is_public": "True", "name": "h+ flux", "start_date": "2006-11-14T12:00:00Z", "stop_date": "2023-11-03T12:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_sept_1d_hf"}, "sta_sept_1d_hu": {"__spz_name__": "h+ uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_sept_1d_hu", "dataset": "sta-sept-1day", "display_type": "spectrogram", "is_public": "True", "name": "h+ uncertainty", "start_date": "2006-11-14T12:00:00Z", "stop_date": "2023-11-03T12:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_sept_1d_hu"}, "start_date": "2006-11-14T12:00:00Z", "stop_date": "2023-11-03T12:00:00Z", "target": "Heliosphere.Remote1AU", "xmlid": "sta-sept-1day"}, "sta_sept_1hour": {"__spz_name__": "1 hour", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "sta-sept-1hour", "att": "auto/sta-sept-1hour", "dataSource": "University of Kiel", "desc": "Electron and Proton flux 1 hour rate
Sampling: 1H
Provider: University of Kiel", "is_public": "True", "lastModificationDate": "2024-02-08T15:08:55Z", "lastUpdate": "2024-02-08T15:08:53Z", "measurement_type": "EnergeticParticles", "name": "1 hour", "processing_level": "Calibrated", "sampling": "1H", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/STEREO-A/SEPT/sta-sept-1hour", "sta_sept_1h_ef": {"__spz_name__": "e- flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_sept_1h_ef", "dataset": "sta-sept-1hour", "display_type": "spectrogram", "is_public": "True", "name": "e- flux", "start_date": "2006-11-14T00:30:00Z", "stop_date": "2023-11-04T04:30:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_sept_1h_ef"}, "sta_sept_1h_eu": {"__spz_name__": "e- uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_sept_1h_eu", "dataset": "sta-sept-1hour", "display_type": "spectrogram", "is_public": "True", "name": "e- uncertainty", "start_date": "2006-11-14T00:30:00Z", "stop_date": "2023-11-04T04:30:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_sept_1h_eu"}, "sta_sept_1h_hf": {"__spz_name__": "h+ flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_sept_1h_hf", "dataset": "sta-sept-1hour", "display_type": "spectrogram", "is_public": "True", "name": "h+ flux", "start_date": "2006-11-14T00:30:00Z", "stop_date": "2023-11-04T04:30:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_sept_1h_hf"}, "sta_sept_1h_hu": {"__spz_name__": "h+ uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_sept_1h_hu", "dataset": "sta-sept-1hour", "display_type": "spectrogram", "is_public": "True", "name": "h+ uncertainty", "start_date": "2006-11-14T00:30:00Z", "stop_date": "2023-11-04T04:30:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_sept_1h_hu"}, "start_date": "2006-11-14T00:30:00Z", "stop_date": "2023-11-04T04:30:00Z", "target": "Heliosphere.Remote1AU", "xmlid": "sta-sept-1hour"}, "sta_sept_1min": {"__spz_name__": "1 min", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "sta-sept-1min", "att": "auto/sta-sept-1min", "dataSource": "University of Kiel", "desc": "Electron and Proton flux 1 minute rate
Sampling: 60S
Provider: University of Kiel", "is_public": "True", "lastModificationDate": "2024-02-09T10:14:33Z", "lastUpdate": "2024-02-08T18:40:25Z", "measurement_type": "EnergeticParticles", "name": "1 min", "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/STEREO-A/SEPT/sta-sept-1min", "sta_sept_1m_ef": {"__spz_name__": "e- flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_sept_1m_ef", "dataset": "sta-sept-1min", "display_type": "spectrogram", "is_public": "True", "name": "e- flux", "start_date": "2006-11-14T17:48:05Z", "stop_date": "2023-11-04T05:25:43Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_sept_1m_ef"}, "sta_sept_1m_eu": {"__spz_name__": "e- uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_sept_1m_eu", "dataset": "sta-sept-1min", "display_type": "spectrogram", "is_public": "True", "name": "e- uncertainty", "start_date": "2006-11-14T17:48:05Z", "stop_date": "2023-11-04T05:25:43Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_sept_1m_eu"}, "sta_sept_1m_hf": {"__spz_name__": "h+ flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_sept_1m_hf", "dataset": "sta-sept-1min", "display_type": "spectrogram", "is_public": "True", "name": "h+ flux", "start_date": "2006-11-14T17:48:05Z", "stop_date": "2023-11-04T05:25:43Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_sept_1m_hf"}, "sta_sept_1m_hu": {"__spz_name__": "h+ uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_sept_1m_hu", "dataset": "sta-sept-1min", "display_type": "spectrogram", "is_public": "True", "name": "h+ uncertainty", "start_date": "2006-11-14T17:48:05Z", "stop_date": "2023-11-04T05:25:43Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_sept_1m_hu"}, "start_date": "2006-11-14T17:48:05Z", "stop_date": "2023-11-04T05:25:43Z", "target": "Heliosphere.Remote1AU", "xmlid": "sta-sept-1min"}, "xmlid": "STEREO-A_sept"}, "SIT": {"__spz_name__": "SIT", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "STEREO-A_sit", "att": "auto/STEREO-A_sit", "desc": "Suprathermal Ion Telescope
EnergeticParticleInstrument", "is_public": "True", "name": "SIT", "sta_sit_1d": {"__spz_name__": "1 day", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "sta-sit-1d", "att": "auto/sta-sit-1d", "dataSource": "Caltech Space Radiation Lab", "desc": "Ion flux 1 day rate
Sampling: 24H
Provider: Caltech Space Radiation Lab", "is_public": "True", "lastModificationDate": "2024-10-06T22:14:36Z", "lastUpdate": "2024-10-06T22:14:36Z", "measurement_type": "EnergeticParticles", "name": "1 day", "processing_level": "Calibrated", "sampling": "24H", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/STEREO-A/SIT/sta-sit-1d", "sta_sit_1d_4hecr": {"__spz_name__": "4he count rate", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_sit_1d_4hecr", "dataset": "sta-sit-1d", "display_type": "timeseries", "is_public": "True", "name": "4he count rate", "size": "10", "sta_sit_1d_4hecr0": {"__spz_name__": "0.113-0.160 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_4hecr(0)", "dataset": "sta-sit-1d", "index1": "0", "is_public": "True", "name": "0.113-0.160 MeV", "parameter": "sta_sit_1d_4hecr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_4hecr(0)"}, "sta_sit_1d_4hecr1": {"__spz_name__": "0.160-0.226 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_4hecr(1)", "dataset": "sta-sit-1d", "index1": "1", "is_public": "True", "name": "0.160-0.226 MeV", "parameter": "sta_sit_1d_4hecr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_4hecr(1)"}, "sta_sit_1d_4hecr2": {"__spz_name__": "0.226-0.320 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_4hecr(2)", "dataset": "sta-sit-1d", "index1": "2", "is_public": "True", "name": "0.226-0.320 MeV", "parameter": "sta_sit_1d_4hecr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_4hecr(2)"}, "sta_sit_1d_4hecr3": {"__spz_name__": "0.320-0.452 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_4hecr(3)", "dataset": "sta-sit-1d", "index1": "3", "is_public": "True", "name": "0.320-0.452 MeV", "parameter": "sta_sit_1d_4hecr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_4hecr(3)"}, "sta_sit_1d_4hecr4": {"__spz_name__": "0.452-0.640 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_4hecr(4)", "dataset": "sta-sit-1d", "index1": "4", "is_public": "True", "name": "0.452-0.640 MeV", "parameter": "sta_sit_1d_4hecr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_4hecr(4)"}, "sta_sit_1d_4hecr5": {"__spz_name__": "0.640-0.905 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_4hecr(5)", "dataset": "sta-sit-1d", "index1": "5", "is_public": "True", "name": "0.640-0.905 MeV", "parameter": "sta_sit_1d_4hecr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_4hecr(5)"}, "sta_sit_1d_4hecr6": {"__spz_name__": "0.905-1.280 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_4hecr(6)", "dataset": "sta-sit-1d", "index1": "6", "is_public": "True", "name": "0.905-1.280 MeV", "parameter": "sta_sit_1d_4hecr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_4hecr(6)"}, "sta_sit_1d_4hecr7": {"__spz_name__": "1.280-1.810 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_4hecr(7)", "dataset": "sta-sit-1d", "index1": "7", "is_public": "True", "name": "1.280-1.810 MeV", "parameter": "sta_sit_1d_4hecr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_4hecr(7)"}, "sta_sit_1d_4hecr8": {"__spz_name__": "1.810-2.560 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_4hecr(8)", "dataset": "sta-sit-1d", "index1": "8", "is_public": "True", "name": "1.810-2.560 MeV", "parameter": "sta_sit_1d_4hecr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_4hecr(8)"}, "sta_sit_1d_4hecr9": {"__spz_name__": "2.560-3.620 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_4hecr(9)", "dataset": "sta-sit-1d", "index1": "9", "is_public": "True", "name": "2.560-3.620 MeV", "parameter": "sta_sit_1d_4hecr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_4hecr(9)"}, "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_sit_1d_4hecr"}, "sta_sit_1d_4hefl": {"__spz_name__": "4he flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_sit_1d_4hefl", "dataset": "sta-sit-1d", "display_type": "timeseries", "is_public": "True", "name": "4he flux", "size": "10", "sta_sit_1d_4hefl0": {"__spz_name__": "0.113-0.160 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_4hefl(0)", "dataset": "sta-sit-1d", "index1": "0", "is_public": "True", "name": "0.113-0.160 MeV", "parameter": "sta_sit_1d_4hefl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_4hefl(0)"}, "sta_sit_1d_4hefl1": {"__spz_name__": "0.160-0.226 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_4hefl(1)", "dataset": "sta-sit-1d", "index1": "1", "is_public": "True", "name": "0.160-0.226 MeV", "parameter": "sta_sit_1d_4hefl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_4hefl(1)"}, "sta_sit_1d_4hefl2": {"__spz_name__": "0.226-0.320 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_4hefl(2)", "dataset": "sta-sit-1d", "index1": "2", "is_public": "True", "name": "0.226-0.320 MeV", "parameter": "sta_sit_1d_4hefl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_4hefl(2)"}, "sta_sit_1d_4hefl3": {"__spz_name__": "0.320-0.452 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_4hefl(3)", "dataset": "sta-sit-1d", "index1": "3", "is_public": "True", "name": "0.320-0.452 MeV", "parameter": "sta_sit_1d_4hefl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_4hefl(3)"}, "sta_sit_1d_4hefl4": {"__spz_name__": "0.452-0.640 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_4hefl(4)", "dataset": "sta-sit-1d", "index1": "4", "is_public": "True", "name": "0.452-0.640 MeV", "parameter": "sta_sit_1d_4hefl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_4hefl(4)"}, "sta_sit_1d_4hefl5": {"__spz_name__": "0.640-0.905 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_4hefl(5)", "dataset": "sta-sit-1d", "index1": "5", "is_public": "True", "name": "0.640-0.905 MeV", "parameter": "sta_sit_1d_4hefl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_4hefl(5)"}, "sta_sit_1d_4hefl6": {"__spz_name__": "0.905-1.280 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_4hefl(6)", "dataset": "sta-sit-1d", "index1": "6", "is_public": "True", "name": "0.905-1.280 MeV", "parameter": "sta_sit_1d_4hefl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_4hefl(6)"}, "sta_sit_1d_4hefl7": {"__spz_name__": "1.280-1.810 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_4hefl(7)", "dataset": "sta-sit-1d", "index1": "7", "is_public": "True", "name": "1.280-1.810 MeV", "parameter": "sta_sit_1d_4hefl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_4hefl(7)"}, "sta_sit_1d_4hefl8": {"__spz_name__": "1.810-2.560 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_4hefl(8)", "dataset": "sta-sit-1d", "index1": "8", "is_public": "True", "name": "1.810-2.560 MeV", "parameter": "sta_sit_1d_4hefl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_4hefl(8)"}, "sta_sit_1d_4hefl9": {"__spz_name__": "2.560-3.620 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_4hefl(9)", "dataset": "sta-sit-1d", "index1": "9", "is_public": "True", "name": "2.560-3.620 MeV", "parameter": "sta_sit_1d_4hefl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_4hefl(9)"}, "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_sit_1d_4hefl"}, "sta_sit_1d_4hesp": {"__spz_name__": "4he flux spectro", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_sit_1d_4hesp", "dataset": "sta-sit-1d", "display_type": "spectrogram", "is_public": "True", "name": "4he flux spectro", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "units": "1/(cm2-sr-sec-MeV)", "xmlid": "sta_sit_1d_4hesp"}, "sta_sit_1d_fecr": {"__spz_name__": "fe count rate", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_sit_1d_fecr", "dataset": "sta-sit-1d", "display_type": "timeseries", "is_public": "True", "name": "fe count rate", "size": "11", "sta_sit_1d_fecr0": {"__spz_name__": "0.080-0.113 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_fecr(0)", "dataset": "sta-sit-1d", "index1": "0", "is_public": "True", "name": "0.080-0.113 MeV", "parameter": "sta_sit_1d_fecr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_fecr(0)"}, "sta_sit_1d_fecr1": {"__spz_name__": "0.113-0.160 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_fecr(1)", "dataset": "sta-sit-1d", "index1": "1", "is_public": "True", "name": "0.113-0.160 MeV", "parameter": "sta_sit_1d_fecr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_fecr(1)"}, "sta_sit_1d_fecr10": {"__spz_name__": "2.560-3.620 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_fecr(10)", "dataset": "sta-sit-1d", "index1": "10", "is_public": "True", "name": "2.560-3.620 MeV", "parameter": "sta_sit_1d_fecr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_fecr(10)"}, "sta_sit_1d_fecr2": {"__spz_name__": "0.160-0.226 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_fecr(2)", "dataset": "sta-sit-1d", "index1": "2", "is_public": "True", "name": "0.160-0.226 MeV", "parameter": "sta_sit_1d_fecr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_fecr(2)"}, "sta_sit_1d_fecr3": {"__spz_name__": "0.226-0.320 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_fecr(3)", "dataset": "sta-sit-1d", "index1": "3", "is_public": "True", "name": "0.226-0.320 MeV", "parameter": "sta_sit_1d_fecr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_fecr(3)"}, "sta_sit_1d_fecr4": {"__spz_name__": "0.320-0.452 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_fecr(4)", "dataset": "sta-sit-1d", "index1": "4", "is_public": "True", "name": "0.320-0.452 MeV", "parameter": "sta_sit_1d_fecr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_fecr(4)"}, "sta_sit_1d_fecr5": {"__spz_name__": "0.452-0.640 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_fecr(5)", "dataset": "sta-sit-1d", "index1": "5", "is_public": "True", "name": "0.452-0.640 MeV", "parameter": "sta_sit_1d_fecr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_fecr(5)"}, "sta_sit_1d_fecr6": {"__spz_name__": "0.640-0.905 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_fecr(6)", "dataset": "sta-sit-1d", "index1": "6", "is_public": "True", "name": "0.640-0.905 MeV", "parameter": "sta_sit_1d_fecr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_fecr(6)"}, "sta_sit_1d_fecr7": {"__spz_name__": "0.905-1.280 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_fecr(7)", "dataset": "sta-sit-1d", "index1": "7", "is_public": "True", "name": "0.905-1.280 MeV", "parameter": "sta_sit_1d_fecr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_fecr(7)"}, "sta_sit_1d_fecr8": {"__spz_name__": "1.280-1.810 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_fecr(8)", "dataset": "sta-sit-1d", "index1": "8", "is_public": "True", "name": "1.280-1.810 MeV", "parameter": "sta_sit_1d_fecr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_fecr(8)"}, "sta_sit_1d_fecr9": {"__spz_name__": "1.810-2.560 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_fecr(9)", "dataset": "sta-sit-1d", "index1": "9", "is_public": "True", "name": "1.810-2.560 MeV", "parameter": "sta_sit_1d_fecr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_fecr(9)"}, "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_sit_1d_fecr"}, "sta_sit_1d_fefl": {"__spz_name__": "fe flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_sit_1d_fefl", "dataset": "sta-sit-1d", "display_type": "timeseries", "is_public": "True", "name": "fe flux", "size": "11", "sta_sit_1d_fefl0": {"__spz_name__": "0.080-0.113 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_fefl(0)", "dataset": "sta-sit-1d", "index1": "0", "is_public": "True", "name": "0.080-0.113 MeV", "parameter": "sta_sit_1d_fefl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_fefl(0)"}, "sta_sit_1d_fefl1": {"__spz_name__": "0.113-0.160 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_fefl(1)", "dataset": "sta-sit-1d", "index1": "1", "is_public": "True", "name": "0.113-0.160 MeV", "parameter": "sta_sit_1d_fefl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_fefl(1)"}, "sta_sit_1d_fefl10": {"__spz_name__": "2.560-3.620 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_fefl(10)", "dataset": "sta-sit-1d", "index1": "10", "is_public": "True", "name": "2.560-3.620 MeV", "parameter": "sta_sit_1d_fefl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_fefl(10)"}, "sta_sit_1d_fefl2": {"__spz_name__": "0.160-0.226 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_fefl(2)", "dataset": "sta-sit-1d", "index1": "2", "is_public": "True", "name": "0.160-0.226 MeV", "parameter": "sta_sit_1d_fefl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_fefl(2)"}, "sta_sit_1d_fefl3": {"__spz_name__": "0.226-0.320 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_fefl(3)", "dataset": "sta-sit-1d", "index1": "3", "is_public": "True", "name": "0.226-0.320 MeV", "parameter": "sta_sit_1d_fefl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_fefl(3)"}, "sta_sit_1d_fefl4": {"__spz_name__": "0.320-0.452 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_fefl(4)", "dataset": "sta-sit-1d", "index1": "4", "is_public": "True", "name": "0.320-0.452 MeV", "parameter": "sta_sit_1d_fefl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_fefl(4)"}, "sta_sit_1d_fefl5": {"__spz_name__": "0.452-0.640 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_fefl(5)", "dataset": "sta-sit-1d", "index1": "5", "is_public": "True", "name": "0.452-0.640 MeV", "parameter": "sta_sit_1d_fefl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_fefl(5)"}, "sta_sit_1d_fefl6": {"__spz_name__": "0.640-0.905 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_fefl(6)", "dataset": "sta-sit-1d", "index1": "6", "is_public": "True", "name": "0.640-0.905 MeV", "parameter": "sta_sit_1d_fefl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_fefl(6)"}, "sta_sit_1d_fefl7": {"__spz_name__": "0.905-1.280 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_fefl(7)", "dataset": "sta-sit-1d", "index1": "7", "is_public": "True", "name": "0.905-1.280 MeV", "parameter": "sta_sit_1d_fefl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_fefl(7)"}, "sta_sit_1d_fefl8": {"__spz_name__": "1.280-1.810 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_fefl(8)", "dataset": "sta-sit-1d", "index1": "8", "is_public": "True", "name": "1.280-1.810 MeV", "parameter": "sta_sit_1d_fefl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_fefl(8)"}, "sta_sit_1d_fefl9": {"__spz_name__": "1.810-2.560 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_fefl(9)", "dataset": "sta-sit-1d", "index1": "9", "is_public": "True", "name": "1.810-2.560 MeV", "parameter": "sta_sit_1d_fefl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_fefl(9)"}, "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_sit_1d_fefl"}, "sta_sit_1d_fesp": {"__spz_name__": "fe flux spectro", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_sit_1d_fesp", "dataset": "sta-sit-1d", "display_type": "spectrogram", "is_public": "True", "name": "fe flux spectro", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "units": "1/(cm2-sr-sec-MeV)", "xmlid": "sta_sit_1d_fesp"}, "sta_sit_1d_hcr": {"__spz_name__": "h count rate", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_sit_1d_hcr", "dataset": "sta-sit-1d", "display_type": "timeseries", "is_public": "True", "name": "h count rate", "size": "7", "sta_sit_1d_hcr0": {"__spz_name__": "0.320-0.452 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_hcr(0)", "dataset": "sta-sit-1d", "index1": "0", "is_public": "True", "name": "0.320-0.452 MeV", "parameter": "sta_sit_1d_hcr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_hcr(0)"}, "sta_sit_1d_hcr1": {"__spz_name__": "0.452-0.640 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_hcr(1)", "dataset": "sta-sit-1d", "index1": "1", "is_public": "True", "name": "0.452-0.640 MeV", "parameter": "sta_sit_1d_hcr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_hcr(1)"}, "sta_sit_1d_hcr2": {"__spz_name__": "0.640-0.905 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_hcr(2)", "dataset": "sta-sit-1d", "index1": "2", "is_public": "True", "name": "0.640-0.905 MeV", "parameter": "sta_sit_1d_hcr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_hcr(2)"}, "sta_sit_1d_hcr3": {"__spz_name__": "0.905-1.280 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_hcr(3)", "dataset": "sta-sit-1d", "index1": "3", "is_public": "True", "name": "0.905-1.280 MeV", "parameter": "sta_sit_1d_hcr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_hcr(3)"}, "sta_sit_1d_hcr4": {"__spz_name__": "1.280-1.810 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_hcr(4)", "dataset": "sta-sit-1d", "index1": "4", "is_public": "True", "name": "1.280-1.810 MeV", "parameter": "sta_sit_1d_hcr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_hcr(4)"}, "sta_sit_1d_hcr5": {"__spz_name__": "1.810-2.560 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_hcr(5)", "dataset": "sta-sit-1d", "index1": "5", "is_public": "True", "name": "1.810-2.560 MeV", "parameter": "sta_sit_1d_hcr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_hcr(5)"}, "sta_sit_1d_hcr6": {"__spz_name__": "2.560-3.620 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_hcr(6)", "dataset": "sta-sit-1d", "index1": "6", "is_public": "True", "name": "2.560-3.620 MeV", "parameter": "sta_sit_1d_hcr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_hcr(6)"}, "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_sit_1d_hcr"}, "sta_sit_1d_hfl": {"__spz_name__": "h flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_sit_1d_hfl", "dataset": "sta-sit-1d", "display_type": "timeseries", "is_public": "True", "name": "h flux", "size": "7", "sta_sit_1d_hfl0": {"__spz_name__": "0.320-0.452 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_hfl(0)", "dataset": "sta-sit-1d", "index1": "0", "is_public": "True", "name": "0.320-0.452 MeV", "parameter": "sta_sit_1d_hfl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_hfl(0)"}, "sta_sit_1d_hfl1": {"__spz_name__": "0.452-0.640 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_hfl(1)", "dataset": "sta-sit-1d", "index1": "1", "is_public": "True", "name": "0.452-0.640 MeV", "parameter": "sta_sit_1d_hfl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_hfl(1)"}, "sta_sit_1d_hfl2": {"__spz_name__": "0.640-0.905 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_hfl(2)", "dataset": "sta-sit-1d", "index1": "2", "is_public": "True", "name": "0.640-0.905 MeV", "parameter": "sta_sit_1d_hfl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_hfl(2)"}, "sta_sit_1d_hfl3": {"__spz_name__": "0.905-1.280 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_hfl(3)", "dataset": "sta-sit-1d", "index1": "3", "is_public": "True", "name": "0.905-1.280 MeV", "parameter": "sta_sit_1d_hfl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_hfl(3)"}, "sta_sit_1d_hfl4": {"__spz_name__": "1.280-1.810 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_hfl(4)", "dataset": "sta-sit-1d", "index1": "4", "is_public": "True", "name": "1.280-1.810 MeV", "parameter": "sta_sit_1d_hfl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_hfl(4)"}, "sta_sit_1d_hfl5": {"__spz_name__": "1.810-2.560 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_hfl(5)", "dataset": "sta-sit-1d", "index1": "5", "is_public": "True", "name": "1.810-2.560 MeV", "parameter": "sta_sit_1d_hfl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_hfl(5)"}, "sta_sit_1d_hfl6": {"__spz_name__": "2.560-3.620 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_hfl(6)", "dataset": "sta-sit-1d", "index1": "6", "is_public": "True", "name": "2.560-3.620 MeV", "parameter": "sta_sit_1d_hfl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_hfl(6)"}, "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_sit_1d_hfl"}, "sta_sit_1d_hsp": {"__spz_name__": "h flux spectro", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_sit_1d_hsp", "dataset": "sta-sit-1d", "display_type": "spectrogram", "is_public": "True", "name": "h flux spectro", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "units": "1/(cm2-sr-sec-MeV)", "xmlid": "sta_sit_1d_hsp"}, "sta_sit_1d_ocr": {"__spz_name__": "o count rate", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_sit_1d_ocr", "dataset": "sta-sit-1d", "display_type": "timeseries", "is_public": "True", "name": "o count rate", "size": "10", "sta_sit_1d_ocr0": {"__spz_name__": "0.113-0.160 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_ocr(0)", "dataset": "sta-sit-1d", "index1": "0", "is_public": "True", "name": "0.113-0.160 MeV", "parameter": "sta_sit_1d_ocr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_ocr(0)"}, "sta_sit_1d_ocr1": {"__spz_name__": "0.160-0.226 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_ocr(1)", "dataset": "sta-sit-1d", "index1": "1", "is_public": "True", "name": "0.160-0.226 MeV", "parameter": "sta_sit_1d_ocr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_ocr(1)"}, "sta_sit_1d_ocr2": {"__spz_name__": "0.226-0.320 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_ocr(2)", "dataset": "sta-sit-1d", "index1": "2", "is_public": "True", "name": "0.226-0.320 MeV", "parameter": "sta_sit_1d_ocr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_ocr(2)"}, "sta_sit_1d_ocr3": {"__spz_name__": "0.320-0.452 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_ocr(3)", "dataset": "sta-sit-1d", "index1": "3", "is_public": "True", "name": "0.320-0.452 MeV", "parameter": "sta_sit_1d_ocr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_ocr(3)"}, "sta_sit_1d_ocr4": {"__spz_name__": "0.452-0.640 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_ocr(4)", "dataset": "sta-sit-1d", "index1": "4", "is_public": "True", "name": "0.452-0.640 MeV", "parameter": "sta_sit_1d_ocr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_ocr(4)"}, "sta_sit_1d_ocr5": {"__spz_name__": "0.640-0.905 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_ocr(5)", "dataset": "sta-sit-1d", "index1": "5", "is_public": "True", "name": "0.640-0.905 MeV", "parameter": "sta_sit_1d_ocr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_ocr(5)"}, "sta_sit_1d_ocr6": {"__spz_name__": "0.905-1.280 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_ocr(6)", "dataset": "sta-sit-1d", "index1": "6", "is_public": "True", "name": "0.905-1.280 MeV", "parameter": "sta_sit_1d_ocr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_ocr(6)"}, "sta_sit_1d_ocr7": {"__spz_name__": "1.280-1.810 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_ocr(7)", "dataset": "sta-sit-1d", "index1": "7", "is_public": "True", "name": "1.280-1.810 MeV", "parameter": "sta_sit_1d_ocr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_ocr(7)"}, "sta_sit_1d_ocr8": {"__spz_name__": "1.810-2.560 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_ocr(8)", "dataset": "sta-sit-1d", "index1": "8", "is_public": "True", "name": "1.810-2.560 MeV", "parameter": "sta_sit_1d_ocr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_ocr(8)"}, "sta_sit_1d_ocr9": {"__spz_name__": "2.560-3.620 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_ocr(9)", "dataset": "sta-sit-1d", "index1": "9", "is_public": "True", "name": "2.560-3.620 MeV", "parameter": "sta_sit_1d_ocr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_ocr(9)"}, "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_sit_1d_ocr"}, "sta_sit_1d_ofl": {"__spz_name__": "o flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_sit_1d_ofl", "dataset": "sta-sit-1d", "display_type": "timeseries", "is_public": "True", "name": "o flux", "size": "10", "sta_sit_1d_ofl0": {"__spz_name__": "0.113-0.160 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_ofl(0)", "dataset": "sta-sit-1d", "index1": "0", "is_public": "True", "name": "0.113-0.160 MeV", "parameter": "sta_sit_1d_ofl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_ofl(0)"}, "sta_sit_1d_ofl1": {"__spz_name__": "0.160-0.226 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_ofl(1)", "dataset": "sta-sit-1d", "index1": "1", "is_public": "True", "name": "0.160-0.226 MeV", "parameter": "sta_sit_1d_ofl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_ofl(1)"}, "sta_sit_1d_ofl2": {"__spz_name__": "0.226-0.320 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_ofl(2)", "dataset": "sta-sit-1d", "index1": "2", "is_public": "True", "name": "0.226-0.320 MeV", "parameter": "sta_sit_1d_ofl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_ofl(2)"}, "sta_sit_1d_ofl3": {"__spz_name__": "0.320-0.452 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_ofl(3)", "dataset": "sta-sit-1d", "index1": "3", "is_public": "True", "name": "0.320-0.452 MeV", "parameter": "sta_sit_1d_ofl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_ofl(3)"}, "sta_sit_1d_ofl4": {"__spz_name__": "0.452-0.640 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_ofl(4)", "dataset": "sta-sit-1d", "index1": "4", "is_public": "True", "name": "0.452-0.640 MeV", "parameter": "sta_sit_1d_ofl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_ofl(4)"}, "sta_sit_1d_ofl5": {"__spz_name__": "0.640-0.905 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_ofl(5)", "dataset": "sta-sit-1d", "index1": "5", "is_public": "True", "name": "0.640-0.905 MeV", "parameter": "sta_sit_1d_ofl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_ofl(5)"}, "sta_sit_1d_ofl6": {"__spz_name__": "0.905-1.280 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_ofl(6)", "dataset": "sta-sit-1d", "index1": "6", "is_public": "True", "name": "0.905-1.280 MeV", "parameter": "sta_sit_1d_ofl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_ofl(6)"}, "sta_sit_1d_ofl7": {"__spz_name__": "1.280-1.810 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_ofl(7)", "dataset": "sta-sit-1d", "index1": "7", "is_public": "True", "name": "1.280-1.810 MeV", "parameter": "sta_sit_1d_ofl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_ofl(7)"}, "sta_sit_1d_ofl8": {"__spz_name__": "1.810-2.560 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_ofl(8)", "dataset": "sta-sit-1d", "index1": "8", "is_public": "True", "name": "1.810-2.560 MeV", "parameter": "sta_sit_1d_ofl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_ofl(8)"}, "sta_sit_1d_ofl9": {"__spz_name__": "2.560-3.620 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1d_ofl(9)", "dataset": "sta-sit-1d", "index1": "9", "is_public": "True", "name": "2.560-3.620 MeV", "parameter": "sta_sit_1d_ofl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "xmlid": "sta_sit_1d_ofl(9)"}, "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_sit_1d_ofl"}, "sta_sit_1d_osp": {"__spz_name__": "o flux spectro", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_sit_1d_osp", "dataset": "sta-sit-1d", "display_type": "spectrogram", "is_public": "True", "name": "o flux spectro", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "units": "1/(cm2-sr-sec-MeV)", "xmlid": "sta_sit_1d_osp"}, "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T00:00:07Z", "target": "Heliosphere.Remote1AU", "xmlid": "sta-sit-1d"}, "sta_sit_1h": {"__spz_name__": "1 hour", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "sta-sit-1h", "att": "auto/sta-sit-1h", "dataSource": "Caltech Space Radiation Lab", "desc": "Ion flux 1 hour rate
Sampling: 3600S
Provider: Caltech Space Radiation Lab", "is_public": "True", "lastModificationDate": "2024-10-06T22:14:28Z", "lastUpdate": "2024-10-06T22:14:28Z", "measurement_type": "EnergeticParticles", "name": "1 hour", "processing_level": "Calibrated", "sampling": "3600S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/STEREO-A/SIT/sta-sit-1h", "sta_sit_1h_4hecr": {"__spz_name__": "4he count rate", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_sit_1h_4hecr", "dataset": "sta-sit-1h", "display_type": "timeseries", "is_public": "True", "name": "4he count rate", "size": "10", "sta_sit_1h_4hecr0": {"__spz_name__": "0.113-0.160 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_4hecr(0)", "dataset": "sta-sit-1h", "index1": "0", "is_public": "True", "name": "0.113-0.160 MeV", "parameter": "sta_sit_1h_4hecr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_4hecr(0)"}, "sta_sit_1h_4hecr1": {"__spz_name__": "0.160-0.226 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_4hecr(1)", "dataset": "sta-sit-1h", "index1": "1", "is_public": "True", "name": "0.160-0.226 MeV", "parameter": "sta_sit_1h_4hecr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_4hecr(1)"}, "sta_sit_1h_4hecr2": {"__spz_name__": "0.226-0.320 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_4hecr(2)", "dataset": "sta-sit-1h", "index1": "2", "is_public": "True", "name": "0.226-0.320 MeV", "parameter": "sta_sit_1h_4hecr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_4hecr(2)"}, "sta_sit_1h_4hecr3": {"__spz_name__": "0.320-0.452 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_4hecr(3)", "dataset": "sta-sit-1h", "index1": "3", "is_public": "True", "name": "0.320-0.452 MeV", "parameter": "sta_sit_1h_4hecr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_4hecr(3)"}, "sta_sit_1h_4hecr4": {"__spz_name__": "0.452-0.640 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_4hecr(4)", "dataset": "sta-sit-1h", "index1": "4", "is_public": "True", "name": "0.452-0.640 MeV", "parameter": "sta_sit_1h_4hecr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_4hecr(4)"}, "sta_sit_1h_4hecr5": {"__spz_name__": "0.640-0.905 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_4hecr(5)", "dataset": "sta-sit-1h", "index1": "5", "is_public": "True", "name": "0.640-0.905 MeV", "parameter": "sta_sit_1h_4hecr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_4hecr(5)"}, "sta_sit_1h_4hecr6": {"__spz_name__": "0.905-1.280 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_4hecr(6)", "dataset": "sta-sit-1h", "index1": "6", "is_public": "True", "name": "0.905-1.280 MeV", "parameter": "sta_sit_1h_4hecr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_4hecr(6)"}, "sta_sit_1h_4hecr7": {"__spz_name__": "1.280-1.810 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_4hecr(7)", "dataset": "sta-sit-1h", "index1": "7", "is_public": "True", "name": "1.280-1.810 MeV", "parameter": "sta_sit_1h_4hecr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_4hecr(7)"}, "sta_sit_1h_4hecr8": {"__spz_name__": "1.810-2.560 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_4hecr(8)", "dataset": "sta-sit-1h", "index1": "8", "is_public": "True", "name": "1.810-2.560 MeV", "parameter": "sta_sit_1h_4hecr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_4hecr(8)"}, "sta_sit_1h_4hecr9": {"__spz_name__": "2.560-3.620 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_4hecr(9)", "dataset": "sta-sit-1h", "index1": "9", "is_public": "True", "name": "2.560-3.620 MeV", "parameter": "sta_sit_1h_4hecr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_4hecr(9)"}, "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_sit_1h_4hecr"}, "sta_sit_1h_4hefl": {"__spz_name__": "4he flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_sit_1h_4hefl", "dataset": "sta-sit-1h", "display_type": "timeseries", "is_public": "True", "name": "4he flux", "size": "10", "sta_sit_1h_4hefl0": {"__spz_name__": "0.113-0.160 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_4hefl(0)", "dataset": "sta-sit-1h", "index1": "0", "is_public": "True", "name": "0.113-0.160 MeV", "parameter": "sta_sit_1h_4hefl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_4hefl(0)"}, "sta_sit_1h_4hefl1": {"__spz_name__": "0.160-0.226 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_4hefl(1)", "dataset": "sta-sit-1h", "index1": "1", "is_public": "True", "name": "0.160-0.226 MeV", "parameter": "sta_sit_1h_4hefl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_4hefl(1)"}, "sta_sit_1h_4hefl2": {"__spz_name__": "0.226-0.320 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_4hefl(2)", "dataset": "sta-sit-1h", "index1": "2", "is_public": "True", "name": "0.226-0.320 MeV", "parameter": "sta_sit_1h_4hefl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_4hefl(2)"}, "sta_sit_1h_4hefl3": {"__spz_name__": "0.320-0.452 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_4hefl(3)", "dataset": "sta-sit-1h", "index1": "3", "is_public": "True", "name": "0.320-0.452 MeV", "parameter": "sta_sit_1h_4hefl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_4hefl(3)"}, "sta_sit_1h_4hefl4": {"__spz_name__": "0.452-0.640 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_4hefl(4)", "dataset": "sta-sit-1h", "index1": "4", "is_public": "True", "name": "0.452-0.640 MeV", "parameter": "sta_sit_1h_4hefl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_4hefl(4)"}, "sta_sit_1h_4hefl5": {"__spz_name__": "0.640-0.905 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_4hefl(5)", "dataset": "sta-sit-1h", "index1": "5", "is_public": "True", "name": "0.640-0.905 MeV", "parameter": "sta_sit_1h_4hefl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_4hefl(5)"}, "sta_sit_1h_4hefl6": {"__spz_name__": "0.905-1.280 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_4hefl(6)", "dataset": "sta-sit-1h", "index1": "6", "is_public": "True", "name": "0.905-1.280 MeV", "parameter": "sta_sit_1h_4hefl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_4hefl(6)"}, "sta_sit_1h_4hefl7": {"__spz_name__": "1.280-1.810 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_4hefl(7)", "dataset": "sta-sit-1h", "index1": "7", "is_public": "True", "name": "1.280-1.810 MeV", "parameter": "sta_sit_1h_4hefl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_4hefl(7)"}, "sta_sit_1h_4hefl8": {"__spz_name__": "1.810-2.560 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_4hefl(8)", "dataset": "sta-sit-1h", "index1": "8", "is_public": "True", "name": "1.810-2.560 MeV", "parameter": "sta_sit_1h_4hefl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_4hefl(8)"}, "sta_sit_1h_4hefl9": {"__spz_name__": "2.560-3.620 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_4hefl(9)", "dataset": "sta-sit-1h", "index1": "9", "is_public": "True", "name": "2.560-3.620 MeV", "parameter": "sta_sit_1h_4hefl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_4hefl(9)"}, "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_sit_1h_4hefl"}, "sta_sit_1h_4hesp": {"__spz_name__": "4he flux spectro", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_sit_1h_4hesp", "dataset": "sta-sit-1h", "display_type": "spectrogram", "is_public": "True", "name": "4he flux spectro", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "units": "1/(cm2-sr-sec-MeV)", "xmlid": "sta_sit_1h_4hesp"}, "sta_sit_1h_fecr": {"__spz_name__": "fe count rate", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_sit_1h_fecr", "dataset": "sta-sit-1h", "display_type": "timeseries", "is_public": "True", "name": "fe count rate", "size": "11", "sta_sit_1h_fecr0": {"__spz_name__": "0.080-0.113 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_fecr(0)", "dataset": "sta-sit-1h", "index1": "0", "is_public": "True", "name": "0.080-0.113 MeV", "parameter": "sta_sit_1h_fecr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_fecr(0)"}, "sta_sit_1h_fecr1": {"__spz_name__": "0.113-0.160 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_fecr(1)", "dataset": "sta-sit-1h", "index1": "1", "is_public": "True", "name": "0.113-0.160 MeV", "parameter": "sta_sit_1h_fecr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_fecr(1)"}, "sta_sit_1h_fecr10": {"__spz_name__": "2.560-3.620 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_fecr(10)", "dataset": "sta-sit-1h", "index1": "10", "is_public": "True", "name": "2.560-3.620 MeV", "parameter": "sta_sit_1h_fecr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_fecr(10)"}, "sta_sit_1h_fecr2": {"__spz_name__": "0.160-0.226 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_fecr(2)", "dataset": "sta-sit-1h", "index1": "2", "is_public": "True", "name": "0.160-0.226 MeV", "parameter": "sta_sit_1h_fecr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_fecr(2)"}, "sta_sit_1h_fecr3": {"__spz_name__": "0.226-0.320 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_fecr(3)", "dataset": "sta-sit-1h", "index1": "3", "is_public": "True", "name": "0.226-0.320 MeV", "parameter": "sta_sit_1h_fecr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_fecr(3)"}, "sta_sit_1h_fecr4": {"__spz_name__": "0.320-0.452 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_fecr(4)", "dataset": "sta-sit-1h", "index1": "4", "is_public": "True", "name": "0.320-0.452 MeV", "parameter": "sta_sit_1h_fecr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_fecr(4)"}, "sta_sit_1h_fecr5": {"__spz_name__": "0.452-0.640 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_fecr(5)", "dataset": "sta-sit-1h", "index1": "5", "is_public": "True", "name": "0.452-0.640 MeV", "parameter": "sta_sit_1h_fecr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_fecr(5)"}, "sta_sit_1h_fecr6": {"__spz_name__": "0.640-0.905 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_fecr(6)", "dataset": "sta-sit-1h", "index1": "6", "is_public": "True", "name": "0.640-0.905 MeV", "parameter": "sta_sit_1h_fecr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_fecr(6)"}, "sta_sit_1h_fecr7": {"__spz_name__": "0.905-1.280 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_fecr(7)", "dataset": "sta-sit-1h", "index1": "7", "is_public": "True", "name": "0.905-1.280 MeV", "parameter": "sta_sit_1h_fecr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_fecr(7)"}, "sta_sit_1h_fecr8": {"__spz_name__": "1.280-1.810 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_fecr(8)", "dataset": "sta-sit-1h", "index1": "8", "is_public": "True", "name": "1.280-1.810 MeV", "parameter": "sta_sit_1h_fecr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_fecr(8)"}, "sta_sit_1h_fecr9": {"__spz_name__": "1.810-2.560 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_fecr(9)", "dataset": "sta-sit-1h", "index1": "9", "is_public": "True", "name": "1.810-2.560 MeV", "parameter": "sta_sit_1h_fecr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_fecr(9)"}, "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_sit_1h_fecr"}, "sta_sit_1h_fefl": {"__spz_name__": "fe flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_sit_1h_fefl", "dataset": "sta-sit-1h", "display_type": "timeseries", "is_public": "True", "name": "fe flux", "size": "11", "sta_sit_1h_fefl0": {"__spz_name__": "0.080-0.113 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_fefl(0)", "dataset": "sta-sit-1h", "index1": "0", "is_public": "True", "name": "0.080-0.113 MeV", "parameter": "sta_sit_1h_fefl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_fefl(0)"}, "sta_sit_1h_fefl1": {"__spz_name__": "0.113-0.160 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_fefl(1)", "dataset": "sta-sit-1h", "index1": "1", "is_public": "True", "name": "0.113-0.160 MeV", "parameter": "sta_sit_1h_fefl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_fefl(1)"}, "sta_sit_1h_fefl10": {"__spz_name__": "2.560-3.620 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_fefl(10)", "dataset": "sta-sit-1h", "index1": "10", "is_public": "True", "name": "2.560-3.620 MeV", "parameter": "sta_sit_1h_fefl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_fefl(10)"}, "sta_sit_1h_fefl2": {"__spz_name__": "0.160-0.226 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_fefl(2)", "dataset": "sta-sit-1h", "index1": "2", "is_public": "True", "name": "0.160-0.226 MeV", "parameter": "sta_sit_1h_fefl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_fefl(2)"}, "sta_sit_1h_fefl3": {"__spz_name__": "0.226-0.320 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_fefl(3)", "dataset": "sta-sit-1h", "index1": "3", "is_public": "True", "name": "0.226-0.320 MeV", "parameter": "sta_sit_1h_fefl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_fefl(3)"}, "sta_sit_1h_fefl4": {"__spz_name__": "0.320-0.452 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_fefl(4)", "dataset": "sta-sit-1h", "index1": "4", "is_public": "True", "name": "0.320-0.452 MeV", "parameter": "sta_sit_1h_fefl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_fefl(4)"}, "sta_sit_1h_fefl5": {"__spz_name__": "0.452-0.640 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_fefl(5)", "dataset": "sta-sit-1h", "index1": "5", "is_public": "True", "name": "0.452-0.640 MeV", "parameter": "sta_sit_1h_fefl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_fefl(5)"}, "sta_sit_1h_fefl6": {"__spz_name__": "0.640-0.905 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_fefl(6)", "dataset": "sta-sit-1h", "index1": "6", "is_public": "True", "name": "0.640-0.905 MeV", "parameter": "sta_sit_1h_fefl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_fefl(6)"}, "sta_sit_1h_fefl7": {"__spz_name__": "0.905-1.280 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_fefl(7)", "dataset": "sta-sit-1h", "index1": "7", "is_public": "True", "name": "0.905-1.280 MeV", "parameter": "sta_sit_1h_fefl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_fefl(7)"}, "sta_sit_1h_fefl8": {"__spz_name__": "1.280-1.810 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_fefl(8)", "dataset": "sta-sit-1h", "index1": "8", "is_public": "True", "name": "1.280-1.810 MeV", "parameter": "sta_sit_1h_fefl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_fefl(8)"}, "sta_sit_1h_fefl9": {"__spz_name__": "1.810-2.560 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_fefl(9)", "dataset": "sta-sit-1h", "index1": "9", "is_public": "True", "name": "1.810-2.560 MeV", "parameter": "sta_sit_1h_fefl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_fefl(9)"}, "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_sit_1h_fefl"}, "sta_sit_1h_fesp": {"__spz_name__": "fe flux spectro", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_sit_1h_fesp", "dataset": "sta-sit-1h", "display_type": "spectrogram", "is_public": "True", "name": "fe flux spectro", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "units": "1/(cm2-sr-sec-MeV)", "xmlid": "sta_sit_1h_fesp"}, "sta_sit_1h_hcr": {"__spz_name__": "h count rate", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_sit_1h_hcr", "dataset": "sta-sit-1h", "display_type": "timeseries", "is_public": "True", "name": "h count rate", "size": "7", "sta_sit_1h_hcr0": {"__spz_name__": "0.320-0.452 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_hcr(0)", "dataset": "sta-sit-1h", "index1": "0", "is_public": "True", "name": "0.320-0.452 MeV", "parameter": "sta_sit_1h_hcr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_hcr(0)"}, "sta_sit_1h_hcr1": {"__spz_name__": "0.452-0.640 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_hcr(1)", "dataset": "sta-sit-1h", "index1": "1", "is_public": "True", "name": "0.452-0.640 MeV", "parameter": "sta_sit_1h_hcr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_hcr(1)"}, "sta_sit_1h_hcr2": {"__spz_name__": "0.640-0.905 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_hcr(2)", "dataset": "sta-sit-1h", "index1": "2", "is_public": "True", "name": "0.640-0.905 MeV", "parameter": "sta_sit_1h_hcr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_hcr(2)"}, "sta_sit_1h_hcr3": {"__spz_name__": "0.905-1.280 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_hcr(3)", "dataset": "sta-sit-1h", "index1": "3", "is_public": "True", "name": "0.905-1.280 MeV", "parameter": "sta_sit_1h_hcr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_hcr(3)"}, "sta_sit_1h_hcr4": {"__spz_name__": "1.280-1.810 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_hcr(4)", "dataset": "sta-sit-1h", "index1": "4", "is_public": "True", "name": "1.280-1.810 MeV", "parameter": "sta_sit_1h_hcr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_hcr(4)"}, "sta_sit_1h_hcr5": {"__spz_name__": "1.810-2.560 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_hcr(5)", "dataset": "sta-sit-1h", "index1": "5", "is_public": "True", "name": "1.810-2.560 MeV", "parameter": "sta_sit_1h_hcr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_hcr(5)"}, "sta_sit_1h_hcr6": {"__spz_name__": "2.560-3.620 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_hcr(6)", "dataset": "sta-sit-1h", "index1": "6", "is_public": "True", "name": "2.560-3.620 MeV", "parameter": "sta_sit_1h_hcr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_hcr(6)"}, "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_sit_1h_hcr"}, "sta_sit_1h_hfl": {"__spz_name__": "h flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_sit_1h_hfl", "dataset": "sta-sit-1h", "display_type": "timeseries", "is_public": "True", "name": "h flux", "size": "7", "sta_sit_1h_hfl0": {"__spz_name__": "0.320-0.452 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_hfl(0)", "dataset": "sta-sit-1h", "index1": "0", "is_public": "True", "name": "0.320-0.452 MeV", "parameter": "sta_sit_1h_hfl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_hfl(0)"}, "sta_sit_1h_hfl1": {"__spz_name__": "0.452-0.640 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_hfl(1)", "dataset": "sta-sit-1h", "index1": "1", "is_public": "True", "name": "0.452-0.640 MeV", "parameter": "sta_sit_1h_hfl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_hfl(1)"}, "sta_sit_1h_hfl2": {"__spz_name__": "0.640-0.905 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_hfl(2)", "dataset": "sta-sit-1h", "index1": "2", "is_public": "True", "name": "0.640-0.905 MeV", "parameter": "sta_sit_1h_hfl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_hfl(2)"}, "sta_sit_1h_hfl3": {"__spz_name__": "0.905-1.280 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_hfl(3)", "dataset": "sta-sit-1h", "index1": "3", "is_public": "True", "name": "0.905-1.280 MeV", "parameter": "sta_sit_1h_hfl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_hfl(3)"}, "sta_sit_1h_hfl4": {"__spz_name__": "1.280-1.810 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_hfl(4)", "dataset": "sta-sit-1h", "index1": "4", "is_public": "True", "name": "1.280-1.810 MeV", "parameter": "sta_sit_1h_hfl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_hfl(4)"}, "sta_sit_1h_hfl5": {"__spz_name__": "1.810-2.560 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_hfl(5)", "dataset": "sta-sit-1h", "index1": "5", "is_public": "True", "name": "1.810-2.560 MeV", "parameter": "sta_sit_1h_hfl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_hfl(5)"}, "sta_sit_1h_hfl6": {"__spz_name__": "2.560-3.620 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_hfl(6)", "dataset": "sta-sit-1h", "index1": "6", "is_public": "True", "name": "2.560-3.620 MeV", "parameter": "sta_sit_1h_hfl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_hfl(6)"}, "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_sit_1h_hfl"}, "sta_sit_1h_hsp": {"__spz_name__": "h flux spectro", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_sit_1h_hsp", "dataset": "sta-sit-1h", "display_type": "spectrogram", "is_public": "True", "name": "h flux spectro", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "units": "1/(cm2-sr-sec-MeV)", "xmlid": "sta_sit_1h_hsp"}, "sta_sit_1h_ocr": {"__spz_name__": "o count rate", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_sit_1h_ocr", "dataset": "sta-sit-1h", "display_type": "timeseries", "is_public": "True", "name": "o count rate", "size": "10", "sta_sit_1h_ocr0": {"__spz_name__": "0.113-0.160 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_ocr(0)", "dataset": "sta-sit-1h", "index1": "0", "is_public": "True", "name": "0.113-0.160 MeV", "parameter": "sta_sit_1h_ocr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_ocr(0)"}, "sta_sit_1h_ocr1": {"__spz_name__": "0.160-0.226 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_ocr(1)", "dataset": "sta-sit-1h", "index1": "1", "is_public": "True", "name": "0.160-0.226 MeV", "parameter": "sta_sit_1h_ocr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_ocr(1)"}, "sta_sit_1h_ocr2": {"__spz_name__": "0.226-0.320 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_ocr(2)", "dataset": "sta-sit-1h", "index1": "2", "is_public": "True", "name": "0.226-0.320 MeV", "parameter": "sta_sit_1h_ocr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_ocr(2)"}, "sta_sit_1h_ocr3": {"__spz_name__": "0.320-0.452 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_ocr(3)", "dataset": "sta-sit-1h", "index1": "3", "is_public": "True", "name": "0.320-0.452 MeV", "parameter": "sta_sit_1h_ocr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_ocr(3)"}, "sta_sit_1h_ocr4": {"__spz_name__": "0.452-0.640 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_ocr(4)", "dataset": "sta-sit-1h", "index1": "4", "is_public": "True", "name": "0.452-0.640 MeV", "parameter": "sta_sit_1h_ocr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_ocr(4)"}, "sta_sit_1h_ocr5": {"__spz_name__": "0.640-0.905 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_ocr(5)", "dataset": "sta-sit-1h", "index1": "5", "is_public": "True", "name": "0.640-0.905 MeV", "parameter": "sta_sit_1h_ocr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_ocr(5)"}, "sta_sit_1h_ocr6": {"__spz_name__": "0.905-1.280 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_ocr(6)", "dataset": "sta-sit-1h", "index1": "6", "is_public": "True", "name": "0.905-1.280 MeV", "parameter": "sta_sit_1h_ocr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_ocr(6)"}, "sta_sit_1h_ocr7": {"__spz_name__": "1.280-1.810 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_ocr(7)", "dataset": "sta-sit-1h", "index1": "7", "is_public": "True", "name": "1.280-1.810 MeV", "parameter": "sta_sit_1h_ocr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_ocr(7)"}, "sta_sit_1h_ocr8": {"__spz_name__": "1.810-2.560 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_ocr(8)", "dataset": "sta-sit-1h", "index1": "8", "is_public": "True", "name": "1.810-2.560 MeV", "parameter": "sta_sit_1h_ocr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_ocr(8)"}, "sta_sit_1h_ocr9": {"__spz_name__": "2.560-3.620 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_ocr(9)", "dataset": "sta-sit-1h", "index1": "9", "is_public": "True", "name": "2.560-3.620 MeV", "parameter": "sta_sit_1h_ocr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_ocr(9)"}, "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_sit_1h_ocr"}, "sta_sit_1h_ofl": {"__spz_name__": "o flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_sit_1h_ofl", "dataset": "sta-sit-1h", "display_type": "timeseries", "is_public": "True", "name": "o flux", "size": "10", "sta_sit_1h_ofl0": {"__spz_name__": "0.113-0.160 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_ofl(0)", "dataset": "sta-sit-1h", "index1": "0", "is_public": "True", "name": "0.113-0.160 MeV", "parameter": "sta_sit_1h_ofl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_ofl(0)"}, "sta_sit_1h_ofl1": {"__spz_name__": "0.160-0.226 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_ofl(1)", "dataset": "sta-sit-1h", "index1": "1", "is_public": "True", "name": "0.160-0.226 MeV", "parameter": "sta_sit_1h_ofl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_ofl(1)"}, "sta_sit_1h_ofl2": {"__spz_name__": "0.226-0.320 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_ofl(2)", "dataset": "sta-sit-1h", "index1": "2", "is_public": "True", "name": "0.226-0.320 MeV", "parameter": "sta_sit_1h_ofl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_ofl(2)"}, "sta_sit_1h_ofl3": {"__spz_name__": "0.320-0.452 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_ofl(3)", "dataset": "sta-sit-1h", "index1": "3", "is_public": "True", "name": "0.320-0.452 MeV", "parameter": "sta_sit_1h_ofl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_ofl(3)"}, "sta_sit_1h_ofl4": {"__spz_name__": "0.452-0.640 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_ofl(4)", "dataset": "sta-sit-1h", "index1": "4", "is_public": "True", "name": "0.452-0.640 MeV", "parameter": "sta_sit_1h_ofl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_ofl(4)"}, "sta_sit_1h_ofl5": {"__spz_name__": "0.640-0.905 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_ofl(5)", "dataset": "sta-sit-1h", "index1": "5", "is_public": "True", "name": "0.640-0.905 MeV", "parameter": "sta_sit_1h_ofl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_ofl(5)"}, "sta_sit_1h_ofl6": {"__spz_name__": "0.905-1.280 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_ofl(6)", "dataset": "sta-sit-1h", "index1": "6", "is_public": "True", "name": "0.905-1.280 MeV", "parameter": "sta_sit_1h_ofl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_ofl(6)"}, "sta_sit_1h_ofl7": {"__spz_name__": "1.280-1.810 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_ofl(7)", "dataset": "sta-sit-1h", "index1": "7", "is_public": "True", "name": "1.280-1.810 MeV", "parameter": "sta_sit_1h_ofl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_ofl(7)"}, "sta_sit_1h_ofl8": {"__spz_name__": "1.810-2.560 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_ofl(8)", "dataset": "sta-sit-1h", "index1": "8", "is_public": "True", "name": "1.810-2.560 MeV", "parameter": "sta_sit_1h_ofl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_ofl(8)"}, "sta_sit_1h_ofl9": {"__spz_name__": "2.560-3.620 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1h_ofl(9)", "dataset": "sta-sit-1h", "index1": "9", "is_public": "True", "name": "2.560-3.620 MeV", "parameter": "sta_sit_1h_ofl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "xmlid": "sta_sit_1h_ofl(9)"}, "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_sit_1h_ofl"}, "sta_sit_1h_osp": {"__spz_name__": "o flux spectro", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_sit_1h_osp", "dataset": "sta-sit-1h", "display_type": "spectrogram", "is_public": "True", "name": "o flux spectro", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "units": "1/(cm2-sr-sec-MeV)", "xmlid": "sta_sit_1h_osp"}, "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-09-05T23:00:07Z", "target": "Heliosphere.Remote1AU", "xmlid": "sta-sit-1h"}, "sta_sit_1min": {"__spz_name__": "1 minute", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "sta-sit-1min", "att": "auto/sta-sit-1min", "dataSource": "Caltech Space Radiation Lab", "desc": "Ion flux 1 minute rate
Sampling: 60S
Provider: Caltech Space Radiation Lab", "is_public": "True", "lastModificationDate": "2024-10-06T22:13:48Z", "lastUpdate": "2024-10-06T22:14:17Z", "measurement_type": "EnergeticParticles", "name": "1 minute", "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/STEREO-A/SIT/sta-sit-1min", "sta_sit_1min_4hecr": {"__spz_name__": "4he count rate", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_sit_1min_4hecr", "dataset": "sta-sit-1min", "display_type": "timeseries", "is_public": "True", "name": "4he count rate", "size": "10", "sta_sit_1min_4hecr0": {"__spz_name__": "0.113-0.160 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_4hecr(0)", "dataset": "sta-sit-1min", "index1": "0", "is_public": "True", "name": "0.113-0.160 MeV", "parameter": "sta_sit_1min_4hecr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_4hecr(0)"}, "sta_sit_1min_4hecr1": {"__spz_name__": "0.160-0.226 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_4hecr(1)", "dataset": "sta-sit-1min", "index1": "1", "is_public": "True", "name": "0.160-0.226 MeV", "parameter": "sta_sit_1min_4hecr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_4hecr(1)"}, "sta_sit_1min_4hecr2": {"__spz_name__": "0.226-0.320 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_4hecr(2)", "dataset": "sta-sit-1min", "index1": "2", "is_public": "True", "name": "0.226-0.320 MeV", "parameter": "sta_sit_1min_4hecr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_4hecr(2)"}, "sta_sit_1min_4hecr3": {"__spz_name__": "0.320-0.452 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_4hecr(3)", "dataset": "sta-sit-1min", "index1": "3", "is_public": "True", "name": "0.320-0.452 MeV", "parameter": "sta_sit_1min_4hecr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_4hecr(3)"}, "sta_sit_1min_4hecr4": {"__spz_name__": "0.452-0.640 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_4hecr(4)", "dataset": "sta-sit-1min", "index1": "4", "is_public": "True", "name": "0.452-0.640 MeV", "parameter": "sta_sit_1min_4hecr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_4hecr(4)"}, "sta_sit_1min_4hecr5": {"__spz_name__": "0.640-0.905 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_4hecr(5)", "dataset": "sta-sit-1min", "index1": "5", "is_public": "True", "name": "0.640-0.905 MeV", "parameter": "sta_sit_1min_4hecr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_4hecr(5)"}, "sta_sit_1min_4hecr6": {"__spz_name__": "0.905-1.280 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_4hecr(6)", "dataset": "sta-sit-1min", "index1": "6", "is_public": "True", "name": "0.905-1.280 MeV", "parameter": "sta_sit_1min_4hecr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_4hecr(6)"}, "sta_sit_1min_4hecr7": {"__spz_name__": "1.280-1.810 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_4hecr(7)", "dataset": "sta-sit-1min", "index1": "7", "is_public": "True", "name": "1.280-1.810 MeV", "parameter": "sta_sit_1min_4hecr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_4hecr(7)"}, "sta_sit_1min_4hecr8": {"__spz_name__": "1.810-2.560 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_4hecr(8)", "dataset": "sta-sit-1min", "index1": "8", "is_public": "True", "name": "1.810-2.560 MeV", "parameter": "sta_sit_1min_4hecr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_4hecr(8)"}, "sta_sit_1min_4hecr9": {"__spz_name__": "2.560-3.620 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_4hecr(9)", "dataset": "sta-sit-1min", "index1": "9", "is_public": "True", "name": "2.560-3.620 MeV", "parameter": "sta_sit_1min_4hecr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_4hecr(9)"}, "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_sit_1min_4hecr"}, "sta_sit_1min_4hefl": {"__spz_name__": "4he flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_sit_1min_4hefl", "dataset": "sta-sit-1min", "display_type": "timeseries", "is_public": "True", "name": "4he flux", "size": "10", "sta_sit_1min_4hefl0": {"__spz_name__": "0.113-0.160 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_4hefl(0)", "dataset": "sta-sit-1min", "index1": "0", "is_public": "True", "name": "0.113-0.160 MeV", "parameter": "sta_sit_1min_4hefl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_4hefl(0)"}, "sta_sit_1min_4hefl1": {"__spz_name__": "0.160-0.226 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_4hefl(1)", "dataset": "sta-sit-1min", "index1": "1", "is_public": "True", "name": "0.160-0.226 MeV", "parameter": "sta_sit_1min_4hefl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_4hefl(1)"}, "sta_sit_1min_4hefl2": {"__spz_name__": "0.226-0.320 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_4hefl(2)", "dataset": "sta-sit-1min", "index1": "2", "is_public": "True", "name": "0.226-0.320 MeV", "parameter": "sta_sit_1min_4hefl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_4hefl(2)"}, "sta_sit_1min_4hefl3": {"__spz_name__": "0.320-0.452 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_4hefl(3)", "dataset": "sta-sit-1min", "index1": "3", "is_public": "True", "name": "0.320-0.452 MeV", "parameter": "sta_sit_1min_4hefl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_4hefl(3)"}, "sta_sit_1min_4hefl4": {"__spz_name__": "0.452-0.640 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_4hefl(4)", "dataset": "sta-sit-1min", "index1": "4", "is_public": "True", "name": "0.452-0.640 MeV", "parameter": "sta_sit_1min_4hefl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_4hefl(4)"}, "sta_sit_1min_4hefl5": {"__spz_name__": "0.640-0.905 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_4hefl(5)", "dataset": "sta-sit-1min", "index1": "5", "is_public": "True", "name": "0.640-0.905 MeV", "parameter": "sta_sit_1min_4hefl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_4hefl(5)"}, "sta_sit_1min_4hefl6": {"__spz_name__": "0.905-1.280 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_4hefl(6)", "dataset": "sta-sit-1min", "index1": "6", "is_public": "True", "name": "0.905-1.280 MeV", "parameter": "sta_sit_1min_4hefl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_4hefl(6)"}, "sta_sit_1min_4hefl7": {"__spz_name__": "1.280-1.810 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_4hefl(7)", "dataset": "sta-sit-1min", "index1": "7", "is_public": "True", "name": "1.280-1.810 MeV", "parameter": "sta_sit_1min_4hefl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_4hefl(7)"}, "sta_sit_1min_4hefl8": {"__spz_name__": "1.810-2.560 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_4hefl(8)", "dataset": "sta-sit-1min", "index1": "8", "is_public": "True", "name": "1.810-2.560 MeV", "parameter": "sta_sit_1min_4hefl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_4hefl(8)"}, "sta_sit_1min_4hefl9": {"__spz_name__": "2.560-3.620 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_4hefl(9)", "dataset": "sta-sit-1min", "index1": "9", "is_public": "True", "name": "2.560-3.620 MeV", "parameter": "sta_sit_1min_4hefl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_4hefl(9)"}, "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_sit_1min_4hefl"}, "sta_sit_1min_4hesp": {"__spz_name__": "4he flux spectro", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_sit_1min_4hesp", "dataset": "sta-sit-1min", "display_type": "spectrogram", "is_public": "True", "name": "4he flux spectro", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "units": "1/(cm2-sr-sec-MeV)", "xmlid": "sta_sit_1min_4hesp"}, "sta_sit_1min_fecr": {"__spz_name__": "fe count rate", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_sit_1min_fecr", "dataset": "sta-sit-1min", "display_type": "timeseries", "is_public": "True", "name": "fe count rate", "size": "11", "sta_sit_1min_fecr0": {"__spz_name__": "0.080-0.113 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_fecr(0)", "dataset": "sta-sit-1min", "index1": "0", "is_public": "True", "name": "0.080-0.113 MeV", "parameter": "sta_sit_1min_fecr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_fecr(0)"}, "sta_sit_1min_fecr1": {"__spz_name__": "0.113-0.160 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_fecr(1)", "dataset": "sta-sit-1min", "index1": "1", "is_public": "True", "name": "0.113-0.160 MeV", "parameter": "sta_sit_1min_fecr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_fecr(1)"}, "sta_sit_1min_fecr10": {"__spz_name__": "2.560-3.620 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_fecr(10)", "dataset": "sta-sit-1min", "index1": "10", "is_public": "True", "name": "2.560-3.620 MeV", "parameter": "sta_sit_1min_fecr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_fecr(10)"}, "sta_sit_1min_fecr2": {"__spz_name__": "0.160-0.226 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_fecr(2)", "dataset": "sta-sit-1min", "index1": "2", "is_public": "True", "name": "0.160-0.226 MeV", "parameter": "sta_sit_1min_fecr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_fecr(2)"}, "sta_sit_1min_fecr3": {"__spz_name__": "0.226-0.320 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_fecr(3)", "dataset": "sta-sit-1min", "index1": "3", "is_public": "True", "name": "0.226-0.320 MeV", "parameter": "sta_sit_1min_fecr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_fecr(3)"}, "sta_sit_1min_fecr4": {"__spz_name__": "0.320-0.452 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_fecr(4)", "dataset": "sta-sit-1min", "index1": "4", "is_public": "True", "name": "0.320-0.452 MeV", "parameter": "sta_sit_1min_fecr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_fecr(4)"}, "sta_sit_1min_fecr5": {"__spz_name__": "0.452-0.640 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_fecr(5)", "dataset": "sta-sit-1min", "index1": "5", "is_public": "True", "name": "0.452-0.640 MeV", "parameter": "sta_sit_1min_fecr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_fecr(5)"}, "sta_sit_1min_fecr6": {"__spz_name__": "0.640-0.905 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_fecr(6)", "dataset": "sta-sit-1min", "index1": "6", "is_public": "True", "name": "0.640-0.905 MeV", "parameter": "sta_sit_1min_fecr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_fecr(6)"}, "sta_sit_1min_fecr7": {"__spz_name__": "0.905-1.280 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_fecr(7)", "dataset": "sta-sit-1min", "index1": "7", "is_public": "True", "name": "0.905-1.280 MeV", "parameter": "sta_sit_1min_fecr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_fecr(7)"}, "sta_sit_1min_fecr8": {"__spz_name__": "1.280-1.810 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_fecr(8)", "dataset": "sta-sit-1min", "index1": "8", "is_public": "True", "name": "1.280-1.810 MeV", "parameter": "sta_sit_1min_fecr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_fecr(8)"}, "sta_sit_1min_fecr9": {"__spz_name__": "1.810-2.560 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_fecr(9)", "dataset": "sta-sit-1min", "index1": "9", "is_public": "True", "name": "1.810-2.560 MeV", "parameter": "sta_sit_1min_fecr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_fecr(9)"}, "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_sit_1min_fecr"}, "sta_sit_1min_fefl": {"__spz_name__": "fe flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_sit_1min_fefl", "dataset": "sta-sit-1min", "display_type": "timeseries", "is_public": "True", "name": "fe flux", "size": "11", "sta_sit_1min_fefl0": {"__spz_name__": "0.080-0.113 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_fefl(0)", "dataset": "sta-sit-1min", "index1": "0", "is_public": "True", "name": "0.080-0.113 MeV", "parameter": "sta_sit_1min_fefl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_fefl(0)"}, "sta_sit_1min_fefl1": {"__spz_name__": "0.113-0.160 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_fefl(1)", "dataset": "sta-sit-1min", "index1": "1", "is_public": "True", "name": "0.113-0.160 MeV", "parameter": "sta_sit_1min_fefl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_fefl(1)"}, "sta_sit_1min_fefl10": {"__spz_name__": "2.560-3.620 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_fefl(10)", "dataset": "sta-sit-1min", "index1": "10", "is_public": "True", "name": "2.560-3.620 MeV", "parameter": "sta_sit_1min_fefl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_fefl(10)"}, "sta_sit_1min_fefl2": {"__spz_name__": "0.160-0.226 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_fefl(2)", "dataset": "sta-sit-1min", "index1": "2", "is_public": "True", "name": "0.160-0.226 MeV", "parameter": "sta_sit_1min_fefl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_fefl(2)"}, "sta_sit_1min_fefl3": {"__spz_name__": "0.226-0.320 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_fefl(3)", "dataset": "sta-sit-1min", "index1": "3", "is_public": "True", "name": "0.226-0.320 MeV", "parameter": "sta_sit_1min_fefl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_fefl(3)"}, "sta_sit_1min_fefl4": {"__spz_name__": "0.320-0.452 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_fefl(4)", "dataset": "sta-sit-1min", "index1": "4", "is_public": "True", "name": "0.320-0.452 MeV", "parameter": "sta_sit_1min_fefl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_fefl(4)"}, "sta_sit_1min_fefl5": {"__spz_name__": "0.452-0.640 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_fefl(5)", "dataset": "sta-sit-1min", "index1": "5", "is_public": "True", "name": "0.452-0.640 MeV", "parameter": "sta_sit_1min_fefl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_fefl(5)"}, "sta_sit_1min_fefl6": {"__spz_name__": "0.640-0.905 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_fefl(6)", "dataset": "sta-sit-1min", "index1": "6", "is_public": "True", "name": "0.640-0.905 MeV", "parameter": "sta_sit_1min_fefl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_fefl(6)"}, "sta_sit_1min_fefl7": {"__spz_name__": "0.905-1.280 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_fefl(7)", "dataset": "sta-sit-1min", "index1": "7", "is_public": "True", "name": "0.905-1.280 MeV", "parameter": "sta_sit_1min_fefl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_fefl(7)"}, "sta_sit_1min_fefl8": {"__spz_name__": "1.280-1.810 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_fefl(8)", "dataset": "sta-sit-1min", "index1": "8", "is_public": "True", "name": "1.280-1.810 MeV", "parameter": "sta_sit_1min_fefl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_fefl(8)"}, "sta_sit_1min_fefl9": {"__spz_name__": "1.810-2.560 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_fefl(9)", "dataset": "sta-sit-1min", "index1": "9", "is_public": "True", "name": "1.810-2.560 MeV", "parameter": "sta_sit_1min_fefl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_fefl(9)"}, "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_sit_1min_fefl"}, "sta_sit_1min_fesp": {"__spz_name__": "fe flux spectro", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_sit_1min_fesp", "dataset": "sta-sit-1min", "display_type": "spectrogram", "is_public": "True", "name": "fe flux spectro", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "units": "1/(cm2-sr-sec-MeV)", "xmlid": "sta_sit_1min_fesp"}, "sta_sit_1min_hcr": {"__spz_name__": "h count rate", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_sit_1min_hcr", "dataset": "sta-sit-1min", "display_type": "timeseries", "is_public": "True", "name": "h count rate", "size": "7", "sta_sit_1min_hcr0": {"__spz_name__": "0.320-0.452 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_hcr(0)", "dataset": "sta-sit-1min", "index1": "0", "is_public": "True", "name": "0.320-0.452 MeV", "parameter": "sta_sit_1min_hcr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_hcr(0)"}, "sta_sit_1min_hcr1": {"__spz_name__": "0.452-0.640 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_hcr(1)", "dataset": "sta-sit-1min", "index1": "1", "is_public": "True", "name": "0.452-0.640 MeV", "parameter": "sta_sit_1min_hcr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_hcr(1)"}, "sta_sit_1min_hcr2": {"__spz_name__": "0.640-0.905 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_hcr(2)", "dataset": "sta-sit-1min", "index1": "2", "is_public": "True", "name": "0.640-0.905 MeV", "parameter": "sta_sit_1min_hcr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_hcr(2)"}, "sta_sit_1min_hcr3": {"__spz_name__": "0.905-1.280 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_hcr(3)", "dataset": "sta-sit-1min", "index1": "3", "is_public": "True", "name": "0.905-1.280 MeV", "parameter": "sta_sit_1min_hcr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_hcr(3)"}, "sta_sit_1min_hcr4": {"__spz_name__": "1.280-1.810 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_hcr(4)", "dataset": "sta-sit-1min", "index1": "4", "is_public": "True", "name": "1.280-1.810 MeV", "parameter": "sta_sit_1min_hcr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_hcr(4)"}, "sta_sit_1min_hcr5": {"__spz_name__": "1.810-2.560 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_hcr(5)", "dataset": "sta-sit-1min", "index1": "5", "is_public": "True", "name": "1.810-2.560 MeV", "parameter": "sta_sit_1min_hcr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_hcr(5)"}, "sta_sit_1min_hcr6": {"__spz_name__": "2.560-3.620 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_hcr(6)", "dataset": "sta-sit-1min", "index1": "6", "is_public": "True", "name": "2.560-3.620 MeV", "parameter": "sta_sit_1min_hcr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_hcr(6)"}, "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_sit_1min_hcr"}, "sta_sit_1min_hfl": {"__spz_name__": "h flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_sit_1min_hfl", "dataset": "sta-sit-1min", "display_type": "timeseries", "is_public": "True", "name": "h flux", "size": "7", "sta_sit_1min_hfl0": {"__spz_name__": "0.320-0.452 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_hfl(0)", "dataset": "sta-sit-1min", "index1": "0", "is_public": "True", "name": "0.320-0.452 MeV", "parameter": "sta_sit_1min_hfl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_hfl(0)"}, "sta_sit_1min_hfl1": {"__spz_name__": "0.452-0.640 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_hfl(1)", "dataset": "sta-sit-1min", "index1": "1", "is_public": "True", "name": "0.452-0.640 MeV", "parameter": "sta_sit_1min_hfl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_hfl(1)"}, "sta_sit_1min_hfl2": {"__spz_name__": "0.640-0.905 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_hfl(2)", "dataset": "sta-sit-1min", "index1": "2", "is_public": "True", "name": "0.640-0.905 MeV", "parameter": "sta_sit_1min_hfl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_hfl(2)"}, "sta_sit_1min_hfl3": {"__spz_name__": "0.905-1.280 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_hfl(3)", "dataset": "sta-sit-1min", "index1": "3", "is_public": "True", "name": "0.905-1.280 MeV", "parameter": "sta_sit_1min_hfl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_hfl(3)"}, "sta_sit_1min_hfl4": {"__spz_name__": "1.280-1.810 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_hfl(4)", "dataset": "sta-sit-1min", "index1": "4", "is_public": "True", "name": "1.280-1.810 MeV", "parameter": "sta_sit_1min_hfl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_hfl(4)"}, "sta_sit_1min_hfl5": {"__spz_name__": "1.810-2.560 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_hfl(5)", "dataset": "sta-sit-1min", "index1": "5", "is_public": "True", "name": "1.810-2.560 MeV", "parameter": "sta_sit_1min_hfl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_hfl(5)"}, "sta_sit_1min_hfl6": {"__spz_name__": "2.560-3.620 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_hfl(6)", "dataset": "sta-sit-1min", "index1": "6", "is_public": "True", "name": "2.560-3.620 MeV", "parameter": "sta_sit_1min_hfl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_hfl(6)"}, "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_sit_1min_hfl"}, "sta_sit_1min_hsp": {"__spz_name__": "h flux spectro", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_sit_1min_hsp", "dataset": "sta-sit-1min", "display_type": "spectrogram", "is_public": "True", "name": "h flux spectro", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "units": "1/(cm2-sr-sec-MeV)", "xmlid": "sta_sit_1min_hsp"}, "sta_sit_1min_ocr": {"__spz_name__": "o count rate", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_sit_1min_ocr", "dataset": "sta-sit-1min", "display_type": "timeseries", "is_public": "True", "name": "o count rate", "size": "10", "sta_sit_1min_ocr0": {"__spz_name__": "0.113-0.160 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_ocr(0)", "dataset": "sta-sit-1min", "index1": "0", "is_public": "True", "name": "0.113-0.160 MeV", "parameter": "sta_sit_1min_ocr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_ocr(0)"}, "sta_sit_1min_ocr1": {"__spz_name__": "0.160-0.226 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_ocr(1)", "dataset": "sta-sit-1min", "index1": "1", "is_public": "True", "name": "0.160-0.226 MeV", "parameter": "sta_sit_1min_ocr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_ocr(1)"}, "sta_sit_1min_ocr2": {"__spz_name__": "0.226-0.320 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_ocr(2)", "dataset": "sta-sit-1min", "index1": "2", "is_public": "True", "name": "0.226-0.320 MeV", "parameter": "sta_sit_1min_ocr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_ocr(2)"}, "sta_sit_1min_ocr3": {"__spz_name__": "0.320-0.452 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_ocr(3)", "dataset": "sta-sit-1min", "index1": "3", "is_public": "True", "name": "0.320-0.452 MeV", "parameter": "sta_sit_1min_ocr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_ocr(3)"}, "sta_sit_1min_ocr4": {"__spz_name__": "0.452-0.640 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_ocr(4)", "dataset": "sta-sit-1min", "index1": "4", "is_public": "True", "name": "0.452-0.640 MeV", "parameter": "sta_sit_1min_ocr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_ocr(4)"}, "sta_sit_1min_ocr5": {"__spz_name__": "0.640-0.905 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_ocr(5)", "dataset": "sta-sit-1min", "index1": "5", "is_public": "True", "name": "0.640-0.905 MeV", "parameter": "sta_sit_1min_ocr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_ocr(5)"}, "sta_sit_1min_ocr6": {"__spz_name__": "0.905-1.280 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_ocr(6)", "dataset": "sta-sit-1min", "index1": "6", "is_public": "True", "name": "0.905-1.280 MeV", "parameter": "sta_sit_1min_ocr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_ocr(6)"}, "sta_sit_1min_ocr7": {"__spz_name__": "1.280-1.810 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_ocr(7)", "dataset": "sta-sit-1min", "index1": "7", "is_public": "True", "name": "1.280-1.810 MeV", "parameter": "sta_sit_1min_ocr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_ocr(7)"}, "sta_sit_1min_ocr8": {"__spz_name__": "1.810-2.560 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_ocr(8)", "dataset": "sta-sit-1min", "index1": "8", "is_public": "True", "name": "1.810-2.560 MeV", "parameter": "sta_sit_1min_ocr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_ocr(8)"}, "sta_sit_1min_ocr9": {"__spz_name__": "2.560-3.620 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_ocr(9)", "dataset": "sta-sit-1min", "index1": "9", "is_public": "True", "name": "2.560-3.620 MeV", "parameter": "sta_sit_1min_ocr", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_ocr(9)"}, "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_sit_1min_ocr"}, "sta_sit_1min_ofl": {"__spz_name__": "o flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_sit_1min_ofl", "dataset": "sta-sit-1min", "display_type": "timeseries", "is_public": "True", "name": "o flux", "size": "10", "sta_sit_1min_ofl0": {"__spz_name__": "0.113-0.160 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_ofl(0)", "dataset": "sta-sit-1min", "index1": "0", "is_public": "True", "name": "0.113-0.160 MeV", "parameter": "sta_sit_1min_ofl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_ofl(0)"}, "sta_sit_1min_ofl1": {"__spz_name__": "0.160-0.226 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_ofl(1)", "dataset": "sta-sit-1min", "index1": "1", "is_public": "True", "name": "0.160-0.226 MeV", "parameter": "sta_sit_1min_ofl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_ofl(1)"}, "sta_sit_1min_ofl2": {"__spz_name__": "0.226-0.320 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_ofl(2)", "dataset": "sta-sit-1min", "index1": "2", "is_public": "True", "name": "0.226-0.320 MeV", "parameter": "sta_sit_1min_ofl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_ofl(2)"}, "sta_sit_1min_ofl3": {"__spz_name__": "0.320-0.452 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_ofl(3)", "dataset": "sta-sit-1min", "index1": "3", "is_public": "True", "name": "0.320-0.452 MeV", "parameter": "sta_sit_1min_ofl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_ofl(3)"}, "sta_sit_1min_ofl4": {"__spz_name__": "0.452-0.640 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_ofl(4)", "dataset": "sta-sit-1min", "index1": "4", "is_public": "True", "name": "0.452-0.640 MeV", "parameter": "sta_sit_1min_ofl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_ofl(4)"}, "sta_sit_1min_ofl5": {"__spz_name__": "0.640-0.905 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_ofl(5)", "dataset": "sta-sit-1min", "index1": "5", "is_public": "True", "name": "0.640-0.905 MeV", "parameter": "sta_sit_1min_ofl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_ofl(5)"}, "sta_sit_1min_ofl6": {"__spz_name__": "0.905-1.280 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_ofl(6)", "dataset": "sta-sit-1min", "index1": "6", "is_public": "True", "name": "0.905-1.280 MeV", "parameter": "sta_sit_1min_ofl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_ofl(6)"}, "sta_sit_1min_ofl7": {"__spz_name__": "1.280-1.810 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_ofl(7)", "dataset": "sta-sit-1min", "index1": "7", "is_public": "True", "name": "1.280-1.810 MeV", "parameter": "sta_sit_1min_ofl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_ofl(7)"}, "sta_sit_1min_ofl8": {"__spz_name__": "1.810-2.560 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_ofl(8)", "dataset": "sta-sit-1min", "index1": "8", "is_public": "True", "name": "1.810-2.560 MeV", "parameter": "sta_sit_1min_ofl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_ofl(8)"}, "sta_sit_1min_ofl9": {"__spz_name__": "2.560-3.620 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sta_sit_1min_ofl(9)", "dataset": "sta-sit-1min", "index1": "9", "is_public": "True", "name": "2.560-3.620 MeV", "parameter": "sta_sit_1min_ofl", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "xmlid": "sta_sit_1min_ofl(9)"}, "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "sta_sit_1min_ofl"}, "sta_sit_1min_osp": {"__spz_name__": "o flux spectro", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_sit_1min_osp", "dataset": "sta-sit-1min", "display_type": "spectrogram", "is_public": "True", "name": "o flux spectro", "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "units": "1/(cm2-sr-sec-MeV)", "xmlid": "sta_sit_1min_osp"}, "start_date": "2007-01-01T00:00:45Z", "stop_date": "2024-07-24T23:59:08Z", "target": "Heliosphere.Remote1AU", "xmlid": "sta-sit-1min"}, "xmlid": "STEREO-A_sit"}, "SWEA": {"__spz_name__": "SWEA", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "STEREO-A_swea", "att": "auto/STEREO-A_swea", "desc": "Solar Wind Plasma Electron Analyzer
ParticleDetector", "is_public": "True", "name": "SWEA", "sta_swea_mom": {"__spz_name__": "electron moments E:45-2000eV", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "sta-swea-mom", "att": "auto/sta-swea-mom", "dataSource": "IRAP", "desc": "
Sampling: 20S
Provider: IRAP", "is_public": "True", "lastModificationDate": "2024-09-29T22:10:06Z", "lastUpdate": "2024-09-29T22:10:06Z", "measurement_type": "ThermalPlasma", "name": "electron moments E:45-2000eV", "ne_part_sta": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ne_part_sta", "dataset": "sta-swea-mom", "display_type": "timeseries", "is_public": "True", "name": "density", "start_date": "2006-10-12T19:32:08Z", "stop_date": "2024-05-31T23:59:53Z", "ucd": "phys.density;phys.electron", "units": "cm-3", "xmlid": "ne_part_sta"}, "processing_level": "Calibrated", "qe_b_sta": {"__spz_name__": "Q_b", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "qe_b_sta", "dataset": "sta-swea-mom", "display_type": "timeseries", "is_public": "True", "name": "Q_b", "qe_b_sta0": {"__spz_name__": "q_para", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "qe_b_sta(0)", "dataset": "sta-swea-mom", "index1": "0", "is_public": "True", "name": "q_para", "parameter": "qe_b_sta", "start_date": "2006-10-12T19:32:08Z", "stop_date": "2024-05-31T23:59:53Z", "xmlid": "qe_b_sta(0)"}, "qe_b_sta1": {"__spz_name__": "q_perp", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "qe_b_sta(1)", "dataset": "sta-swea-mom", "index1": "1", "is_public": "True", "name": "q_perp", "parameter": "qe_b_sta", "start_date": "2006-10-12T19:32:08Z", "stop_date": "2024-05-31T23:59:53Z", "xmlid": "qe_b_sta(1)"}, "size": "2", "start_date": "2006-10-12T19:32:08Z", "stop_date": "2024-05-31T23:59:53Z", "ucd": "phys.flux.energy;phys.electron", "units": "erg/sec/cm2", "xmlid": "qe_b_sta"}, "qe_part_sta": {"__spz_name__": "Q_rtn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "qe_part_sta", "dataset": "sta-swea-mom", "display_type": "timeseries", "is_public": "True", "name": "Q_rtn", "qe_part_sta0": {"__spz_name__": "q_r", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "qe_part_sta(0)", "dataset": "sta-swea-mom", "index1": "0", "is_public": "True", "name": "q_r", "parameter": "qe_part_sta", "start_date": "2006-10-12T19:32:08Z", "stop_date": "2024-05-31T23:59:53Z", "xmlid": "qe_part_sta(0)"}, "qe_part_sta1": {"__spz_name__": "q_t", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "qe_part_sta(1)", "dataset": "sta-swea-mom", "index1": "1", "is_public": "True", "name": "q_t", "parameter": "qe_part_sta", "start_date": "2006-10-12T19:32:08Z", "stop_date": "2024-05-31T23:59:53Z", "xmlid": "qe_part_sta(1)"}, "qe_part_sta2": {"__spz_name__": "q_n", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "qe_part_sta(2)", "dataset": "sta-swea-mom", "index1": "2", "is_public": "True", "name": "q_n", "parameter": "qe_part_sta", "start_date": "2006-10-12T19:32:08Z", "stop_date": "2024-05-31T23:59:53Z", "xmlid": "qe_part_sta(2)"}, "size": "3", "start_date": "2006-10-12T19:32:08Z", "stop_date": "2024-05-31T23:59:53Z", "ucd": "phys.flux.energy;phys.electron", "units": "erg/sec/cm2", "xmlid": "qe_part_sta"}, "qual1_sta": {"__spz_name__": "quality_MAG", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "qual1_sta", "dataset": "sta-swea-mom", "display_type": "timeseries", "is_public": "True", "name": "quality_MAG", "start_date": "2006-10-12T19:32:08Z", "stop_date": "2024-05-31T23:59:53Z", "ucd": "meta.code;phys.magField", "units": "0:B_inside", "xmlid": "qual1_sta"}, "qual2_sta": {"__spz_name__": "quality_PLA", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "qual2_sta", "dataset": "sta-swea-mom", "display_type": "timeseries", "is_public": "True", "name": "quality_PLA", "start_date": "2006-10-12T19:32:08Z", "stop_date": "2024-05-31T23:59:53Z", "ucd": "meta.code;phys.particle", "units": "0:corrected_by_PLA", "xmlid": "qual2_sta"}, "sampling": "20S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/STEREO-A/SWEA/sta-swea-mom", "start_date": "2006-10-12T19:32:08Z", "stop_date": "2024-05-31T23:59:53Z", "target": "Heliosphere.Remote1AU", "te_part_sta": {"__spz_name__": "t_b", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "te_part_sta", "dataset": "sta-swea-mom", "display_type": "timeseries", "is_public": "True", "name": "t_b", "size": "3", "start_date": "2006-10-12T19:32:08Z", "stop_date": "2024-05-31T23:59:53Z", "te_part_sta0": {"__spz_name__": "t_para", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "te_part_sta(0)", "dataset": "sta-swea-mom", "index1": "0", "is_public": "True", "name": "t_para", "parameter": "te_part_sta", "start_date": "2006-10-12T19:32:08Z", "stop_date": "2024-05-31T23:59:53Z", "xmlid": "te_part_sta(0)"}, "te_part_sta1": {"__spz_name__": "t_perp1", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "te_part_sta(1)", "dataset": "sta-swea-mom", "index1": "1", "is_public": "True", "name": "t_perp1", "parameter": "te_part_sta", "start_date": "2006-10-12T19:32:08Z", "stop_date": "2024-05-31T23:59:53Z", "xmlid": "te_part_sta(1)"}, "te_part_sta2": {"__spz_name__": "t_perp2", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "te_part_sta(2)", "dataset": "sta-swea-mom", "index1": "2", "is_public": "True", "name": "t_perp2", "parameter": "te_part_sta", "start_date": "2006-10-12T19:32:08Z", "stop_date": "2024-05-31T23:59:53Z", "xmlid": "te_part_sta(2)"}, "ucd": "phys.temperature;phys.electron", "units": "eV", "xmlid": "te_part_sta"}, "xmlid": "sta-swea-mom"}, "sta_swea_pad": {"__spz_name__": "pitch-angle/energy distribution E:45-2000eV", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "sta-swea-pad", "att": "auto/sta-swea-pad", "dataSource": "IRAP", "desc": "Electron phase space density pitch-angle / energy distribution E : 45-2000eV
Sampling: 20S
Provider: IRAP", "is_public": "True", "lastModificationDate": "2024-09-29T22:10:44Z", "lastUpdate": "2024-09-29T22:10:44Z", "measurement_type": "ThermalPlasma", "name": "pitch-angle/energy distribution E:45-2000eV", "processing_level": "Calibrated", "quality1_sta": {"__spz_name__": "quality_mag", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "quality1_sta", "dataset": "sta-swea-pad", "display_type": "timeseries", "is_public": "True", "name": "quality_mag", "start_date": "2006-10-31T00:00:38Z", "stop_date": "2024-05-31T23:59:52Z", "ucd": "meta.code;phys.magField", "units": "0:B_inside", "xmlid": "quality1_sta"}, "quality2_sta": {"__spz_name__": "quality_pla", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "quality2_sta", "dataset": "sta-swea-pad", "display_type": "timeseries", "is_public": "True", "name": "quality_pla", "start_date": "2006-10-31T00:00:38Z", "stop_date": "2024-05-31T23:59:52Z", "ucd": "meta.code;phys.particle", "units": "0:corrected_by_PLA", "xmlid": "quality2_sta"}, "sampling": "20S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/STEREO-A/SWEA/sta-swea-pad", "sta_swea_pad": {"__spz_name__": "el psd : 2D", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_swea_pad", "dataset": "sta-swea-pad", "display_type": "spectrogram", "is_public": "True", "name": "el psd : 2D", "start_date": "2006-10-31T00:00:38Z", "stop_date": "2024-05-31T23:59:52Z", "units": "s\u00b3/km\u2076", "xmlid": "sta_swea_pad"}, "sta_swea_pad_angle": {"__spz_name__": "el psd : sum over energy", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_swea_pad_angle", "dataset": "sta-swea-pad", "description": "Electron pitch angle distribution (sum over all energy bins)", "display_type": "spectrogram", "is_public": "True", "name": "el psd : sum over energy", "start_date": "2006-10-31T00:00:38Z", "stop_date": "2024-05-31T23:59:52Z", "units": "s\u00b3/km\u2076", "xmlid": "sta_swea_pad_angle"}, "sta_swea_pad_omni": {"__spz_name__": "el psd : omni", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sta_swea_pad_omni", "dataset": "sta-swea-pad", "description": "Electron pitch angle distribution (sum over all energy bins)", "display_type": "spectrogram", "is_public": "True", "name": "el psd : omni", "start_date": "2006-10-31T00:00:38Z", "stop_date": "2024-05-31T23:59:52Z", "units": "s\u00b3/km\u2076", "xmlid": "sta_swea_pad_omni"}, "start_date": "2006-10-31T00:00:38Z", "stop_date": "2024-05-31T23:59:52Z", "target": "Heliosphere.Remote1AU", "xmlid": "sta-swea-pad"}, "xmlid": "STEREO-A_swea"}, "__spz_name__": "STEREO A", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "STEREO-A", "att": "auto/STEREO-A", "desc": "STEREO Ahead
2006-10-25T08:56:00", "is_public": "True", "name": "STEREO A", "target": "Heliosphere.Remote1AU", "xmlid": "STEREO-A"}, "STEREO_B": {"Ephemeris": {"__spz_name__": "Ephemeris", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "STEREO-B_ephemeris", "att": "auto/STEREO-B_ephemeris", "desc": "", "is_public": "True", "name": "Ephemeris", "stb_l2_orb": {"__spz_name__": "orbit", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "stb-l2-orb", "att": "auto/stb-l2-orb", "dataSource": "https://sohowww.nascom.nasa.gov", "desc": "
Sampling: 900S
Provider: https://sohowww.nascom.nasa.gov", "is_public": "True", "lastModificationDate": "2020-05-20T14:24:43Z", "lastUpdate": "2020-06-22T10:55:30Z", "measurement_type": "Ephemeris", "name": "orbit", "processing_level": "Calibrated", "sampling": "900S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/STEREO-B/Ephemeris/stb-l2-orb", "start_date": "2006-10-26T01:01:05Z", "stb_lat_hci": {"__spz_name__": "lat hci", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_lat_hci", "dataset": "stb-l2-orb", "display_type": "timeseries", "is_public": "True", "name": "lat hci", "start_date": "2006-10-26T01:01:05Z", "stop_date": "2026-01-01T00:00:00Z", "units": "deg", "xmlid": "stb_lat_hci"}, "stb_lat_hee": {"__spz_name__": "lat hee", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_lat_hee", "dataset": "stb-l2-orb", "display_type": "timeseries", "is_public": "True", "name": "lat hee", "start_date": "2006-10-26T01:01:05Z", "stop_date": "2026-01-01T00:00:00Z", "units": "deg", "xmlid": "stb_lat_hee"}, "stb_lat_sun": {"__spz_name__": "lat iau_sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_lat_sun", "dataset": "stb-l2-orb", "display_type": "timeseries", "is_public": "True", "name": "lat iau_sun", "start_date": "2006-10-26T01:01:05Z", "stop_date": "2026-01-01T00:00:00Z", "units": "deg", "xmlid": "stb_lat_sun"}, "stb_lon_hci": {"__spz_name__": "lon hci", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_lon_hci", "dataset": "stb-l2-orb", "display_type": "timeseries", "is_public": "True", "name": "lon hci", "start_date": "2006-10-26T01:01:05Z", "stop_date": "2026-01-01T00:00:00Z", "units": "deg", "xmlid": "stb_lon_hci"}, "stb_lon_hee": {"__spz_name__": "lon hee", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_lon_hee", "dataset": "stb-l2-orb", "display_type": "timeseries", "is_public": "True", "name": "lon hee", "start_date": "2006-10-26T01:01:05Z", "stop_date": "2026-01-01T00:00:00Z", "units": "deg", "xmlid": "stb_lon_hee"}, "stb_lon_sun": {"__spz_name__": "lon iau_sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_lon_sun", "dataset": "stb-l2-orb", "display_type": "timeseries", "is_public": "True", "name": "lon iau_sun", "start_date": "2006-10-26T01:01:05Z", "stop_date": "2026-01-01T00:00:00Z", "units": "deg", "xmlid": "stb_lon_sun"}, "stb_r_gse": {"__spz_name__": "distance stb-earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_r_gse", "dataset": "stb-l2-orb", "display_type": "timeseries", "is_public": "True", "name": "distance stb-earth", "start_date": "2006-10-26T01:01:05Z", "stop_date": "2026-01-01T00:00:00Z", "ucd": "pos.distance", "units": "Re", "xmlid": "stb_r_gse"}, "stb_r_hee": {"__spz_name__": "distance stb-sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_r_hee", "dataset": "stb-l2-orb", "display_type": "timeseries", "is_public": "True", "name": "distance stb-sun", "start_date": "2006-10-26T01:01:05Z", "stop_date": "2026-01-01T00:00:00Z", "ucd": "pos.distance", "units": "AU", "xmlid": "stb_r_hee"}, "stb_xyz_gse": {"__spz_name__": "xyz_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_xyz_gse", "dataset": "stb-l2-orb", "display_type": "timeseries", "is_public": "True", "name": "xyz_gse", "size": "3", "start_date": "2006-10-26T01:01:05Z", "stb_xyz_gse0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_xyz_gse(0)", "dataset": "stb-l2-orb", "index1": "0", "is_public": "True", "name": "x", "parameter": "stb_xyz_gse", "start_date": "2006-10-26T01:01:05Z", "stop_date": "2026-01-01T00:00:00Z", "xmlid": "stb_xyz_gse(0)"}, "stb_xyz_gse1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_xyz_gse(1)", "dataset": "stb-l2-orb", "index1": "1", "is_public": "True", "name": "y", "parameter": "stb_xyz_gse", "start_date": "2006-10-26T01:01:05Z", "stop_date": "2026-01-01T00:00:00Z", "xmlid": "stb_xyz_gse(1)"}, "stb_xyz_gse2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_xyz_gse(2)", "dataset": "stb-l2-orb", "index1": "2", "is_public": "True", "name": "z", "parameter": "stb_xyz_gse", "start_date": "2006-10-26T01:01:05Z", "stop_date": "2026-01-01T00:00:00Z", "xmlid": "stb_xyz_gse(2)"}, "stop_date": "2026-01-01T00:00:00Z", "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "Re", "xmlid": "stb_xyz_gse"}, "stb_xyz_hci": {"__spz_name__": "xyz_hci", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_xyz_hci", "dataset": "stb-l2-orb", "display_type": "timeseries", "is_public": "True", "name": "xyz_hci", "size": "3", "start_date": "2006-10-26T01:01:05Z", "stb_xyz_hci0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_xyz_hci(0)", "dataset": "stb-l2-orb", "index1": "0", "is_public": "True", "name": "x", "parameter": "stb_xyz_hci", "start_date": "2006-10-26T01:01:05Z", "stop_date": "2026-01-01T00:00:00Z", "xmlid": "stb_xyz_hci(0)"}, "stb_xyz_hci1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_xyz_hci(1)", "dataset": "stb-l2-orb", "index1": "1", "is_public": "True", "name": "y", "parameter": "stb_xyz_hci", "start_date": "2006-10-26T01:01:05Z", "stop_date": "2026-01-01T00:00:00Z", "xmlid": "stb_xyz_hci(1)"}, "stb_xyz_hci2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_xyz_hci(2)", "dataset": "stb-l2-orb", "index1": "2", "is_public": "True", "name": "z", "parameter": "stb_xyz_hci", "start_date": "2006-10-26T01:01:05Z", "stop_date": "2026-01-01T00:00:00Z", "xmlid": "stb_xyz_hci(2)"}, "stop_date": "2026-01-01T00:00:00Z", "ucd": "pos.ephem;pos.heliocentric;instr.obsty", "units": "AU", "xmlid": "stb_xyz_hci"}, "stb_xyz_hee": {"__spz_name__": "xyz_hee", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_xyz_hee", "dataset": "stb-l2-orb", "display_type": "timeseries", "is_public": "True", "name": "xyz_hee", "size": "3", "start_date": "2006-10-26T01:01:05Z", "stb_xyz_hee0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_xyz_hee(0)", "dataset": "stb-l2-orb", "index1": "0", "is_public": "True", "name": "x", "parameter": "stb_xyz_hee", "start_date": "2006-10-26T01:01:05Z", "stop_date": "2026-01-01T00:00:00Z", "xmlid": "stb_xyz_hee(0)"}, "stb_xyz_hee1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_xyz_hee(1)", "dataset": "stb-l2-orb", "index1": "1", "is_public": "True", "name": "y", "parameter": "stb_xyz_hee", "start_date": "2006-10-26T01:01:05Z", "stop_date": "2026-01-01T00:00:00Z", "xmlid": "stb_xyz_hee(1)"}, "stb_xyz_hee2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_xyz_hee(2)", "dataset": "stb-l2-orb", "index1": "2", "is_public": "True", "name": "z", "parameter": "stb_xyz_hee", "start_date": "2006-10-26T01:01:05Z", "stop_date": "2026-01-01T00:00:00Z", "xmlid": "stb_xyz_hee(2)"}, "stop_date": "2026-01-01T00:00:00Z", "ucd": "pos.ephem;pos.heliocentric;instr.obsty", "units": "AU", "xmlid": "stb_xyz_hee"}, "stb_xyz_iausun": {"__spz_name__": "xyz_iau_sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_xyz_iausun", "dataset": "stb-l2-orb", "display_type": "timeseries", "is_public": "True", "name": "xyz_iau_sun", "size": "3", "start_date": "2006-10-26T01:01:05Z", "stb_xyz_iausun0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_xyz_iausun(0)", "dataset": "stb-l2-orb", "index1": "0", "is_public": "True", "name": "x", "parameter": "stb_xyz_iausun", "start_date": "2006-10-26T01:01:05Z", "stop_date": "2026-01-01T00:00:00Z", "xmlid": "stb_xyz_iausun(0)"}, "stb_xyz_iausun1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_xyz_iausun(1)", "dataset": "stb-l2-orb", "index1": "1", "is_public": "True", "name": "y", "parameter": "stb_xyz_iausun", "start_date": "2006-10-26T01:01:05Z", "stop_date": "2026-01-01T00:00:00Z", "xmlid": "stb_xyz_iausun(1)"}, "stb_xyz_iausun2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_xyz_iausun(2)", "dataset": "stb-l2-orb", "index1": "2", "is_public": "True", "name": "z", "parameter": "stb_xyz_iausun", "start_date": "2006-10-26T01:01:05Z", "stop_date": "2026-01-01T00:00:00Z", "xmlid": "stb_xyz_iausun(2)"}, "stop_date": "2026-01-01T00:00:00Z", "units": "AU", "xmlid": "stb_xyz_iausun"}, "stop_date": "2026-01-01T00:00:00Z", "target": "Heliosphere", "xmlid": "stb-l2-orb"}, "xmlid": "STEREO-B_ephemeris"}, "HET": {"__spz_name__": "HET", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "STEREO-B_het", "att": "auto/STEREO-B_het", "desc": "High Energy Telescope
ParticleDetector", "is_public": "True", "name": "HET", "stb_het_1d": {"__spz_name__": "1 day", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "stb-het-1d", "att": "auto/stb-het-1d", "dataSource": "CDAWeb", "desc": "electrons and protons flux 1 day rate
Sampling: 24H
Provider: CDAWeb", "is_public": "True", "lastModificationDate": "2021-04-20T15:00:26Z", "lastUpdate": "2021-04-20T15:00:26Z", "measurement_type": "EnergeticParticles", "name": "1 day", "processing_level": "Calibrated", "sampling": "24H", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/STEREO-B/HET/stb-het-1d", "start_date": "2006-12-01T00:00:00Z", "stb_het_1d_efl": {"__spz_name__": "e- flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_het_1d_efl", "dataset": "stb-het-1d", "display_type": "timeseries", "is_public": "True", "name": "e- flux", "size": "3", "start_date": "2006-12-01T00:00:00Z", "stb_het_1d_efl0": {"__spz_name__": "0.7-1.4 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1d_efl(0)", "dataset": "stb-het-1d", "index1": "0", "is_public": "True", "name": "0.7-1.4 MeV", "parameter": "stb_het_1d_efl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T00:00:00Z", "xmlid": "stb_het_1d_efl(0)"}, "stb_het_1d_efl1": {"__spz_name__": "1.4-2.8 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1d_efl(1)", "dataset": "stb-het-1d", "index1": "1", "is_public": "True", "name": "1.4-2.8 MeV", "parameter": "stb_het_1d_efl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T00:00:00Z", "xmlid": "stb_het_1d_efl(1)"}, "stb_het_1d_efl2": {"__spz_name__": "2.8-4.0 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1d_efl(2)", "dataset": "stb-het-1d", "index1": "2", "is_public": "True", "name": "2.8-4.0 MeV", "parameter": "stb_het_1d_efl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T00:00:00Z", "xmlid": "stb_het_1d_efl(2)"}, "stop_date": "2014-09-27T00:00:00Z", "units": "1/(cm2-sr-sec-MeV)", "xmlid": "stb_het_1d_efl"}, "stb_het_1d_eflu": {"__spz_name__": "e- flux uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_het_1d_eflu", "dataset": "stb-het-1d", "display_type": "timeseries", "is_public": "True", "name": "e- flux uncertainty", "size": "3", "start_date": "2006-12-01T00:00:00Z", "stb_het_1d_eflu0": {"__spz_name__": "0.7-1.4 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1d_eflu(0)", "dataset": "stb-het-1d", "index1": "0", "is_public": "True", "name": "0.7-1.4 MeV", "parameter": "stb_het_1d_eflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T00:00:00Z", "xmlid": "stb_het_1d_eflu(0)"}, "stb_het_1d_eflu1": {"__spz_name__": "1.4-2.8 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1d_eflu(1)", "dataset": "stb-het-1d", "index1": "1", "is_public": "True", "name": "1.4-2.8 MeV", "parameter": "stb_het_1d_eflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T00:00:00Z", "xmlid": "stb_het_1d_eflu(1)"}, "stb_het_1d_eflu2": {"__spz_name__": "2.8-4.0 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1d_eflu(2)", "dataset": "stb-het-1d", "index1": "2", "is_public": "True", "name": "2.8-4.0 MeV", "parameter": "stb_het_1d_eflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T00:00:00Z", "xmlid": "stb_het_1d_eflu(2)"}, "stop_date": "2014-09-27T00:00:00Z", "units": "1/(cm2-sr-sec-MeV)", "xmlid": "stb_het_1d_eflu"}, "stb_het_1d_hfl": {"__spz_name__": "h+ flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_het_1d_hfl", "dataset": "stb-het-1d", "display_type": "timeseries", "is_public": "True", "name": "h+ flux", "size": "11", "start_date": "2006-12-01T00:00:00Z", "stb_het_1d_hfl0": {"__spz_name__": "13.6-15.1 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1d_hfl(0)", "dataset": "stb-het-1d", "index1": "0", "is_public": "True", "name": "13.6-15.1 MeV", "parameter": "stb_het_1d_hfl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T00:00:00Z", "xmlid": "stb_het_1d_hfl(0)"}, "stb_het_1d_hfl1": {"__spz_name__": "14.9-17.1 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1d_hfl(1)", "dataset": "stb-het-1d", "index1": "1", "is_public": "True", "name": "14.9-17.1 MeV", "parameter": "stb_het_1d_hfl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T00:00:00Z", "xmlid": "stb_het_1d_hfl(1)"}, "stb_het_1d_hfl10": {"__spz_name__": "60.0-100.0 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1d_hfl(10)", "dataset": "stb-het-1d", "index1": "10", "is_public": "True", "name": "60.0-100.0 MeV", "parameter": "stb_het_1d_hfl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T00:00:00Z", "xmlid": "stb_het_1d_hfl(10)"}, "stb_het_1d_hfl2": {"__spz_name__": "17.0-19.3 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1d_hfl(2)", "dataset": "stb-het-1d", "index1": "2", "is_public": "True", "name": "17.0-19.3 MeV", "parameter": "stb_het_1d_hfl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T00:00:00Z", "xmlid": "stb_het_1d_hfl(2)"}, "stb_het_1d_hfl3": {"__spz_name__": "20.8-23.8 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1d_hfl(3)", "dataset": "stb-het-1d", "index1": "3", "is_public": "True", "name": "20.8-23.8 MeV", "parameter": "stb_het_1d_hfl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T00:00:00Z", "xmlid": "stb_het_1d_hfl(3)"}, "stb_het_1d_hfl4": {"__spz_name__": "23.8-26.4 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1d_hfl(4)", "dataset": "stb-het-1d", "index1": "4", "is_public": "True", "name": "23.8-26.4 MeV", "parameter": "stb_het_1d_hfl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T00:00:00Z", "xmlid": "stb_het_1d_hfl(4)"}, "stb_het_1d_hfl5": {"__spz_name__": "26.3-29.7 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1d_hfl(5)", "dataset": "stb-het-1d", "index1": "5", "is_public": "True", "name": "26.3-29.7 MeV", "parameter": "stb_het_1d_hfl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T00:00:00Z", "xmlid": "stb_het_1d_hfl(5)"}, "stb_het_1d_hfl6": {"__spz_name__": "29.5-33.4 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1d_hfl(6)", "dataset": "stb-het-1d", "index1": "6", "is_public": "True", "name": "29.5-33.4 MeV", "parameter": "stb_het_1d_hfl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T00:00:00Z", "xmlid": "stb_het_1d_hfl(6)"}, "stb_het_1d_hfl7": {"__spz_name__": "33.4-35.8 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1d_hfl(7)", "dataset": "stb-het-1d", "index1": "7", "is_public": "True", "name": "33.4-35.8 MeV", "parameter": "stb_het_1d_hfl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T00:00:00Z", "xmlid": "stb_het_1d_hfl(7)"}, "stb_het_1d_hfl8": {"__spz_name__": "35.5-40.5 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1d_hfl(8)", "dataset": "stb-het-1d", "index1": "8", "is_public": "True", "name": "35.5-40.5 MeV", "parameter": "stb_het_1d_hfl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T00:00:00Z", "xmlid": "stb_het_1d_hfl(8)"}, "stb_het_1d_hfl9": {"__spz_name__": "40.0-60.0 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1d_hfl(9)", "dataset": "stb-het-1d", "index1": "9", "is_public": "True", "name": "40.0-60.0 MeV", "parameter": "stb_het_1d_hfl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T00:00:00Z", "xmlid": "stb_het_1d_hfl(9)"}, "stop_date": "2014-09-27T00:00:00Z", "units": "1/(cm2-sr-sec-MeV)", "xmlid": "stb_het_1d_hfl"}, "stb_het_1d_hflu": {"__spz_name__": "h+ flux uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_het_1d_hflu", "dataset": "stb-het-1d", "display_type": "timeseries", "is_public": "True", "name": "h+ flux uncertainty", "size": "11", "start_date": "2006-12-01T00:00:00Z", "stb_het_1d_hflu0": {"__spz_name__": "13.6-15.1 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1d_hflu(0)", "dataset": "stb-het-1d", "index1": "0", "is_public": "True", "name": "13.6-15.1 MeV", "parameter": "stb_het_1d_hflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T00:00:00Z", "xmlid": "stb_het_1d_hflu(0)"}, "stb_het_1d_hflu1": {"__spz_name__": "14.9-17.1 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1d_hflu(1)", "dataset": "stb-het-1d", "index1": "1", "is_public": "True", "name": "14.9-17.1 MeV", "parameter": "stb_het_1d_hflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T00:00:00Z", "xmlid": "stb_het_1d_hflu(1)"}, "stb_het_1d_hflu10": {"__spz_name__": "60.0-100.0 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1d_hflu(10)", "dataset": "stb-het-1d", "index1": "10", "is_public": "True", "name": "60.0-100.0 MeV", "parameter": "stb_het_1d_hflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T00:00:00Z", "xmlid": "stb_het_1d_hflu(10)"}, "stb_het_1d_hflu2": {"__spz_name__": "17.0-19.3 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1d_hflu(2)", "dataset": "stb-het-1d", "index1": "2", "is_public": "True", "name": "17.0-19.3 MeV", "parameter": "stb_het_1d_hflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T00:00:00Z", "xmlid": "stb_het_1d_hflu(2)"}, "stb_het_1d_hflu3": {"__spz_name__": "20.8-23.8 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1d_hflu(3)", "dataset": "stb-het-1d", "index1": "3", "is_public": "True", "name": "20.8-23.8 MeV", "parameter": "stb_het_1d_hflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T00:00:00Z", "xmlid": "stb_het_1d_hflu(3)"}, "stb_het_1d_hflu4": {"__spz_name__": "23.8-26.4 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1d_hflu(4)", "dataset": "stb-het-1d", "index1": "4", "is_public": "True", "name": "23.8-26.4 MeV", "parameter": "stb_het_1d_hflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T00:00:00Z", "xmlid": "stb_het_1d_hflu(4)"}, "stb_het_1d_hflu5": {"__spz_name__": "26.3-29.7 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1d_hflu(5)", "dataset": "stb-het-1d", "index1": "5", "is_public": "True", "name": "26.3-29.7 MeV", "parameter": "stb_het_1d_hflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T00:00:00Z", "xmlid": "stb_het_1d_hflu(5)"}, "stb_het_1d_hflu6": {"__spz_name__": "29.5-33.4 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1d_hflu(6)", "dataset": "stb-het-1d", "index1": "6", "is_public": "True", "name": "29.5-33.4 MeV", "parameter": "stb_het_1d_hflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T00:00:00Z", "xmlid": "stb_het_1d_hflu(6)"}, "stb_het_1d_hflu7": {"__spz_name__": "33.4-35.8 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1d_hflu(7)", "dataset": "stb-het-1d", "index1": "7", "is_public": "True", "name": "33.4-35.8 MeV", "parameter": "stb_het_1d_hflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T00:00:00Z", "xmlid": "stb_het_1d_hflu(7)"}, "stb_het_1d_hflu8": {"__spz_name__": "35.5-40.5 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1d_hflu(8)", "dataset": "stb-het-1d", "index1": "8", "is_public": "True", "name": "35.5-40.5 MeV", "parameter": "stb_het_1d_hflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T00:00:00Z", "xmlid": "stb_het_1d_hflu(8)"}, "stb_het_1d_hflu9": {"__spz_name__": "40.0-60.0 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1d_hflu(9)", "dataset": "stb-het-1d", "index1": "9", "is_public": "True", "name": "40.0-60.0 MeV", "parameter": "stb_het_1d_hflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T00:00:00Z", "xmlid": "stb_het_1d_hflu(9)"}, "stop_date": "2014-09-27T00:00:00Z", "units": "1/(cm2-sr-sec-MeV)", "xmlid": "stb_het_1d_hflu"}, "stop_date": "2014-09-27T00:00:00Z", "target": "Heliosphere.Remote1AU", "xmlid": "stb-het-1d"}, "stb_het_1h": {"__spz_name__": "1 hour", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "stb-het-1h", "att": "auto/stb-het-1h", "dataSource": "CDAWeb", "desc": "electrons and protons flux 1 hour rate
Sampling: 3600S
Provider: CDAWeb", "is_public": "True", "lastModificationDate": "2020-03-10T15:24:36Z", "lastUpdate": "2020-03-04T15:19:29Z", "measurement_type": "EnergeticParticles", "name": "1 hour", "processing_level": "Calibrated", "sampling": "3600S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/STEREO-B/HET/stb-het-1h", "start_date": "2006-12-01T00:00:00Z", "stb_het_1h_efl": {"__spz_name__": "e- flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_het_1h_efl", "dataset": "stb-het-1h", "display_type": "timeseries", "is_public": "True", "name": "e- flux", "size": "3", "start_date": "2006-12-01T00:00:00Z", "stb_het_1h_efl0": {"__spz_name__": "0.7-1.4 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1h_efl(0)", "dataset": "stb-het-1h", "index1": "0", "is_public": "True", "name": "0.7-1.4 MeV", "parameter": "stb_het_1h_efl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T16:00:00Z", "xmlid": "stb_het_1h_efl(0)"}, "stb_het_1h_efl1": {"__spz_name__": "1.4-2.8 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1h_efl(1)", "dataset": "stb-het-1h", "index1": "1", "is_public": "True", "name": "1.4-2.8 MeV", "parameter": "stb_het_1h_efl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T16:00:00Z", "xmlid": "stb_het_1h_efl(1)"}, "stb_het_1h_efl2": {"__spz_name__": "2.8-4.0 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1h_efl(2)", "dataset": "stb-het-1h", "index1": "2", "is_public": "True", "name": "2.8-4.0 MeV", "parameter": "stb_het_1h_efl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T16:00:00Z", "xmlid": "stb_het_1h_efl(2)"}, "stop_date": "2014-09-27T16:00:00Z", "units": "1/(cm2-sr-sec-MeV)", "xmlid": "stb_het_1h_efl"}, "stb_het_1h_eflu": {"__spz_name__": "e- flux uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_het_1h_eflu", "dataset": "stb-het-1h", "display_type": "timeseries", "is_public": "True", "name": "e- flux uncertainty", "size": "3", "start_date": "2006-12-01T00:00:00Z", "stb_het_1h_eflu0": {"__spz_name__": "0.7-1.4 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1h_eflu(0)", "dataset": "stb-het-1h", "index1": "0", "is_public": "True", "name": "0.7-1.4 MeV", "parameter": "stb_het_1h_eflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T16:00:00Z", "xmlid": "stb_het_1h_eflu(0)"}, "stb_het_1h_eflu1": {"__spz_name__": "1.4-2.8 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1h_eflu(1)", "dataset": "stb-het-1h", "index1": "1", "is_public": "True", "name": "1.4-2.8 MeV", "parameter": "stb_het_1h_eflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T16:00:00Z", "xmlid": "stb_het_1h_eflu(1)"}, "stb_het_1h_eflu2": {"__spz_name__": "2.8-4.0 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1h_eflu(2)", "dataset": "stb-het-1h", "index1": "2", "is_public": "True", "name": "2.8-4.0 MeV", "parameter": "stb_het_1h_eflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T16:00:00Z", "xmlid": "stb_het_1h_eflu(2)"}, "stop_date": "2014-09-27T16:00:00Z", "units": "1/(cm2-sr-sec-MeV)", "xmlid": "stb_het_1h_eflu"}, "stb_het_1h_hfl": {"__spz_name__": "h+ flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_het_1h_hfl", "dataset": "stb-het-1h", "display_type": "timeseries", "is_public": "True", "name": "h+ flux", "size": "11", "start_date": "2006-12-01T00:00:00Z", "stb_het_1h_hfl0": {"__spz_name__": "13.6-15.1 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1h_hfl(0)", "dataset": "stb-het-1h", "index1": "0", "is_public": "True", "name": "13.6-15.1 MeV", "parameter": "stb_het_1h_hfl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T16:00:00Z", "xmlid": "stb_het_1h_hfl(0)"}, "stb_het_1h_hfl1": {"__spz_name__": "14.9-17.1 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1h_hfl(1)", "dataset": "stb-het-1h", "index1": "1", "is_public": "True", "name": "14.9-17.1 MeV", "parameter": "stb_het_1h_hfl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T16:00:00Z", "xmlid": "stb_het_1h_hfl(1)"}, "stb_het_1h_hfl10": {"__spz_name__": "60.0-100.0 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1h_hfl(10)", "dataset": "stb-het-1h", "index1": "10", "is_public": "True", "name": "60.0-100.0 MeV", "parameter": "stb_het_1h_hfl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T16:00:00Z", "xmlid": "stb_het_1h_hfl(10)"}, "stb_het_1h_hfl2": {"__spz_name__": "17.0-19.3 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1h_hfl(2)", "dataset": "stb-het-1h", "index1": "2", "is_public": "True", "name": "17.0-19.3 MeV", "parameter": "stb_het_1h_hfl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T16:00:00Z", "xmlid": "stb_het_1h_hfl(2)"}, "stb_het_1h_hfl3": {"__spz_name__": "20.8-23.8 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1h_hfl(3)", "dataset": "stb-het-1h", "index1": "3", "is_public": "True", "name": "20.8-23.8 MeV", "parameter": "stb_het_1h_hfl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T16:00:00Z", "xmlid": "stb_het_1h_hfl(3)"}, "stb_het_1h_hfl4": {"__spz_name__": "23.8-26.4 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1h_hfl(4)", "dataset": "stb-het-1h", "index1": "4", "is_public": "True", "name": "23.8-26.4 MeV", "parameter": "stb_het_1h_hfl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T16:00:00Z", "xmlid": "stb_het_1h_hfl(4)"}, "stb_het_1h_hfl5": {"__spz_name__": "26.3-29.7 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1h_hfl(5)", "dataset": "stb-het-1h", "index1": "5", "is_public": "True", "name": "26.3-29.7 MeV", "parameter": "stb_het_1h_hfl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T16:00:00Z", "xmlid": "stb_het_1h_hfl(5)"}, "stb_het_1h_hfl6": {"__spz_name__": "29.5-33.4 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1h_hfl(6)", "dataset": "stb-het-1h", "index1": "6", "is_public": "True", "name": "29.5-33.4 MeV", "parameter": "stb_het_1h_hfl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T16:00:00Z", "xmlid": "stb_het_1h_hfl(6)"}, "stb_het_1h_hfl7": {"__spz_name__": "33.4-35.8 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1h_hfl(7)", "dataset": "stb-het-1h", "index1": "7", "is_public": "True", "name": "33.4-35.8 MeV", "parameter": "stb_het_1h_hfl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T16:00:00Z", "xmlid": "stb_het_1h_hfl(7)"}, "stb_het_1h_hfl8": {"__spz_name__": "35.5-40.5 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1h_hfl(8)", "dataset": "stb-het-1h", "index1": "8", "is_public": "True", "name": "35.5-40.5 MeV", "parameter": "stb_het_1h_hfl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T16:00:00Z", "xmlid": "stb_het_1h_hfl(8)"}, "stb_het_1h_hfl9": {"__spz_name__": "40.0-60.0 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1h_hfl(9)", "dataset": "stb-het-1h", "index1": "9", "is_public": "True", "name": "40.0-60.0 MeV", "parameter": "stb_het_1h_hfl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T16:00:00Z", "xmlid": "stb_het_1h_hfl(9)"}, "stop_date": "2014-09-27T16:00:00Z", "units": "1/(cm2-sr-sec-MeV)", "xmlid": "stb_het_1h_hfl"}, "stb_het_1h_hflu": {"__spz_name__": "h+ flux uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_het_1h_hflu", "dataset": "stb-het-1h", "display_type": "timeseries", "is_public": "True", "name": "h+ flux uncertainty", "size": "11", "start_date": "2006-12-01T00:00:00Z", "stb_het_1h_hflu0": {"__spz_name__": "13.6-15.1 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1h_hflu(0)", "dataset": "stb-het-1h", "index1": "0", "is_public": "True", "name": "13.6-15.1 MeV", "parameter": "stb_het_1h_hflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T16:00:00Z", "xmlid": "stb_het_1h_hflu(0)"}, "stb_het_1h_hflu1": {"__spz_name__": "14.9-17.1 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1h_hflu(1)", "dataset": "stb-het-1h", "index1": "1", "is_public": "True", "name": "14.9-17.1 MeV", "parameter": "stb_het_1h_hflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T16:00:00Z", "xmlid": "stb_het_1h_hflu(1)"}, "stb_het_1h_hflu10": {"__spz_name__": "60.0-100.0 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1h_hflu(10)", "dataset": "stb-het-1h", "index1": "10", "is_public": "True", "name": "60.0-100.0 MeV", "parameter": "stb_het_1h_hflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T16:00:00Z", "xmlid": "stb_het_1h_hflu(10)"}, "stb_het_1h_hflu2": {"__spz_name__": "17.0-19.3 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1h_hflu(2)", "dataset": "stb-het-1h", "index1": "2", "is_public": "True", "name": "17.0-19.3 MeV", "parameter": "stb_het_1h_hflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T16:00:00Z", "xmlid": "stb_het_1h_hflu(2)"}, "stb_het_1h_hflu3": {"__spz_name__": "20.8-23.8 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1h_hflu(3)", "dataset": "stb-het-1h", "index1": "3", "is_public": "True", "name": "20.8-23.8 MeV", "parameter": "stb_het_1h_hflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T16:00:00Z", "xmlid": "stb_het_1h_hflu(3)"}, "stb_het_1h_hflu4": {"__spz_name__": "23.8-26.4 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1h_hflu(4)", "dataset": "stb-het-1h", "index1": "4", "is_public": "True", "name": "23.8-26.4 MeV", "parameter": "stb_het_1h_hflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T16:00:00Z", "xmlid": "stb_het_1h_hflu(4)"}, "stb_het_1h_hflu5": {"__spz_name__": "26.3-29.7 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1h_hflu(5)", "dataset": "stb-het-1h", "index1": "5", "is_public": "True", "name": "26.3-29.7 MeV", "parameter": "stb_het_1h_hflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T16:00:00Z", "xmlid": "stb_het_1h_hflu(5)"}, "stb_het_1h_hflu6": {"__spz_name__": "29.5-33.4 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1h_hflu(6)", "dataset": "stb-het-1h", "index1": "6", "is_public": "True", "name": "29.5-33.4 MeV", "parameter": "stb_het_1h_hflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T16:00:00Z", "xmlid": "stb_het_1h_hflu(6)"}, "stb_het_1h_hflu7": {"__spz_name__": "33.4-35.8 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1h_hflu(7)", "dataset": "stb-het-1h", "index1": "7", "is_public": "True", "name": "33.4-35.8 MeV", "parameter": "stb_het_1h_hflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T16:00:00Z", "xmlid": "stb_het_1h_hflu(7)"}, "stb_het_1h_hflu8": {"__spz_name__": "35.5-40.5 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1h_hflu(8)", "dataset": "stb-het-1h", "index1": "8", "is_public": "True", "name": "35.5-40.5 MeV", "parameter": "stb_het_1h_hflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T16:00:00Z", "xmlid": "stb_het_1h_hflu(8)"}, "stb_het_1h_hflu9": {"__spz_name__": "40.0-60.0 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1h_hflu(9)", "dataset": "stb-het-1h", "index1": "9", "is_public": "True", "name": "40.0-60.0 MeV", "parameter": "stb_het_1h_hflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T16:00:00Z", "xmlid": "stb_het_1h_hflu(9)"}, "stop_date": "2014-09-27T16:00:00Z", "units": "1/(cm2-sr-sec-MeV)", "xmlid": "stb_het_1h_hflu"}, "stop_date": "2014-09-27T16:00:00Z", "target": "Heliosphere.Remote1AU", "xmlid": "stb-het-1h"}, "stb_het_1min": {"__spz_name__": "1 minute", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "stb-het-1min", "att": "auto/stb-het-1min", "dataSource": "CDAWeb", "desc": "electrons and protons flux 1 minute rate
Sampling: 60S
Provider: CDAWeb", "is_public": "True", "lastModificationDate": "2021-04-20T15:01:19Z", "lastUpdate": "2021-04-20T15:01:18Z", "measurement_type": "EnergeticParticles", "name": "1 minute", "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/STEREO-B/HET/stb-het-1min", "start_date": "2006-12-01T00:00:00Z", "stb_het_1min_efl": {"__spz_name__": "e- flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_het_1min_efl", "dataset": "stb-het-1min", "display_type": "timeseries", "is_public": "True", "name": "e- flux", "size": "3", "start_date": "2006-12-01T00:00:00Z", "stb_het_1min_efl0": {"__spz_name__": "0.7-1.4 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1min_efl(0)", "dataset": "stb-het-1min", "index1": "0", "is_public": "True", "name": "0.7-1.4 MeV", "parameter": "stb_het_1min_efl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T16:28:00Z", "xmlid": "stb_het_1min_efl(0)"}, "stb_het_1min_efl1": {"__spz_name__": "1.4-2.8 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1min_efl(1)", "dataset": "stb-het-1min", "index1": "1", "is_public": "True", "name": "1.4-2.8 MeV", "parameter": "stb_het_1min_efl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T16:28:00Z", "xmlid": "stb_het_1min_efl(1)"}, "stb_het_1min_efl2": {"__spz_name__": "2.8-4.0 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1min_efl(2)", "dataset": "stb-het-1min", "index1": "2", "is_public": "True", "name": "2.8-4.0 MeV", "parameter": "stb_het_1min_efl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T16:28:00Z", "xmlid": "stb_het_1min_efl(2)"}, "stop_date": "2014-09-27T16:28:00Z", "units": "1/(cm2-sr-sec-MeV)", "xmlid": "stb_het_1min_efl"}, "stb_het_1min_eflu": {"__spz_name__": "e- flux uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_het_1min_eflu", "dataset": "stb-het-1min", "display_type": "timeseries", "is_public": "True", "name": "e- flux uncertainty", "size": "3", "start_date": "2006-12-01T00:00:00Z", "stb_het_1min_eflu0": {"__spz_name__": "0.7-1.4 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1min_eflu(0)", "dataset": "stb-het-1min", "index1": "0", "is_public": "True", "name": "0.7-1.4 MeV", "parameter": "stb_het_1min_eflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T16:28:00Z", "xmlid": "stb_het_1min_eflu(0)"}, "stb_het_1min_eflu1": {"__spz_name__": "1.4-2.8 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1min_eflu(1)", "dataset": "stb-het-1min", "index1": "1", "is_public": "True", "name": "1.4-2.8 MeV", "parameter": "stb_het_1min_eflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T16:28:00Z", "xmlid": "stb_het_1min_eflu(1)"}, "stb_het_1min_eflu2": {"__spz_name__": "2.8-4.0 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1min_eflu(2)", "dataset": "stb-het-1min", "index1": "2", "is_public": "True", "name": "2.8-4.0 MeV", "parameter": "stb_het_1min_eflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T16:28:00Z", "xmlid": "stb_het_1min_eflu(2)"}, "stop_date": "2014-09-27T16:28:00Z", "units": "1/(cm2-sr-sec-MeV)", "xmlid": "stb_het_1min_eflu"}, "stb_het_1min_hfl": {"__spz_name__": "h+ flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_het_1min_hfl", "dataset": "stb-het-1min", "display_type": "timeseries", "is_public": "True", "name": "h+ flux", "size": "11", "start_date": "2006-12-01T00:00:00Z", "stb_het_1min_hfl0": {"__spz_name__": "13.6-15.1 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1min_hfl(0)", "dataset": "stb-het-1min", "index1": "0", "is_public": "True", "name": "13.6-15.1 MeV", "parameter": "stb_het_1min_hfl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T16:28:00Z", "xmlid": "stb_het_1min_hfl(0)"}, "stb_het_1min_hfl1": {"__spz_name__": "14.9-17.1 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1min_hfl(1)", "dataset": "stb-het-1min", "index1": "1", "is_public": "True", "name": "14.9-17.1 MeV", "parameter": "stb_het_1min_hfl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T16:28:00Z", "xmlid": "stb_het_1min_hfl(1)"}, "stb_het_1min_hfl10": {"__spz_name__": "60.0-100.0 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1min_hfl(10)", "dataset": "stb-het-1min", "index1": "10", "is_public": "True", "name": "60.0-100.0 MeV", "parameter": "stb_het_1min_hfl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T16:28:00Z", "xmlid": "stb_het_1min_hfl(10)"}, "stb_het_1min_hfl2": {"__spz_name__": "17.0-19.3 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1min_hfl(2)", "dataset": "stb-het-1min", "index1": "2", "is_public": "True", "name": "17.0-19.3 MeV", "parameter": "stb_het_1min_hfl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T16:28:00Z", "xmlid": "stb_het_1min_hfl(2)"}, "stb_het_1min_hfl3": {"__spz_name__": "20.8-23.8 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1min_hfl(3)", "dataset": "stb-het-1min", "index1": "3", "is_public": "True", "name": "20.8-23.8 MeV", "parameter": "stb_het_1min_hfl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T16:28:00Z", "xmlid": "stb_het_1min_hfl(3)"}, "stb_het_1min_hfl4": {"__spz_name__": "23.8-26.4 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1min_hfl(4)", "dataset": "stb-het-1min", "index1": "4", "is_public": "True", "name": "23.8-26.4 MeV", "parameter": "stb_het_1min_hfl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T16:28:00Z", "xmlid": "stb_het_1min_hfl(4)"}, "stb_het_1min_hfl5": {"__spz_name__": "26.3-29.7 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1min_hfl(5)", "dataset": "stb-het-1min", "index1": "5", "is_public": "True", "name": "26.3-29.7 MeV", "parameter": "stb_het_1min_hfl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T16:28:00Z", "xmlid": "stb_het_1min_hfl(5)"}, "stb_het_1min_hfl6": {"__spz_name__": "29.5-33.4 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1min_hfl(6)", "dataset": "stb-het-1min", "index1": "6", "is_public": "True", "name": "29.5-33.4 MeV", "parameter": "stb_het_1min_hfl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T16:28:00Z", "xmlid": "stb_het_1min_hfl(6)"}, "stb_het_1min_hfl7": {"__spz_name__": "33.4-35.8 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1min_hfl(7)", "dataset": "stb-het-1min", "index1": "7", "is_public": "True", "name": "33.4-35.8 MeV", "parameter": "stb_het_1min_hfl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T16:28:00Z", "xmlid": "stb_het_1min_hfl(7)"}, "stb_het_1min_hfl8": {"__spz_name__": "35.5-40.5 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1min_hfl(8)", "dataset": "stb-het-1min", "index1": "8", "is_public": "True", "name": "35.5-40.5 MeV", "parameter": "stb_het_1min_hfl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T16:28:00Z", "xmlid": "stb_het_1min_hfl(8)"}, "stb_het_1min_hfl9": {"__spz_name__": "40.0-60.0 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1min_hfl(9)", "dataset": "stb-het-1min", "index1": "9", "is_public": "True", "name": "40.0-60.0 MeV", "parameter": "stb_het_1min_hfl", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T16:28:00Z", "xmlid": "stb_het_1min_hfl(9)"}, "stop_date": "2014-09-27T16:28:00Z", "units": "1/(cm2-sr-sec-MeV)", "xmlid": "stb_het_1min_hfl"}, "stb_het_1min_hflu": {"__spz_name__": "h+ flux uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_het_1min_hflu", "dataset": "stb-het-1min", "display_type": "timeseries", "is_public": "True", "name": "h+ flux uncertainty", "size": "11", "start_date": "2006-12-01T00:00:00Z", "stb_het_1min_hflu0": {"__spz_name__": "13.6-15.1 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1min_hflu(0)", "dataset": "stb-het-1min", "index1": "0", "is_public": "True", "name": "13.6-15.1 MeV", "parameter": "stb_het_1min_hflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T16:28:00Z", "xmlid": "stb_het_1min_hflu(0)"}, "stb_het_1min_hflu1": {"__spz_name__": "14.9-17.1 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1min_hflu(1)", "dataset": "stb-het-1min", "index1": "1", "is_public": "True", "name": "14.9-17.1 MeV", "parameter": "stb_het_1min_hflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T16:28:00Z", "xmlid": "stb_het_1min_hflu(1)"}, "stb_het_1min_hflu10": {"__spz_name__": "60.0-100.0 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1min_hflu(10)", "dataset": "stb-het-1min", "index1": "10", "is_public": "True", "name": "60.0-100.0 MeV", "parameter": "stb_het_1min_hflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T16:28:00Z", "xmlid": "stb_het_1min_hflu(10)"}, "stb_het_1min_hflu2": {"__spz_name__": "17.0-19.3 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1min_hflu(2)", "dataset": "stb-het-1min", "index1": "2", "is_public": "True", "name": "17.0-19.3 MeV", "parameter": "stb_het_1min_hflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T16:28:00Z", "xmlid": "stb_het_1min_hflu(2)"}, "stb_het_1min_hflu3": {"__spz_name__": "20.8-23.8 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1min_hflu(3)", "dataset": "stb-het-1min", "index1": "3", "is_public": "True", "name": "20.8-23.8 MeV", "parameter": "stb_het_1min_hflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T16:28:00Z", "xmlid": "stb_het_1min_hflu(3)"}, "stb_het_1min_hflu4": {"__spz_name__": "23.8-26.4 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1min_hflu(4)", "dataset": "stb-het-1min", "index1": "4", "is_public": "True", "name": "23.8-26.4 MeV", "parameter": "stb_het_1min_hflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T16:28:00Z", "xmlid": "stb_het_1min_hflu(4)"}, "stb_het_1min_hflu5": {"__spz_name__": "26.3-29.7 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1min_hflu(5)", "dataset": "stb-het-1min", "index1": "5", "is_public": "True", "name": "26.3-29.7 MeV", "parameter": "stb_het_1min_hflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T16:28:00Z", "xmlid": "stb_het_1min_hflu(5)"}, "stb_het_1min_hflu6": {"__spz_name__": "29.5-33.4 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1min_hflu(6)", "dataset": "stb-het-1min", "index1": "6", "is_public": "True", "name": "29.5-33.4 MeV", "parameter": "stb_het_1min_hflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T16:28:00Z", "xmlid": "stb_het_1min_hflu(6)"}, "stb_het_1min_hflu7": {"__spz_name__": "33.4-35.8 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1min_hflu(7)", "dataset": "stb-het-1min", "index1": "7", "is_public": "True", "name": "33.4-35.8 MeV", "parameter": "stb_het_1min_hflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T16:28:00Z", "xmlid": "stb_het_1min_hflu(7)"}, "stb_het_1min_hflu8": {"__spz_name__": "35.5-40.5 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1min_hflu(8)", "dataset": "stb-het-1min", "index1": "8", "is_public": "True", "name": "35.5-40.5 MeV", "parameter": "stb_het_1min_hflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T16:28:00Z", "xmlid": "stb_het_1min_hflu(8)"}, "stb_het_1min_hflu9": {"__spz_name__": "40.0-60.0 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_het_1min_hflu(9)", "dataset": "stb-het-1min", "index1": "9", "is_public": "True", "name": "40.0-60.0 MeV", "parameter": "stb_het_1min_hflu", "start_date": "2006-12-01T00:00:00Z", "stop_date": "2014-09-27T16:28:00Z", "xmlid": "stb_het_1min_hflu(9)"}, "stop_date": "2014-09-27T16:28:00Z", "units": "1/(cm2-sr-sec-MeV)", "xmlid": "stb_het_1min_hflu"}, "stop_date": "2014-09-27T16:28:00Z", "target": "Heliosphere.Remote1AU", "xmlid": "stb-het-1min"}, "xmlid": "STEREO-B_het"}, "LET": {"__spz_name__": "LET", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "STEREO-B_let", "att": "auto/STEREO-B_let", "desc": "Low Energy Telescope
ParticleDetector", "is_public": "True", "name": "LET", "stb_let_10min": {"__spz_name__": "10 min", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "stb-let-10min", "att": "auto/stb-let-10min", "dataSource": "Caltech Space Radiation Lab", "desc": "Ion flux 10 minutes rate
Sampling: 600S
Provider: Caltech Space Radiation Lab", "is_public": "True", "lastModificationDate": "2023-01-23T08:00:43Z", "lastUpdate": "2023-01-23T08:00:12Z", "measurement_type": "EnergeticParticles", "name": "10 min", "processing_level": "Calibrated", "sampling": "600S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/STEREO-B/LET/stb-let-10min", "start_date": "2006-11-13T00:00:00Z", "stb_let_10m_Alcr": {"__spz_name__": "Al counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_10m_Alcr", "dataset": "stb-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "Al counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:50:00Z", "units": "counts/hour", "xmlid": "stb_let_10m_Alcr"}, "stb_let_10m_Alf": {"__spz_name__": "Al flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_10m_Alf", "dataset": "stb-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "Al flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:50:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_10m_Alf"}, "stb_let_10m_Alu": {"__spz_name__": "Al uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_10m_Alu", "dataset": "stb-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "Al uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:50:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_10m_Alu"}, "stb_let_10m_Arcr": {"__spz_name__": "Ar counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_10m_Arcr", "dataset": "stb-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "Ar counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:50:00Z", "units": "counts/hour", "xmlid": "stb_let_10m_Arcr"}, "stb_let_10m_Arf": {"__spz_name__": "Ar flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_10m_Arf", "dataset": "stb-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "Ar flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:50:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_10m_Arf"}, "stb_let_10m_Aru": {"__spz_name__": "Ar uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_10m_Aru", "dataset": "stb-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "Ar uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:50:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_10m_Aru"}, "stb_let_10m_Cacr": {"__spz_name__": "Ca counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_10m_Cacr", "dataset": "stb-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "Ca counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:50:00Z", "units": "counts/hour", "xmlid": "stb_let_10m_Cacr"}, "stb_let_10m_Caf": {"__spz_name__": "Ca flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_10m_Caf", "dataset": "stb-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "Ca flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:50:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_10m_Caf"}, "stb_let_10m_Cau": {"__spz_name__": "Ca uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_10m_Cau", "dataset": "stb-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "Ca uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:50:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_10m_Cau"}, "stb_let_10m_Ccr": {"__spz_name__": "C counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_10m_Ccr", "dataset": "stb-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "C counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:50:00Z", "units": "counts/hour", "xmlid": "stb_let_10m_Ccr"}, "stb_let_10m_Cf": {"__spz_name__": "C flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_10m_Cf", "dataset": "stb-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "C flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:50:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_10m_Cf"}, "stb_let_10m_Cu": {"__spz_name__": "C uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_10m_Cu", "dataset": "stb-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "C uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:50:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_10m_Cu"}, "stb_let_10m_Fecr": {"__spz_name__": "Fe counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_10m_Fecr", "dataset": "stb-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "Fe counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:50:00Z", "units": "counts/hour", "xmlid": "stb_let_10m_Fecr"}, "stb_let_10m_Fef": {"__spz_name__": "Fe flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_10m_Fef", "dataset": "stb-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "Fe flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:50:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_10m_Fef"}, "stb_let_10m_Feu": {"__spz_name__": "Fe uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_10m_Feu", "dataset": "stb-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "Fe uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:50:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_10m_Feu"}, "stb_let_10m_Hcr": {"__spz_name__": "H counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_10m_Hcr", "dataset": "stb-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "H counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:50:00Z", "units": "counts/hour", "xmlid": "stb_let_10m_Hcr"}, "stb_let_10m_He4cr": {"__spz_name__": "He4 counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_10m_He4cr", "dataset": "stb-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "He4 counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:50:00Z", "units": "counts/hour", "xmlid": "stb_let_10m_He4cr"}, "stb_let_10m_He4f": {"__spz_name__": "He4 flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_10m_He4f", "dataset": "stb-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "He4 flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:50:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_10m_He4f"}, "stb_let_10m_He4u": {"__spz_name__": "He4 uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_10m_He4u", "dataset": "stb-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "He4 uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:50:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_10m_He4u"}, "stb_let_10m_Hf": {"__spz_name__": "H flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_10m_Hf", "dataset": "stb-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "H flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:50:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_10m_Hf"}, "stb_let_10m_Hu": {"__spz_name__": "H uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_10m_Hu", "dataset": "stb-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "H uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:50:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_10m_Hu"}, "stb_let_10m_Mgcr": {"__spz_name__": "Mg counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_10m_Mgcr", "dataset": "stb-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "Mg counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:50:00Z", "units": "counts/hour", "xmlid": "stb_let_10m_Mgcr"}, "stb_let_10m_Mgf": {"__spz_name__": "Mg flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_10m_Mgf", "dataset": "stb-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "Mg flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:50:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_10m_Mgf"}, "stb_let_10m_Mgu": {"__spz_name__": "Mg uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_10m_Mgu", "dataset": "stb-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "Mg uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:50:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_10m_Mgu"}, "stb_let_10m_Nacr": {"__spz_name__": "Na counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_10m_Nacr", "dataset": "stb-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "Na counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:50:00Z", "units": "counts/hour", "xmlid": "stb_let_10m_Nacr"}, "stb_let_10m_Naf": {"__spz_name__": "Na flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_10m_Naf", "dataset": "stb-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "Na flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:50:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_10m_Naf"}, "stb_let_10m_Nau": {"__spz_name__": "Na uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_10m_Nau", "dataset": "stb-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "Na uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:50:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_10m_Nau"}, "stb_let_10m_Ncr": {"__spz_name__": "N counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_10m_Ncr", "dataset": "stb-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "N counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:50:00Z", "units": "counts/hour", "xmlid": "stb_let_10m_Ncr"}, "stb_let_10m_Necr": {"__spz_name__": "Ne counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_10m_Necr", "dataset": "stb-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "Ne counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:50:00Z", "units": "counts/hour", "xmlid": "stb_let_10m_Necr"}, "stb_let_10m_Nef": {"__spz_name__": "Ne flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_10m_Nef", "dataset": "stb-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "Ne flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:50:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_10m_Nef"}, "stb_let_10m_Neu": {"__spz_name__": "Ne uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_10m_Neu", "dataset": "stb-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "Ne uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:50:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_10m_Neu"}, "stb_let_10m_Nf": {"__spz_name__": "N flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_10m_Nf", "dataset": "stb-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "N flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:50:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_10m_Nf"}, "stb_let_10m_Nicr": {"__spz_name__": "Ni counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_10m_Nicr", "dataset": "stb-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "Ni counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:50:00Z", "units": "counts/hour", "xmlid": "stb_let_10m_Nicr"}, "stb_let_10m_Nif": {"__spz_name__": "Ni flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_10m_Nif", "dataset": "stb-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "Ni flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:50:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_10m_Nif"}, "stb_let_10m_Niu": {"__spz_name__": "Ni uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_10m_Niu", "dataset": "stb-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "Ni uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:50:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_10m_Niu"}, "stb_let_10m_Nu": {"__spz_name__": "N uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_10m_Nu", "dataset": "stb-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "N uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:50:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_10m_Nu"}, "stb_let_10m_Ocr": {"__spz_name__": "O counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_10m_Ocr", "dataset": "stb-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "O counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:50:00Z", "units": "counts/hour", "xmlid": "stb_let_10m_Ocr"}, "stb_let_10m_Of": {"__spz_name__": "O flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_10m_Of", "dataset": "stb-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "O flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:50:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_10m_Of"}, "stb_let_10m_Ou": {"__spz_name__": "O uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_10m_Ou", "dataset": "stb-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "O uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:50:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_10m_Ou"}, "stb_let_10m_Scr": {"__spz_name__": "S counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_10m_Scr", "dataset": "stb-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "S counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:50:00Z", "units": "counts/hour", "xmlid": "stb_let_10m_Scr"}, "stb_let_10m_Sf": {"__spz_name__": "S flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_10m_Sf", "dataset": "stb-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "S flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:50:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_10m_Sf"}, "stb_let_10m_Sicr": {"__spz_name__": "Si counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_10m_Sicr", "dataset": "stb-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "Si counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:50:00Z", "units": "counts/hour", "xmlid": "stb_let_10m_Sicr"}, "stb_let_10m_Sif": {"__spz_name__": "Si flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_10m_Sif", "dataset": "stb-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "Si flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:50:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_10m_Sif"}, "stb_let_10m_Siu": {"__spz_name__": "Si uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_10m_Siu", "dataset": "stb-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "Si uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:50:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_10m_Siu"}, "stb_let_10m_Su": {"__spz_name__": "S uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_10m_Su", "dataset": "stb-let-10min", "display_type": "spectrogram", "is_public": "True", "name": "S uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:50:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_10m_Su"}, "stop_date": "2014-09-27T23:50:00Z", "target": "Heliosphere.Remote1AU", "xmlid": "stb-let-10min"}, "stb_let_1day": {"__spz_name__": "1 day", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "stb-let-1day", "att": "auto/stb-let-1day", "dataSource": "Caltech Space Radiation Lab", "desc": "Ion flux 1 day rate
Sampling: 24H
Provider: Caltech Space Radiation Lab", "is_public": "True", "lastModificationDate": "2023-01-23T08:07:42Z", "lastUpdate": "2023-01-23T08:07:41Z", "measurement_type": "EnergeticParticles", "name": "1 day", "processing_level": "Calibrated", "sampling": "24H", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/STEREO-B/LET/stb-let-1day", "start_date": "2006-11-13T00:00:00Z", "stb_let_1d_Alcr": {"__spz_name__": "Al counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1d_Alcr", "dataset": "stb-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "Al counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T00:00:00Z", "units": "counts/hour", "xmlid": "stb_let_1d_Alcr"}, "stb_let_1d_Alf": {"__spz_name__": "Al flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1d_Alf", "dataset": "stb-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "Al flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T00:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1d_Alf"}, "stb_let_1d_Alu": {"__spz_name__": "Al uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1d_Alu", "dataset": "stb-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "Al uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T00:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1d_Alu"}, "stb_let_1d_Arcr": {"__spz_name__": "Ar counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1d_Arcr", "dataset": "stb-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "Ar counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T00:00:00Z", "units": "counts/hour", "xmlid": "stb_let_1d_Arcr"}, "stb_let_1d_Arf": {"__spz_name__": "Ar flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1d_Arf", "dataset": "stb-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "Ar flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T00:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1d_Arf"}, "stb_let_1d_Aru": {"__spz_name__": "Ar uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1d_Aru", "dataset": "stb-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "Ar uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T00:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1d_Aru"}, "stb_let_1d_Cacr": {"__spz_name__": "Ca counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1d_Cacr", "dataset": "stb-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "Ca counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T00:00:00Z", "units": "counts/hour", "xmlid": "stb_let_1d_Cacr"}, "stb_let_1d_Caf": {"__spz_name__": "Ca flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1d_Caf", "dataset": "stb-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "Ca flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T00:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1d_Caf"}, "stb_let_1d_Cau": {"__spz_name__": "Ca uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1d_Cau", "dataset": "stb-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "Ca uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T00:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1d_Cau"}, "stb_let_1d_Ccr": {"__spz_name__": "C counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1d_Ccr", "dataset": "stb-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "C counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T00:00:00Z", "units": "counts/hour", "xmlid": "stb_let_1d_Ccr"}, "stb_let_1d_Cf": {"__spz_name__": "C flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1d_Cf", "dataset": "stb-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "C flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T00:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1d_Cf"}, "stb_let_1d_Cu": {"__spz_name__": "C uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1d_Cu", "dataset": "stb-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "C uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T00:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1d_Cu"}, "stb_let_1d_Fecr": {"__spz_name__": "Fe counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1d_Fecr", "dataset": "stb-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "Fe counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T00:00:00Z", "units": "counts/hour", "xmlid": "stb_let_1d_Fecr"}, "stb_let_1d_Fef": {"__spz_name__": "Fe flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1d_Fef", "dataset": "stb-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "Fe flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T00:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1d_Fef"}, "stb_let_1d_Feu": {"__spz_name__": "Fe uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1d_Feu", "dataset": "stb-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "Fe uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T00:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1d_Feu"}, "stb_let_1d_Hcr": {"__spz_name__": "H counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1d_Hcr", "dataset": "stb-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "H counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T00:00:00Z", "units": "counts/hour", "xmlid": "stb_let_1d_Hcr"}, "stb_let_1d_He4cr": {"__spz_name__": "He4 counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1d_He4cr", "dataset": "stb-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "He4 counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T00:00:00Z", "units": "counts/hour", "xmlid": "stb_let_1d_He4cr"}, "stb_let_1d_He4f": {"__spz_name__": "He4 flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1d_He4f", "dataset": "stb-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "He4 flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T00:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1d_He4f"}, "stb_let_1d_He4u": {"__spz_name__": "He4 uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1d_He4u", "dataset": "stb-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "He4 uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T00:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1d_He4u"}, "stb_let_1d_Hf": {"__spz_name__": "H flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1d_Hf", "dataset": "stb-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "H flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T00:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1d_Hf"}, "stb_let_1d_Hu": {"__spz_name__": "H uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1d_Hu", "dataset": "stb-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "H uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T00:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1d_Hu"}, "stb_let_1d_Mgcr": {"__spz_name__": "Mg counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1d_Mgcr", "dataset": "stb-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "Mg counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T00:00:00Z", "units": "counts/hour", "xmlid": "stb_let_1d_Mgcr"}, "stb_let_1d_Mgf": {"__spz_name__": "Mg flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1d_Mgf", "dataset": "stb-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "Mg flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T00:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1d_Mgf"}, "stb_let_1d_Mgu": {"__spz_name__": "Mg uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1d_Mgu", "dataset": "stb-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "Mg uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T00:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1d_Mgu"}, "stb_let_1d_Nacr": {"__spz_name__": "Na counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1d_Nacr", "dataset": "stb-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "Na counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T00:00:00Z", "units": "counts/hour", "xmlid": "stb_let_1d_Nacr"}, "stb_let_1d_Naf": {"__spz_name__": "Na flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1d_Naf", "dataset": "stb-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "Na flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T00:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1d_Naf"}, "stb_let_1d_Nau": {"__spz_name__": "Na uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1d_Nau", "dataset": "stb-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "Na uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T00:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1d_Nau"}, "stb_let_1d_Ncr": {"__spz_name__": "N counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1d_Ncr", "dataset": "stb-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "N counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T00:00:00Z", "units": "counts/hour", "xmlid": "stb_let_1d_Ncr"}, "stb_let_1d_Necr": {"__spz_name__": "Ne counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1d_Necr", "dataset": "stb-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "Ne counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T00:00:00Z", "units": "counts/hour", "xmlid": "stb_let_1d_Necr"}, "stb_let_1d_Nef": {"__spz_name__": "Ne flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1d_Nef", "dataset": "stb-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "Ne flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T00:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1d_Nef"}, "stb_let_1d_Neu": {"__spz_name__": "Ne uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1d_Neu", "dataset": "stb-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "Ne uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T00:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1d_Neu"}, "stb_let_1d_Nf": {"__spz_name__": "N flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1d_Nf", "dataset": "stb-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "N flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T00:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1d_Nf"}, "stb_let_1d_Nicr": {"__spz_name__": "Ni counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1d_Nicr", "dataset": "stb-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "Ni counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T00:00:00Z", "units": "counts/hour", "xmlid": "stb_let_1d_Nicr"}, "stb_let_1d_Nif": {"__spz_name__": "Ni flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1d_Nif", "dataset": "stb-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "Ni flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T00:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1d_Nif"}, "stb_let_1d_Niu": {"__spz_name__": "Ni uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1d_Niu", "dataset": "stb-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "Ni uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T00:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1d_Niu"}, "stb_let_1d_Nu": {"__spz_name__": "N uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1d_Nu", "dataset": "stb-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "N uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T00:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1d_Nu"}, "stb_let_1d_Ocr": {"__spz_name__": "O counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1d_Ocr", "dataset": "stb-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "O counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T00:00:00Z", "units": "counts/hour", "xmlid": "stb_let_1d_Ocr"}, "stb_let_1d_Of": {"__spz_name__": "O flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1d_Of", "dataset": "stb-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "O flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T00:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1d_Of"}, "stb_let_1d_Ou": {"__spz_name__": "O uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1d_Ou", "dataset": "stb-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "O uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T00:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1d_Ou"}, "stb_let_1d_Scr": {"__spz_name__": "S counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1d_Scr", "dataset": "stb-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "S counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T00:00:00Z", "units": "counts/hour", "xmlid": "stb_let_1d_Scr"}, "stb_let_1d_Sf": {"__spz_name__": "S flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1d_Sf", "dataset": "stb-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "S flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T00:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1d_Sf"}, "stb_let_1d_Sicr": {"__spz_name__": "Si counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1d_Sicr", "dataset": "stb-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "Si counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T00:00:00Z", "units": "counts/hour", "xmlid": "stb_let_1d_Sicr"}, "stb_let_1d_Sif": {"__spz_name__": "Si flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1d_Sif", "dataset": "stb-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "Si flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T00:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1d_Sif"}, "stb_let_1d_Siu": {"__spz_name__": "Si uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1d_Siu", "dataset": "stb-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "Si uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T00:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1d_Siu"}, "stb_let_1d_Su": {"__spz_name__": "S uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1d_Su", "dataset": "stb-let-1day", "display_type": "spectrogram", "is_public": "True", "name": "S uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T00:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1d_Su"}, "stop_date": "2014-09-27T00:00:00Z", "target": "Heliosphere.Remote1AU", "xmlid": "stb-let-1day"}, "stb_let_1hour": {"__spz_name__": "1 hour", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "stb-let-1hour", "att": "auto/stb-let-1hour", "dataSource": "Caltech Space Radiation Lab", "desc": "Ion flux 1 hour rate
Sampling: 1H
Provider: Caltech Space Radiation Lab", "is_public": "True", "lastModificationDate": "2023-01-23T08:04:58Z", "lastUpdate": "2023-01-23T08:04:53Z", "measurement_type": "EnergeticParticles", "name": "1 hour", "processing_level": "Calibrated", "sampling": "1H", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/STEREO-B/LET/stb-let-1hour", "start_date": "2006-11-13T00:00:00Z", "stb_let_1h_Alcr": {"__spz_name__": "Al counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1h_Alcr", "dataset": "stb-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "Al counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:00:00Z", "units": "counts/hour", "xmlid": "stb_let_1h_Alcr"}, "stb_let_1h_Alf": {"__spz_name__": "Al flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1h_Alf", "dataset": "stb-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "Al flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1h_Alf"}, "stb_let_1h_Alu": {"__spz_name__": "Al uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1h_Alu", "dataset": "stb-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "Al uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1h_Alu"}, "stb_let_1h_Arcr": {"__spz_name__": "Ar counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1h_Arcr", "dataset": "stb-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "Ar counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:00:00Z", "units": "counts/hour", "xmlid": "stb_let_1h_Arcr"}, "stb_let_1h_Arf": {"__spz_name__": "Ar flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1h_Arf", "dataset": "stb-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "Ar flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1h_Arf"}, "stb_let_1h_Aru": {"__spz_name__": "Ar uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1h_Aru", "dataset": "stb-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "Ar uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1h_Aru"}, "stb_let_1h_Cacr": {"__spz_name__": "Ca counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1h_Cacr", "dataset": "stb-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "Ca counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:00:00Z", "units": "counts/hour", "xmlid": "stb_let_1h_Cacr"}, "stb_let_1h_Caf": {"__spz_name__": "Ca flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1h_Caf", "dataset": "stb-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "Ca flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1h_Caf"}, "stb_let_1h_Cau": {"__spz_name__": "Ca uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1h_Cau", "dataset": "stb-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "Ca uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1h_Cau"}, "stb_let_1h_Ccr": {"__spz_name__": "C counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1h_Ccr", "dataset": "stb-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "C counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:00:00Z", "units": "counts/hour", "xmlid": "stb_let_1h_Ccr"}, "stb_let_1h_Cf": {"__spz_name__": "C flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1h_Cf", "dataset": "stb-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "C flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1h_Cf"}, "stb_let_1h_Cu": {"__spz_name__": "C uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1h_Cu", "dataset": "stb-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "C uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1h_Cu"}, "stb_let_1h_Fecr": {"__spz_name__": "Fe counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1h_Fecr", "dataset": "stb-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "Fe counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:00:00Z", "units": "counts/hour", "xmlid": "stb_let_1h_Fecr"}, "stb_let_1h_Fef": {"__spz_name__": "Fe flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1h_Fef", "dataset": "stb-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "Fe flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1h_Fef"}, "stb_let_1h_Feu": {"__spz_name__": "Fe uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1h_Feu", "dataset": "stb-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "Fe uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1h_Feu"}, "stb_let_1h_Hcr": {"__spz_name__": "H counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1h_Hcr", "dataset": "stb-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "H counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:00:00Z", "units": "counts/hour", "xmlid": "stb_let_1h_Hcr"}, "stb_let_1h_He4cr": {"__spz_name__": "He4 counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1h_He4cr", "dataset": "stb-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "He4 counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:00:00Z", "units": "counts/hour", "xmlid": "stb_let_1h_He4cr"}, "stb_let_1h_He4f": {"__spz_name__": "He4 flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1h_He4f", "dataset": "stb-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "He4 flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1h_He4f"}, "stb_let_1h_He4u": {"__spz_name__": "He4 uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1h_He4u", "dataset": "stb-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "He4 uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1h_He4u"}, "stb_let_1h_Hf": {"__spz_name__": "H flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1h_Hf", "dataset": "stb-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "H flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1h_Hf"}, "stb_let_1h_Hu": {"__spz_name__": "H uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1h_Hu", "dataset": "stb-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "H uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1h_Hu"}, "stb_let_1h_Mgcr": {"__spz_name__": "Mg counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1h_Mgcr", "dataset": "stb-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "Mg counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:00:00Z", "units": "counts/hour", "xmlid": "stb_let_1h_Mgcr"}, "stb_let_1h_Mgf": {"__spz_name__": "Mg flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1h_Mgf", "dataset": "stb-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "Mg flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1h_Mgf"}, "stb_let_1h_Mgu": {"__spz_name__": "Mg uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1h_Mgu", "dataset": "stb-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "Mg uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1h_Mgu"}, "stb_let_1h_Nacr": {"__spz_name__": "Na counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1h_Nacr", "dataset": "stb-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "Na counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:00:00Z", "units": "counts/hour", "xmlid": "stb_let_1h_Nacr"}, "stb_let_1h_Naf": {"__spz_name__": "Na flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1h_Naf", "dataset": "stb-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "Na flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1h_Naf"}, "stb_let_1h_Nau": {"__spz_name__": "Na uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1h_Nau", "dataset": "stb-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "Na uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1h_Nau"}, "stb_let_1h_Ncr": {"__spz_name__": "N counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1h_Ncr", "dataset": "stb-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "N counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:00:00Z", "units": "counts/hour", "xmlid": "stb_let_1h_Ncr"}, "stb_let_1h_Necr": {"__spz_name__": "Ne counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1h_Necr", "dataset": "stb-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "Ne counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:00:00Z", "units": "counts/hour", "xmlid": "stb_let_1h_Necr"}, "stb_let_1h_Nef": {"__spz_name__": "Ne flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1h_Nef", "dataset": "stb-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "Ne flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1h_Nef"}, "stb_let_1h_Neu": {"__spz_name__": "Ne uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1h_Neu", "dataset": "stb-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "Ne uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1h_Neu"}, "stb_let_1h_Nf": {"__spz_name__": "N flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1h_Nf", "dataset": "stb-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "N flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1h_Nf"}, "stb_let_1h_Nicr": {"__spz_name__": "Ni counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1h_Nicr", "dataset": "stb-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "Ni counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:00:00Z", "units": "counts/hour", "xmlid": "stb_let_1h_Nicr"}, "stb_let_1h_Nif": {"__spz_name__": "Ni flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1h_Nif", "dataset": "stb-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "Ni flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1h_Nif"}, "stb_let_1h_Niu": {"__spz_name__": "Ni uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1h_Niu", "dataset": "stb-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "Ni uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1h_Niu"}, "stb_let_1h_Nu": {"__spz_name__": "N uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1h_Nu", "dataset": "stb-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "N uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1h_Nu"}, "stb_let_1h_Ocr": {"__spz_name__": "O counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1h_Ocr", "dataset": "stb-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "O counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:00:00Z", "units": "counts/hour", "xmlid": "stb_let_1h_Ocr"}, "stb_let_1h_Of": {"__spz_name__": "O flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1h_Of", "dataset": "stb-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "O flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1h_Of"}, "stb_let_1h_Ou": {"__spz_name__": "O uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1h_Ou", "dataset": "stb-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "O uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1h_Ou"}, "stb_let_1h_Scr": {"__spz_name__": "S counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1h_Scr", "dataset": "stb-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "S counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:00:00Z", "units": "counts/hour", "xmlid": "stb_let_1h_Scr"}, "stb_let_1h_Sf": {"__spz_name__": "S flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1h_Sf", "dataset": "stb-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "S flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1h_Sf"}, "stb_let_1h_Sicr": {"__spz_name__": "Si counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1h_Sicr", "dataset": "stb-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "Si counts", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:00:00Z", "units": "counts/hour", "xmlid": "stb_let_1h_Sicr"}, "stb_let_1h_Sif": {"__spz_name__": "Si flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1h_Sif", "dataset": "stb-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "Si flux", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1h_Sif"}, "stb_let_1h_Siu": {"__spz_name__": "Si uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1h_Siu", "dataset": "stb-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "Si uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1h_Siu"}, "stb_let_1h_Su": {"__spz_name__": "S uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1h_Su", "dataset": "stb-let-1hour", "display_type": "spectrogram", "is_public": "True", "name": "S uncertainty", "start_date": "2006-11-13T00:00:00Z", "stop_date": "2014-09-27T23:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1h_Su"}, "stop_date": "2014-09-27T23:00:00Z", "target": "Heliosphere.Remote1AU", "xmlid": "stb-let-1hour"}, "stb_let_1min": {"__spz_name__": "1 min", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "stb-let-1min", "att": "auto/stb-let-1min", "dataSource": "Caltech Space Radiation Lab", "desc": "Ion flux 1 minute rate
Sampling: 60S
Provider: Caltech Space Radiation Lab", "is_public": "True", "lastModificationDate": "2024-03-22T01:11:29Z", "lastUpdate": "2024-03-22T01:05:37Z", "measurement_type": "EnergeticParticles", "name": "1 min", "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/STEREO-B/LET/stb-let-1min", "start_date": "2006-11-13T20:07:26Z", "stb_let_1m_Alcr": {"__spz_name__": "Al counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1m_Alcr", "dataset": "stb-let-1min", "display_type": "spectrogram", "is_public": "True", "name": "Al counts", "start_date": "2006-11-13T20:07:26Z", "stop_date": "2014-09-27T16:26:26Z", "units": "counts/minute", "xmlid": "stb_let_1m_Alcr"}, "stb_let_1m_Alf": {"__spz_name__": "Al flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1m_Alf", "dataset": "stb-let-1min", "display_type": "spectrogram", "is_public": "True", "name": "Al flux", "start_date": "2006-11-13T20:07:26Z", "stop_date": "2014-09-27T16:26:26Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1m_Alf"}, "stb_let_1m_Arcr": {"__spz_name__": "Ar counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1m_Arcr", "dataset": "stb-let-1min", "display_type": "spectrogram", "is_public": "True", "name": "Ar counts", "start_date": "2006-11-13T20:07:26Z", "stop_date": "2014-09-27T16:26:26Z", "units": "counts/minute", "xmlid": "stb_let_1m_Arcr"}, "stb_let_1m_Arf": {"__spz_name__": "Ar flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1m_Arf", "dataset": "stb-let-1min", "display_type": "spectrogram", "is_public": "True", "name": "Ar flux", "start_date": "2006-11-13T20:07:26Z", "stop_date": "2014-09-27T16:26:26Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1m_Arf"}, "stb_let_1m_Cacr": {"__spz_name__": "Ca counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1m_Cacr", "dataset": "stb-let-1min", "display_type": "spectrogram", "is_public": "True", "name": "Ca counts", "start_date": "2006-11-13T20:07:26Z", "stop_date": "2014-09-27T16:26:26Z", "units": "counts/minute", "xmlid": "stb_let_1m_Cacr"}, "stb_let_1m_Caf": {"__spz_name__": "Ca flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1m_Caf", "dataset": "stb-let-1min", "display_type": "spectrogram", "is_public": "True", "name": "Ca flux", "start_date": "2006-11-13T20:07:26Z", "stop_date": "2014-09-27T16:26:26Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1m_Caf"}, "stb_let_1m_Ccr": {"__spz_name__": "C counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1m_Ccr", "dataset": "stb-let-1min", "display_type": "spectrogram", "is_public": "True", "name": "C counts", "start_date": "2006-11-13T20:07:26Z", "stop_date": "2014-09-27T16:26:26Z", "units": "counts/minute", "xmlid": "stb_let_1m_Ccr"}, "stb_let_1m_Cf": {"__spz_name__": "C flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1m_Cf", "dataset": "stb-let-1min", "display_type": "spectrogram", "is_public": "True", "name": "C flux", "start_date": "2006-11-13T20:07:26Z", "stop_date": "2014-09-27T16:26:26Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1m_Cf"}, "stb_let_1m_Fecr": {"__spz_name__": "Fe counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1m_Fecr", "dataset": "stb-let-1min", "display_type": "spectrogram", "is_public": "True", "name": "Fe counts", "start_date": "2006-11-13T20:07:26Z", "stop_date": "2014-09-27T16:26:26Z", "units": "counts/minute", "xmlid": "stb_let_1m_Fecr"}, "stb_let_1m_Fef": {"__spz_name__": "Fe flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1m_Fef", "dataset": "stb-let-1min", "display_type": "spectrogram", "is_public": "True", "name": "Fe flux", "start_date": "2006-11-13T20:07:26Z", "stop_date": "2014-09-27T16:26:26Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1m_Fef"}, "stb_let_1m_Hcr": {"__spz_name__": "H counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1m_Hcr", "dataset": "stb-let-1min", "display_type": "spectrogram", "is_public": "True", "name": "H counts", "start_date": "2006-11-13T20:07:26Z", "stop_date": "2014-09-27T16:26:26Z", "units": "counts/minute", "xmlid": "stb_let_1m_Hcr"}, "stb_let_1m_He3cr": {"__spz_name__": "He3 counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1m_He3cr", "dataset": "stb-let-1min", "display_type": "spectrogram", "is_public": "True", "name": "He3 counts", "start_date": "2006-11-13T20:07:26Z", "stop_date": "2014-09-27T16:26:26Z", "units": "counts/minute", "xmlid": "stb_let_1m_He3cr"}, "stb_let_1m_He3f": {"__spz_name__": "He3 flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1m_He3f", "dataset": "stb-let-1min", "display_type": "spectrogram", "is_public": "True", "name": "He3 flux", "start_date": "2006-11-13T20:07:26Z", "stop_date": "2014-09-27T16:26:26Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1m_He3f"}, "stb_let_1m_He4cr": {"__spz_name__": "He4 counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1m_He4cr", "dataset": "stb-let-1min", "display_type": "spectrogram", "is_public": "True", "name": "He4 counts", "start_date": "2006-11-13T20:07:26Z", "stop_date": "2014-09-27T16:26:26Z", "units": "counts/minute", "xmlid": "stb_let_1m_He4cr"}, "stb_let_1m_He4f": {"__spz_name__": "He4 flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1m_He4f", "dataset": "stb-let-1min", "display_type": "spectrogram", "is_public": "True", "name": "He4 flux", "start_date": "2006-11-13T20:07:26Z", "stop_date": "2014-09-27T16:26:26Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1m_He4f"}, "stb_let_1m_Hecr": {"__spz_name__": "He counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1m_Hecr", "dataset": "stb-let-1min", "display_type": "spectrogram", "is_public": "True", "name": "He counts", "start_date": "2006-11-13T20:07:26Z", "stop_date": "2014-09-27T16:26:26Z", "units": "counts/minute", "xmlid": "stb_let_1m_Hecr"}, "stb_let_1m_Hef": {"__spz_name__": "He flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1m_Hef", "dataset": "stb-let-1min", "display_type": "spectrogram", "is_public": "True", "name": "He flux", "start_date": "2006-11-13T20:07:26Z", "stop_date": "2014-09-27T16:26:26Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1m_Hef"}, "stb_let_1m_Hf": {"__spz_name__": "H flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1m_Hf", "dataset": "stb-let-1min", "display_type": "spectrogram", "is_public": "True", "name": "H flux", "start_date": "2006-11-13T20:07:26Z", "stop_date": "2014-09-27T16:26:26Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1m_Hf"}, "stb_let_1m_Mgcr": {"__spz_name__": "Mg counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1m_Mgcr", "dataset": "stb-let-1min", "display_type": "spectrogram", "is_public": "True", "name": "Mg counts", "start_date": "2006-11-13T20:07:26Z", "stop_date": "2014-09-27T16:26:26Z", "units": "counts/minute", "xmlid": "stb_let_1m_Mgcr"}, "stb_let_1m_Mgf": {"__spz_name__": "Mg flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1m_Mgf", "dataset": "stb-let-1min", "display_type": "spectrogram", "is_public": "True", "name": "Mg flux", "start_date": "2006-11-13T20:07:26Z", "stop_date": "2014-09-27T16:26:26Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1m_Mgf"}, "stb_let_1m_Nacr": {"__spz_name__": "Na counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1m_Nacr", "dataset": "stb-let-1min", "display_type": "spectrogram", "is_public": "True", "name": "Na counts", "start_date": "2006-11-13T20:07:26Z", "stop_date": "2014-09-27T16:26:26Z", "units": "counts/minute", "xmlid": "stb_let_1m_Nacr"}, "stb_let_1m_Naf": {"__spz_name__": "Na flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1m_Naf", "dataset": "stb-let-1min", "display_type": "spectrogram", "is_public": "True", "name": "Na flux", "start_date": "2006-11-13T20:07:26Z", "stop_date": "2014-09-27T16:26:26Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1m_Naf"}, "stb_let_1m_Ncr": {"__spz_name__": "N counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1m_Ncr", "dataset": "stb-let-1min", "display_type": "spectrogram", "is_public": "True", "name": "N counts", "start_date": "2006-11-13T20:07:26Z", "stop_date": "2014-09-27T16:26:26Z", "units": "counts/minute", "xmlid": "stb_let_1m_Ncr"}, "stb_let_1m_Necr": {"__spz_name__": "Ne counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1m_Necr", "dataset": "stb-let-1min", "display_type": "spectrogram", "is_public": "True", "name": "Ne counts", "start_date": "2006-11-13T20:07:26Z", "stop_date": "2014-09-27T16:26:26Z", "units": "counts/minute", "xmlid": "stb_let_1m_Necr"}, "stb_let_1m_Nef": {"__spz_name__": "Ne flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1m_Nef", "dataset": "stb-let-1min", "display_type": "spectrogram", "is_public": "True", "name": "Ne flux", "start_date": "2006-11-13T20:07:26Z", "stop_date": "2014-09-27T16:26:26Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1m_Nef"}, "stb_let_1m_Nf": {"__spz_name__": "N flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1m_Nf", "dataset": "stb-let-1min", "display_type": "spectrogram", "is_public": "True", "name": "N flux", "start_date": "2006-11-13T20:07:26Z", "stop_date": "2014-09-27T16:26:26Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1m_Nf"}, "stb_let_1m_Nicr": {"__spz_name__": "Ni counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1m_Nicr", "dataset": "stb-let-1min", "display_type": "spectrogram", "is_public": "True", "name": "Ni counts", "start_date": "2006-11-13T20:07:26Z", "stop_date": "2014-09-27T16:26:26Z", "units": "counts/minute", "xmlid": "stb_let_1m_Nicr"}, "stb_let_1m_Nif": {"__spz_name__": "Ni flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1m_Nif", "dataset": "stb-let-1min", "display_type": "spectrogram", "is_public": "True", "name": "Ni flux", "start_date": "2006-11-13T20:07:26Z", "stop_date": "2014-09-27T16:26:26Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1m_Nif"}, "stb_let_1m_Ocr": {"__spz_name__": "O counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1m_Ocr", "dataset": "stb-let-1min", "display_type": "spectrogram", "is_public": "True", "name": "O counts", "start_date": "2006-11-13T20:07:26Z", "stop_date": "2014-09-27T16:26:26Z", "units": "counts/minute", "xmlid": "stb_let_1m_Ocr"}, "stb_let_1m_Of": {"__spz_name__": "O flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1m_Of", "dataset": "stb-let-1min", "display_type": "spectrogram", "is_public": "True", "name": "O flux", "start_date": "2006-11-13T20:07:26Z", "stop_date": "2014-09-27T16:26:26Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1m_Of"}, "stb_let_1m_Scr": {"__spz_name__": "S counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1m_Scr", "dataset": "stb-let-1min", "display_type": "spectrogram", "is_public": "True", "name": "S counts", "start_date": "2006-11-13T20:07:26Z", "stop_date": "2014-09-27T16:26:26Z", "units": "counts/minute", "xmlid": "stb_let_1m_Scr"}, "stb_let_1m_Sf": {"__spz_name__": "S flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1m_Sf", "dataset": "stb-let-1min", "display_type": "spectrogram", "is_public": "True", "name": "S flux", "start_date": "2006-11-13T20:07:26Z", "stop_date": "2014-09-27T16:26:26Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1m_Sf"}, "stb_let_1m_Sicr": {"__spz_name__": "Si counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1m_Sicr", "dataset": "stb-let-1min", "display_type": "spectrogram", "is_public": "True", "name": "Si counts", "start_date": "2006-11-13T20:07:26Z", "stop_date": "2014-09-27T16:26:26Z", "units": "counts/minute", "xmlid": "stb_let_1m_Sicr"}, "stb_let_1m_Sif": {"__spz_name__": "Si flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_let_1m_Sif", "dataset": "stb-let-1min", "display_type": "spectrogram", "is_public": "True", "name": "Si flux", "start_date": "2006-11-13T20:07:26Z", "stop_date": "2014-09-27T16:26:26Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_let_1m_Sif"}, "stop_date": "2014-09-27T16:26:26Z", "target": "Heliosphere.Remote1AU", "xmlid": "stb-let-1min"}, "xmlid": "STEREO-B_let"}, "MAG": {"__spz_name__": "MAG", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "STEREO-B_mag", "att": "auto/STEREO-B_mag", "desc": "IMPACT Magnetometer
Magnetometer", "is_public": "True", "name": "MAG", "stb_b_1min": {"__spz_name__": "1 min", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "stb-b-1min", "att": "auto/stb-b-1min", "dataSource": "UCLA", "desc": "Magnetic Field : 1 min averaged
Sampling: 60S
Provider: UCLA", "is_public": "True", "lastModificationDate": "2020-04-06T13:43:12Z", "lastUpdate": "2020-03-30T17:17:26Z", "measurement_type": "MagneticField", "name": "1 min", "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/STEREO-B/MAG/stb-b-1min", "start_date": "2006-11-07T00:00:30Z", "stb_b_rtn": {"__spz_name__": "b_rtn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_b_rtn", "dataset": "stb-b-1min", "display_type": "timeseries", "is_public": "True", "name": "b_rtn", "size": "3", "start_date": "2006-11-07T00:00:30Z", "stb_b_rtn0": {"__spz_name__": "br", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_b_rtn(0)", "dataset": "stb-b-1min", "index1": "0", "is_public": "True", "name": "br", "parameter": "stb_b_rtn", "start_date": "2006-11-07T00:00:30Z", "stop_date": "2014-09-27T16:30:30Z", "xmlid": "stb_b_rtn(0)"}, "stb_b_rtn1": {"__spz_name__": "bt", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_b_rtn(1)", "dataset": "stb-b-1min", "index1": "1", "is_public": "True", "name": "bt", "parameter": "stb_b_rtn", "start_date": "2006-11-07T00:00:30Z", "stop_date": "2014-09-27T16:30:30Z", "xmlid": "stb_b_rtn(1)"}, "stb_b_rtn2": {"__spz_name__": "bn", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_b_rtn(2)", "dataset": "stb-b-1min", "index1": "2", "is_public": "True", "name": "bn", "parameter": "stb_b_rtn", "start_date": "2006-11-07T00:00:30Z", "stop_date": "2014-09-27T16:30:30Z", "xmlid": "stb_b_rtn(2)"}, "stop_date": "2014-09-27T16:30:30Z", "ucd": "phys.magField", "units": "nT", "xmlid": "stb_b_rtn"}, "stb_b_rtn_phi": {"__spz_name__": "phi", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_b_rtn_phi", "dataset": "stb-b-1min", "description": "Magnetic field phi angle", "display_type": "timeseries", "is_public": "True", "name": "phi", "start_date": "2006-11-07T00:00:30Z", "stop_date": "2014-09-27T16:30:30Z", "ucd": "phys.magField", "units": "degrees", "xmlid": "stb_b_rtn_phi"}, "stb_b_rtn_theta": {"__spz_name__": "theta", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_b_rtn_theta", "dataset": "stb-b-1min", "description": "Magnetic field theta angle", "display_type": "timeseries", "is_public": "True", "name": "theta", "start_date": "2006-11-07T00:00:30Z", "stop_date": "2014-09-27T16:30:30Z", "ucd": "phys.magField", "units": "degrees", "xmlid": "stb_b_rtn_theta"}, "stb_b_sc": {"__spz_name__": "b_sc", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_b_sc", "dataset": "stb-b-1min", "display_type": "timeseries", "is_public": "True", "name": "b_sc", "size": "3", "start_date": "2006-11-07T00:00:30Z", "stb_b_sc0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_b_sc(0)", "dataset": "stb-b-1min", "index1": "0", "is_public": "True", "name": "bx", "parameter": "stb_b_sc", "start_date": "2006-11-07T00:00:30Z", "stop_date": "2014-09-27T16:30:30Z", "xmlid": "stb_b_sc(0)"}, "stb_b_sc1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_b_sc(1)", "dataset": "stb-b-1min", "index1": "1", "is_public": "True", "name": "by", "parameter": "stb_b_sc", "start_date": "2006-11-07T00:00:30Z", "stop_date": "2014-09-27T16:30:30Z", "xmlid": "stb_b_sc(1)"}, "stb_b_sc2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_b_sc(2)", "dataset": "stb-b-1min", "index1": "2", "is_public": "True", "name": "bz", "parameter": "stb_b_sc", "start_date": "2006-11-07T00:00:30Z", "stop_date": "2014-09-27T16:30:30Z", "xmlid": "stb_b_sc(2)"}, "stop_date": "2014-09-27T16:30:30Z", "ucd": "phys.magField", "units": "nT", "xmlid": "stb_b_sc"}, "stb_btot_1min": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_btot_1min", "dataset": "stb-b-1min", "description": "Scalar magnitude of the magnetic field in nT", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "2006-11-07T00:00:30Z", "stop_date": "2014-09-27T16:30:30Z", "ucd": "phys.magField", "units": "nT", "xmlid": "stb_btot_1min"}, "stop_date": "2014-09-27T16:30:30Z", "xmlid": "stb-b-1min"}, "stb_mag_mag": {"__spz_name__": "1 sec", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "stb-mag-mag", "att": "auto/stb-mag-mag", "dataSource": "UCLA", "desc": "Magnetic Field : 1 sec averaged
Sampling: 1S
Provider: UCLA", "is_public": "True", "lastModificationDate": "2015-05-12T17:29:28Z", "lastUpdate": "2015-05-12T17:29:14Z", "measurement_type": "MagneticField", "name": "1 sec", "processing_level": "Calibrated", "sampling": "1S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/STEREO-B/MAG/stb-mag-mag", "start_date": "2006-11-07T00:00:00Z", "stb_b": {"__spz_name__": "b_rtn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_b", "dataset": "stb-mag-mag", "display_type": "timeseries", "is_public": "True", "name": "b_rtn", "size": "3", "start_date": "2006-11-07T00:00:00Z", "stb_b0": {"__spz_name__": "br", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_b(0)", "dataset": "stb-mag-mag", "index1": "0", "is_public": "True", "name": "br", "parameter": "stb_b", "start_date": "2006-11-07T00:00:00Z", "stop_date": "2014-09-26T23:59:59Z", "xmlid": "stb_b(0)"}, "stb_b1": {"__spz_name__": "bt", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_b(1)", "dataset": "stb-mag-mag", "index1": "1", "is_public": "True", "name": "bt", "parameter": "stb_b", "start_date": "2006-11-07T00:00:00Z", "stop_date": "2014-09-26T23:59:59Z", "xmlid": "stb_b(1)"}, "stb_b2": {"__spz_name__": "bn", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_b(2)", "dataset": "stb-mag-mag", "index1": "2", "is_public": "True", "name": "bn", "parameter": "stb_b", "start_date": "2006-11-07T00:00:00Z", "stop_date": "2014-09-26T23:59:59Z", "xmlid": "stb_b(2)"}, "stop_date": "2014-09-26T23:59:59Z", "ucd": "phys.magField", "units": "nT", "xmlid": "stb_b"}, "stb_b_phi": {"__spz_name__": "phi", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_b_phi", "dataset": "stb-mag-mag", "description": "Magnetic field phi angle", "display_type": "timeseries", "is_public": "True", "name": "phi", "start_date": "2006-11-07T00:00:00Z", "stop_date": "2014-09-26T23:59:59Z", "ucd": "phys.magField", "units": "degrees", "xmlid": "stb_b_phi"}, "stb_b_theta": {"__spz_name__": "theta", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_b_theta", "dataset": "stb-mag-mag", "description": "Magnetic field theta angle", "display_type": "timeseries", "is_public": "True", "name": "theta", "start_date": "2006-11-07T00:00:00Z", "stop_date": "2014-09-26T23:59:59Z", "ucd": "phys.magField", "units": "degrees", "xmlid": "stb_b_theta"}, "stb_btot": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_btot", "dataset": "stb-mag-mag", "description": "Scalar magnitude of the magnetic field in nT", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "2006-11-07T00:00:00Z", "stop_date": "2014-09-26T23:59:59Z", "ucd": "phys.magField", "units": "nT", "xmlid": "stb_btot"}, "stop_date": "2014-09-26T23:59:59Z", "xmlid": "stb-mag-mag"}, "xmlid": "STEREO-B_mag"}, "PLASTIC": {"__spz_name__": "PLASTIC", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "STEREO-B_plastic", "att": "auto/STEREO-B_plastic", "desc": "Plasma and Supra-Thermal Ion Composition
EnergeticParticleInstrument", "is_public": "True", "name": "PLASTIC", "stb_l2_pla": {"__spz_name__": "proton 1D fit", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "stb-l2-pla", "att": "auto/stb-l2-pla", "dataSource": "UNH", "desc": "STEREO PLASTIC proton parameters from 1D Maxwellian fits
Sampling: 60S
Provider: UNH", "is_public": "True", "lastModificationDate": "2021-12-07T14:30:16Z", "lastUpdate": "2021-12-07T14:30:16Z", "measurement_type": "ThermalPlasma", "name": "proton 1D fit", "np_stb": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "np_stb", "dataset": "stb-l2-pla", "display_type": "timeseries", "is_public": "True", "name": "density", "start_date": "2007-03-01T00:00:12Z", "stop_date": "2014-10-31T23:59:30Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm-3", "xmlid": "np_stb"}, "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/STEREO-B/PLASTIC/stb-l2-pla", "start_date": "2007-03-01T00:00:12Z", "stop_date": "2014-10-31T23:59:30Z", "vp_stb": {"__spz_name__": "v_rtn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vp_stb", "dataset": "stb-l2-pla", "display_type": "timeseries", "is_public": "True", "name": "v_rtn", "size": "3", "start_date": "2007-03-01T00:00:12Z", "stop_date": "2014-10-31T23:59:30Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "vp_stb0": {"__spz_name__": "vr", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vp_stb(0)", "dataset": "stb-l2-pla", "index1": "0", "is_public": "True", "name": "vr", "parameter": "vp_stb", "start_date": "2007-03-01T00:00:12Z", "stop_date": "2014-10-31T23:59:30Z", "xmlid": "vp_stb(0)"}, "vp_stb1": {"__spz_name__": "vt", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vp_stb(1)", "dataset": "stb-l2-pla", "index1": "1", "is_public": "True", "name": "vt", "parameter": "vp_stb", "start_date": "2007-03-01T00:00:12Z", "stop_date": "2014-10-31T23:59:30Z", "xmlid": "vp_stb(1)"}, "vp_stb2": {"__spz_name__": "vn", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vp_stb(2)", "dataset": "stb-l2-pla", "index1": "2", "is_public": "True", "name": "vn", "parameter": "vp_stb", "start_date": "2007-03-01T00:00:12Z", "stop_date": "2014-10-31T23:59:30Z", "xmlid": "vp_stb(2)"}, "xmlid": "vp_stb"}, "vpbulk_stb": {"__spz_name__": "|v|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vpbulk_stb", "dataset": "stb-l2-pla", "description": "Scalar magnitude of the velocity in km/s", "display_type": "timeseries", "is_public": "True", "name": "|v|", "start_date": "2007-03-01T00:00:12Z", "stop_date": "2014-10-31T23:59:30Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "vpbulk_stb"}, "vth_stb": {"__spz_name__": "v_thermal", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vth_stb", "dataset": "stb-l2-pla", "display_type": "timeseries", "is_public": "True", "name": "v_thermal", "start_date": "2007-03-01T00:00:12Z", "stop_date": "2014-10-31T23:59:30Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "vth_stb"}, "xmlid": "stb-l2-pla"}, "xmlid": "STEREO-B_plastic"}, "SEPT": {"__spz_name__": "SEPT", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "STEREO-B_sept", "att": "auto/STEREO-B_sept", "desc": "Solar Electron Proton Telescope
ParticleDetector", "is_public": "True", "name": "SEPT", "stb_sept_1day": {"__spz_name__": "1 day", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "stb-sept-1day", "att": "auto/stb-sept-1day", "dataSource": "University of Kiel", "desc": "Electron and Proton flux 1 day rate
Sampling: 24H
Provider: University of Kiel", "is_public": "True", "lastModificationDate": "2020-05-25T10:54:21Z", "lastUpdate": "2020-05-25T10:53:29Z", "measurement_type": "EnergeticParticles", "name": "1 day", "processing_level": "Calibrated", "sampling": "24H", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/STEREO-B/SEPT/stb-sept-1day", "start_date": "2006-11-13T12:00:00Z", "stb_sept_1d_ef": {"__spz_name__": "e- flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_sept_1d_ef", "dataset": "stb-sept-1day", "display_type": "spectrogram", "is_public": "True", "name": "e- flux", "start_date": "2006-11-13T12:00:00Z", "stop_date": "2014-09-26T12:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_sept_1d_ef"}, "stb_sept_1d_eu": {"__spz_name__": "e- uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_sept_1d_eu", "dataset": "stb-sept-1day", "display_type": "spectrogram", "is_public": "True", "name": "e- uncertainty", "start_date": "2006-11-13T12:00:00Z", "stop_date": "2014-09-26T12:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_sept_1d_eu"}, "stb_sept_1d_hf": {"__spz_name__": "h+ flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_sept_1d_hf", "dataset": "stb-sept-1day", "display_type": "spectrogram", "is_public": "True", "name": "h+ flux", "start_date": "2006-11-13T12:00:00Z", "stop_date": "2014-09-26T12:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_sept_1d_hf"}, "stb_sept_1d_hu": {"__spz_name__": "h+ uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_sept_1d_hu", "dataset": "stb-sept-1day", "display_type": "spectrogram", "is_public": "True", "name": "h+ uncertainty", "start_date": "2006-11-13T12:00:00Z", "stop_date": "2014-09-26T12:00:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_sept_1d_hu"}, "stop_date": "2014-09-26T12:00:00Z", "target": "Heliosphere.Remote1AU", "xmlid": "stb-sept-1day"}, "stb_sept_1hour": {"__spz_name__": "1 hour", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "stb-sept-1hour", "att": "auto/stb-sept-1hour", "dataSource": "University of Kiel", "desc": "Electron and Proton flux 1 hour rate
Sampling: 1H
Provider: University of Kiel", "is_public": "True", "lastModificationDate": "2020-05-25T11:20:30Z", "lastUpdate": "2020-05-25T11:19:34Z", "measurement_type": "EnergeticParticles", "name": "1 hour", "processing_level": "Calibrated", "sampling": "1H", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/STEREO-B/SEPT/stb-sept-1hour", "start_date": "2006-11-13T00:30:00Z", "stb_sept_1h_ef": {"__spz_name__": "e- flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_sept_1h_ef", "dataset": "stb-sept-1hour", "display_type": "spectrogram", "is_public": "True", "name": "e- flux", "start_date": "2006-11-13T00:30:00Z", "stop_date": "2014-09-27T15:30:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_sept_1h_ef"}, "stb_sept_1h_eu": {"__spz_name__": "e- uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_sept_1h_eu", "dataset": "stb-sept-1hour", "display_type": "spectrogram", "is_public": "True", "name": "e- uncertainty", "start_date": "2006-11-13T00:30:00Z", "stop_date": "2014-09-27T15:30:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_sept_1h_eu"}, "stb_sept_1h_hf": {"__spz_name__": "h+ flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_sept_1h_hf", "dataset": "stb-sept-1hour", "display_type": "spectrogram", "is_public": "True", "name": "h+ flux", "start_date": "2006-11-13T00:30:00Z", "stop_date": "2014-09-27T15:30:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_sept_1h_hf"}, "stb_sept_1h_hu": {"__spz_name__": "h+ uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_sept_1h_hu", "dataset": "stb-sept-1hour", "display_type": "spectrogram", "is_public": "True", "name": "h+ uncertainty", "start_date": "2006-11-13T00:30:00Z", "stop_date": "2014-09-27T15:30:00Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_sept_1h_hu"}, "stop_date": "2014-09-27T15:30:00Z", "target": "Heliosphere.Remote1AU", "xmlid": "stb-sept-1hour"}, "stb_sept_1min": {"__spz_name__": "1 min", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "stb-sept-1min", "att": "auto/stb-sept-1min", "dataSource": "University of Kiel", "desc": "Electron and Proton flux 1 minute rate
Sampling: 60S
Provider: University of Kiel", "is_public": "True", "lastModificationDate": "2020-05-25T13:06:28Z", "lastUpdate": "2020-05-25T13:03:15Z", "measurement_type": "EnergeticParticles", "name": "1 min", "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/STEREO-B/SEPT/stb-sept-1min", "start_date": "2006-11-13T20:00:56Z", "stb_sept_1m_ef": {"__spz_name__": "e- flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_sept_1m_ef", "dataset": "stb-sept-1min", "display_type": "spectrogram", "is_public": "True", "name": "e- flux", "start_date": "2006-11-13T20:00:56Z", "stop_date": "2014-09-27T16:28:56Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_sept_1m_ef"}, "stb_sept_1m_eu": {"__spz_name__": "e- uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_sept_1m_eu", "dataset": "stb-sept-1min", "display_type": "spectrogram", "is_public": "True", "name": "e- uncertainty", "start_date": "2006-11-13T20:00:56Z", "stop_date": "2014-09-27T16:28:56Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_sept_1m_eu"}, "stb_sept_1m_hf": {"__spz_name__": "h+ flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_sept_1m_hf", "dataset": "stb-sept-1min", "display_type": "spectrogram", "is_public": "True", "name": "h+ flux", "start_date": "2006-11-13T20:00:56Z", "stop_date": "2014-09-27T16:28:56Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_sept_1m_hf"}, "stb_sept_1m_hu": {"__spz_name__": "h+ uncertainty", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_sept_1m_hu", "dataset": "stb-sept-1min", "display_type": "spectrogram", "is_public": "True", "name": "h+ uncertainty", "start_date": "2006-11-13T20:00:56Z", "stop_date": "2014-09-27T16:28:56Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_sept_1m_hu"}, "stop_date": "2014-09-27T16:28:56Z", "target": "Heliosphere.Remote1AU", "xmlid": "stb-sept-1min"}, "xmlid": "STEREO-B_sept"}, "SIT": {"__spz_name__": "SIT", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "STEREO-B_sit", "att": "auto/STEREO-B_sit", "desc": "Suprathermal Ion Telescope
EnergeticParticleInstrument", "is_public": "True", "name": "SIT", "stb_sit_1d": {"__spz_name__": "1 day", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "stb-sit-1d", "att": "auto/stb-sit-1d", "dataSource": "Caltech Space Radiation Lab", "desc": "Ion flux 1 day rate
Sampling: 24H
Provider: Caltech Space Radiation Lab", "is_public": "True", "lastModificationDate": "2020-03-10T13:55:14Z", "lastUpdate": "2020-03-10T13:55:14Z", "measurement_type": "EnergeticParticles", "name": "1 day", "processing_level": "Calibrated", "sampling": "24H", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/STEREO-B/SIT/stb-sit-1d", "start_date": "2007-01-27T00:00:51Z", "stb_sit_1d_4hecr": {"__spz_name__": "4he count rate", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_sit_1d_4hecr", "dataset": "stb-sit-1d", "display_type": "timeseries", "is_public": "True", "name": "4he count rate", "size": "10", "start_date": "2007-01-27T00:00:51Z", "stb_sit_1d_4hecr0": {"__spz_name__": "0.113-0.160 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_4hecr(0)", "dataset": "stb-sit-1d", "index1": "0", "is_public": "True", "name": "0.113-0.160 MeV", "parameter": "stb_sit_1d_4hecr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_4hecr(0)"}, "stb_sit_1d_4hecr1": {"__spz_name__": "0.160-0.226 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_4hecr(1)", "dataset": "stb-sit-1d", "index1": "1", "is_public": "True", "name": "0.160-0.226 MeV", "parameter": "stb_sit_1d_4hecr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_4hecr(1)"}, "stb_sit_1d_4hecr2": {"__spz_name__": "0.226-0.320 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_4hecr(2)", "dataset": "stb-sit-1d", "index1": "2", "is_public": "True", "name": "0.226-0.320 MeV", "parameter": "stb_sit_1d_4hecr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_4hecr(2)"}, "stb_sit_1d_4hecr3": {"__spz_name__": "0.320-0.452 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_4hecr(3)", "dataset": "stb-sit-1d", "index1": "3", "is_public": "True", "name": "0.320-0.452 MeV", "parameter": "stb_sit_1d_4hecr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_4hecr(3)"}, "stb_sit_1d_4hecr4": {"__spz_name__": "0.452-0.640 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_4hecr(4)", "dataset": "stb-sit-1d", "index1": "4", "is_public": "True", "name": "0.452-0.640 MeV", "parameter": "stb_sit_1d_4hecr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_4hecr(4)"}, "stb_sit_1d_4hecr5": {"__spz_name__": "0.640-0.905 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_4hecr(5)", "dataset": "stb-sit-1d", "index1": "5", "is_public": "True", "name": "0.640-0.905 MeV", "parameter": "stb_sit_1d_4hecr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_4hecr(5)"}, "stb_sit_1d_4hecr6": {"__spz_name__": "0.905-1.280 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_4hecr(6)", "dataset": "stb-sit-1d", "index1": "6", "is_public": "True", "name": "0.905-1.280 MeV", "parameter": "stb_sit_1d_4hecr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_4hecr(6)"}, "stb_sit_1d_4hecr7": {"__spz_name__": "1.280-1.810 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_4hecr(7)", "dataset": "stb-sit-1d", "index1": "7", "is_public": "True", "name": "1.280-1.810 MeV", "parameter": "stb_sit_1d_4hecr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_4hecr(7)"}, "stb_sit_1d_4hecr8": {"__spz_name__": "1.810-2.560 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_4hecr(8)", "dataset": "stb-sit-1d", "index1": "8", "is_public": "True", "name": "1.810-2.560 MeV", "parameter": "stb_sit_1d_4hecr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_4hecr(8)"}, "stb_sit_1d_4hecr9": {"__spz_name__": "2.560-3.620 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_4hecr(9)", "dataset": "stb-sit-1d", "index1": "9", "is_public": "True", "name": "2.560-3.620 MeV", "parameter": "stb_sit_1d_4hecr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_4hecr(9)"}, "stop_date": "2014-09-27T00:00:25Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_sit_1d_4hecr"}, "stb_sit_1d_4hefl": {"__spz_name__": "4he flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_sit_1d_4hefl", "dataset": "stb-sit-1d", "display_type": "timeseries", "is_public": "True", "name": "4he flux", "size": "10", "start_date": "2007-01-27T00:00:51Z", "stb_sit_1d_4hefl0": {"__spz_name__": "0.113-0.160 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_4hefl(0)", "dataset": "stb-sit-1d", "index1": "0", "is_public": "True", "name": "0.113-0.160 MeV", "parameter": "stb_sit_1d_4hefl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_4hefl(0)"}, "stb_sit_1d_4hefl1": {"__spz_name__": "0.160-0.226 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_4hefl(1)", "dataset": "stb-sit-1d", "index1": "1", "is_public": "True", "name": "0.160-0.226 MeV", "parameter": "stb_sit_1d_4hefl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_4hefl(1)"}, "stb_sit_1d_4hefl2": {"__spz_name__": "0.226-0.320 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_4hefl(2)", "dataset": "stb-sit-1d", "index1": "2", "is_public": "True", "name": "0.226-0.320 MeV", "parameter": "stb_sit_1d_4hefl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_4hefl(2)"}, "stb_sit_1d_4hefl3": {"__spz_name__": "0.320-0.452 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_4hefl(3)", "dataset": "stb-sit-1d", "index1": "3", "is_public": "True", "name": "0.320-0.452 MeV", "parameter": "stb_sit_1d_4hefl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_4hefl(3)"}, "stb_sit_1d_4hefl4": {"__spz_name__": "0.452-0.640 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_4hefl(4)", "dataset": "stb-sit-1d", "index1": "4", "is_public": "True", "name": "0.452-0.640 MeV", "parameter": "stb_sit_1d_4hefl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_4hefl(4)"}, "stb_sit_1d_4hefl5": {"__spz_name__": "0.640-0.905 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_4hefl(5)", "dataset": "stb-sit-1d", "index1": "5", "is_public": "True", "name": "0.640-0.905 MeV", "parameter": "stb_sit_1d_4hefl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_4hefl(5)"}, "stb_sit_1d_4hefl6": {"__spz_name__": "0.905-1.280 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_4hefl(6)", "dataset": "stb-sit-1d", "index1": "6", "is_public": "True", "name": "0.905-1.280 MeV", "parameter": "stb_sit_1d_4hefl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_4hefl(6)"}, "stb_sit_1d_4hefl7": {"__spz_name__": "1.280-1.810 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_4hefl(7)", "dataset": "stb-sit-1d", "index1": "7", "is_public": "True", "name": "1.280-1.810 MeV", "parameter": "stb_sit_1d_4hefl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_4hefl(7)"}, "stb_sit_1d_4hefl8": {"__spz_name__": "1.810-2.560 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_4hefl(8)", "dataset": "stb-sit-1d", "index1": "8", "is_public": "True", "name": "1.810-2.560 MeV", "parameter": "stb_sit_1d_4hefl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_4hefl(8)"}, "stb_sit_1d_4hefl9": {"__spz_name__": "2.560-3.620 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_4hefl(9)", "dataset": "stb-sit-1d", "index1": "9", "is_public": "True", "name": "2.560-3.620 MeV", "parameter": "stb_sit_1d_4hefl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_4hefl(9)"}, "stop_date": "2014-09-27T00:00:25Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_sit_1d_4hefl"}, "stb_sit_1d_4hesp": {"__spz_name__": "4he flux spectro", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_sit_1d_4hesp", "dataset": "stb-sit-1d", "display_type": "spectrogram", "is_public": "True", "name": "4he flux spectro", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "units": "1/(cm2-sr-sec-MeV)", "xmlid": "stb_sit_1d_4hesp"}, "stb_sit_1d_fecr": {"__spz_name__": "fe count rate", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_sit_1d_fecr", "dataset": "stb-sit-1d", "display_type": "timeseries", "is_public": "True", "name": "fe count rate", "size": "11", "start_date": "2007-01-27T00:00:51Z", "stb_sit_1d_fecr0": {"__spz_name__": "0.080-0.113 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_fecr(0)", "dataset": "stb-sit-1d", "index1": "0", "is_public": "True", "name": "0.080-0.113 MeV", "parameter": "stb_sit_1d_fecr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_fecr(0)"}, "stb_sit_1d_fecr1": {"__spz_name__": "0.113-0.160 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_fecr(1)", "dataset": "stb-sit-1d", "index1": "1", "is_public": "True", "name": "0.113-0.160 MeV", "parameter": "stb_sit_1d_fecr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_fecr(1)"}, "stb_sit_1d_fecr10": {"__spz_name__": "2.560-3.620 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_fecr(10)", "dataset": "stb-sit-1d", "index1": "10", "is_public": "True", "name": "2.560-3.620 MeV", "parameter": "stb_sit_1d_fecr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_fecr(10)"}, "stb_sit_1d_fecr2": {"__spz_name__": "0.160-0.226 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_fecr(2)", "dataset": "stb-sit-1d", "index1": "2", "is_public": "True", "name": "0.160-0.226 MeV", "parameter": "stb_sit_1d_fecr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_fecr(2)"}, "stb_sit_1d_fecr3": {"__spz_name__": "0.226-0.320 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_fecr(3)", "dataset": "stb-sit-1d", "index1": "3", "is_public": "True", "name": "0.226-0.320 MeV", "parameter": "stb_sit_1d_fecr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_fecr(3)"}, "stb_sit_1d_fecr4": {"__spz_name__": "0.320-0.452 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_fecr(4)", "dataset": "stb-sit-1d", "index1": "4", "is_public": "True", "name": "0.320-0.452 MeV", "parameter": "stb_sit_1d_fecr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_fecr(4)"}, "stb_sit_1d_fecr5": {"__spz_name__": "0.452-0.640 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_fecr(5)", "dataset": "stb-sit-1d", "index1": "5", "is_public": "True", "name": "0.452-0.640 MeV", "parameter": "stb_sit_1d_fecr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_fecr(5)"}, "stb_sit_1d_fecr6": {"__spz_name__": "0.640-0.905 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_fecr(6)", "dataset": "stb-sit-1d", "index1": "6", "is_public": "True", "name": "0.640-0.905 MeV", "parameter": "stb_sit_1d_fecr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_fecr(6)"}, "stb_sit_1d_fecr7": {"__spz_name__": "0.905-1.280 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_fecr(7)", "dataset": "stb-sit-1d", "index1": "7", "is_public": "True", "name": "0.905-1.280 MeV", "parameter": "stb_sit_1d_fecr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_fecr(7)"}, "stb_sit_1d_fecr8": {"__spz_name__": "1.280-1.810 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_fecr(8)", "dataset": "stb-sit-1d", "index1": "8", "is_public": "True", "name": "1.280-1.810 MeV", "parameter": "stb_sit_1d_fecr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_fecr(8)"}, "stb_sit_1d_fecr9": {"__spz_name__": "1.810-2.560 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_fecr(9)", "dataset": "stb-sit-1d", "index1": "9", "is_public": "True", "name": "1.810-2.560 MeV", "parameter": "stb_sit_1d_fecr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_fecr(9)"}, "stop_date": "2014-09-27T00:00:25Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_sit_1d_fecr"}, "stb_sit_1d_fefl": {"__spz_name__": "fe flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_sit_1d_fefl", "dataset": "stb-sit-1d", "display_type": "timeseries", "is_public": "True", "name": "fe flux", "size": "11", "start_date": "2007-01-27T00:00:51Z", "stb_sit_1d_fefl0": {"__spz_name__": "0.080-0.113 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_fefl(0)", "dataset": "stb-sit-1d", "index1": "0", "is_public": "True", "name": "0.080-0.113 MeV", "parameter": "stb_sit_1d_fefl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_fefl(0)"}, "stb_sit_1d_fefl1": {"__spz_name__": "0.113-0.160 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_fefl(1)", "dataset": "stb-sit-1d", "index1": "1", "is_public": "True", "name": "0.113-0.160 MeV", "parameter": "stb_sit_1d_fefl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_fefl(1)"}, "stb_sit_1d_fefl10": {"__spz_name__": "2.560-3.620 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_fefl(10)", "dataset": "stb-sit-1d", "index1": "10", "is_public": "True", "name": "2.560-3.620 MeV", "parameter": "stb_sit_1d_fefl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_fefl(10)"}, "stb_sit_1d_fefl2": {"__spz_name__": "0.160-0.226 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_fefl(2)", "dataset": "stb-sit-1d", "index1": "2", "is_public": "True", "name": "0.160-0.226 MeV", "parameter": "stb_sit_1d_fefl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_fefl(2)"}, "stb_sit_1d_fefl3": {"__spz_name__": "0.226-0.320 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_fefl(3)", "dataset": "stb-sit-1d", "index1": "3", "is_public": "True", "name": "0.226-0.320 MeV", "parameter": "stb_sit_1d_fefl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_fefl(3)"}, "stb_sit_1d_fefl4": {"__spz_name__": "0.320-0.452 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_fefl(4)", "dataset": "stb-sit-1d", "index1": "4", "is_public": "True", "name": "0.320-0.452 MeV", "parameter": "stb_sit_1d_fefl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_fefl(4)"}, "stb_sit_1d_fefl5": {"__spz_name__": "0.452-0.640 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_fefl(5)", "dataset": "stb-sit-1d", "index1": "5", "is_public": "True", "name": "0.452-0.640 MeV", "parameter": "stb_sit_1d_fefl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_fefl(5)"}, "stb_sit_1d_fefl6": {"__spz_name__": "0.640-0.905 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_fefl(6)", "dataset": "stb-sit-1d", "index1": "6", "is_public": "True", "name": "0.640-0.905 MeV", "parameter": "stb_sit_1d_fefl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_fefl(6)"}, "stb_sit_1d_fefl7": {"__spz_name__": "0.905-1.280 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_fefl(7)", "dataset": "stb-sit-1d", "index1": "7", "is_public": "True", "name": "0.905-1.280 MeV", "parameter": "stb_sit_1d_fefl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_fefl(7)"}, "stb_sit_1d_fefl8": {"__spz_name__": "1.280-1.810 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_fefl(8)", "dataset": "stb-sit-1d", "index1": "8", "is_public": "True", "name": "1.280-1.810 MeV", "parameter": "stb_sit_1d_fefl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_fefl(8)"}, "stb_sit_1d_fefl9": {"__spz_name__": "1.810-2.560 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_fefl(9)", "dataset": "stb-sit-1d", "index1": "9", "is_public": "True", "name": "1.810-2.560 MeV", "parameter": "stb_sit_1d_fefl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_fefl(9)"}, "stop_date": "2014-09-27T00:00:25Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_sit_1d_fefl"}, "stb_sit_1d_fesp": {"__spz_name__": "fe flux spectro", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_sit_1d_fesp", "dataset": "stb-sit-1d", "display_type": "spectrogram", "is_public": "True", "name": "fe flux spectro", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "units": "1/(cm2-sr-sec-MeV)", "xmlid": "stb_sit_1d_fesp"}, "stb_sit_1d_hcr": {"__spz_name__": "h count rate", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_sit_1d_hcr", "dataset": "stb-sit-1d", "display_type": "timeseries", "is_public": "True", "name": "h count rate", "size": "7", "start_date": "2007-01-27T00:00:51Z", "stb_sit_1d_hcr0": {"__spz_name__": "0.320-0.452 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_hcr(0)", "dataset": "stb-sit-1d", "index1": "0", "is_public": "True", "name": "0.320-0.452 MeV", "parameter": "stb_sit_1d_hcr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_hcr(0)"}, "stb_sit_1d_hcr1": {"__spz_name__": "0.452-0.640 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_hcr(1)", "dataset": "stb-sit-1d", "index1": "1", "is_public": "True", "name": "0.452-0.640 MeV", "parameter": "stb_sit_1d_hcr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_hcr(1)"}, "stb_sit_1d_hcr2": {"__spz_name__": "0.640-0.905 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_hcr(2)", "dataset": "stb-sit-1d", "index1": "2", "is_public": "True", "name": "0.640-0.905 MeV", "parameter": "stb_sit_1d_hcr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_hcr(2)"}, "stb_sit_1d_hcr3": {"__spz_name__": "0.905-1.280 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_hcr(3)", "dataset": "stb-sit-1d", "index1": "3", "is_public": "True", "name": "0.905-1.280 MeV", "parameter": "stb_sit_1d_hcr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_hcr(3)"}, "stb_sit_1d_hcr4": {"__spz_name__": "1.280-1.810 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_hcr(4)", "dataset": "stb-sit-1d", "index1": "4", "is_public": "True", "name": "1.280-1.810 MeV", "parameter": "stb_sit_1d_hcr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_hcr(4)"}, "stb_sit_1d_hcr5": {"__spz_name__": "1.810-2.560 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_hcr(5)", "dataset": "stb-sit-1d", "index1": "5", "is_public": "True", "name": "1.810-2.560 MeV", "parameter": "stb_sit_1d_hcr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_hcr(5)"}, "stb_sit_1d_hcr6": {"__spz_name__": "2.560-3.620 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_hcr(6)", "dataset": "stb-sit-1d", "index1": "6", "is_public": "True", "name": "2.560-3.620 MeV", "parameter": "stb_sit_1d_hcr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_hcr(6)"}, "stop_date": "2014-09-27T00:00:25Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_sit_1d_hcr"}, "stb_sit_1d_hfl": {"__spz_name__": "h flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_sit_1d_hfl", "dataset": "stb-sit-1d", "display_type": "timeseries", "is_public": "True", "name": "h flux", "size": "7", "start_date": "2007-01-27T00:00:51Z", "stb_sit_1d_hfl0": {"__spz_name__": "0.320-0.452 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_hfl(0)", "dataset": "stb-sit-1d", "index1": "0", "is_public": "True", "name": "0.320-0.452 MeV", "parameter": "stb_sit_1d_hfl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_hfl(0)"}, "stb_sit_1d_hfl1": {"__spz_name__": "0.452-0.640 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_hfl(1)", "dataset": "stb-sit-1d", "index1": "1", "is_public": "True", "name": "0.452-0.640 MeV", "parameter": "stb_sit_1d_hfl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_hfl(1)"}, "stb_sit_1d_hfl2": {"__spz_name__": "0.640-0.905 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_hfl(2)", "dataset": "stb-sit-1d", "index1": "2", "is_public": "True", "name": "0.640-0.905 MeV", "parameter": "stb_sit_1d_hfl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_hfl(2)"}, "stb_sit_1d_hfl3": {"__spz_name__": "0.905-1.280 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_hfl(3)", "dataset": "stb-sit-1d", "index1": "3", "is_public": "True", "name": "0.905-1.280 MeV", "parameter": "stb_sit_1d_hfl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_hfl(3)"}, "stb_sit_1d_hfl4": {"__spz_name__": "1.280-1.810 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_hfl(4)", "dataset": "stb-sit-1d", "index1": "4", "is_public": "True", "name": "1.280-1.810 MeV", "parameter": "stb_sit_1d_hfl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_hfl(4)"}, "stb_sit_1d_hfl5": {"__spz_name__": "1.810-2.560 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_hfl(5)", "dataset": "stb-sit-1d", "index1": "5", "is_public": "True", "name": "1.810-2.560 MeV", "parameter": "stb_sit_1d_hfl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_hfl(5)"}, "stb_sit_1d_hfl6": {"__spz_name__": "2.560-3.620 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_hfl(6)", "dataset": "stb-sit-1d", "index1": "6", "is_public": "True", "name": "2.560-3.620 MeV", "parameter": "stb_sit_1d_hfl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_hfl(6)"}, "stop_date": "2014-09-27T00:00:25Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_sit_1d_hfl"}, "stb_sit_1d_hsp": {"__spz_name__": "h flux spectro", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_sit_1d_hsp", "dataset": "stb-sit-1d", "display_type": "spectrogram", "is_public": "True", "name": "h flux spectro", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "units": "1/(cm2-sr-sec-MeV)", "xmlid": "stb_sit_1d_hsp"}, "stb_sit_1d_ocr": {"__spz_name__": "o count rate", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_sit_1d_ocr", "dataset": "stb-sit-1d", "display_type": "timeseries", "is_public": "True", "name": "o count rate", "size": "10", "start_date": "2007-01-27T00:00:51Z", "stb_sit_1d_ocr0": {"__spz_name__": "0.113-0.160 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_ocr(0)", "dataset": "stb-sit-1d", "index1": "0", "is_public": "True", "name": "0.113-0.160 MeV", "parameter": "stb_sit_1d_ocr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_ocr(0)"}, "stb_sit_1d_ocr1": {"__spz_name__": "0.160-0.226 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_ocr(1)", "dataset": "stb-sit-1d", "index1": "1", "is_public": "True", "name": "0.160-0.226 MeV", "parameter": "stb_sit_1d_ocr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_ocr(1)"}, "stb_sit_1d_ocr2": {"__spz_name__": "0.226-0.320 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_ocr(2)", "dataset": "stb-sit-1d", "index1": "2", "is_public": "True", "name": "0.226-0.320 MeV", "parameter": "stb_sit_1d_ocr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_ocr(2)"}, "stb_sit_1d_ocr3": {"__spz_name__": "0.320-0.452 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_ocr(3)", "dataset": "stb-sit-1d", "index1": "3", "is_public": "True", "name": "0.320-0.452 MeV", "parameter": "stb_sit_1d_ocr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_ocr(3)"}, "stb_sit_1d_ocr4": {"__spz_name__": "0.452-0.640 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_ocr(4)", "dataset": "stb-sit-1d", "index1": "4", "is_public": "True", "name": "0.452-0.640 MeV", "parameter": "stb_sit_1d_ocr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_ocr(4)"}, "stb_sit_1d_ocr5": {"__spz_name__": "0.640-0.905 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_ocr(5)", "dataset": "stb-sit-1d", "index1": "5", "is_public": "True", "name": "0.640-0.905 MeV", "parameter": "stb_sit_1d_ocr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_ocr(5)"}, "stb_sit_1d_ocr6": {"__spz_name__": "0.905-1.280 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_ocr(6)", "dataset": "stb-sit-1d", "index1": "6", "is_public": "True", "name": "0.905-1.280 MeV", "parameter": "stb_sit_1d_ocr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_ocr(6)"}, "stb_sit_1d_ocr7": {"__spz_name__": "1.280-1.810 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_ocr(7)", "dataset": "stb-sit-1d", "index1": "7", "is_public": "True", "name": "1.280-1.810 MeV", "parameter": "stb_sit_1d_ocr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_ocr(7)"}, "stb_sit_1d_ocr8": {"__spz_name__": "1.810-2.560 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_ocr(8)", "dataset": "stb-sit-1d", "index1": "8", "is_public": "True", "name": "1.810-2.560 MeV", "parameter": "stb_sit_1d_ocr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_ocr(8)"}, "stb_sit_1d_ocr9": {"__spz_name__": "2.560-3.620 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_ocr(9)", "dataset": "stb-sit-1d", "index1": "9", "is_public": "True", "name": "2.560-3.620 MeV", "parameter": "stb_sit_1d_ocr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_ocr(9)"}, "stop_date": "2014-09-27T00:00:25Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_sit_1d_ocr"}, "stb_sit_1d_ofl": {"__spz_name__": "o flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_sit_1d_ofl", "dataset": "stb-sit-1d", "display_type": "timeseries", "is_public": "True", "name": "o flux", "size": "10", "start_date": "2007-01-27T00:00:51Z", "stb_sit_1d_ofl0": {"__spz_name__": "0.113-0.160 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_ofl(0)", "dataset": "stb-sit-1d", "index1": "0", "is_public": "True", "name": "0.113-0.160 MeV", "parameter": "stb_sit_1d_ofl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_ofl(0)"}, "stb_sit_1d_ofl1": {"__spz_name__": "0.160-0.226 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_ofl(1)", "dataset": "stb-sit-1d", "index1": "1", "is_public": "True", "name": "0.160-0.226 MeV", "parameter": "stb_sit_1d_ofl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_ofl(1)"}, "stb_sit_1d_ofl2": {"__spz_name__": "0.226-0.320 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_ofl(2)", "dataset": "stb-sit-1d", "index1": "2", "is_public": "True", "name": "0.226-0.320 MeV", "parameter": "stb_sit_1d_ofl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_ofl(2)"}, "stb_sit_1d_ofl3": {"__spz_name__": "0.320-0.452 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_ofl(3)", "dataset": "stb-sit-1d", "index1": "3", "is_public": "True", "name": "0.320-0.452 MeV", "parameter": "stb_sit_1d_ofl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_ofl(3)"}, "stb_sit_1d_ofl4": {"__spz_name__": "0.452-0.640 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_ofl(4)", "dataset": "stb-sit-1d", "index1": "4", "is_public": "True", "name": "0.452-0.640 MeV", "parameter": "stb_sit_1d_ofl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_ofl(4)"}, "stb_sit_1d_ofl5": {"__spz_name__": "0.640-0.905 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_ofl(5)", "dataset": "stb-sit-1d", "index1": "5", "is_public": "True", "name": "0.640-0.905 MeV", "parameter": "stb_sit_1d_ofl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_ofl(5)"}, "stb_sit_1d_ofl6": {"__spz_name__": "0.905-1.280 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_ofl(6)", "dataset": "stb-sit-1d", "index1": "6", "is_public": "True", "name": "0.905-1.280 MeV", "parameter": "stb_sit_1d_ofl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_ofl(6)"}, "stb_sit_1d_ofl7": {"__spz_name__": "1.280-1.810 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_ofl(7)", "dataset": "stb-sit-1d", "index1": "7", "is_public": "True", "name": "1.280-1.810 MeV", "parameter": "stb_sit_1d_ofl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_ofl(7)"}, "stb_sit_1d_ofl8": {"__spz_name__": "1.810-2.560 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_ofl(8)", "dataset": "stb-sit-1d", "index1": "8", "is_public": "True", "name": "1.810-2.560 MeV", "parameter": "stb_sit_1d_ofl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_ofl(8)"}, "stb_sit_1d_ofl9": {"__spz_name__": "2.560-3.620 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1d_ofl(9)", "dataset": "stb-sit-1d", "index1": "9", "is_public": "True", "name": "2.560-3.620 MeV", "parameter": "stb_sit_1d_ofl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "xmlid": "stb_sit_1d_ofl(9)"}, "stop_date": "2014-09-27T00:00:25Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_sit_1d_ofl"}, "stb_sit_1d_osp": {"__spz_name__": "o flux spectro", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_sit_1d_osp", "dataset": "stb-sit-1d", "display_type": "spectrogram", "is_public": "True", "name": "o flux spectro", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T00:00:25Z", "units": "1/(cm2-sr-sec-MeV)", "xmlid": "stb_sit_1d_osp"}, "stop_date": "2014-09-27T00:00:25Z", "target": "Heliosphere.Remote1AU", "xmlid": "stb-sit-1d"}, "stb_sit_1h": {"__spz_name__": "1 hour", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "stb-sit-1h", "att": "auto/stb-sit-1h", "dataSource": "Caltech Space Radiation Lab", "desc": "Ion flux 1 hour rate
Sampling: 3600S
Provider: Caltech Space Radiation Lab", "is_public": "True", "lastModificationDate": "2020-03-10T13:53:58Z", "lastUpdate": "2020-03-10T13:53:58Z", "measurement_type": "EnergeticParticles", "name": "1 hour", "processing_level": "Calibrated", "sampling": "3600S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/STEREO-B/SIT/stb-sit-1h", "start_date": "2007-01-27T00:00:51Z", "stb_sit_1h_4hecr": {"__spz_name__": "4he count rate", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_sit_1h_4hecr", "dataset": "stb-sit-1h", "display_type": "timeseries", "is_public": "True", "name": "4he count rate", "size": "10", "start_date": "2007-01-27T00:00:51Z", "stb_sit_1h_4hecr0": {"__spz_name__": "0.113-0.160 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_4hecr(0)", "dataset": "stb-sit-1h", "index1": "0", "is_public": "True", "name": "0.113-0.160 MeV", "parameter": "stb_sit_1h_4hecr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_4hecr(0)"}, "stb_sit_1h_4hecr1": {"__spz_name__": "0.160-0.226 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_4hecr(1)", "dataset": "stb-sit-1h", "index1": "1", "is_public": "True", "name": "0.160-0.226 MeV", "parameter": "stb_sit_1h_4hecr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_4hecr(1)"}, "stb_sit_1h_4hecr2": {"__spz_name__": "0.226-0.320 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_4hecr(2)", "dataset": "stb-sit-1h", "index1": "2", "is_public": "True", "name": "0.226-0.320 MeV", "parameter": "stb_sit_1h_4hecr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_4hecr(2)"}, "stb_sit_1h_4hecr3": {"__spz_name__": "0.320-0.452 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_4hecr(3)", "dataset": "stb-sit-1h", "index1": "3", "is_public": "True", "name": "0.320-0.452 MeV", "parameter": "stb_sit_1h_4hecr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_4hecr(3)"}, "stb_sit_1h_4hecr4": {"__spz_name__": "0.452-0.640 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_4hecr(4)", "dataset": "stb-sit-1h", "index1": "4", "is_public": "True", "name": "0.452-0.640 MeV", "parameter": "stb_sit_1h_4hecr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_4hecr(4)"}, "stb_sit_1h_4hecr5": {"__spz_name__": "0.640-0.905 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_4hecr(5)", "dataset": "stb-sit-1h", "index1": "5", "is_public": "True", "name": "0.640-0.905 MeV", "parameter": "stb_sit_1h_4hecr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_4hecr(5)"}, "stb_sit_1h_4hecr6": {"__spz_name__": "0.905-1.280 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_4hecr(6)", "dataset": "stb-sit-1h", "index1": "6", "is_public": "True", "name": "0.905-1.280 MeV", "parameter": "stb_sit_1h_4hecr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_4hecr(6)"}, "stb_sit_1h_4hecr7": {"__spz_name__": "1.280-1.810 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_4hecr(7)", "dataset": "stb-sit-1h", "index1": "7", "is_public": "True", "name": "1.280-1.810 MeV", "parameter": "stb_sit_1h_4hecr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_4hecr(7)"}, "stb_sit_1h_4hecr8": {"__spz_name__": "1.810-2.560 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_4hecr(8)", "dataset": "stb-sit-1h", "index1": "8", "is_public": "True", "name": "1.810-2.560 MeV", "parameter": "stb_sit_1h_4hecr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_4hecr(8)"}, "stb_sit_1h_4hecr9": {"__spz_name__": "2.560-3.620 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_4hecr(9)", "dataset": "stb-sit-1h", "index1": "9", "is_public": "True", "name": "2.560-3.620 MeV", "parameter": "stb_sit_1h_4hecr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_4hecr(9)"}, "stop_date": "2014-09-27T16:00:26Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_sit_1h_4hecr"}, "stb_sit_1h_4hefl": {"__spz_name__": "4he flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_sit_1h_4hefl", "dataset": "stb-sit-1h", "display_type": "timeseries", "is_public": "True", "name": "4he flux", "size": "10", "start_date": "2007-01-27T00:00:51Z", "stb_sit_1h_4hefl0": {"__spz_name__": "0.113-0.160 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_4hefl(0)", "dataset": "stb-sit-1h", "index1": "0", "is_public": "True", "name": "0.113-0.160 MeV", "parameter": "stb_sit_1h_4hefl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_4hefl(0)"}, "stb_sit_1h_4hefl1": {"__spz_name__": "0.160-0.226 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_4hefl(1)", "dataset": "stb-sit-1h", "index1": "1", "is_public": "True", "name": "0.160-0.226 MeV", "parameter": "stb_sit_1h_4hefl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_4hefl(1)"}, "stb_sit_1h_4hefl2": {"__spz_name__": "0.226-0.320 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_4hefl(2)", "dataset": "stb-sit-1h", "index1": "2", "is_public": "True", "name": "0.226-0.320 MeV", "parameter": "stb_sit_1h_4hefl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_4hefl(2)"}, "stb_sit_1h_4hefl3": {"__spz_name__": "0.320-0.452 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_4hefl(3)", "dataset": "stb-sit-1h", "index1": "3", "is_public": "True", "name": "0.320-0.452 MeV", "parameter": "stb_sit_1h_4hefl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_4hefl(3)"}, "stb_sit_1h_4hefl4": {"__spz_name__": "0.452-0.640 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_4hefl(4)", "dataset": "stb-sit-1h", "index1": "4", "is_public": "True", "name": "0.452-0.640 MeV", "parameter": "stb_sit_1h_4hefl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_4hefl(4)"}, "stb_sit_1h_4hefl5": {"__spz_name__": "0.640-0.905 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_4hefl(5)", "dataset": "stb-sit-1h", "index1": "5", "is_public": "True", "name": "0.640-0.905 MeV", "parameter": "stb_sit_1h_4hefl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_4hefl(5)"}, "stb_sit_1h_4hefl6": {"__spz_name__": "0.905-1.280 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_4hefl(6)", "dataset": "stb-sit-1h", "index1": "6", "is_public": "True", "name": "0.905-1.280 MeV", "parameter": "stb_sit_1h_4hefl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_4hefl(6)"}, "stb_sit_1h_4hefl7": {"__spz_name__": "1.280-1.810 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_4hefl(7)", "dataset": "stb-sit-1h", "index1": "7", "is_public": "True", "name": "1.280-1.810 MeV", "parameter": "stb_sit_1h_4hefl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_4hefl(7)"}, "stb_sit_1h_4hefl8": {"__spz_name__": "1.810-2.560 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_4hefl(8)", "dataset": "stb-sit-1h", "index1": "8", "is_public": "True", "name": "1.810-2.560 MeV", "parameter": "stb_sit_1h_4hefl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_4hefl(8)"}, "stb_sit_1h_4hefl9": {"__spz_name__": "2.560-3.620 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_4hefl(9)", "dataset": "stb-sit-1h", "index1": "9", "is_public": "True", "name": "2.560-3.620 MeV", "parameter": "stb_sit_1h_4hefl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_4hefl(9)"}, "stop_date": "2014-09-27T16:00:26Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_sit_1h_4hefl"}, "stb_sit_1h_4hesp": {"__spz_name__": "4he flux spectro", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_sit_1h_4hesp", "dataset": "stb-sit-1h", "display_type": "spectrogram", "is_public": "True", "name": "4he flux spectro", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "units": "1/(cm2-sr-sec-MeV)", "xmlid": "stb_sit_1h_4hesp"}, "stb_sit_1h_fecr": {"__spz_name__": "fe count rate", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_sit_1h_fecr", "dataset": "stb-sit-1h", "display_type": "timeseries", "is_public": "True", "name": "fe count rate", "size": "11", "start_date": "2007-01-27T00:00:51Z", "stb_sit_1h_fecr0": {"__spz_name__": "0.080-0.113 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_fecr(0)", "dataset": "stb-sit-1h", "index1": "0", "is_public": "True", "name": "0.080-0.113 MeV", "parameter": "stb_sit_1h_fecr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_fecr(0)"}, "stb_sit_1h_fecr1": {"__spz_name__": "0.113-0.160 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_fecr(1)", "dataset": "stb-sit-1h", "index1": "1", "is_public": "True", "name": "0.113-0.160 MeV", "parameter": "stb_sit_1h_fecr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_fecr(1)"}, "stb_sit_1h_fecr10": {"__spz_name__": "2.560-3.620 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_fecr(10)", "dataset": "stb-sit-1h", "index1": "10", "is_public": "True", "name": "2.560-3.620 MeV", "parameter": "stb_sit_1h_fecr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_fecr(10)"}, "stb_sit_1h_fecr2": {"__spz_name__": "0.160-0.226 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_fecr(2)", "dataset": "stb-sit-1h", "index1": "2", "is_public": "True", "name": "0.160-0.226 MeV", "parameter": "stb_sit_1h_fecr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_fecr(2)"}, "stb_sit_1h_fecr3": {"__spz_name__": "0.226-0.320 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_fecr(3)", "dataset": "stb-sit-1h", "index1": "3", "is_public": "True", "name": "0.226-0.320 MeV", "parameter": "stb_sit_1h_fecr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_fecr(3)"}, "stb_sit_1h_fecr4": {"__spz_name__": "0.320-0.452 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_fecr(4)", "dataset": "stb-sit-1h", "index1": "4", "is_public": "True", "name": "0.320-0.452 MeV", "parameter": "stb_sit_1h_fecr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_fecr(4)"}, "stb_sit_1h_fecr5": {"__spz_name__": "0.452-0.640 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_fecr(5)", "dataset": "stb-sit-1h", "index1": "5", "is_public": "True", "name": "0.452-0.640 MeV", "parameter": "stb_sit_1h_fecr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_fecr(5)"}, "stb_sit_1h_fecr6": {"__spz_name__": "0.640-0.905 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_fecr(6)", "dataset": "stb-sit-1h", "index1": "6", "is_public": "True", "name": "0.640-0.905 MeV", "parameter": "stb_sit_1h_fecr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_fecr(6)"}, "stb_sit_1h_fecr7": {"__spz_name__": "0.905-1.280 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_fecr(7)", "dataset": "stb-sit-1h", "index1": "7", "is_public": "True", "name": "0.905-1.280 MeV", "parameter": "stb_sit_1h_fecr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_fecr(7)"}, "stb_sit_1h_fecr8": {"__spz_name__": "1.280-1.810 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_fecr(8)", "dataset": "stb-sit-1h", "index1": "8", "is_public": "True", "name": "1.280-1.810 MeV", "parameter": "stb_sit_1h_fecr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_fecr(8)"}, "stb_sit_1h_fecr9": {"__spz_name__": "1.810-2.560 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_fecr(9)", "dataset": "stb-sit-1h", "index1": "9", "is_public": "True", "name": "1.810-2.560 MeV", "parameter": "stb_sit_1h_fecr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_fecr(9)"}, "stop_date": "2014-09-27T16:00:26Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_sit_1h_fecr"}, "stb_sit_1h_fefl": {"__spz_name__": "fe flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_sit_1h_fefl", "dataset": "stb-sit-1h", "display_type": "timeseries", "is_public": "True", "name": "fe flux", "size": "11", "start_date": "2007-01-27T00:00:51Z", "stb_sit_1h_fefl0": {"__spz_name__": "0.080-0.113 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_fefl(0)", "dataset": "stb-sit-1h", "index1": "0", "is_public": "True", "name": "0.080-0.113 MeV", "parameter": "stb_sit_1h_fefl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_fefl(0)"}, "stb_sit_1h_fefl1": {"__spz_name__": "0.113-0.160 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_fefl(1)", "dataset": "stb-sit-1h", "index1": "1", "is_public": "True", "name": "0.113-0.160 MeV", "parameter": "stb_sit_1h_fefl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_fefl(1)"}, "stb_sit_1h_fefl10": {"__spz_name__": "2.560-3.620 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_fefl(10)", "dataset": "stb-sit-1h", "index1": "10", "is_public": "True", "name": "2.560-3.620 MeV", "parameter": "stb_sit_1h_fefl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_fefl(10)"}, "stb_sit_1h_fefl2": {"__spz_name__": "0.160-0.226 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_fefl(2)", "dataset": "stb-sit-1h", "index1": "2", "is_public": "True", "name": "0.160-0.226 MeV", "parameter": "stb_sit_1h_fefl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_fefl(2)"}, "stb_sit_1h_fefl3": {"__spz_name__": "0.226-0.320 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_fefl(3)", "dataset": "stb-sit-1h", "index1": "3", "is_public": "True", "name": "0.226-0.320 MeV", "parameter": "stb_sit_1h_fefl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_fefl(3)"}, "stb_sit_1h_fefl4": {"__spz_name__": "0.320-0.452 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_fefl(4)", "dataset": "stb-sit-1h", "index1": "4", "is_public": "True", "name": "0.320-0.452 MeV", "parameter": "stb_sit_1h_fefl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_fefl(4)"}, "stb_sit_1h_fefl5": {"__spz_name__": "0.452-0.640 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_fefl(5)", "dataset": "stb-sit-1h", "index1": "5", "is_public": "True", "name": "0.452-0.640 MeV", "parameter": "stb_sit_1h_fefl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_fefl(5)"}, "stb_sit_1h_fefl6": {"__spz_name__": "0.640-0.905 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_fefl(6)", "dataset": "stb-sit-1h", "index1": "6", "is_public": "True", "name": "0.640-0.905 MeV", "parameter": "stb_sit_1h_fefl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_fefl(6)"}, "stb_sit_1h_fefl7": {"__spz_name__": "0.905-1.280 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_fefl(7)", "dataset": "stb-sit-1h", "index1": "7", "is_public": "True", "name": "0.905-1.280 MeV", "parameter": "stb_sit_1h_fefl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_fefl(7)"}, "stb_sit_1h_fefl8": {"__spz_name__": "1.280-1.810 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_fefl(8)", "dataset": "stb-sit-1h", "index1": "8", "is_public": "True", "name": "1.280-1.810 MeV", "parameter": "stb_sit_1h_fefl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_fefl(8)"}, "stb_sit_1h_fefl9": {"__spz_name__": "1.810-2.560 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_fefl(9)", "dataset": "stb-sit-1h", "index1": "9", "is_public": "True", "name": "1.810-2.560 MeV", "parameter": "stb_sit_1h_fefl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_fefl(9)"}, "stop_date": "2014-09-27T16:00:26Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_sit_1h_fefl"}, "stb_sit_1h_fesp": {"__spz_name__": "fe flux spectro", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_sit_1h_fesp", "dataset": "stb-sit-1h", "display_type": "spectrogram", "is_public": "True", "name": "fe flux spectro", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "units": "1/(cm2-sr-sec-MeV)", "xmlid": "stb_sit_1h_fesp"}, "stb_sit_1h_hcr": {"__spz_name__": "h count rate", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_sit_1h_hcr", "dataset": "stb-sit-1h", "display_type": "timeseries", "is_public": "True", "name": "h count rate", "size": "7", "start_date": "2007-01-27T00:00:51Z", "stb_sit_1h_hcr0": {"__spz_name__": "0.320-0.452 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_hcr(0)", "dataset": "stb-sit-1h", "index1": "0", "is_public": "True", "name": "0.320-0.452 MeV", "parameter": "stb_sit_1h_hcr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_hcr(0)"}, "stb_sit_1h_hcr1": {"__spz_name__": "0.452-0.640 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_hcr(1)", "dataset": "stb-sit-1h", "index1": "1", "is_public": "True", "name": "0.452-0.640 MeV", "parameter": "stb_sit_1h_hcr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_hcr(1)"}, "stb_sit_1h_hcr2": {"__spz_name__": "0.640-0.905 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_hcr(2)", "dataset": "stb-sit-1h", "index1": "2", "is_public": "True", "name": "0.640-0.905 MeV", "parameter": "stb_sit_1h_hcr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_hcr(2)"}, "stb_sit_1h_hcr3": {"__spz_name__": "0.905-1.280 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_hcr(3)", "dataset": "stb-sit-1h", "index1": "3", "is_public": "True", "name": "0.905-1.280 MeV", "parameter": "stb_sit_1h_hcr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_hcr(3)"}, "stb_sit_1h_hcr4": {"__spz_name__": "1.280-1.810 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_hcr(4)", "dataset": "stb-sit-1h", "index1": "4", "is_public": "True", "name": "1.280-1.810 MeV", "parameter": "stb_sit_1h_hcr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_hcr(4)"}, "stb_sit_1h_hcr5": {"__spz_name__": "1.810-2.560 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_hcr(5)", "dataset": "stb-sit-1h", "index1": "5", "is_public": "True", "name": "1.810-2.560 MeV", "parameter": "stb_sit_1h_hcr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_hcr(5)"}, "stb_sit_1h_hcr6": {"__spz_name__": "2.560-3.620 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_hcr(6)", "dataset": "stb-sit-1h", "index1": "6", "is_public": "True", "name": "2.560-3.620 MeV", "parameter": "stb_sit_1h_hcr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_hcr(6)"}, "stop_date": "2014-09-27T16:00:26Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_sit_1h_hcr"}, "stb_sit_1h_hfl": {"__spz_name__": "h flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_sit_1h_hfl", "dataset": "stb-sit-1h", "display_type": "timeseries", "is_public": "True", "name": "h flux", "size": "7", "start_date": "2007-01-27T00:00:51Z", "stb_sit_1h_hfl0": {"__spz_name__": "0.320-0.452 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_hfl(0)", "dataset": "stb-sit-1h", "index1": "0", "is_public": "True", "name": "0.320-0.452 MeV", "parameter": "stb_sit_1h_hfl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_hfl(0)"}, "stb_sit_1h_hfl1": {"__spz_name__": "0.452-0.640 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_hfl(1)", "dataset": "stb-sit-1h", "index1": "1", "is_public": "True", "name": "0.452-0.640 MeV", "parameter": "stb_sit_1h_hfl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_hfl(1)"}, "stb_sit_1h_hfl2": {"__spz_name__": "0.640-0.905 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_hfl(2)", "dataset": "stb-sit-1h", "index1": "2", "is_public": "True", "name": "0.640-0.905 MeV", "parameter": "stb_sit_1h_hfl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_hfl(2)"}, "stb_sit_1h_hfl3": {"__spz_name__": "0.905-1.280 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_hfl(3)", "dataset": "stb-sit-1h", "index1": "3", "is_public": "True", "name": "0.905-1.280 MeV", "parameter": "stb_sit_1h_hfl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_hfl(3)"}, "stb_sit_1h_hfl4": {"__spz_name__": "1.280-1.810 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_hfl(4)", "dataset": "stb-sit-1h", "index1": "4", "is_public": "True", "name": "1.280-1.810 MeV", "parameter": "stb_sit_1h_hfl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_hfl(4)"}, "stb_sit_1h_hfl5": {"__spz_name__": "1.810-2.560 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_hfl(5)", "dataset": "stb-sit-1h", "index1": "5", "is_public": "True", "name": "1.810-2.560 MeV", "parameter": "stb_sit_1h_hfl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_hfl(5)"}, "stb_sit_1h_hfl6": {"__spz_name__": "2.560-3.620 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_hfl(6)", "dataset": "stb-sit-1h", "index1": "6", "is_public": "True", "name": "2.560-3.620 MeV", "parameter": "stb_sit_1h_hfl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_hfl(6)"}, "stop_date": "2014-09-27T16:00:26Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_sit_1h_hfl"}, "stb_sit_1h_hsp": {"__spz_name__": "h flux spectro", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_sit_1h_hsp", "dataset": "stb-sit-1h", "display_type": "spectrogram", "is_public": "True", "name": "h flux spectro", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "units": "1/(cm2-sr-sec-MeV)", "xmlid": "stb_sit_1h_hsp"}, "stb_sit_1h_ocr": {"__spz_name__": "o count rate", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_sit_1h_ocr", "dataset": "stb-sit-1h", "display_type": "timeseries", "is_public": "True", "name": "o count rate", "size": "10", "start_date": "2007-01-27T00:00:51Z", "stb_sit_1h_ocr0": {"__spz_name__": "0.113-0.160 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_ocr(0)", "dataset": "stb-sit-1h", "index1": "0", "is_public": "True", "name": "0.113-0.160 MeV", "parameter": "stb_sit_1h_ocr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_ocr(0)"}, "stb_sit_1h_ocr1": {"__spz_name__": "0.160-0.226 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_ocr(1)", "dataset": "stb-sit-1h", "index1": "1", "is_public": "True", "name": "0.160-0.226 MeV", "parameter": "stb_sit_1h_ocr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_ocr(1)"}, "stb_sit_1h_ocr2": {"__spz_name__": "0.226-0.320 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_ocr(2)", "dataset": "stb-sit-1h", "index1": "2", "is_public": "True", "name": "0.226-0.320 MeV", "parameter": "stb_sit_1h_ocr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_ocr(2)"}, "stb_sit_1h_ocr3": {"__spz_name__": "0.320-0.452 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_ocr(3)", "dataset": "stb-sit-1h", "index1": "3", "is_public": "True", "name": "0.320-0.452 MeV", "parameter": "stb_sit_1h_ocr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_ocr(3)"}, "stb_sit_1h_ocr4": {"__spz_name__": "0.452-0.640 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_ocr(4)", "dataset": "stb-sit-1h", "index1": "4", "is_public": "True", "name": "0.452-0.640 MeV", "parameter": "stb_sit_1h_ocr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_ocr(4)"}, "stb_sit_1h_ocr5": {"__spz_name__": "0.640-0.905 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_ocr(5)", "dataset": "stb-sit-1h", "index1": "5", "is_public": "True", "name": "0.640-0.905 MeV", "parameter": "stb_sit_1h_ocr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_ocr(5)"}, "stb_sit_1h_ocr6": {"__spz_name__": "0.905-1.280 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_ocr(6)", "dataset": "stb-sit-1h", "index1": "6", "is_public": "True", "name": "0.905-1.280 MeV", "parameter": "stb_sit_1h_ocr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_ocr(6)"}, "stb_sit_1h_ocr7": {"__spz_name__": "1.280-1.810 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_ocr(7)", "dataset": "stb-sit-1h", "index1": "7", "is_public": "True", "name": "1.280-1.810 MeV", "parameter": "stb_sit_1h_ocr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_ocr(7)"}, "stb_sit_1h_ocr8": {"__spz_name__": "1.810-2.560 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_ocr(8)", "dataset": "stb-sit-1h", "index1": "8", "is_public": "True", "name": "1.810-2.560 MeV", "parameter": "stb_sit_1h_ocr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_ocr(8)"}, "stb_sit_1h_ocr9": {"__spz_name__": "2.560-3.620 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_ocr(9)", "dataset": "stb-sit-1h", "index1": "9", "is_public": "True", "name": "2.560-3.620 MeV", "parameter": "stb_sit_1h_ocr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_ocr(9)"}, "stop_date": "2014-09-27T16:00:26Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_sit_1h_ocr"}, "stb_sit_1h_ofl": {"__spz_name__": "o flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_sit_1h_ofl", "dataset": "stb-sit-1h", "display_type": "timeseries", "is_public": "True", "name": "o flux", "size": "10", "start_date": "2007-01-27T00:00:51Z", "stb_sit_1h_ofl0": {"__spz_name__": "0.113-0.160 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_ofl(0)", "dataset": "stb-sit-1h", "index1": "0", "is_public": "True", "name": "0.113-0.160 MeV", "parameter": "stb_sit_1h_ofl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_ofl(0)"}, "stb_sit_1h_ofl1": {"__spz_name__": "0.160-0.226 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_ofl(1)", "dataset": "stb-sit-1h", "index1": "1", "is_public": "True", "name": "0.160-0.226 MeV", "parameter": "stb_sit_1h_ofl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_ofl(1)"}, "stb_sit_1h_ofl2": {"__spz_name__": "0.226-0.320 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_ofl(2)", "dataset": "stb-sit-1h", "index1": "2", "is_public": "True", "name": "0.226-0.320 MeV", "parameter": "stb_sit_1h_ofl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_ofl(2)"}, "stb_sit_1h_ofl3": {"__spz_name__": "0.320-0.452 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_ofl(3)", "dataset": "stb-sit-1h", "index1": "3", "is_public": "True", "name": "0.320-0.452 MeV", "parameter": "stb_sit_1h_ofl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_ofl(3)"}, "stb_sit_1h_ofl4": {"__spz_name__": "0.452-0.640 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_ofl(4)", "dataset": "stb-sit-1h", "index1": "4", "is_public": "True", "name": "0.452-0.640 MeV", "parameter": "stb_sit_1h_ofl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_ofl(4)"}, "stb_sit_1h_ofl5": {"__spz_name__": "0.640-0.905 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_ofl(5)", "dataset": "stb-sit-1h", "index1": "5", "is_public": "True", "name": "0.640-0.905 MeV", "parameter": "stb_sit_1h_ofl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_ofl(5)"}, "stb_sit_1h_ofl6": {"__spz_name__": "0.905-1.280 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_ofl(6)", "dataset": "stb-sit-1h", "index1": "6", "is_public": "True", "name": "0.905-1.280 MeV", "parameter": "stb_sit_1h_ofl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_ofl(6)"}, "stb_sit_1h_ofl7": {"__spz_name__": "1.280-1.810 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_ofl(7)", "dataset": "stb-sit-1h", "index1": "7", "is_public": "True", "name": "1.280-1.810 MeV", "parameter": "stb_sit_1h_ofl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_ofl(7)"}, "stb_sit_1h_ofl8": {"__spz_name__": "1.810-2.560 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_ofl(8)", "dataset": "stb-sit-1h", "index1": "8", "is_public": "True", "name": "1.810-2.560 MeV", "parameter": "stb_sit_1h_ofl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_ofl(8)"}, "stb_sit_1h_ofl9": {"__spz_name__": "2.560-3.620 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1h_ofl(9)", "dataset": "stb-sit-1h", "index1": "9", "is_public": "True", "name": "2.560-3.620 MeV", "parameter": "stb_sit_1h_ofl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "xmlid": "stb_sit_1h_ofl(9)"}, "stop_date": "2014-09-27T16:00:26Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_sit_1h_ofl"}, "stb_sit_1h_osp": {"__spz_name__": "o flux spectro", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_sit_1h_osp", "dataset": "stb-sit-1h", "display_type": "spectrogram", "is_public": "True", "name": "o flux spectro", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:00:26Z", "units": "1/(cm2-sr-sec-MeV)", "xmlid": "stb_sit_1h_osp"}, "stop_date": "2014-09-27T16:00:26Z", "target": "Heliosphere.Remote1AU", "xmlid": "stb-sit-1h"}, "stb_sit_1min": {"__spz_name__": "1 minute", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "stb-sit-1min", "att": "auto/stb-sit-1min", "dataSource": "Caltech Space Radiation Lab", "desc": "Ion flux 1 minute rate
Sampling: 60S
Provider: Caltech Space Radiation Lab", "is_public": "True", "lastModificationDate": "2020-03-10T12:48:04Z", "lastUpdate": "2020-03-10T12:48:04Z", "measurement_type": "EnergeticParticles", "name": "1 minute", "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/STEREO-B/SIT/stb-sit-1min", "start_date": "2007-01-27T00:00:51Z", "stb_sit_1min_4hecr": {"__spz_name__": "4he count rate", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_sit_1min_4hecr", "dataset": "stb-sit-1min", "display_type": "timeseries", "is_public": "True", "name": "4he count rate", "size": "10", "start_date": "2007-01-27T00:00:51Z", "stb_sit_1min_4hecr0": {"__spz_name__": "0.113-0.160 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_4hecr(0)", "dataset": "stb-sit-1min", "index1": "0", "is_public": "True", "name": "0.113-0.160 MeV", "parameter": "stb_sit_1min_4hecr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_4hecr(0)"}, "stb_sit_1min_4hecr1": {"__spz_name__": "0.160-0.226 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_4hecr(1)", "dataset": "stb-sit-1min", "index1": "1", "is_public": "True", "name": "0.160-0.226 MeV", "parameter": "stb_sit_1min_4hecr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_4hecr(1)"}, "stb_sit_1min_4hecr2": {"__spz_name__": "0.226-0.320 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_4hecr(2)", "dataset": "stb-sit-1min", "index1": "2", "is_public": "True", "name": "0.226-0.320 MeV", "parameter": "stb_sit_1min_4hecr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_4hecr(2)"}, "stb_sit_1min_4hecr3": {"__spz_name__": "0.320-0.452 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_4hecr(3)", "dataset": "stb-sit-1min", "index1": "3", "is_public": "True", "name": "0.320-0.452 MeV", "parameter": "stb_sit_1min_4hecr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_4hecr(3)"}, "stb_sit_1min_4hecr4": {"__spz_name__": "0.452-0.640 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_4hecr(4)", "dataset": "stb-sit-1min", "index1": "4", "is_public": "True", "name": "0.452-0.640 MeV", "parameter": "stb_sit_1min_4hecr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_4hecr(4)"}, "stb_sit_1min_4hecr5": {"__spz_name__": "0.640-0.905 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_4hecr(5)", "dataset": "stb-sit-1min", "index1": "5", "is_public": "True", "name": "0.640-0.905 MeV", "parameter": "stb_sit_1min_4hecr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_4hecr(5)"}, "stb_sit_1min_4hecr6": {"__spz_name__": "0.905-1.280 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_4hecr(6)", "dataset": "stb-sit-1min", "index1": "6", "is_public": "True", "name": "0.905-1.280 MeV", "parameter": "stb_sit_1min_4hecr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_4hecr(6)"}, "stb_sit_1min_4hecr7": {"__spz_name__": "1.280-1.810 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_4hecr(7)", "dataset": "stb-sit-1min", "index1": "7", "is_public": "True", "name": "1.280-1.810 MeV", "parameter": "stb_sit_1min_4hecr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_4hecr(7)"}, "stb_sit_1min_4hecr8": {"__spz_name__": "1.810-2.560 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_4hecr(8)", "dataset": "stb-sit-1min", "index1": "8", "is_public": "True", "name": "1.810-2.560 MeV", "parameter": "stb_sit_1min_4hecr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_4hecr(8)"}, "stb_sit_1min_4hecr9": {"__spz_name__": "2.560-3.620 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_4hecr(9)", "dataset": "stb-sit-1min", "index1": "9", "is_public": "True", "name": "2.560-3.620 MeV", "parameter": "stb_sit_1min_4hecr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_4hecr(9)"}, "stop_date": "2014-09-27T16:28:26Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_sit_1min_4hecr"}, "stb_sit_1min_4hefl": {"__spz_name__": "4he flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_sit_1min_4hefl", "dataset": "stb-sit-1min", "display_type": "timeseries", "is_public": "True", "name": "4he flux", "size": "10", "start_date": "2007-01-27T00:00:51Z", "stb_sit_1min_4hefl0": {"__spz_name__": "0.113-0.160 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_4hefl(0)", "dataset": "stb-sit-1min", "index1": "0", "is_public": "True", "name": "0.113-0.160 MeV", "parameter": "stb_sit_1min_4hefl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_4hefl(0)"}, "stb_sit_1min_4hefl1": {"__spz_name__": "0.160-0.226 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_4hefl(1)", "dataset": "stb-sit-1min", "index1": "1", "is_public": "True", "name": "0.160-0.226 MeV", "parameter": "stb_sit_1min_4hefl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_4hefl(1)"}, "stb_sit_1min_4hefl2": {"__spz_name__": "0.226-0.320 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_4hefl(2)", "dataset": "stb-sit-1min", "index1": "2", "is_public": "True", "name": "0.226-0.320 MeV", "parameter": "stb_sit_1min_4hefl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_4hefl(2)"}, "stb_sit_1min_4hefl3": {"__spz_name__": "0.320-0.452 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_4hefl(3)", "dataset": "stb-sit-1min", "index1": "3", "is_public": "True", "name": "0.320-0.452 MeV", "parameter": "stb_sit_1min_4hefl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_4hefl(3)"}, "stb_sit_1min_4hefl4": {"__spz_name__": "0.452-0.640 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_4hefl(4)", "dataset": "stb-sit-1min", "index1": "4", "is_public": "True", "name": "0.452-0.640 MeV", "parameter": "stb_sit_1min_4hefl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_4hefl(4)"}, "stb_sit_1min_4hefl5": {"__spz_name__": "0.640-0.905 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_4hefl(5)", "dataset": "stb-sit-1min", "index1": "5", "is_public": "True", "name": "0.640-0.905 MeV", "parameter": "stb_sit_1min_4hefl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_4hefl(5)"}, "stb_sit_1min_4hefl6": {"__spz_name__": "0.905-1.280 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_4hefl(6)", "dataset": "stb-sit-1min", "index1": "6", "is_public": "True", "name": "0.905-1.280 MeV", "parameter": "stb_sit_1min_4hefl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_4hefl(6)"}, "stb_sit_1min_4hefl7": {"__spz_name__": "1.280-1.810 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_4hefl(7)", "dataset": "stb-sit-1min", "index1": "7", "is_public": "True", "name": "1.280-1.810 MeV", "parameter": "stb_sit_1min_4hefl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_4hefl(7)"}, "stb_sit_1min_4hefl8": {"__spz_name__": "1.810-2.560 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_4hefl(8)", "dataset": "stb-sit-1min", "index1": "8", "is_public": "True", "name": "1.810-2.560 MeV", "parameter": "stb_sit_1min_4hefl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_4hefl(8)"}, "stb_sit_1min_4hefl9": {"__spz_name__": "2.560-3.620 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_4hefl(9)", "dataset": "stb-sit-1min", "index1": "9", "is_public": "True", "name": "2.560-3.620 MeV", "parameter": "stb_sit_1min_4hefl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_4hefl(9)"}, "stop_date": "2014-09-27T16:28:26Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_sit_1min_4hefl"}, "stb_sit_1min_4hesp": {"__spz_name__": "4he flux spectro", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_sit_1min_4hesp", "dataset": "stb-sit-1min", "display_type": "spectrogram", "is_public": "True", "name": "4he flux spectro", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "units": "1/(cm2-sr-sec-MeV)", "xmlid": "stb_sit_1min_4hesp"}, "stb_sit_1min_fecr": {"__spz_name__": "fe count rate", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_sit_1min_fecr", "dataset": "stb-sit-1min", "display_type": "timeseries", "is_public": "True", "name": "fe count rate", "size": "11", "start_date": "2007-01-27T00:00:51Z", "stb_sit_1min_fecr0": {"__spz_name__": "0.080-0.113 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_fecr(0)", "dataset": "stb-sit-1min", "index1": "0", "is_public": "True", "name": "0.080-0.113 MeV", "parameter": "stb_sit_1min_fecr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_fecr(0)"}, "stb_sit_1min_fecr1": {"__spz_name__": "0.113-0.160 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_fecr(1)", "dataset": "stb-sit-1min", "index1": "1", "is_public": "True", "name": "0.113-0.160 MeV", "parameter": "stb_sit_1min_fecr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_fecr(1)"}, "stb_sit_1min_fecr10": {"__spz_name__": "2.560-3.620 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_fecr(10)", "dataset": "stb-sit-1min", "index1": "10", "is_public": "True", "name": "2.560-3.620 MeV", "parameter": "stb_sit_1min_fecr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_fecr(10)"}, "stb_sit_1min_fecr2": {"__spz_name__": "0.160-0.226 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_fecr(2)", "dataset": "stb-sit-1min", "index1": "2", "is_public": "True", "name": "0.160-0.226 MeV", "parameter": "stb_sit_1min_fecr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_fecr(2)"}, "stb_sit_1min_fecr3": {"__spz_name__": "0.226-0.320 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_fecr(3)", "dataset": "stb-sit-1min", "index1": "3", "is_public": "True", "name": "0.226-0.320 MeV", "parameter": "stb_sit_1min_fecr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_fecr(3)"}, "stb_sit_1min_fecr4": {"__spz_name__": "0.320-0.452 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_fecr(4)", "dataset": "stb-sit-1min", "index1": "4", "is_public": "True", "name": "0.320-0.452 MeV", "parameter": "stb_sit_1min_fecr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_fecr(4)"}, "stb_sit_1min_fecr5": {"__spz_name__": "0.452-0.640 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_fecr(5)", "dataset": "stb-sit-1min", "index1": "5", "is_public": "True", "name": "0.452-0.640 MeV", "parameter": "stb_sit_1min_fecr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_fecr(5)"}, "stb_sit_1min_fecr6": {"__spz_name__": "0.640-0.905 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_fecr(6)", "dataset": "stb-sit-1min", "index1": "6", "is_public": "True", "name": "0.640-0.905 MeV", "parameter": "stb_sit_1min_fecr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_fecr(6)"}, "stb_sit_1min_fecr7": {"__spz_name__": "0.905-1.280 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_fecr(7)", "dataset": "stb-sit-1min", "index1": "7", "is_public": "True", "name": "0.905-1.280 MeV", "parameter": "stb_sit_1min_fecr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_fecr(7)"}, "stb_sit_1min_fecr8": {"__spz_name__": "1.280-1.810 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_fecr(8)", "dataset": "stb-sit-1min", "index1": "8", "is_public": "True", "name": "1.280-1.810 MeV", "parameter": "stb_sit_1min_fecr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_fecr(8)"}, "stb_sit_1min_fecr9": {"__spz_name__": "1.810-2.560 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_fecr(9)", "dataset": "stb-sit-1min", "index1": "9", "is_public": "True", "name": "1.810-2.560 MeV", "parameter": "stb_sit_1min_fecr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_fecr(9)"}, "stop_date": "2014-09-27T16:28:26Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_sit_1min_fecr"}, "stb_sit_1min_fefl": {"__spz_name__": "fe flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_sit_1min_fefl", "dataset": "stb-sit-1min", "display_type": "timeseries", "is_public": "True", "name": "fe flux", "size": "11", "start_date": "2007-01-27T00:00:51Z", "stb_sit_1min_fefl0": {"__spz_name__": "0.080-0.113 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_fefl(0)", "dataset": "stb-sit-1min", "index1": "0", "is_public": "True", "name": "0.080-0.113 MeV", "parameter": "stb_sit_1min_fefl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_fefl(0)"}, "stb_sit_1min_fefl1": {"__spz_name__": "0.113-0.160 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_fefl(1)", "dataset": "stb-sit-1min", "index1": "1", "is_public": "True", "name": "0.113-0.160 MeV", "parameter": "stb_sit_1min_fefl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_fefl(1)"}, "stb_sit_1min_fefl10": {"__spz_name__": "2.560-3.620 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_fefl(10)", "dataset": "stb-sit-1min", "index1": "10", "is_public": "True", "name": "2.560-3.620 MeV", "parameter": "stb_sit_1min_fefl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_fefl(10)"}, "stb_sit_1min_fefl2": {"__spz_name__": "0.160-0.226 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_fefl(2)", "dataset": "stb-sit-1min", "index1": "2", "is_public": "True", "name": "0.160-0.226 MeV", "parameter": "stb_sit_1min_fefl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_fefl(2)"}, "stb_sit_1min_fefl3": {"__spz_name__": "0.226-0.320 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_fefl(3)", "dataset": "stb-sit-1min", "index1": "3", "is_public": "True", "name": "0.226-0.320 MeV", "parameter": "stb_sit_1min_fefl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_fefl(3)"}, "stb_sit_1min_fefl4": {"__spz_name__": "0.320-0.452 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_fefl(4)", "dataset": "stb-sit-1min", "index1": "4", "is_public": "True", "name": "0.320-0.452 MeV", "parameter": "stb_sit_1min_fefl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_fefl(4)"}, "stb_sit_1min_fefl5": {"__spz_name__": "0.452-0.640 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_fefl(5)", "dataset": "stb-sit-1min", "index1": "5", "is_public": "True", "name": "0.452-0.640 MeV", "parameter": "stb_sit_1min_fefl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_fefl(5)"}, "stb_sit_1min_fefl6": {"__spz_name__": "0.640-0.905 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_fefl(6)", "dataset": "stb-sit-1min", "index1": "6", "is_public": "True", "name": "0.640-0.905 MeV", "parameter": "stb_sit_1min_fefl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_fefl(6)"}, "stb_sit_1min_fefl7": {"__spz_name__": "0.905-1.280 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_fefl(7)", "dataset": "stb-sit-1min", "index1": "7", "is_public": "True", "name": "0.905-1.280 MeV", "parameter": "stb_sit_1min_fefl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_fefl(7)"}, "stb_sit_1min_fefl8": {"__spz_name__": "1.280-1.810 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_fefl(8)", "dataset": "stb-sit-1min", "index1": "8", "is_public": "True", "name": "1.280-1.810 MeV", "parameter": "stb_sit_1min_fefl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_fefl(8)"}, "stb_sit_1min_fefl9": {"__spz_name__": "1.810-2.560 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_fefl(9)", "dataset": "stb-sit-1min", "index1": "9", "is_public": "True", "name": "1.810-2.560 MeV", "parameter": "stb_sit_1min_fefl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_fefl(9)"}, "stop_date": "2014-09-27T16:28:26Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_sit_1min_fefl"}, "stb_sit_1min_fesp": {"__spz_name__": "fe flux spectro", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_sit_1min_fesp", "dataset": "stb-sit-1min", "display_type": "spectrogram", "is_public": "True", "name": "fe flux spectro", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "units": "1/(cm2-sr-sec-MeV)", "xmlid": "stb_sit_1min_fesp"}, "stb_sit_1min_hcr": {"__spz_name__": "h count rate", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_sit_1min_hcr", "dataset": "stb-sit-1min", "display_type": "timeseries", "is_public": "True", "name": "h count rate", "size": "7", "start_date": "2007-01-27T00:00:51Z", "stb_sit_1min_hcr0": {"__spz_name__": "0.320-0.452 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_hcr(0)", "dataset": "stb-sit-1min", "index1": "0", "is_public": "True", "name": "0.320-0.452 MeV", "parameter": "stb_sit_1min_hcr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_hcr(0)"}, "stb_sit_1min_hcr1": {"__spz_name__": "0.452-0.640 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_hcr(1)", "dataset": "stb-sit-1min", "index1": "1", "is_public": "True", "name": "0.452-0.640 MeV", "parameter": "stb_sit_1min_hcr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_hcr(1)"}, "stb_sit_1min_hcr2": {"__spz_name__": "0.640-0.905 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_hcr(2)", "dataset": "stb-sit-1min", "index1": "2", "is_public": "True", "name": "0.640-0.905 MeV", "parameter": "stb_sit_1min_hcr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_hcr(2)"}, "stb_sit_1min_hcr3": {"__spz_name__": "0.905-1.280 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_hcr(3)", "dataset": "stb-sit-1min", "index1": "3", "is_public": "True", "name": "0.905-1.280 MeV", "parameter": "stb_sit_1min_hcr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_hcr(3)"}, "stb_sit_1min_hcr4": {"__spz_name__": "1.280-1.810 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_hcr(4)", "dataset": "stb-sit-1min", "index1": "4", "is_public": "True", "name": "1.280-1.810 MeV", "parameter": "stb_sit_1min_hcr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_hcr(4)"}, "stb_sit_1min_hcr5": {"__spz_name__": "1.810-2.560 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_hcr(5)", "dataset": "stb-sit-1min", "index1": "5", "is_public": "True", "name": "1.810-2.560 MeV", "parameter": "stb_sit_1min_hcr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_hcr(5)"}, "stb_sit_1min_hcr6": {"__spz_name__": "2.560-3.620 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_hcr(6)", "dataset": "stb-sit-1min", "index1": "6", "is_public": "True", "name": "2.560-3.620 MeV", "parameter": "stb_sit_1min_hcr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_hcr(6)"}, "stop_date": "2014-09-27T16:28:26Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_sit_1min_hcr"}, "stb_sit_1min_hfl": {"__spz_name__": "h flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_sit_1min_hfl", "dataset": "stb-sit-1min", "display_type": "timeseries", "is_public": "True", "name": "h flux", "size": "7", "start_date": "2007-01-27T00:00:51Z", "stb_sit_1min_hfl0": {"__spz_name__": "0.320-0.452 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_hfl(0)", "dataset": "stb-sit-1min", "index1": "0", "is_public": "True", "name": "0.320-0.452 MeV", "parameter": "stb_sit_1min_hfl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_hfl(0)"}, "stb_sit_1min_hfl1": {"__spz_name__": "0.452-0.640 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_hfl(1)", "dataset": "stb-sit-1min", "index1": "1", "is_public": "True", "name": "0.452-0.640 MeV", "parameter": "stb_sit_1min_hfl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_hfl(1)"}, "stb_sit_1min_hfl2": {"__spz_name__": "0.640-0.905 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_hfl(2)", "dataset": "stb-sit-1min", "index1": "2", "is_public": "True", "name": "0.640-0.905 MeV", "parameter": "stb_sit_1min_hfl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_hfl(2)"}, "stb_sit_1min_hfl3": {"__spz_name__": "0.905-1.280 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_hfl(3)", "dataset": "stb-sit-1min", "index1": "3", "is_public": "True", "name": "0.905-1.280 MeV", "parameter": "stb_sit_1min_hfl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_hfl(3)"}, "stb_sit_1min_hfl4": {"__spz_name__": "1.280-1.810 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_hfl(4)", "dataset": "stb-sit-1min", "index1": "4", "is_public": "True", "name": "1.280-1.810 MeV", "parameter": "stb_sit_1min_hfl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_hfl(4)"}, "stb_sit_1min_hfl5": {"__spz_name__": "1.810-2.560 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_hfl(5)", "dataset": "stb-sit-1min", "index1": "5", "is_public": "True", "name": "1.810-2.560 MeV", "parameter": "stb_sit_1min_hfl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_hfl(5)"}, "stb_sit_1min_hfl6": {"__spz_name__": "2.560-3.620 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_hfl(6)", "dataset": "stb-sit-1min", "index1": "6", "is_public": "True", "name": "2.560-3.620 MeV", "parameter": "stb_sit_1min_hfl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_hfl(6)"}, "stop_date": "2014-09-27T16:28:26Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_sit_1min_hfl"}, "stb_sit_1min_hsp": {"__spz_name__": "h flux spectro", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_sit_1min_hsp", "dataset": "stb-sit-1min", "display_type": "spectrogram", "is_public": "True", "name": "h flux spectro", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "units": "1/(cm2-sr-sec-MeV)", "xmlid": "stb_sit_1min_hsp"}, "stb_sit_1min_ocr": {"__spz_name__": "o count rate", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_sit_1min_ocr", "dataset": "stb-sit-1min", "display_type": "timeseries", "is_public": "True", "name": "o count rate", "size": "10", "start_date": "2007-01-27T00:00:51Z", "stb_sit_1min_ocr0": {"__spz_name__": "0.113-0.160 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_ocr(0)", "dataset": "stb-sit-1min", "index1": "0", "is_public": "True", "name": "0.113-0.160 MeV", "parameter": "stb_sit_1min_ocr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_ocr(0)"}, "stb_sit_1min_ocr1": {"__spz_name__": "0.160-0.226 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_ocr(1)", "dataset": "stb-sit-1min", "index1": "1", "is_public": "True", "name": "0.160-0.226 MeV", "parameter": "stb_sit_1min_ocr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_ocr(1)"}, "stb_sit_1min_ocr2": {"__spz_name__": "0.226-0.320 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_ocr(2)", "dataset": "stb-sit-1min", "index1": "2", "is_public": "True", "name": "0.226-0.320 MeV", "parameter": "stb_sit_1min_ocr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_ocr(2)"}, "stb_sit_1min_ocr3": {"__spz_name__": "0.320-0.452 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_ocr(3)", "dataset": "stb-sit-1min", "index1": "3", "is_public": "True", "name": "0.320-0.452 MeV", "parameter": "stb_sit_1min_ocr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_ocr(3)"}, "stb_sit_1min_ocr4": {"__spz_name__": "0.452-0.640 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_ocr(4)", "dataset": "stb-sit-1min", "index1": "4", "is_public": "True", "name": "0.452-0.640 MeV", "parameter": "stb_sit_1min_ocr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_ocr(4)"}, "stb_sit_1min_ocr5": {"__spz_name__": "0.640-0.905 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_ocr(5)", "dataset": "stb-sit-1min", "index1": "5", "is_public": "True", "name": "0.640-0.905 MeV", "parameter": "stb_sit_1min_ocr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_ocr(5)"}, "stb_sit_1min_ocr6": {"__spz_name__": "0.905-1.280 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_ocr(6)", "dataset": "stb-sit-1min", "index1": "6", "is_public": "True", "name": "0.905-1.280 MeV", "parameter": "stb_sit_1min_ocr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_ocr(6)"}, "stb_sit_1min_ocr7": {"__spz_name__": "1.280-1.810 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_ocr(7)", "dataset": "stb-sit-1min", "index1": "7", "is_public": "True", "name": "1.280-1.810 MeV", "parameter": "stb_sit_1min_ocr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_ocr(7)"}, "stb_sit_1min_ocr8": {"__spz_name__": "1.810-2.560 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_ocr(8)", "dataset": "stb-sit-1min", "index1": "8", "is_public": "True", "name": "1.810-2.560 MeV", "parameter": "stb_sit_1min_ocr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_ocr(8)"}, "stb_sit_1min_ocr9": {"__spz_name__": "2.560-3.620 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_ocr(9)", "dataset": "stb-sit-1min", "index1": "9", "is_public": "True", "name": "2.560-3.620 MeV", "parameter": "stb_sit_1min_ocr", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_ocr(9)"}, "stop_date": "2014-09-27T16:28:26Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_sit_1min_ocr"}, "stb_sit_1min_ofl": {"__spz_name__": "o flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_sit_1min_ofl", "dataset": "stb-sit-1min", "display_type": "timeseries", "is_public": "True", "name": "o flux", "size": "10", "start_date": "2007-01-27T00:00:51Z", "stb_sit_1min_ofl0": {"__spz_name__": "0.113-0.160 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_ofl(0)", "dataset": "stb-sit-1min", "index1": "0", "is_public": "True", "name": "0.113-0.160 MeV", "parameter": "stb_sit_1min_ofl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_ofl(0)"}, "stb_sit_1min_ofl1": {"__spz_name__": "0.160-0.226 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_ofl(1)", "dataset": "stb-sit-1min", "index1": "1", "is_public": "True", "name": "0.160-0.226 MeV", "parameter": "stb_sit_1min_ofl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_ofl(1)"}, "stb_sit_1min_ofl2": {"__spz_name__": "0.226-0.320 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_ofl(2)", "dataset": "stb-sit-1min", "index1": "2", "is_public": "True", "name": "0.226-0.320 MeV", "parameter": "stb_sit_1min_ofl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_ofl(2)"}, "stb_sit_1min_ofl3": {"__spz_name__": "0.320-0.452 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_ofl(3)", "dataset": "stb-sit-1min", "index1": "3", "is_public": "True", "name": "0.320-0.452 MeV", "parameter": "stb_sit_1min_ofl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_ofl(3)"}, "stb_sit_1min_ofl4": {"__spz_name__": "0.452-0.640 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_ofl(4)", "dataset": "stb-sit-1min", "index1": "4", "is_public": "True", "name": "0.452-0.640 MeV", "parameter": "stb_sit_1min_ofl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_ofl(4)"}, "stb_sit_1min_ofl5": {"__spz_name__": "0.640-0.905 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_ofl(5)", "dataset": "stb-sit-1min", "index1": "5", "is_public": "True", "name": "0.640-0.905 MeV", "parameter": "stb_sit_1min_ofl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_ofl(5)"}, "stb_sit_1min_ofl6": {"__spz_name__": "0.905-1.280 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_ofl(6)", "dataset": "stb-sit-1min", "index1": "6", "is_public": "True", "name": "0.905-1.280 MeV", "parameter": "stb_sit_1min_ofl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_ofl(6)"}, "stb_sit_1min_ofl7": {"__spz_name__": "1.280-1.810 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_ofl(7)", "dataset": "stb-sit-1min", "index1": "7", "is_public": "True", "name": "1.280-1.810 MeV", "parameter": "stb_sit_1min_ofl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_ofl(7)"}, "stb_sit_1min_ofl8": {"__spz_name__": "1.810-2.560 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_ofl(8)", "dataset": "stb-sit-1min", "index1": "8", "is_public": "True", "name": "1.810-2.560 MeV", "parameter": "stb_sit_1min_ofl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_ofl(8)"}, "stb_sit_1min_ofl9": {"__spz_name__": "2.560-3.620 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "stb_sit_1min_ofl(9)", "dataset": "stb-sit-1min", "index1": "9", "is_public": "True", "name": "2.560-3.620 MeV", "parameter": "stb_sit_1min_ofl", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "xmlid": "stb_sit_1min_ofl(9)"}, "stop_date": "2014-09-27T16:28:26Z", "units": "1/(cm2-sr-sec-MeV/nuc)", "xmlid": "stb_sit_1min_ofl"}, "stb_sit_1min_osp": {"__spz_name__": "o flux spectro", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_sit_1min_osp", "dataset": "stb-sit-1min", "display_type": "spectrogram", "is_public": "True", "name": "o flux spectro", "start_date": "2007-01-27T00:00:51Z", "stop_date": "2014-09-27T16:28:26Z", "units": "1/(cm2-sr-sec-MeV)", "xmlid": "stb_sit_1min_osp"}, "stop_date": "2014-09-27T16:28:26Z", "target": "Heliosphere.Remote1AU", "xmlid": "stb-sit-1min"}, "xmlid": "STEREO-B_sit"}, "SWEA": {"__spz_name__": "SWEA", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "STEREO-B_swea", "att": "auto/STEREO-B_swea", "desc": "Solar Wind Plasma Electron Analyzer
ParticleDetector", "is_public": "True", "name": "SWEA", "stb_swea_mom": {"__spz_name__": "electron moments E:45-2000eV", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "stb-swea-mom", "att": "auto/stb-swea-mom", "dataSource": "IRAP", "desc": "
Sampling: 20S
Provider: IRAP", "is_public": "True", "lastModificationDate": "2018-09-05T18:24:51Z", "lastUpdate": "2018-05-14T19:03:11Z", "measurement_type": "ThermalPlasma", "name": "electron moments E:45-2000eV", "ne_part_stb": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ne_part_stb", "dataset": "stb-swea-mom", "display_type": "timeseries", "is_public": "True", "name": "density", "start_date": "2007-01-01T00:00:44Z", "stop_date": "2014-09-27T16:30:41Z", "ucd": "phys.density;phys.electron", "units": "cm-3", "xmlid": "ne_part_stb"}, "processing_level": "Calibrated", "qe_b_stb": {"__spz_name__": "Q_b", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "qe_b_stb", "dataset": "stb-swea-mom", "display_type": "timeseries", "is_public": "True", "name": "Q_b", "qe_b_stb0": {"__spz_name__": "q_para", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "qe_b_stb(0)", "dataset": "stb-swea-mom", "index1": "0", "is_public": "True", "name": "q_para", "parameter": "qe_b_stb", "start_date": "2007-01-01T00:00:44Z", "stop_date": "2014-09-27T16:30:41Z", "xmlid": "qe_b_stb(0)"}, "qe_b_stb1": {"__spz_name__": "q_perp", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "qe_b_stb(1)", "dataset": "stb-swea-mom", "index1": "1", "is_public": "True", "name": "q_perp", "parameter": "qe_b_stb", "start_date": "2007-01-01T00:00:44Z", "stop_date": "2014-09-27T16:30:41Z", "xmlid": "qe_b_stb(1)"}, "size": "2", "start_date": "2007-01-01T00:00:44Z", "stop_date": "2014-09-27T16:30:41Z", "ucd": "phys.flux.energy;phys.electron", "units": "erg/sec/cm2", "xmlid": "qe_b_stb"}, "qe_part_stb": {"__spz_name__": "Q_rtn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "qe_part_stb", "dataset": "stb-swea-mom", "display_type": "timeseries", "is_public": "True", "name": "Q_rtn", "qe_part_stb0": {"__spz_name__": "q_r", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "qe_part_stb(0)", "dataset": "stb-swea-mom", "index1": "0", "is_public": "True", "name": "q_r", "parameter": "qe_part_stb", "start_date": "2007-01-01T00:00:44Z", "stop_date": "2014-09-27T16:30:41Z", "xmlid": "qe_part_stb(0)"}, "qe_part_stb1": {"__spz_name__": "q_t", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "qe_part_stb(1)", "dataset": "stb-swea-mom", "index1": "1", "is_public": "True", "name": "q_t", "parameter": "qe_part_stb", "start_date": "2007-01-01T00:00:44Z", "stop_date": "2014-09-27T16:30:41Z", "xmlid": "qe_part_stb(1)"}, "qe_part_stb2": {"__spz_name__": "q_n", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "qe_part_stb(2)", "dataset": "stb-swea-mom", "index1": "2", "is_public": "True", "name": "q_n", "parameter": "qe_part_stb", "start_date": "2007-01-01T00:00:44Z", "stop_date": "2014-09-27T16:30:41Z", "xmlid": "qe_part_stb(2)"}, "size": "3", "start_date": "2007-01-01T00:00:44Z", "stop_date": "2014-09-27T16:30:41Z", "ucd": "phys.flux.energy;phys.electron", "units": "erg/sec/cm2", "xmlid": "qe_part_stb"}, "qual1_stb": {"__spz_name__": "quality_MAG", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "qual1_stb", "dataset": "stb-swea-mom", "display_type": "timeseries", "is_public": "True", "name": "quality_MAG", "start_date": "2007-01-01T00:00:44Z", "stop_date": "2014-09-27T16:30:41Z", "ucd": "meta.code;phys.magField", "units": "0:B_inside", "xmlid": "qual1_stb"}, "qual2_stb": {"__spz_name__": "quality_PLA", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "qual2_stb", "dataset": "stb-swea-mom", "display_type": "timeseries", "is_public": "True", "name": "quality_PLA", "start_date": "2007-01-01T00:00:44Z", "stop_date": "2014-09-27T16:30:41Z", "ucd": "meta.code;phys.particle", "units": "0:corrected_by_PLA", "xmlid": "qual2_stb"}, "sampling": "20S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/STEREO-B/SWEA/stb-swea-mom", "start_date": "2007-01-01T00:00:44Z", "stop_date": "2014-09-27T16:30:41Z", "target": "Heliosphere.Remote1AU", "te_part_stb": {"__spz_name__": "t_b", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "te_part_stb", "dataset": "stb-swea-mom", "display_type": "timeseries", "is_public": "True", "name": "t_b", "size": "3", "start_date": "2007-01-01T00:00:44Z", "stop_date": "2014-09-27T16:30:41Z", "te_part_stb0": {"__spz_name__": "t_para", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "te_part_stb(0)", "dataset": "stb-swea-mom", "index1": "0", "is_public": "True", "name": "t_para", "parameter": "te_part_stb", "start_date": "2007-01-01T00:00:44Z", "stop_date": "2014-09-27T16:30:41Z", "xmlid": "te_part_stb(0)"}, "te_part_stb1": {"__spz_name__": "t_perp1", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "te_part_stb(1)", "dataset": "stb-swea-mom", "index1": "1", "is_public": "True", "name": "t_perp1", "parameter": "te_part_stb", "start_date": "2007-01-01T00:00:44Z", "stop_date": "2014-09-27T16:30:41Z", "xmlid": "te_part_stb(1)"}, "te_part_stb2": {"__spz_name__": "t_perp2", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "te_part_stb(2)", "dataset": "stb-swea-mom", "index1": "2", "is_public": "True", "name": "t_perp2", "parameter": "te_part_stb", "start_date": "2007-01-01T00:00:44Z", "stop_date": "2014-09-27T16:30:41Z", "xmlid": "te_part_stb(2)"}, "ucd": "phys.temperature;phys.electron", "units": "eV", "xmlid": "te_part_stb"}, "xmlid": "stb-swea-mom"}, "stb_swea_pad": {"__spz_name__": "pitch-angle/energy distribution E:45-2000eV", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "stb-swea-pad", "att": "auto/stb-swea-pad", "dataSource": "IRAP", "desc": "Electron phase space density pitch-angle / energy distribution E : 45-2000eV
Sampling: 20S
Provider: IRAP", "is_public": "True", "lastModificationDate": "2015-08-08T18:10:00Z", "lastUpdate": "2015-08-08T18:10:00Z", "measurement_type": "ThermalPlasma", "name": "pitch-angle/energy distribution E:45-2000eV", "processing_level": "Calibrated", "quality1_stb": {"__spz_name__": "quality_mag", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "quality1_stb", "dataset": "stb-swea-pad", "display_type": "timeseries", "is_public": "True", "name": "quality_mag", "start_date": "2007-01-01T00:00:43Z", "stop_date": "2014-09-27T16:30:40Z", "ucd": "meta.code;phys.magField", "units": "0:B_inside", "xmlid": "quality1_stb"}, "quality2_stb": {"__spz_name__": "quality_pla", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "quality2_stb", "dataset": "stb-swea-pad", "display_type": "timeseries", "is_public": "True", "name": "quality_pla", "start_date": "2007-01-01T00:00:43Z", "stop_date": "2014-09-27T16:30:40Z", "ucd": "meta.code;phys.particle", "units": "0:corrected_by_PLA", "xmlid": "quality2_stb"}, "sampling": "20S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/STEREO-B/SWEA/stb-swea-pad", "start_date": "2007-01-01T00:00:43Z", "stb_swea_pad": {"__spz_name__": "el psd : 2D", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_swea_pad", "dataset": "stb-swea-pad", "display_type": "spectrogram", "is_public": "True", "name": "el psd : 2D", "start_date": "2007-01-01T00:00:43Z", "stop_date": "2014-09-27T16:30:40Z", "units": "s3/km6", "xmlid": "stb_swea_pad"}, "stb_swea_pad_angle": {"__spz_name__": "el psd : sum over energy", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_swea_pad_angle", "dataset": "stb-swea-pad", "description": "Electron pitch angle distribution (sum over all energy bins)", "display_type": "spectrogram", "is_public": "True", "name": "el psd : sum over energy", "start_date": "2007-01-01T00:00:43Z", "stop_date": "2014-09-27T16:30:40Z", "units": "s\u00b3/km\u2076", "xmlid": "stb_swea_pad_angle"}, "stb_swea_pad_omni": {"__spz_name__": "el psd : omni", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "stb_swea_pad_omni", "dataset": "stb-swea-pad", "description": "Electron pitch angle distribution (sum over all energy bins)", "display_type": "spectrogram", "is_public": "True", "name": "el psd : omni", "start_date": "2007-01-01T00:00:43Z", "stop_date": "2014-09-27T16:30:40Z", "units": "s\u00b3/km\u2076", "xmlid": "stb_swea_pad_omni"}, "stop_date": "2014-09-27T16:30:40Z", "target": "Heliosphere.Remote1AU", "xmlid": "stb-swea-pad"}, "xmlid": "STEREO-B_swea"}, "__spz_name__": "STEREO B", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "STEREO-B", "att": "auto/STEREO-B", "desc": "STEREO Behind
2006-10-25T08:56:00 - 2014-10-01T00:00:00", "is_public": "True", "name": "STEREO B", "target": "Heliosphere.Remote1AU", "xmlid": "STEREO-B"}, "__spz_name__": "STEREO", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "STEREO", "att": "auto/STEREO", "desc": "Solar Terrestrial Relations Observatory; NASA
2006-10-25T08:56:00", "is_public": "True", "name": "STEREO", "rank": "5", "target": "Heliosphere.Remote1AU", "xmlid": "STEREO"}, "SolarOrbiter": {"EPDEPT": {"L2___electron_flux": {"__spz_name__": "L2 : electron flux", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "solo-epd-eptel", "is_public": "True", "name": "L2 : electron flux", "so_ept_e_anti": {"__spz_name__": "sunward flow", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "so-ept-e.anti", "att": "auto/so-ept-e.anti", "dataSource": "http://soar.esac.esa.int/soar", "desc": "Electron Flux From AntiSun Direction
MinSampling: 60S; MaxSampling: 300S
Provider: http://soar.esac.esa.int/soar", "is_public": "True", "lastModificationDate": "2024-10-06T22:37:15Z", "lastUpdate": "2024-09-30T00:03:01Z", "maxSampling": "300S", "measurement_type": "EnergeticParticles", "name": "sunward flow", "processing_level": "Calibrated", "sampling": "60S", "solo_ept_anti_eflux": {"__spz_name__": "el flux: sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_ept_anti_eflux", "dataset": "so-ept-e.anti", "description": "Particle flux in foil channel", "display_type": "spectrogram", "is_public": "True", "name": "el flux: sunward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_ept_anti_eflux"}, "solo_ept_anti_erate": {"__spz_name__": "el cntrate: sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_ept_anti_erate", "dataset": "so-ept-e.anti", "description": "Particle count rate in foil channel", "display_type": "spectrogram", "is_public": "True", "name": "el cntrate: sunward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "cnts/s", "xmlid": "solo_ept_anti_erate"}, "solo_ept_anti_eunc": {"__spz_name__": "el flux unc: sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_ept_anti_eunc", "dataset": "so-ept-e.anti", "description": "Uncertainty in electron flux", "display_type": "spectrogram", "is_public": "True", "name": "el flux unc: sunward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_ept_anti_eunc"}, "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Solar_Orbiter/EPD/so-ept-e.anti", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "target": "Heliosphere.Inner", "xmlid": "so-ept-e.anti"}, "so_ept_e_north": {"__spz_name__": "southward flow", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "so-ept-e.north", "att": "auto/so-ept-e.north", "dataSource": "http://soar.esac.esa.int/soar", "desc": "Electron Flux From North Ecliptic Hemisphere Direction
MinSampling: 60S; MaxSampling: 300S
Provider: http://soar.esac.esa.int/soar", "is_public": "True", "lastModificationDate": "2024-10-06T22:37:15Z", "lastUpdate": "2024-09-30T00:03:27Z", "maxSampling": "300S", "measurement_type": "EnergeticParticles", "name": "southward flow", "processing_level": "Calibrated", "sampling": "60S", "solo_ept_north_eflux": {"__spz_name__": "el flux: southward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_ept_north_eflux", "dataset": "so-ept-e.north", "description": "Particle flux in foil channel", "display_type": "spectrogram", "is_public": "True", "name": "el flux: southward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_ept_north_eflux"}, "solo_ept_north_erate": {"__spz_name__": "el cntrate: southward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_ept_north_erate", "dataset": "so-ept-e.north", "description": "Particle count rate in foil channel", "display_type": "spectrogram", "is_public": "True", "name": "el cntrate: southward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "cnts/s", "xmlid": "solo_ept_north_erate"}, "solo_ept_north_eunc": {"__spz_name__": "el flux unc: southward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_ept_north_eunc", "dataset": "so-ept-e.north", "description": "Uncertainty in electron flux", "display_type": "spectrogram", "is_public": "True", "name": "el flux unc: southward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_ept_north_eunc"}, "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Solar_Orbiter/EPD/so-ept-e.north", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "target": "Heliosphere.Inner", "xmlid": "so-ept-e.north"}, "so_ept_e_omni": {"PriorID": "so-ept-e.sun", "__spz_name__": "omni flux", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "so-ept-e.omni", "att": "auto/so-ept-e.omni", "dataSource": "http://soar.esac.esa.int/soar", "desc": "Omni Electron Flux
MinSampling: 60S; MaxSampling: 300S
Provider: http://soar.esac.esa.int/soar", "is_public": "True", "lastModificationDate": "2024-10-06T22:37:14Z", "lastUpdate": "2024-09-30T00:02:33Z", "maxSampling": "300S", "measurement_type": "EnergeticParticles", "name": "omni flux", "processing_level": "Calibrated", "sampling": "60S", "solo_ept_omni_eflux": {"__spz_name__": "el flux: omni", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_ept_omni_eflux", "dataset": "so-ept-e.omni", "description": "Particle flux in foil channel", "display_type": "spectrogram", "is_public": "True", "name": "el flux: omni", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_ept_omni_eflux"}, "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Solar_Orbiter/EPD/so-ept-e.omni", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "target": "Heliosphere.Inner", "xmlid": "so-ept-e.omni"}, "so_ept_e_south": {"__spz_name__": "northward flow", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "so-ept-e.south", "att": "auto/so-ept-e.south", "dataSource": "http://soar.esac.esa.int/soar", "desc": "Electron Flux From South Ecliptic Hemisphere Direction
MinSampling: 60S; MaxSampling: 300S
Provider: http://soar.esac.esa.int/soar", "is_public": "True", "lastModificationDate": "2024-10-06T22:37:15Z", "lastUpdate": "2024-09-30T00:03:53Z", "maxSampling": "300S", "measurement_type": "EnergeticParticles", "name": "northward flow", "processing_level": "Calibrated", "sampling": "60S", "solo_ept_south_eflux": {"__spz_name__": "el flux: nortward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_ept_south_eflux", "dataset": "so-ept-e.south", "description": "Particle flux in foil channel", "display_type": "spectrogram", "is_public": "True", "name": "el flux: nortward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_ept_south_eflux"}, "solo_ept_south_erate": {"__spz_name__": "el cntrate: northward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_ept_south_erate", "dataset": "so-ept-e.south", "description": "Particle count rate in foil channel", "display_type": "spectrogram", "is_public": "True", "name": "el cntrate: northward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "cnts/s", "xmlid": "solo_ept_south_erate"}, "solo_ept_south_eunc": {"__spz_name__": "el flux unc: northward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_ept_south_eunc", "dataset": "so-ept-e.south", "description": "Uncertainty in electron flux", "display_type": "spectrogram", "is_public": "True", "name": "el flux unc: northward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_ept_south_eunc"}, "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Solar_Orbiter/EPD/so-ept-e.south", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "target": "Heliosphere.Inner", "xmlid": "so-ept-e.south"}, "so_ept_e_sun": {"__spz_name__": "anti-sunward flow", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "so-ept-e.sun", "att": "auto/so-ept-e.sun", "dataSource": "http://soar.esac.esa.int/soar", "desc": "Ion Flux From Sun Direction ( mean Parker spiral )
MinSampling: 60S; MaxSampling: 300S
Provider: http://soar.esac.esa.int/soar", "is_public": "True", "lastModificationDate": "2024-10-06T22:37:14Z", "lastUpdate": "2024-09-30T00:02:33Z", "maxSampling": "300S", "measurement_type": "EnergeticParticles", "name": "anti-sunward flow", "processing_level": "Calibrated", "sampling": "60S", "solo_ept_sun_eflux": {"__spz_name__": "el flux: anti-sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_ept_sun_eflux", "dataset": "so-ept-e.sun", "description": "Particle flux in foil channel", "display_type": "spectrogram", "is_public": "True", "name": "el flux: anti-sunward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_ept_sun_eflux"}, "solo_ept_sun_erate": {"__spz_name__": "el cntrate: anti-sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_ept_sun_erate", "dataset": "so-ept-e.sun", "description": "Particle count rate in foil channel", "display_type": "spectrogram", "is_public": "True", "name": "el cntrate: anti-sunward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "cnts/s", "xmlid": "solo_ept_sun_erate"}, "solo_ept_sun_eunc": {"__spz_name__": "el flux unc: anti-sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_ept_sun_eunc", "dataset": "so-ept-e.sun", "description": "Uncertainty in electron flux", "display_type": "spectrogram", "is_public": "True", "name": "el flux unc: anti-sunward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_ept_sun_eunc"}, "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Solar_Orbiter/EPD/so-ept-e.sun", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "target": "Heliosphere.Inner", "xmlid": "so-ept-e.sun"}, "xmlid": "solo-epd-eptel"}, "L2___ion_flux": {"__spz_name__": "L2 : ion flux", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "solo-epd-eptsun", "is_public": "True", "name": "L2 : ion flux", "so_ept_anti": {"__spz_name__": "sunward flow", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "so-ept-anti", "att": "auto/so-ept-anti", "dataSource": "http://soar.esac.esa.int/soar", "desc": "Ion Flux From AntiSun Direction
MinSampling: 5S; MaxSampling: 30S
Provider: http://soar.esac.esa.int/soar", "is_public": "True", "lastModificationDate": "2024-10-06T22:37:11Z", "lastUpdate": "2024-09-29T23:58:40Z", "maxSampling": "30S", "measurement_type": "EnergeticParticles", "name": "sunward flow", "processing_level": "Calibrated", "sampling": "5S", "solo_ept_asun_aflux": {"__spz_name__": "alpha flux: sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_ept_asun_aflux", "dataset": "so-ept-anti", "description": "High energy particle flux in magnet channel", "display_type": "spectrogram", "is_public": "True", "name": "alpha flux: sunward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_ept_asun_aflux"}, "solo_ept_asun_arate": {"__spz_name__": "alpha cntrate: sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_ept_asun_arate", "dataset": "so-ept-anti", "description": "High energy particle count rate in magnet channel", "display_type": "spectrogram", "is_public": "True", "name": "alpha cntrate: sunward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "cnts/s", "xmlid": "solo_ept_asun_arate"}, "solo_ept_asun_aunc": {"__spz_name__": "alpha flux unc: sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_ept_asun_aunc", "dataset": "so-ept-anti", "description": "Uncertainty in alpha flux", "display_type": "spectrogram", "is_public": "True", "name": "alpha flux unc: sunward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_ept_asun_aunc"}, "solo_ept_asun_iflux": {"__spz_name__": "ion flux : sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_ept_asun_iflux", "dataset": "so-ept-anti", "description": "Particle flux in magnet channel", "display_type": "spectrogram", "is_public": "True", "name": "ion flux : sunward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_ept_asun_iflux"}, "solo_ept_asun_irate": {"__spz_name__": "ion cntrate: sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_ept_asun_irate", "dataset": "so-ept-anti", "description": "Particle count rate in magnet channel", "display_type": "spectrogram", "is_public": "True", "name": "ion cntrate: sunward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "cnts/s", "xmlid": "solo_ept_asun_irate"}, "solo_ept_asun_iunc": {"__spz_name__": "ion flux unc: sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_ept_asun_iunc", "dataset": "so-ept-anti", "description": "Uncertainty in ion flux", "display_type": "spectrogram", "is_public": "True", "name": "ion flux unc: sunward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_ept_asun_iunc"}, "solo_ept_asun_qf": {"__spz_name__": "quality flag: sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_ept_asun_qf", "dataset": "so-ept-anti", "description": "0: Bad, 1: Known problems, 2: Survey data, 3: Good, 4: Excellent", "display_type": "timeseries", "is_public": "True", "name": "quality flag: sunward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_ept_asun_qf"}, "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Solar_Orbiter/EPD/so-ept-anti", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "target": "Heliosphere.Inner", "xmlid": "so-ept-anti"}, "so_ept_north": {"__spz_name__": "southward flow", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "so-ept-north", "att": "auto/so-ept-north", "dataSource": "http://soar.esac.esa.int/soar", "desc": "Ion Flux From North Ecliptic Hemispere Direction
MinSampling: 5S; MaxSampling: 30S
Provider: http://soar.esac.esa.int/soar", "is_public": "True", "lastModificationDate": "2024-10-06T22:37:11Z", "lastUpdate": "2024-09-29T23:59:24Z", "maxSampling": "30S", "measurement_type": "EnergeticParticles", "name": "southward flow", "processing_level": "Calibrated", "sampling": "5S", "solo_ept_north_aflux": {"__spz_name__": "alpha flux: southward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_ept_north_aflux", "dataset": "so-ept-north", "description": "High energy particle flux in magnet channel", "display_type": "spectrogram", "is_public": "True", "name": "alpha flux: southward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_ept_north_aflux"}, "solo_ept_north_arate": {"__spz_name__": "alpha cntrate: southward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_ept_north_arate", "dataset": "so-ept-north", "description": "High energy particle count rate in magnet channel", "display_type": "spectrogram", "is_public": "True", "name": "alpha cntrate: southward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "cnts/s", "xmlid": "solo_ept_north_arate"}, "solo_ept_north_aunc": {"__spz_name__": "alpha flux unc: southward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_ept_north_aunc", "dataset": "so-ept-north", "description": "Uncertainty in alpha flux", "display_type": "spectrogram", "is_public": "True", "name": "alpha flux unc: southward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_ept_north_aunc"}, "solo_ept_north_iflux": {"__spz_name__": "ion flux: southward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_ept_north_iflux", "dataset": "so-ept-north", "description": "Particle flux in magnet channel", "display_type": "spectrogram", "is_public": "True", "name": "ion flux: southward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_ept_north_iflux"}, "solo_ept_north_irate": {"__spz_name__": "ion cntrate: southward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_ept_north_irate", "dataset": "so-ept-north", "description": "Particle count rate in magnet channel", "display_type": "spectrogram", "is_public": "True", "name": "ion cntrate: southward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "cnts/s", "xmlid": "solo_ept_north_irate"}, "solo_ept_north_iunc": {"__spz_name__": "ion flux unc: southward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_ept_north_iunc", "dataset": "so-ept-north", "description": "Uncertainty in ion flux", "display_type": "spectrogram", "is_public": "True", "name": "ion flux unc: southward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_ept_north_iunc"}, "solo_ept_north_qf": {"__spz_name__": "quality flag: southward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_ept_north_qf", "dataset": "so-ept-north", "description": "0: Bad, 1: Known problems, 2: Survey data, 3: Good, 4: Excellent", "display_type": "timeseries", "is_public": "True", "name": "quality flag: southward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_ept_north_qf"}, "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Solar_Orbiter/EPD/so-ept-north", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "target": "Heliosphere.Inner", "xmlid": "so-ept-north"}, "so_ept_omni": {"PriorID": "so-ept-sun", "__spz_name__": "omni flux", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "so-ept-omni", "att": "auto/so-ept-omni", "dataSource": "http://soar.esac.esa.int/soar", "desc": "Omni Ion Flux
MinSampling: 5S; MaxSampling: 30S
Provider: http://soar.esac.esa.int/soar", "is_public": "True", "lastModificationDate": "2024-10-06T22:37:10Z", "lastUpdate": "2024-09-29T23:57:56Z", "maxSampling": "30S", "measurement_type": "EnergeticParticles", "name": "omni flux", "processing_level": "Calibrated", "sampling": "5S", "solo_ept_omni_aflux": {"__spz_name__": "alpha flux: omni", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_ept_omni_aflux", "dataset": "so-ept-omni", "description": "High energy particle flux in magnet channel", "display_type": "spectrogram", "is_public": "True", "name": "alpha flux: omni", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_ept_omni_aflux"}, "solo_ept_omni_iflux": {"__spz_name__": "ion flux : omni", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_ept_omni_iflux", "dataset": "so-ept-omni", "description": "Particle flux in magnet channel", "display_type": "spectrogram", "is_public": "True", "name": "ion flux : omni", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_ept_omni_iflux"}, "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Solar_Orbiter/EPD/so-ept-omni", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "target": "Heliosphere.Inner", "xmlid": "so-ept-omni"}, "so_ept_south": {"__spz_name__": "northward flow", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "so-ept-south", "att": "auto/so-ept-south", "dataSource": "http://soar.esac.esa.int/soar", "desc": "Ion Flux From South Ecliptic Hemispere Direction
MinSampling: 5S; MaxSampling: 30S
Provider: http://soar.esac.esa.int/soar", "is_public": "True", "lastModificationDate": "2024-10-06T22:37:11Z", "lastUpdate": "2024-09-30T00:00:09Z", "maxSampling": "30S", "measurement_type": "EnergeticParticles", "name": "northward flow", "processing_level": "Calibrated", "sampling": "5S", "solo_ept_south_aflux": {"__spz_name__": "alpha flux: northward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_ept_south_aflux", "dataset": "so-ept-south", "description": "High energy particle flux in magnet channel", "display_type": "spectrogram", "is_public": "True", "name": "alpha flux: northward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_ept_south_aflux"}, "solo_ept_south_arate": {"__spz_name__": "alpha cntrate: northward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_ept_south_arate", "dataset": "so-ept-south", "description": "High energy particle count rate in magnet channel", "display_type": "spectrogram", "is_public": "True", "name": "alpha cntrate: northward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "cnts/s", "xmlid": "solo_ept_south_arate"}, "solo_ept_south_aunc": {"__spz_name__": "alpha flux unc: northward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_ept_south_aunc", "dataset": "so-ept-south", "description": "Uncertainty in alpha flux", "display_type": "spectrogram", "is_public": "True", "name": "alpha flux unc: northward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_ept_south_aunc"}, "solo_ept_south_iflux": {"__spz_name__": "ion flux: northward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_ept_south_iflux", "dataset": "so-ept-south", "description": "Particle flux in magnet channel", "display_type": "spectrogram", "is_public": "True", "name": "ion flux: northward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_ept_south_iflux"}, "solo_ept_south_irate": {"__spz_name__": "ion cntrate: northward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_ept_south_irate", "dataset": "so-ept-south", "description": "Particle count rate in magnet channel", "display_type": "spectrogram", "is_public": "True", "name": "ion cntrate: northward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "cnts/s", "xmlid": "solo_ept_south_irate"}, "solo_ept_south_iunc": {"__spz_name__": "ion flux unc: northward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_ept_south_iunc", "dataset": "so-ept-south", "description": "Uncertainty in ion flux", "display_type": "spectrogram", "is_public": "True", "name": "ion flux unc: northward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_ept_south_iunc"}, "solo_ept_south_qf": {"__spz_name__": "quality flag: northward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_ept_south_qf", "dataset": "so-ept-south", "description": "0: Bad, 1: Known problems, 2: Survey data, 3: Good, 4: Excellent", "display_type": "timeseries", "is_public": "True", "name": "quality flag: northward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_ept_south_qf"}, "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Solar_Orbiter/EPD/so-ept-south", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "target": "Heliosphere.Inner", "xmlid": "so-ept-south"}, "so_ept_sun": {"__spz_name__": "anti-sunward flow", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "so-ept-sun", "att": "auto/so-ept-sun", "dataSource": "http://soar.esac.esa.int/soar", "desc": "Ion Flux From Sun Direction ( mean Parker spiral )
MinSampling: 5S; MaxSampling: 30S
Provider: http://soar.esac.esa.int/soar", "is_public": "True", "lastModificationDate": "2024-10-06T22:37:10Z", "lastUpdate": "2024-09-29T23:57:56Z", "maxSampling": "30S", "measurement_type": "EnergeticParticles", "name": "anti-sunward flow", "processing_level": "Calibrated", "sampling": "5S", "solo_ept_sun_aflux": {"__spz_name__": "alpha flux: anti-sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_ept_sun_aflux", "dataset": "so-ept-sun", "description": "High energy particle flux in magnet channel", "display_type": "spectrogram", "is_public": "True", "name": "alpha flux: anti-sunward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_ept_sun_aflux"}, "solo_ept_sun_arate": {"__spz_name__": "alpha cntrate: anti-sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_ept_sun_arate", "dataset": "so-ept-sun", "description": "High energy particle count rate in magnet channel", "display_type": "spectrogram", "is_public": "True", "name": "alpha cntrate: anti-sunward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "cnts/s", "xmlid": "solo_ept_sun_arate"}, "solo_ept_sun_aunc": {"__spz_name__": "alpha flux unc: anti-sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_ept_sun_aunc", "dataset": "so-ept-sun", "description": "Uncertainty in alpha flux", "display_type": "spectrogram", "is_public": "True", "name": "alpha flux unc: anti-sunward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_ept_sun_aunc"}, "solo_ept_sun_iflux": {"__spz_name__": "ion flux: anti-sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_ept_sun_iflux", "dataset": "so-ept-sun", "description": "Particle flux in magnet channel", "display_type": "spectrogram", "is_public": "True", "name": "ion flux: anti-sunward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_ept_sun_iflux"}, "solo_ept_sun_irate": {"__spz_name__": "ion cntrate: anti-sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_ept_sun_irate", "dataset": "so-ept-sun", "description": "Particle count rate in magnet channel", "display_type": "spectrogram", "is_public": "True", "name": "ion cntrate: anti-sunward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "cnts/s", "xmlid": "solo_ept_sun_irate"}, "solo_ept_sun_iunc": {"__spz_name__": "ion flux unc: anti-sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_ept_sun_iunc", "dataset": "so-ept-sun", "description": "Uncertainty in ion flux", "display_type": "spectrogram", "is_public": "True", "name": "ion flux unc: anti-sunward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_ept_sun_iunc"}, "solo_ept_sun_qf": {"__spz_name__": "quality flag: anti-sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_ept_sun_qf", "dataset": "so-ept-sun", "description": "0: Bad, 1: Known problems, 2: Survey data, 3: Good, 4: Excellent", "display_type": "timeseries", "is_public": "True", "name": "quality flag: anti-sunward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_ept_sun_qf"}, "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Solar_Orbiter/EPD/so-ept-sun", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "target": "Heliosphere.Inner", "xmlid": "so-ept-sun"}, "xmlid": "solo-epd-eptsun"}, "__spz_name__": "EPD/EPT", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "SolO_epd-ept", "att": "auto/SolO_epd-ept", "desc": "Energetic Particle Detector / Electron Proton Telescope
SolidStateDetector", "is_public": "True", "name": "EPD/EPT", "xmlid": "SolO_epd-ept"}, "EPDHET": {"L2___c__n__o_flux": {"__spz_name__": "L2 : c / n / o flux", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "solo-epd-het.2", "is_public": "True", "name": "L2 : c / n / o flux", "so_het_anti_2": {"__spz_name__": "sunward flow", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "so-het-anti.2", "att": "auto/so-het-anti.2", "dataSource": "http://soar.esac.esa.int/soar", "desc": "C / N / O From Antisun Direction ( mean Parker spiral )
MinSampling: 1M; MaxSampling: 5M
Provider: http://soar.esac.esa.int/soar", "is_public": "True", "lastModificationDate": "2024-09-30T00:12:25Z", "lastUpdate": "2024-09-30T00:12:25Z", "maxSampling": "5M", "measurement_type": "EnergeticParticles", "name": "sunward flow", "processing_level": "Calibrated", "sampling": "1M", "solo_het_asun_2_qf": {"__spz_name__": "quality flag: sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_asun_2_qf", "dataset": "so-het-anti.2", "description": "0: Bad, 1: Known problems, 2: Survey data, 3: Good, 4: Excellent", "display_type": "timeseries", "is_public": "True", "name": "quality flag: sunward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_asun_2_qf"}, "solo_het_asun_cflux": {"__spz_name__": "c flux: sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_asun_cflux", "dataset": "so-het-anti.2", "description": "Carbon flux", "display_type": "spectrogram", "is_public": "True", "name": "c flux: sunward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV/n)", "xmlid": "solo_het_asun_cflux"}, "solo_het_asun_cunc": {"__spz_name__": "c flux unc: sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_asun_cunc", "dataset": "so-het-anti.2", "description": "Uncertainty in Carbon flux", "display_type": "spectrogram", "is_public": "True", "name": "c flux unc: sunward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_het_asun_cunc"}, "solo_het_asun_nflux": {"__spz_name__": "n flux: sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_asun_nflux", "dataset": "so-het-anti.2", "description": "Nytrogen flux", "display_type": "spectrogram", "is_public": "True", "name": "n flux: sunward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV/n)", "xmlid": "solo_het_asun_nflux"}, "solo_het_asun_nunc": {"__spz_name__": "n flux unc: sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_asun_nunc", "dataset": "so-het-anti.2", "description": "Uncertainty in Nytrogen flux", "display_type": "spectrogram", "is_public": "True", "name": "n flux unc: sunward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_het_asun_nunc"}, "solo_het_asun_oflux": {"__spz_name__": "o flux: sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_asun_oflux", "dataset": "so-het-anti.2", "description": "Oxygen Flux", "display_type": "spectrogram", "is_public": "True", "name": "o flux: sunward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV/n)", "xmlid": "solo_het_asun_oflux"}, "solo_het_asun_ounc": {"__spz_name__": "o flux unc: sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_asun_ounc", "dataset": "so-het-anti.2", "description": "Uncertainty in Oxygen flux", "display_type": "spectrogram", "is_public": "True", "name": "o flux unc: sunward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_het_asun_ounc"}, "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Solar_Orbiter/EPD/so-het-anti.2", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "target": "Heliosphere.Inner", "xmlid": "so-het-anti.2"}, "so_het_north_2": {"__spz_name__": "southward flow", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "so-het-north.2", "att": "auto/so-het-north.2", "dataSource": "http://soar.esac.esa.int/soar", "desc": "C / N / O From North Hemisphere Direction
MinSampling: 1M; MaxSampling: 5M
Provider: http://soar.esac.esa.int/soar", "is_public": "True", "lastModificationDate": "2024-09-30T00:12:38Z", "lastUpdate": "2024-09-30T00:12:37Z", "maxSampling": "5M", "measurement_type": "EnergeticParticles", "name": "southward flow", "processing_level": "Calibrated", "sampling": "1M", "solo_het_north_2_qf": {"__spz_name__": "quality flag: southward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_north_2_qf", "dataset": "so-het-north.2", "description": "0: Bad, 1: Known problems, 2: Survey data, 3: Good, 4: Excellent", "display_type": "timeseries", "is_public": "True", "name": "quality flag: southward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_north_2_qf"}, "solo_het_north_cflux": {"__spz_name__": "c flux: southward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_north_cflux", "dataset": "so-het-north.2", "description": "Carbon flux", "display_type": "spectrogram", "is_public": "True", "name": "c flux: southward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV/n)", "xmlid": "solo_het_north_cflux"}, "solo_het_north_cunc": {"__spz_name__": "c flux unc: southward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_north_cunc", "dataset": "so-het-north.2", "description": "Uncertainty in Carbon flux", "display_type": "spectrogram", "is_public": "True", "name": "c flux unc: southward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_het_north_cunc"}, "solo_het_north_nflux": {"__spz_name__": "n flux: southward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_north_nflux", "dataset": "so-het-north.2", "description": "Nytrogen flux", "display_type": "spectrogram", "is_public": "True", "name": "n flux: southward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV/n)", "xmlid": "solo_het_north_nflux"}, "solo_het_north_nunc": {"__spz_name__": "n flux unc: southward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_north_nunc", "dataset": "so-het-north.2", "description": "Uncertainty in Nytrogen flux", "display_type": "spectrogram", "is_public": "True", "name": "n flux unc: southward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_het_north_nunc"}, "solo_het_north_oflux": {"__spz_name__": "o flux: southward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_north_oflux", "dataset": "so-het-north.2", "description": "Oxygen Flux", "display_type": "spectrogram", "is_public": "True", "name": "o flux: southward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV/n)", "xmlid": "solo_het_north_oflux"}, "solo_het_north_ounc": {"__spz_name__": "o flux unc: southward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_north_ounc", "dataset": "so-het-north.2", "description": "Uncertainty in Oxygen flux", "display_type": "spectrogram", "is_public": "True", "name": "o flux unc: southward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_het_north_ounc"}, "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Solar_Orbiter/EPD/so-het-north.2", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "target": "Heliosphere.Inner", "xmlid": "so-het-north.2"}, "so_het_omni_2": {"PriorID": "so-het-sun.2", "__spz_name__": "omni flux", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "so-het-omni.2", "att": "auto/so-het-omni.2", "dataSource": "http://soar.esac.esa.int/soar", "desc": "C / N / O Omni Flux
MinSampling: 1M; MaxSampling: 5M
Provider: http://soar.esac.esa.int/soar", "is_public": "True", "lastModificationDate": "2024-09-30T00:13:01Z", "lastUpdate": "2024-09-30T00:13:00Z", "maxSampling": "5M", "measurement_type": "EnergeticParticles", "name": "omni flux", "processing_level": "Calibrated", "sampling": "1M", "solo_het_omni_cflux": {"__spz_name__": "c flux: omni", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_omni_cflux", "dataset": "so-het-omni.2", "description": "Carbon flux", "display_type": "spectrogram", "is_public": "True", "name": "c flux: omni", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV/n)", "xmlid": "solo_het_omni_cflux"}, "solo_het_omni_nflux": {"__spz_name__": "n flux: omni", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_omni_nflux", "dataset": "so-het-omni.2", "description": "Nytrogen flux", "display_type": "spectrogram", "is_public": "True", "name": "n flux: omni", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV/n)", "xmlid": "solo_het_omni_nflux"}, "solo_het_omni_oflux": {"__spz_name__": "o flux: omni", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_omni_oflux", "dataset": "so-het-omni.2", "description": "Oxygen Flux", "display_type": "spectrogram", "is_public": "True", "name": "o flux: omni", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV/n)", "xmlid": "solo_het_omni_oflux"}, "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Solar_Orbiter/EPD/so-het-omni.2", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "target": "Heliosphere.Inner", "xmlid": "so-het-omni.2"}, "so_het_south_2": {"__spz_name__": "northward flow", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "so-het-south.2", "att": "auto/so-het-south.2", "dataSource": "http://soar.esac.esa.int/soar", "desc": "C / N / O From South Hemisphere Direction
MinSampling: 1M; MaxSampling: 5M
Provider: http://soar.esac.esa.int/soar", "is_public": "True", "lastModificationDate": "2024-09-30T00:12:49Z", "lastUpdate": "2024-09-30T00:12:48Z", "maxSampling": "5M", "measurement_type": "EnergeticParticles", "name": "northward flow", "processing_level": "Calibrated", "sampling": "1M", "solo_het_south_2_qf": {"__spz_name__": "quality flag: northward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_south_2_qf", "dataset": "so-het-south.2", "description": "0: Bad, 1: Known problems, 2: Survey data, 3: Good, 4: Excellent", "display_type": "timeseries", "is_public": "True", "name": "quality flag: northward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_south_2_qf"}, "solo_het_south_cflux": {"__spz_name__": "c flux: northward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_south_cflux", "dataset": "so-het-south.2", "description": "Carbon flux", "display_type": "spectrogram", "is_public": "True", "name": "c flux: northward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV/n)", "xmlid": "solo_het_south_cflux"}, "solo_het_south_cunc": {"__spz_name__": "c flux unc: northward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_south_cunc", "dataset": "so-het-south.2", "description": "Uncertainty in Carbon flux", "display_type": "spectrogram", "is_public": "True", "name": "c flux unc: northward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_het_south_cunc"}, "solo_het_south_nflux": {"__spz_name__": "n flux: northward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_south_nflux", "dataset": "so-het-south.2", "description": "Nytrogen flux", "display_type": "spectrogram", "is_public": "True", "name": "n flux: northward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV/n)", "xmlid": "solo_het_south_nflux"}, "solo_het_south_nunc": {"__spz_name__": "n flux unc: northward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_south_nunc", "dataset": "so-het-south.2", "description": "Uncertainty in Nytrogen flux", "display_type": "spectrogram", "is_public": "True", "name": "n flux unc: northward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_het_south_nunc"}, "solo_het_south_oflux": {"__spz_name__": "o flux: northward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_south_oflux", "dataset": "so-het-south.2", "description": "Oxygen Flux", "display_type": "spectrogram", "is_public": "True", "name": "o flux: northward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV/n)", "xmlid": "solo_het_south_oflux"}, "solo_het_south_ounc": {"__spz_name__": "o flux unc: northward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_south_ounc", "dataset": "so-het-south.2", "description": "Uncertainty in Oxygen flux", "display_type": "spectrogram", "is_public": "True", "name": "o flux unc: northward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_het_south_ounc"}, "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Solar_Orbiter/EPD/so-het-south.2", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "target": "Heliosphere.Inner", "xmlid": "so-het-south.2"}, "so_het_sun_2": {"__spz_name__": "anti-sunward flow", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "so-het-sun.2", "att": "auto/so-het-sun.2", "dataSource": "http://soar.esac.esa.int/soar", "desc": "C / N / O From Sun Direction ( mean Parker spiral )
MinSampling: 1M; MaxSampling: 5M
Provider: http://soar.esac.esa.int/soar", "is_public": "True", "lastModificationDate": "2024-09-30T00:13:01Z", "lastUpdate": "2024-09-30T00:13:00Z", "maxSampling": "5M", "measurement_type": "EnergeticParticles", "name": "anti-sunward flow", "processing_level": "Calibrated", "sampling": "1M", "solo_het_sun_2_qf": {"__spz_name__": "quality flag: anti-sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_sun_2_qf", "dataset": "so-het-sun.2", "description": "0: Bad, 1: Known problems, 2: Survey data, 3: Good, 4: Excellent", "display_type": "timeseries", "is_public": "True", "name": "quality flag: anti-sunward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_sun_2_qf"}, "solo_het_sun_cflux": {"__spz_name__": "c flux: ant-sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_sun_cflux", "dataset": "so-het-sun.2", "description": "Carbon flux", "display_type": "spectrogram", "is_public": "True", "name": "c flux: ant-sunward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV/n)", "xmlid": "solo_het_sun_cflux"}, "solo_het_sun_cunc": {"__spz_name__": "c flux unc: ant-sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_sun_cunc", "dataset": "so-het-sun.2", "description": "Uncertainty in Carbon flux", "display_type": "spectrogram", "is_public": "True", "name": "c flux unc: ant-sunward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_het_sun_cunc"}, "solo_het_sun_nflux": {"__spz_name__": "n flux: anti-sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_sun_nflux", "dataset": "so-het-sun.2", "description": "Nytrogen flux", "display_type": "spectrogram", "is_public": "True", "name": "n flux: anti-sunward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV/n)", "xmlid": "solo_het_sun_nflux"}, "solo_het_sun_nunc": {"__spz_name__": "n flux unc: anti-sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_sun_nunc", "dataset": "so-het-sun.2", "description": "Uncertainty in Nytrogen flux", "display_type": "spectrogram", "is_public": "True", "name": "n flux unc: anti-sunward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_het_sun_nunc"}, "solo_het_sun_oflux": {"__spz_name__": "o flux: anti-sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_sun_oflux", "dataset": "so-het-sun.2", "description": "Oxygen flux", "display_type": "spectrogram", "is_public": "True", "name": "o flux: anti-sunward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV/n)", "xmlid": "solo_het_sun_oflux"}, "solo_het_sun_ounc": {"__spz_name__": "o flux unc: anti-sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_sun_ounc", "dataset": "so-het-sun.2", "description": "Uncertainty in Oxygen flux", "display_type": "spectrogram", "is_public": "True", "name": "o flux unc: anti-sunward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_het_sun_ounc"}, "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Solar_Orbiter/EPD/so-het-sun.2", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "target": "Heliosphere.Inner", "xmlid": "so-het-sun.2"}, "xmlid": "solo-epd-het.2"}, "L2___e__38_96_MeV__he3__he4_flux": {"__spz_name__": "L2 : e- 38-96 MeV / he3 / he4 flux", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "solo-epd-het.1", "is_public": "True", "name": "L2 : e- 38-96 MeV / he3 / he4 flux", "so_het_anti_1": {"__spz_name__": "sunward flow", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "so-het-anti.1", "att": "auto/so-het-anti.1", "dataSource": "http://soar.esac.esa.int/soar", "desc": "Electron HighEnergy ( 38-96 MeV ) / He3 / He4 From Antisun Direction ( mean Parker spiral )
MinSampling: 5S; MaxSampling: 30S
Provider: http://soar.esac.esa.int/soar", "is_public": "True", "lastModificationDate": "2024-10-06T22:37:13Z", "lastUpdate": "2024-09-30T00:01:41Z", "maxSampling": "30S", "measurement_type": "EnergeticParticles", "name": "sunward flow", "processing_level": "Calibrated", "sampling": "5S", "solo_het_asun_1_qf": {"__spz_name__": "quality flag: sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_asun_1_qf", "dataset": "so-het-anti.1", "description": "0: Bad, 1: Known problems, 2: Survey data, 3: Good, 4: Excellent", "display_type": "timeseries", "is_public": "True", "name": "quality flag: sunward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_asun_1_qf"}, "solo_het_asun_eheflux": {"__spz_name__": "e- HE flux: sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_asun_eheflux", "dataset": "so-het-anti.1", "description": "Electron flux in 38 - 96 MeV energy range", "display_type": "timeseries", "is_public": "True", "name": "e- HE flux: sunward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_het_asun_eheflux"}, "solo_het_asun_eheunc": {"__spz_name__": "e- HE flux unc: sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_asun_eheunc", "dataset": "so-het-anti.1", "description": "Uncertainty in electron flux", "display_type": "timeseries", "is_public": "True", "name": "e- HE flux unc: sunward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_het_asun_eheunc"}, "solo_het_asun_he3flux": {"__spz_name__": "he3 flux: sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_asun_he3flux", "dataset": "so-het-anti.1", "description": "He3 flux", "display_type": "spectrogram", "is_public": "True", "name": "he3 flux: sunward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_het_asun_he3flux"}, "solo_het_asun_he3unc": {"__spz_name__": "he3 flux unc: sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_asun_he3unc", "dataset": "so-het-anti.1", "description": "Uncertainty in He3 flux", "display_type": "spectrogram", "is_public": "True", "name": "he3 flux unc: sunward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_het_asun_he3unc"}, "solo_het_asun_he4flux": {"__spz_name__": "he4 flux: sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_asun_he4flux", "dataset": "so-het-anti.1", "description": "He4 flux", "display_type": "spectrogram", "is_public": "True", "name": "he4 flux: sunward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_het_asun_he4flux"}, "solo_het_asun_he4unc": {"__spz_name__": "he4 flux unc: sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_asun_he4unc", "dataset": "so-het-anti.1", "description": "Uncertainty in He4 flux", "display_type": "spectrogram", "is_public": "True", "name": "he4 flux unc: sunward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_het_asun_he4unc"}, "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Solar_Orbiter/EPD/so-het-anti.1", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "target": "Heliosphere.Inner", "xmlid": "so-het-anti.1"}, "so_het_north_1": {"__spz_name__": "southward flow", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "so-het-north.1", "att": "auto/so-het-north.1", "dataSource": "http://soar.esac.esa.int/soar", "desc": "Electron HighEnergy ( 38-96 MeV ) / He3 / He4 From North Hemisphere Direction
MinSampling: 5S; MaxSampling: 30S
Provider: http://soar.esac.esa.int/soar", "is_public": "True", "lastModificationDate": "2024-10-06T22:37:14Z", "lastUpdate": "2024-09-30T00:01:54Z", "maxSampling": "30S", "measurement_type": "EnergeticParticles", "name": "southward flow", "processing_level": "Calibrated", "sampling": "5S", "solo_het_north_1_qf": {"__spz_name__": "quality flag: southward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_north_1_qf", "dataset": "so-het-north.1", "description": "0: Bad, 1: Known problems, 2: Survey data, 3: Good, 4: Excellent", "display_type": "timeseries", "is_public": "True", "name": "quality flag: southward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_north_1_qf"}, "solo_het_north_eheflux": {"__spz_name__": "e- HE flux: southward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_north_eheflux", "dataset": "so-het-north.1", "description": "Electron flux in 38 - 96 MeV energy range", "display_type": "timeseries", "is_public": "True", "name": "e- HE flux: southward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_het_north_eheflux"}, "solo_het_north_eheunc": {"__spz_name__": "e- HE flux unc: southward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_north_eheunc", "dataset": "so-het-north.1", "description": "Uncertainty in electron flux", "display_type": "timeseries", "is_public": "True", "name": "e- HE flux unc: southward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_het_north_eheunc"}, "solo_het_north_he3flux": {"__spz_name__": "he3 flux: southward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_north_he3flux", "dataset": "so-het-north.1", "description": "He3 flux", "display_type": "spectrogram", "is_public": "True", "name": "he3 flux: southward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_het_north_he3flux"}, "solo_het_north_he3unc": {"__spz_name__": "he3 flux unc: southward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_north_he3unc", "dataset": "so-het-north.1", "description": "Uncertainty in He3 flux", "display_type": "spectrogram", "is_public": "True", "name": "he3 flux unc: southward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_het_north_he3unc"}, "solo_het_north_he4flux": {"__spz_name__": "he4 flux: southward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_north_he4flux", "dataset": "so-het-north.1", "description": "He4 flux", "display_type": "spectrogram", "is_public": "True", "name": "he4 flux: southward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_het_north_he4flux"}, "solo_het_north_he4unc": {"__spz_name__": "he4 flux unc: southward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_north_he4unc", "dataset": "so-het-north.1", "description": "Uncertainty in He4 flux", "display_type": "spectrogram", "is_public": "True", "name": "he4 flux unc: southward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_het_north_he4unc"}, "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Solar_Orbiter/EPD/so-het-north.1", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "target": "Heliosphere.Inner", "xmlid": "so-het-north.1"}, "so_het_omni_1": {"PriorID": "so-het-sun.1", "__spz_name__": "omni flux", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "so-het-omni.1", "att": "auto/so-het-omni.1", "dataSource": "http://soar.esac.esa.int/soar", "desc": "Electron HighEnergy ( 38-96 MeV ) / He3 / He4 Omni Flux
MinSampling: 5S; MaxSampling: 30S
Provider: http://soar.esac.esa.int/soar", "is_public": "True", "lastModificationDate": "2024-10-06T22:37:13Z", "lastUpdate": "2024-09-30T00:01:30Z", "maxSampling": "30S", "measurement_type": "EnergeticParticles", "name": "omni flux", "processing_level": "Calibrated", "sampling": "5S", "solo_het_omni_eheflux": {"__spz_name__": "e- HE flux: omni", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_omni_eheflux", "dataset": "so-het-omni.1", "description": "Electron flux in 38 - 96 MeV energy range", "display_type": "timeseries", "is_public": "True", "name": "e- HE flux: omni", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_het_omni_eheflux"}, "solo_het_omni_he3flux": {"__spz_name__": "he3 flux: omni", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_omni_he3flux", "dataset": "so-het-omni.1", "description": "He3 flux", "display_type": "spectrogram", "is_public": "True", "name": "he3 flux: omni", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_het_omni_he3flux"}, "solo_het_omni_he4flux": {"__spz_name__": "he4 flux: omni", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_omni_he4flux", "dataset": "so-het-omni.1", "description": "He4 flux", "display_type": "spectrogram", "is_public": "True", "name": "he4 flux: omni", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_het_omni_he4flux"}, "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Solar_Orbiter/EPD/so-het-omni.1", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "target": "Heliosphere.Inner", "xmlid": "so-het-omni.1"}, "so_het_south_1": {"__spz_name__": "northward flow", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "so-het-south.1", "att": "auto/so-het-south.1", "dataSource": "http://soar.esac.esa.int/soar", "desc": "Electron HighEnergy ( 38-96 MeV ) / He3 / He4 From South Hemisphere Direction
MinSampling: 5S; MaxSampling: 30S
Provider: http://soar.esac.esa.int/soar", "is_public": "True", "lastModificationDate": "2024-10-06T22:37:14Z", "lastUpdate": "2024-09-30T00:02:04Z", "maxSampling": "30S", "measurement_type": "EnergeticParticles", "name": "northward flow", "processing_level": "Calibrated", "sampling": "5S", "solo_het_south_1_qf": {"__spz_name__": "quality flag: northward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_south_1_qf", "dataset": "so-het-south.1", "description": "0: Bad, 1: Known problems, 2: Survey data, 3: Good, 4: Excellent", "display_type": "timeseries", "is_public": "True", "name": "quality flag: northward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_south_1_qf"}, "solo_het_south_eheflux": {"__spz_name__": "e- HE flux: south", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_south_eheflux", "dataset": "so-het-south.1", "description": "Electron flux in 38 - 96 MeV energy range", "display_type": "timeseries", "is_public": "True", "name": "e- HE flux: south", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_het_south_eheflux"}, "solo_het_south_eheunc": {"__spz_name__": "e- HE flux unc: northward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_south_eheunc", "dataset": "so-het-south.1", "description": "Uncertainty in electron flux", "display_type": "timeseries", "is_public": "True", "name": "e- HE flux unc: northward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_het_south_eheunc"}, "solo_het_south_he3flux": {"__spz_name__": "he3 flux: northward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_south_he3flux", "dataset": "so-het-south.1", "description": "He3 flux", "display_type": "spectrogram", "is_public": "True", "name": "he3 flux: northward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_het_south_he3flux"}, "solo_het_south_he3unc": {"__spz_name__": "he3 flux unc: northward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_south_he3unc", "dataset": "so-het-south.1", "description": "Uncertainty in He3 flux", "display_type": "spectrogram", "is_public": "True", "name": "he3 flux unc: northward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_het_south_he3unc"}, "solo_het_south_he4flux": {"__spz_name__": "he4 flux: northward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_south_he4flux", "dataset": "so-het-south.1", "description": "He4 flux", "display_type": "spectrogram", "is_public": "True", "name": "he4 flux: northward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_het_south_he4flux"}, "solo_het_south_he4unc": {"__spz_name__": "he4 flux unc: northward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_south_he4unc", "dataset": "so-het-south.1", "description": "Uncertainty in He4 flux", "display_type": "spectrogram", "is_public": "True", "name": "he4 flux unc: northward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_het_south_he4unc"}, "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Solar_Orbiter/EPD/so-het-south.1", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "target": "Heliosphere.Inner", "xmlid": "so-het-south.1"}, "so_het_sun_1": {"__spz_name__": "anti-sunward flow", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "so-het-sun.1", "att": "auto/so-het-sun.1", "dataSource": "http://soar.esac.esa.int/soar", "desc": "Electron HighEnergy ( 38-96 MeV ) / He3 / He4 From Sun Direction ( mean Parker spiral )
MinSampling: 5S; MaxSampling: 30S
Provider: http://soar.esac.esa.int/soar", "is_public": "True", "lastModificationDate": "2024-10-06T22:37:13Z", "lastUpdate": "2024-09-30T00:01:30Z", "maxSampling": "30S", "measurement_type": "EnergeticParticles", "name": "anti-sunward flow", "processing_level": "Calibrated", "sampling": "5S", "solo_het_sun_1_qf": {"__spz_name__": "quality flag: anti-sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_sun_1_qf", "dataset": "so-het-sun.1", "description": "0: Bad, 1: Known problems, 2: Survey data, 3: Good, 4: Excellent", "display_type": "timeseries", "is_public": "True", "name": "quality flag: anti-sunward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_sun_1_qf"}, "solo_het_sun_eheflux": {"__spz_name__": "e- HE flux: anti-sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_sun_eheflux", "dataset": "so-het-sun.1", "description": "Electron flux in 38 - 96 MeV energy range", "display_type": "timeseries", "is_public": "True", "name": "e- HE flux: anti-sunward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_het_sun_eheflux"}, "solo_het_sun_eheunc": {"__spz_name__": "e- HE flux unc: anti-sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_sun_eheunc", "dataset": "so-het-sun.1", "description": "Uncertainty in electron flux", "display_type": "timeseries", "is_public": "True", "name": "e- HE flux unc: anti-sunward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_het_sun_eheunc"}, "solo_het_sun_he3flux": {"__spz_name__": "he3 flux: anti-sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_sun_he3flux", "dataset": "so-het-sun.1", "description": "He3 flux", "display_type": "spectrogram", "is_public": "True", "name": "he3 flux: anti-sunward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_het_sun_he3flux"}, "solo_het_sun_he3unc": {"__spz_name__": "he3 flux unc: anti-sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_sun_he3unc", "dataset": "so-het-sun.1", "description": "Uncertainty in He3 flux", "display_type": "spectrogram", "is_public": "True", "name": "he3 flux unc: anti-sunward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_het_sun_he3unc"}, "solo_het_sun_he4flux": {"__spz_name__": "he4 flux: anti-sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_sun_he4flux", "dataset": "so-het-sun.1", "description": "He4 flux", "display_type": "spectrogram", "is_public": "True", "name": "he4 flux: anti-sunward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_het_sun_he4flux"}, "solo_het_sun_he4unc": {"__spz_name__": "he4 flux unc: anti-sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_sun_he4unc", "dataset": "so-het-sun.1", "description": "Uncertainty in He4 flux", "display_type": "spectrogram", "is_public": "True", "name": "he4 flux unc: anti-sunward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_het_sun_he4unc"}, "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Solar_Orbiter/EPD/so-het-sun.1", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "target": "Heliosphere.Inner", "xmlid": "so-het-sun.1"}, "xmlid": "solo-epd-het.1"}, "L2___e___h_high_cadence_flux": {"__spz_name__": "L2 : e- / h high cadence flux", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "solo-epd-het.4", "is_public": "True", "name": "L2 : e- / h high cadence flux", "so_het_anti_4": {"__spz_name__": "sunward flow", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "so-het-anti.4", "att": "auto/so-het-anti.4", "dataSource": "http://soar.esac.esa.int/soar", "desc": "Electron / Hydrogen HighCadence From Antisun Direction ( mean Parker spiral )
MinSampling: 1S; MaxSampling: 5S
Provider: http://soar.esac.esa.int/soar", "is_public": "True", "lastModificationDate": "2024-09-30T00:14:36Z", "lastUpdate": "2024-09-30T00:14:34Z", "maxSampling": "5S", "measurement_type": "EnergeticParticles", "name": "sunward flow", "processing_level": "Calibrated", "sampling": "1S", "solo_het_asun_4_qf": {"__spz_name__": "quality flag: sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_asun_4_qf", "dataset": "so-het-anti.4", "description": "0: Bad, 1: Known problems, 2: Survey data, 3: Good, 4: Excellent", "display_type": "timeseries", "is_public": "True", "name": "quality flag: sunward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_asun_4_qf"}, "solo_het_asun_eflux": {"__spz_name__": "e- flux: sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_asun_eflux", "dataset": "so-het-anti.4", "description": "Electron flux", "display_type": "timeseries", "is_public": "True", "name": "e- flux: sunward", "size": "4", "solo_het_asun_eflux0": {"__spz_name__": "0.45-1.04 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_het_asun_eflux(0)", "dataset": "so-het-anti.4", "index1": "0", "is_public": "True", "name": "0.45-1.04 MeV", "parameter": "solo_het_asun_eflux", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_asun_eflux(0)"}, "solo_het_asun_eflux1": {"__spz_name__": "1.05-2.4 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_het_asun_eflux(1)", "dataset": "so-het-anti.4", "index1": "1", "is_public": "True", "name": "1.05-2.4 MeV", "parameter": "solo_het_asun_eflux", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_asun_eflux(1)"}, "solo_het_asun_eflux2": {"__spz_name__": "2.4-6.0 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_het_asun_eflux(2)", "dataset": "so-het-anti.4", "index1": "2", "is_public": "True", "name": "2.4-6.0 MeV", "parameter": "solo_het_asun_eflux", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_asun_eflux(2)"}, "solo_het_asun_eflux3": {"__spz_name__": "6.0-18.8 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_het_asun_eflux(3)", "dataset": "so-het-anti.4", "index1": "3", "is_public": "True", "name": "6.0-18.8 MeV", "parameter": "solo_het_asun_eflux", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_asun_eflux(3)"}, "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_het_asun_eflux"}, "solo_het_asun_eunc": {"__spz_name__": "e- flux unc: sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_asun_eunc", "dataset": "so-het-anti.4", "description": "Electron flux uncertainty", "display_type": "timeseries", "is_public": "True", "name": "e- flux unc: sunward", "size": "4", "solo_het_asun_eunc0": {"__spz_name__": "0.45-1.04 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_het_asun_eunc(0)", "dataset": "so-het-anti.4", "index1": "0", "is_public": "True", "name": "0.45-1.04 MeV", "parameter": "solo_het_asun_eunc", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_asun_eunc(0)"}, "solo_het_asun_eunc1": {"__spz_name__": "1.05-2.4 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_het_asun_eunc(1)", "dataset": "so-het-anti.4", "index1": "1", "is_public": "True", "name": "1.05-2.4 MeV", "parameter": "solo_het_asun_eunc", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_asun_eunc(1)"}, "solo_het_asun_eunc2": {"__spz_name__": "2.4-6.0 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_het_asun_eunc(2)", "dataset": "so-het-anti.4", "index1": "2", "is_public": "True", "name": "2.4-6.0 MeV", "parameter": "solo_het_asun_eunc", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_asun_eunc(2)"}, "solo_het_asun_eunc3": {"__spz_name__": "6.0-18.8 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_het_asun_eunc(3)", "dataset": "so-het-anti.4", "index1": "3", "is_public": "True", "name": "6.0-18.8 MeV", "parameter": "solo_het_asun_eunc", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_asun_eunc(3)"}, "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_het_asun_eunc"}, "solo_het_asun_hhcflux": {"__spz_name__": "h flux: sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_asun_hhcflux", "dataset": "so-het-anti.4", "description": "Hydrogen flux", "display_type": "timeseries", "is_public": "True", "name": "h flux: sunward", "size": "4", "solo_het_asun_hhcflux0": {"__spz_name__": "6.9-9.6 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_het_asun_hhcflux(0)", "dataset": "so-het-anti.4", "index1": "0", "is_public": "True", "name": "6.9-9.6 MeV", "parameter": "solo_het_asun_hhcflux", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_asun_hhcflux(0)"}, "solo_het_asun_hhcflux1": {"__spz_name__": "10.8-18.2 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_het_asun_hhcflux(1)", "dataset": "so-het-anti.4", "index1": "1", "is_public": "True", "name": "10.8-18.2 MeV", "parameter": "solo_het_asun_hhcflux", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_asun_hhcflux(1)"}, "solo_het_asun_hhcflux2": {"__spz_name__": "18.2-43.0 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_het_asun_hhcflux(2)", "dataset": "so-het-anti.4", "index1": "2", "is_public": "True", "name": "18.2-43.0 MeV", "parameter": "solo_het_asun_hhcflux", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_asun_hhcflux(2)"}, "solo_het_asun_hhcflux3": {"__spz_name__": "43.0-105 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_het_asun_hhcflux(3)", "dataset": "so-het-anti.4", "index1": "3", "is_public": "True", "name": "43.0-105 MeV", "parameter": "solo_het_asun_hhcflux", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_asun_hhcflux(3)"}, "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_het_asun_hhcflux"}, "solo_het_asun_hhcunc": {"__spz_name__": "h flux unc: sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_asun_hhcunc", "dataset": "so-het-anti.4", "description": "Hydrogen flux uncertainty", "display_type": "timeseries", "is_public": "True", "name": "h flux unc: sunward", "size": "4", "solo_het_asun_hhcunc0": {"__spz_name__": "6.9-9.6 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_het_asun_hhcunc(0)", "dataset": "so-het-anti.4", "index1": "0", "is_public": "True", "name": "6.9-9.6 MeV", "parameter": "solo_het_asun_hhcunc", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_asun_hhcunc(0)"}, "solo_het_asun_hhcunc1": {"__spz_name__": "10.8-18.2 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_het_asun_hhcunc(1)", "dataset": "so-het-anti.4", "index1": "1", "is_public": "True", "name": "10.8-18.2 MeV", "parameter": "solo_het_asun_hhcunc", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_asun_hhcunc(1)"}, "solo_het_asun_hhcunc2": {"__spz_name__": "18.2-43.0 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_het_asun_hhcunc(2)", "dataset": "so-het-anti.4", "index1": "2", "is_public": "True", "name": "18.2-43.0 MeV", "parameter": "solo_het_asun_hhcunc", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_asun_hhcunc(2)"}, "solo_het_asun_hhcunc3": {"__spz_name__": "43.0-105 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_het_asun_hhcunc(3)", "dataset": "so-het-anti.4", "index1": "3", "is_public": "True", "name": "43.0-105 MeV", "parameter": "solo_het_asun_hhcunc", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_asun_hhcunc(3)"}, "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_het_asun_hhcunc"}, "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Solar_Orbiter/EPD/so-het-anti.4", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "target": "Heliosphere.Inner", "xmlid": "so-het-anti.4"}, "so_het_north_4": {"__spz_name__": "southward flow", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "so-het-north.4", "att": "auto/so-het-north.4", "dataSource": "http://soar.esac.esa.int/soar", "desc": "Electron / Hydrogen HighCadence From North Hemisphere Direction
MinSampling: 1S; MaxSampling: 5S
Provider: http://soar.esac.esa.int/soar", "is_public": "True", "lastModificationDate": "2024-09-30T00:14:59Z", "lastUpdate": "2024-09-30T00:14:57Z", "maxSampling": "5S", "measurement_type": "EnergeticParticles", "name": "southward flow", "processing_level": "Calibrated", "sampling": "1S", "solo_het_north_4_qf": {"__spz_name__": "quality flag: southward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_north_4_qf", "dataset": "so-het-north.4", "description": "0: Bad, 1: Known problems, 2: Survey data, 3: Good, 4: Excellent", "display_type": "timeseries", "is_public": "True", "name": "quality flag: southward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_north_4_qf"}, "solo_het_north_eflux": {"__spz_name__": "e- flux: southward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_north_eflux", "dataset": "so-het-north.4", "description": "Electron flux", "display_type": "timeseries", "is_public": "True", "name": "e- flux: southward", "size": "4", "solo_het_north_eflux0": {"__spz_name__": "0.45-1.04 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_het_north_eflux(0)", "dataset": "so-het-north.4", "index1": "0", "is_public": "True", "name": "0.45-1.04 MeV", "parameter": "solo_het_north_eflux", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_north_eflux(0)"}, "solo_het_north_eflux1": {"__spz_name__": "1.05-2.4 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_het_north_eflux(1)", "dataset": "so-het-north.4", "index1": "1", "is_public": "True", "name": "1.05-2.4 MeV", "parameter": "solo_het_north_eflux", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_north_eflux(1)"}, "solo_het_north_eflux2": {"__spz_name__": "2.4-6.0 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_het_north_eflux(2)", "dataset": "so-het-north.4", "index1": "2", "is_public": "True", "name": "2.4-6.0 MeV", "parameter": "solo_het_north_eflux", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_north_eflux(2)"}, "solo_het_north_eflux3": {"__spz_name__": "6.0-18.8 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_het_north_eflux(3)", "dataset": "so-het-north.4", "index1": "3", "is_public": "True", "name": "6.0-18.8 MeV", "parameter": "solo_het_north_eflux", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_north_eflux(3)"}, "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_het_north_eflux"}, "solo_het_north_eunc": {"__spz_name__": "e- flux unc: southward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_north_eunc", "dataset": "so-het-north.4", "description": "Electron flux uncertainty", "display_type": "timeseries", "is_public": "True", "name": "e- flux unc: southward", "size": "4", "solo_het_north_eunc0": {"__spz_name__": "0.45-1.04 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_het_north_eunc(0)", "dataset": "so-het-north.4", "index1": "0", "is_public": "True", "name": "0.45-1.04 MeV", "parameter": "solo_het_north_eunc", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_north_eunc(0)"}, "solo_het_north_eunc1": {"__spz_name__": "1.05-2.4 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_het_north_eunc(1)", "dataset": "so-het-north.4", "index1": "1", "is_public": "True", "name": "1.05-2.4 MeV", "parameter": "solo_het_north_eunc", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_north_eunc(1)"}, "solo_het_north_eunc2": {"__spz_name__": "2.4-6.0 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_het_north_eunc(2)", "dataset": "so-het-north.4", "index1": "2", "is_public": "True", "name": "2.4-6.0 MeV", "parameter": "solo_het_north_eunc", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_north_eunc(2)"}, "solo_het_north_eunc3": {"__spz_name__": "6.0-18.8 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_het_north_eunc(3)", "dataset": "so-het-north.4", "index1": "3", "is_public": "True", "name": "6.0-18.8 MeV", "parameter": "solo_het_north_eunc", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_north_eunc(3)"}, "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_het_north_eunc"}, "solo_het_north_hhcflux": {"__spz_name__": "h flux: southward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_north_hhcflux", "dataset": "so-het-north.4", "description": "Hydrogen flux", "display_type": "timeseries", "is_public": "True", "name": "h flux: southward", "size": "4", "solo_het_north_hhcflux0": {"__spz_name__": "6.9-9.6 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_het_north_hhcflux(0)", "dataset": "so-het-north.4", "index1": "0", "is_public": "True", "name": "6.9-9.6 MeV", "parameter": "solo_het_north_hhcflux", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_north_hhcflux(0)"}, "solo_het_north_hhcflux1": {"__spz_name__": "10.8-18.2 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_het_north_hhcflux(1)", "dataset": "so-het-north.4", "index1": "1", "is_public": "True", "name": "10.8-18.2 MeV", "parameter": "solo_het_north_hhcflux", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_north_hhcflux(1)"}, "solo_het_north_hhcflux2": {"__spz_name__": "18.2-43.0 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_het_north_hhcflux(2)", "dataset": "so-het-north.4", "index1": "2", "is_public": "True", "name": "18.2-43.0 MeV", "parameter": "solo_het_north_hhcflux", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_north_hhcflux(2)"}, "solo_het_north_hhcflux3": {"__spz_name__": "43.0-105 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_het_north_hhcflux(3)", "dataset": "so-het-north.4", "index1": "3", "is_public": "True", "name": "43.0-105 MeV", "parameter": "solo_het_north_hhcflux", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_north_hhcflux(3)"}, "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_het_north_hhcflux"}, "solo_het_north_hhcunc": {"__spz_name__": "h flux unc: southward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_north_hhcunc", "dataset": "so-het-north.4", "description": "Hydrogen flux uncertainty", "display_type": "timeseries", "is_public": "True", "name": "h flux unc: southward", "size": "4", "solo_het_north_hhcunc0": {"__spz_name__": "6.9-9.6 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_het_north_hhcunc(0)", "dataset": "so-het-north.4", "index1": "0", "is_public": "True", "name": "6.9-9.6 MeV", "parameter": "solo_het_north_hhcunc", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_north_hhcunc(0)"}, "solo_het_north_hhcunc1": {"__spz_name__": "10.8-18.2 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_het_north_hhcunc(1)", "dataset": "so-het-north.4", "index1": "1", "is_public": "True", "name": "10.8-18.2 MeV", "parameter": "solo_het_north_hhcunc", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_north_hhcunc(1)"}, "solo_het_north_hhcunc2": {"__spz_name__": "18.2-43.0 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_het_north_hhcunc(2)", "dataset": "so-het-north.4", "index1": "2", "is_public": "True", "name": "18.2-43.0 MeV", "parameter": "solo_het_north_hhcunc", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_north_hhcunc(2)"}, "solo_het_north_hhcunc3": {"__spz_name__": "43.0-105 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_het_north_hhcunc(3)", "dataset": "so-het-north.4", "index1": "3", "is_public": "True", "name": "43.0-105 MeV", "parameter": "solo_het_north_hhcunc", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_north_hhcunc(3)"}, "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_het_north_hhcunc"}, "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Solar_Orbiter/EPD/so-het-north.4", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "target": "Heliosphere.Inner", "xmlid": "so-het-north.4"}, "so_het_omni_4": {"PriorID": "so-het-sun.4", "__spz_name__": "omni flux", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "so-het-omni.4", "att": "auto/so-het-omni.4", "dataSource": "http://soar.esac.esa.int/soar", "desc": "Electron / Hydrogen HighCadence Omni Flux
MinSampling: 1S; MaxSampling: 5S
Provider: http://soar.esac.esa.int/soar", "is_public": "True", "lastModificationDate": "2024-09-30T00:14:12Z", "lastUpdate": "2024-09-30T00:14:11Z", "maxSampling": "5S", "measurement_type": "EnergeticParticles", "name": "omni flux", "processing_level": "Calibrated", "sampling": "1S", "solo_het_omni_eflux": {"__spz_name__": "e- flux: omni", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_omni_eflux", "dataset": "so-het-omni.4", "description": "Electron flux", "display_type": "timeseries", "is_public": "True", "name": "e- flux: omni", "size": "4", "solo_het_omni_eflux0": {"__spz_name__": "0.45-1.04 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_het_omni_eflux(0)", "dataset": "so-het-omni.4", "index1": "0", "is_public": "True", "name": "0.45-1.04 MeV", "parameter": "solo_het_omni_eflux", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_omni_eflux(0)"}, "solo_het_omni_eflux1": {"__spz_name__": "1.05-2.4 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_het_omni_eflux(1)", "dataset": "so-het-omni.4", "index1": "1", "is_public": "True", "name": "1.05-2.4 MeV", "parameter": "solo_het_omni_eflux", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_omni_eflux(1)"}, "solo_het_omni_eflux2": {"__spz_name__": "2.4-6.0 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_het_omni_eflux(2)", "dataset": "so-het-omni.4", "index1": "2", "is_public": "True", "name": "2.4-6.0 MeV", "parameter": "solo_het_omni_eflux", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_omni_eflux(2)"}, "solo_het_omni_eflux3": {"__spz_name__": "6.0-18.8 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_het_omni_eflux(3)", "dataset": "so-het-omni.4", "index1": "3", "is_public": "True", "name": "6.0-18.8 MeV", "parameter": "solo_het_omni_eflux", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_omni_eflux(3)"}, "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_het_omni_eflux"}, "solo_het_omni_hhcflux": {"__spz_name__": "h flux: omni", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_omni_hhcflux", "dataset": "so-het-omni.4", "description": "Hydrogen flux", "display_type": "timeseries", "is_public": "True", "name": "h flux: omni", "size": "4", "solo_het_omni_hhcflux0": {"__spz_name__": "6.9-9.6 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_het_omni_hhcflux(0)", "dataset": "so-het-omni.4", "index1": "0", "is_public": "True", "name": "6.9-9.6 MeV", "parameter": "solo_het_omni_hhcflux", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_omni_hhcflux(0)"}, "solo_het_omni_hhcflux1": {"__spz_name__": "10.8-18.2 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_het_omni_hhcflux(1)", "dataset": "so-het-omni.4", "index1": "1", "is_public": "True", "name": "10.8-18.2 MeV", "parameter": "solo_het_omni_hhcflux", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_omni_hhcflux(1)"}, "solo_het_omni_hhcflux2": {"__spz_name__": "18.2-43.0 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_het_omni_hhcflux(2)", "dataset": "so-het-omni.4", "index1": "2", "is_public": "True", "name": "18.2-43.0 MeV", "parameter": "solo_het_omni_hhcflux", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_omni_hhcflux(2)"}, "solo_het_omni_hhcflux3": {"__spz_name__": "43.0-105 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_het_omni_hhcflux(3)", "dataset": "so-het-omni.4", "index1": "3", "is_public": "True", "name": "43.0-105 MeV", "parameter": "solo_het_omni_hhcflux", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_omni_hhcflux(3)"}, "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_het_omni_hhcflux"}, "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Solar_Orbiter/EPD/so-het-omni.4", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "target": "Heliosphere.Inner", "xmlid": "so-het-omni.4"}, "so_het_south_4": {"__spz_name__": "northward flow", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "so-het-south.4", "att": "auto/so-het-south.4", "dataSource": "http://soar.esac.esa.int/soar", "desc": "Electron / Hydrogen HighCadence From South Hemisphere Direction
MinSampling: 1S; MaxSampling: 5S
Provider: http://soar.esac.esa.int/soar", "is_public": "True", "lastModificationDate": "2024-09-30T00:15:21Z", "lastUpdate": "2024-09-30T00:15:20Z", "maxSampling": "5S", "measurement_type": "EnergeticParticles", "name": "northward flow", "processing_level": "Calibrated", "sampling": "1S", "solo_het_south_4_qf": {"__spz_name__": "quality flag: northward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_south_4_qf", "dataset": "so-het-south.4", "description": "0: Bad, 1: Known problems, 2: Survey data, 3: Good, 4: Excellent", "display_type": "timeseries", "is_public": "True", "name": "quality flag: northward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_south_4_qf"}, "solo_het_south_eflux": {"__spz_name__": "e- flux: northward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_south_eflux", "dataset": "so-het-south.4", "description": "Electron flux", "display_type": "timeseries", "is_public": "True", "name": "e- flux: northward", "size": "4", "solo_het_south_eflux0": {"__spz_name__": "0.45-1.04 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_het_south_eflux(0)", "dataset": "so-het-south.4", "index1": "0", "is_public": "True", "name": "0.45-1.04 MeV", "parameter": "solo_het_south_eflux", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_south_eflux(0)"}, "solo_het_south_eflux1": {"__spz_name__": "1.05-2.4 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_het_south_eflux(1)", "dataset": "so-het-south.4", "index1": "1", "is_public": "True", "name": "1.05-2.4 MeV", "parameter": "solo_het_south_eflux", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_south_eflux(1)"}, "solo_het_south_eflux2": {"__spz_name__": "2.4-6.0 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_het_south_eflux(2)", "dataset": "so-het-south.4", "index1": "2", "is_public": "True", "name": "2.4-6.0 MeV", "parameter": "solo_het_south_eflux", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_south_eflux(2)"}, "solo_het_south_eflux3": {"__spz_name__": "6.0-18.8 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_het_south_eflux(3)", "dataset": "so-het-south.4", "index1": "3", "is_public": "True", "name": "6.0-18.8 MeV", "parameter": "solo_het_south_eflux", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_south_eflux(3)"}, "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_het_south_eflux"}, "solo_het_south_eunc": {"__spz_name__": "e- flux unc: northward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_south_eunc", "dataset": "so-het-south.4", "description": "Electron flux uncertainty", "display_type": "timeseries", "is_public": "True", "name": "e- flux unc: northward", "size": "4", "solo_het_south_eunc0": {"__spz_name__": "0.45-1.04 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_het_south_eunc(0)", "dataset": "so-het-south.4", "index1": "0", "is_public": "True", "name": "0.45-1.04 MeV", "parameter": "solo_het_south_eunc", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_south_eunc(0)"}, "solo_het_south_eunc1": {"__spz_name__": "1.05-2.4 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_het_south_eunc(1)", "dataset": "so-het-south.4", "index1": "1", "is_public": "True", "name": "1.05-2.4 MeV", "parameter": "solo_het_south_eunc", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_south_eunc(1)"}, "solo_het_south_eunc2": {"__spz_name__": "2.4-6.0 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_het_south_eunc(2)", "dataset": "so-het-south.4", "index1": "2", "is_public": "True", "name": "2.4-6.0 MeV", "parameter": "solo_het_south_eunc", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_south_eunc(2)"}, "solo_het_south_eunc3": {"__spz_name__": "6.0-18.8 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_het_south_eunc(3)", "dataset": "so-het-south.4", "index1": "3", "is_public": "True", "name": "6.0-18.8 MeV", "parameter": "solo_het_south_eunc", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_south_eunc(3)"}, "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_het_south_eunc"}, "solo_het_south_hhcflux": {"__spz_name__": "h flux: northward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_south_hhcflux", "dataset": "so-het-south.4", "description": "Hydrogen flux", "display_type": "timeseries", "is_public": "True", "name": "h flux: northward", "size": "4", "solo_het_south_hhcflux0": {"__spz_name__": "6.9-9.6 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_het_south_hhcflux(0)", "dataset": "so-het-south.4", "index1": "0", "is_public": "True", "name": "6.9-9.6 MeV", "parameter": "solo_het_south_hhcflux", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_south_hhcflux(0)"}, "solo_het_south_hhcflux1": {"__spz_name__": "10.8-18.2 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_het_south_hhcflux(1)", "dataset": "so-het-south.4", "index1": "1", "is_public": "True", "name": "10.8-18.2 MeV", "parameter": "solo_het_south_hhcflux", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_south_hhcflux(1)"}, "solo_het_south_hhcflux2": {"__spz_name__": "18.2-43.0 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_het_south_hhcflux(2)", "dataset": "so-het-south.4", "index1": "2", "is_public": "True", "name": "18.2-43.0 MeV", "parameter": "solo_het_south_hhcflux", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_south_hhcflux(2)"}, "solo_het_south_hhcflux3": {"__spz_name__": "43.0-105 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_het_south_hhcflux(3)", "dataset": "so-het-south.4", "index1": "3", "is_public": "True", "name": "43.0-105 MeV", "parameter": "solo_het_south_hhcflux", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_south_hhcflux(3)"}, "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_het_south_hhcflux"}, "solo_het_south_hhcunc": {"__spz_name__": "h flux unc: northward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_south_hhcunc", "dataset": "so-het-south.4", "description": "Hydrogen flux uncertainty", "display_type": "timeseries", "is_public": "True", "name": "h flux unc: northward", "size": "4", "solo_het_south_hhcunc0": {"__spz_name__": "6.9-9.6 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_het_south_hhcunc(0)", "dataset": "so-het-south.4", "index1": "0", "is_public": "True", "name": "6.9-9.6 MeV", "parameter": "solo_het_south_hhcunc", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_south_hhcunc(0)"}, "solo_het_south_hhcunc1": {"__spz_name__": "10.8-18.2 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_het_south_hhcunc(1)", "dataset": "so-het-south.4", "index1": "1", "is_public": "True", "name": "10.8-18.2 MeV", "parameter": "solo_het_south_hhcunc", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_south_hhcunc(1)"}, "solo_het_south_hhcunc2": {"__spz_name__": "18.2-43.0 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_het_south_hhcunc(2)", "dataset": "so-het-south.4", "index1": "2", "is_public": "True", "name": "18.2-43.0 MeV", "parameter": "solo_het_south_hhcunc", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_south_hhcunc(2)"}, "solo_het_south_hhcunc3": {"__spz_name__": "43.0-105 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_het_south_hhcunc(3)", "dataset": "so-het-south.4", "index1": "3", "is_public": "True", "name": "43.0-105 MeV", "parameter": "solo_het_south_hhcunc", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_south_hhcunc(3)"}, "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_het_south_hhcunc"}, "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Solar_Orbiter/EPD/so-het-south.4", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "target": "Heliosphere.Inner", "xmlid": "so-het-south.4"}, "so_het_sun_4": {"__spz_name__": "anti-sunward flow", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "so-het-sun.4", "att": "auto/so-het-sun.4", "dataSource": "http://soar.esac.esa.int/soar", "desc": "Electron / Hydrogen HighCadence From Sun Direction ( mean Parker spiral )
MinSampling: 1S; MaxSampling: 5S
Provider: http://soar.esac.esa.int/soar", "is_public": "True", "lastModificationDate": "2024-09-30T00:14:12Z", "lastUpdate": "2024-09-30T00:14:11Z", "maxSampling": "5S", "measurement_type": "EnergeticParticles", "name": "anti-sunward flow", "processing_level": "Calibrated", "sampling": "1S", "solo_het_sun_4_qf": {"__spz_name__": "quality flag: anti-sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_sun_4_qf", "dataset": "so-het-sun.4", "description": "0: Bad, 1: Known problems, 2: Survey data, 3: Good, 4: Excellent", "display_type": "timeseries", "is_public": "True", "name": "quality flag: anti-sunward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_sun_4_qf"}, "solo_het_sun_eflux": {"__spz_name__": "e- flux: ant-sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_sun_eflux", "dataset": "so-het-sun.4", "description": "Electron flux", "display_type": "timeseries", "is_public": "True", "name": "e- flux: ant-sunward", "size": "4", "solo_het_sun_eflux0": {"__spz_name__": "0.45-1.04 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_het_sun_eflux(0)", "dataset": "so-het-sun.4", "index1": "0", "is_public": "True", "name": "0.45-1.04 MeV", "parameter": "solo_het_sun_eflux", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_sun_eflux(0)"}, "solo_het_sun_eflux1": {"__spz_name__": "1.05-2.4 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_het_sun_eflux(1)", "dataset": "so-het-sun.4", "index1": "1", "is_public": "True", "name": "1.05-2.4 MeV", "parameter": "solo_het_sun_eflux", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_sun_eflux(1)"}, "solo_het_sun_eflux2": {"__spz_name__": "2.4-6.0 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_het_sun_eflux(2)", "dataset": "so-het-sun.4", "index1": "2", "is_public": "True", "name": "2.4-6.0 MeV", "parameter": "solo_het_sun_eflux", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_sun_eflux(2)"}, "solo_het_sun_eflux3": {"__spz_name__": "6.0-18.8 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_het_sun_eflux(3)", "dataset": "so-het-sun.4", "index1": "3", "is_public": "True", "name": "6.0-18.8 MeV", "parameter": "solo_het_sun_eflux", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_sun_eflux(3)"}, "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_het_sun_eflux"}, "solo_het_sun_eunc": {"__spz_name__": "e- flux unc: anti-sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_sun_eunc", "dataset": "so-het-sun.4", "description": "Electron flux uncertainty", "display_type": "timeseries", "is_public": "True", "name": "e- flux unc: anti-sunward", "size": "4", "solo_het_sun_eunc0": {"__spz_name__": "0.45-1.04 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_het_sun_eunc(0)", "dataset": "so-het-sun.4", "index1": "0", "is_public": "True", "name": "0.45-1.04 MeV", "parameter": "solo_het_sun_eunc", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_sun_eunc(0)"}, "solo_het_sun_eunc1": {"__spz_name__": "1.05-2.4 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_het_sun_eunc(1)", "dataset": "so-het-sun.4", "index1": "1", "is_public": "True", "name": "1.05-2.4 MeV", "parameter": "solo_het_sun_eunc", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_sun_eunc(1)"}, "solo_het_sun_eunc2": {"__spz_name__": "2.4-6.0 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_het_sun_eunc(2)", "dataset": "so-het-sun.4", "index1": "2", "is_public": "True", "name": "2.4-6.0 MeV", "parameter": "solo_het_sun_eunc", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_sun_eunc(2)"}, "solo_het_sun_eunc3": {"__spz_name__": "6.0-18.8 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_het_sun_eunc(3)", "dataset": "so-het-sun.4", "index1": "3", "is_public": "True", "name": "6.0-18.8 MeV", "parameter": "solo_het_sun_eunc", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_sun_eunc(3)"}, "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_het_sun_eunc"}, "solo_het_sun_hhcflux": {"__spz_name__": "h flux: anti-sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_sun_hhcflux", "dataset": "so-het-sun.4", "description": "Hydrogen flux", "display_type": "timeseries", "is_public": "True", "name": "h flux: anti-sunward", "size": "4", "solo_het_sun_hhcflux0": {"__spz_name__": "6.9-9.6 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_het_sun_hhcflux(0)", "dataset": "so-het-sun.4", "index1": "0", "is_public": "True", "name": "6.9-9.6 MeV", "parameter": "solo_het_sun_hhcflux", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_sun_hhcflux(0)"}, "solo_het_sun_hhcflux1": {"__spz_name__": "10.8-18.2 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_het_sun_hhcflux(1)", "dataset": "so-het-sun.4", "index1": "1", "is_public": "True", "name": "10.8-18.2 MeV", "parameter": "solo_het_sun_hhcflux", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_sun_hhcflux(1)"}, "solo_het_sun_hhcflux2": {"__spz_name__": "18.2-43.0 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_het_sun_hhcflux(2)", "dataset": "so-het-sun.4", "index1": "2", "is_public": "True", "name": "18.2-43.0 MeV", "parameter": "solo_het_sun_hhcflux", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_sun_hhcflux(2)"}, "solo_het_sun_hhcflux3": {"__spz_name__": "43.0-105 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_het_sun_hhcflux(3)", "dataset": "so-het-sun.4", "index1": "3", "is_public": "True", "name": "43.0-105 MeV", "parameter": "solo_het_sun_hhcflux", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_sun_hhcflux(3)"}, "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_het_sun_hhcflux"}, "solo_het_sun_hhcunc": {"__spz_name__": "h flux unc: anti-sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_sun_hhcunc", "dataset": "so-het-sun.4", "description": "Hydrogen flux uncertainty", "display_type": "timeseries", "is_public": "True", "name": "h flux unc: anti-sunward", "size": "4", "solo_het_sun_hhcunc0": {"__spz_name__": "6.9-9.6 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_het_sun_hhcunc(0)", "dataset": "so-het-sun.4", "index1": "0", "is_public": "True", "name": "6.9-9.6 MeV", "parameter": "solo_het_sun_hhcunc", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_sun_hhcunc(0)"}, "solo_het_sun_hhcunc1": {"__spz_name__": "10.8-18.2 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_het_sun_hhcunc(1)", "dataset": "so-het-sun.4", "index1": "1", "is_public": "True", "name": "10.8-18.2 MeV", "parameter": "solo_het_sun_hhcunc", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_sun_hhcunc(1)"}, "solo_het_sun_hhcunc2": {"__spz_name__": "18.2-43.0 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_het_sun_hhcunc(2)", "dataset": "so-het-sun.4", "index1": "2", "is_public": "True", "name": "18.2-43.0 MeV", "parameter": "solo_het_sun_hhcunc", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_sun_hhcunc(2)"}, "solo_het_sun_hhcunc3": {"__spz_name__": "43.0-105 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_het_sun_hhcunc(3)", "dataset": "so-het-sun.4", "index1": "3", "is_public": "True", "name": "43.0-105 MeV", "parameter": "solo_het_sun_hhcunc", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_sun_hhcunc(3)"}, "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_het_sun_hhcunc"}, "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Solar_Orbiter/EPD/so-het-sun.4", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "target": "Heliosphere.Inner", "xmlid": "so-het-sun.4"}, "xmlid": "solo-epd-het.4"}, "L2___fe_flux": {"__spz_name__": "L2 : fe flux", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "solo-epd-het.3", "is_public": "True", "name": "L2 : fe flux", "so_het_anti_3": {"__spz_name__": "sunward flow", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "so-het-anti.3", "att": "auto/so-het-anti.3", "dataSource": "http://soar.esac.esa.int/soar", "desc": "Fe Flux From Antisun Direction ( mean Parker spiral )
MinSampling: 5M; MaxSampling: 10M
Provider: http://soar.esac.esa.int/soar", "is_public": "True", "lastModificationDate": "2024-09-30T00:13:12Z", "lastUpdate": "2024-09-30T00:13:12Z", "maxSampling": "10M", "measurement_type": "EnergeticParticles", "name": "sunward flow", "processing_level": "Calibrated", "sampling": "5M", "solo_het_asun_3_qf": {"__spz_name__": "quality flag: sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_asun_3_qf", "dataset": "so-het-anti.3", "description": "0: Bad, 1: Known problems, 2: Survey data, 3: Good, 4: Excellent", "display_type": "timeseries", "is_public": "True", "name": "quality flag: sunward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_asun_3_qf"}, "solo_het_asun_feflux": {"__spz_name__": "fe flux: sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_asun_feflux", "dataset": "so-het-anti.3", "description": "Ferrum flux", "display_type": "spectrogram", "is_public": "True", "name": "fe flux: sunward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV/n)", "xmlid": "solo_het_asun_feflux"}, "solo_het_asun_feunc": {"__spz_name__": "fe flux unc: sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_asun_feunc", "dataset": "so-het-anti.3", "description": "Ferrum flux uncertainty", "display_type": "spectrogram", "is_public": "True", "name": "fe flux unc: sunward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV/n)", "xmlid": "solo_het_asun_feunc"}, "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Solar_Orbiter/EPD/so-het-anti.3", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "target": "Heliosphere.Inner", "xmlid": "so-het-anti.3"}, "so_het_north_3": {"__spz_name__": "southward flow", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "so-het-north.3", "att": "auto/so-het-north.3", "dataSource": "http://soar.esac.esa.int/soar", "desc": "Fe Flux From North Hemisphere Direction
MinSampling: 5M; MaxSampling: 10M
Provider: http://soar.esac.esa.int/soar", "is_public": "True", "lastModificationDate": "2024-09-30T00:13:26Z", "lastUpdate": "2024-09-30T00:13:26Z", "maxSampling": "10M", "measurement_type": "EnergeticParticles", "name": "southward flow", "processing_level": "Calibrated", "sampling": "5M", "solo_het_north_3_qf": {"__spz_name__": "quality flag: southward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_north_3_qf", "dataset": "so-het-north.3", "description": "0: Bad, 1: Known problems, 2: Survey data, 3: Good, 4: Excellent", "display_type": "timeseries", "is_public": "True", "name": "quality flag: southward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_north_3_qf"}, "solo_het_north_feflux": {"__spz_name__": "fe flux: southward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_north_feflux", "dataset": "so-het-north.3", "description": "Ferrum flux", "display_type": "spectrogram", "is_public": "True", "name": "fe flux: southward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV/n)", "xmlid": "solo_het_north_feflux"}, "solo_het_north_feunc": {"__spz_name__": "fe flux unc: southward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_north_feunc", "dataset": "so-het-north.3", "description": "Ferrum flux uncertainty", "display_type": "spectrogram", "is_public": "True", "name": "fe flux unc: southward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV/n)", "xmlid": "solo_het_north_feunc"}, "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Solar_Orbiter/EPD/so-het-north.3", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "target": "Heliosphere.Inner", "xmlid": "so-het-north.3"}, "so_het_omni_3": {"PriorID": "so-het-sun.3", "__spz_name__": "omni flux", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "so-het-omni.3", "att": "auto/so-het-omni.3", "dataSource": "http://soar.esac.esa.int/soar", "desc": "Fe Omni Flux
MinSampling: 5M; MaxSampling: 10M
Provider: http://soar.esac.esa.int/soar", "is_public": "True", "lastModificationDate": "2024-09-30T00:13:48Z", "lastUpdate": "2024-09-30T00:13:48Z", "maxSampling": "10M", "measurement_type": "EnergeticParticles", "name": "omni flux", "processing_level": "Calibrated", "sampling": "5M", "solo_het_omni_feflux": {"__spz_name__": "fe flux: omni", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_omni_feflux", "dataset": "so-het-omni.3", "description": "Ferrum flux", "display_type": "spectrogram", "is_public": "True", "name": "fe flux: omni", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV/n)", "xmlid": "solo_het_omni_feflux"}, "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Solar_Orbiter/EPD/so-het-omni.3", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "target": "Heliosphere.Inner", "xmlid": "so-het-omni.3"}, "so_het_south_3": {"__spz_name__": "northward flow", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "so-het-south.3", "att": "auto/so-het-south.3", "dataSource": "http://soar.esac.esa.int/soar", "desc": "Fe Flux From South Hemisphere Direction
MinSampling: 5M; MaxSampling: 10M
Provider: http://soar.esac.esa.int/soar", "is_public": "True", "lastModificationDate": "2024-09-30T00:13:37Z", "lastUpdate": "2024-09-30T00:13:37Z", "maxSampling": "10M", "measurement_type": "EnergeticParticles", "name": "northward flow", "processing_level": "Calibrated", "sampling": "5M", "solo_het_south_3_qf": {"__spz_name__": "quality flag: northward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_south_3_qf", "dataset": "so-het-south.3", "description": "0: Bad, 1: Known problems, 2: Survey data, 3: Good, 4: Excellent", "display_type": "timeseries", "is_public": "True", "name": "quality flag: northward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_south_3_qf"}, "solo_het_south_feflux": {"__spz_name__": "fe flux: northward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_south_feflux", "dataset": "so-het-south.3", "description": "Ferrum flux", "display_type": "spectrogram", "is_public": "True", "name": "fe flux: northward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV/n)", "xmlid": "solo_het_south_feflux"}, "solo_het_south_feunc": {"__spz_name__": "fe flux unc: northward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_south_feunc", "dataset": "so-het-south.3", "description": "Ferrum flux uncertainty", "display_type": "spectrogram", "is_public": "True", "name": "fe flux unc: northward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV/n)", "xmlid": "solo_het_south_feunc"}, "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Solar_Orbiter/EPD/so-het-south.3", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "target": "Heliosphere.Inner", "xmlid": "so-het-south.3"}, "so_het_sun_3": {"__spz_name__": "anti-sunward flow", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "so-het-sun.3", "att": "auto/so-het-sun.3", "dataSource": "http://soar.esac.esa.int/soar", "desc": "Fe From Sun Direction ( mean Parker spiral )
MinSampling: 5M; MaxSampling: 10M
Provider: http://soar.esac.esa.int/soar", "is_public": "True", "lastModificationDate": "2024-09-30T00:13:48Z", "lastUpdate": "2024-09-30T00:13:48Z", "maxSampling": "10M", "measurement_type": "EnergeticParticles", "name": "anti-sunward flow", "processing_level": "Calibrated", "sampling": "5M", "solo_het_sun_3_qf": {"__spz_name__": "quality flag: anti-sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_sun_3_qf", "dataset": "so-het-sun.3", "description": "0: Bad, 1: Known problems, 2: Survey data, 3: Good, 4: Excellent", "display_type": "timeseries", "is_public": "True", "name": "quality flag: anti-sunward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_sun_3_qf"}, "solo_het_sun_feflux": {"__spz_name__": "fe flux: anti-sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_sun_feflux", "dataset": "so-het-sun.3", "description": "Ferrum flux", "display_type": "spectrogram", "is_public": "True", "name": "fe flux: anti-sunward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV/n)", "xmlid": "solo_het_sun_feflux"}, "solo_het_sun_feunc": {"__spz_name__": "fe flux unc: anti-sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_sun_feunc", "dataset": "so-het-sun.3", "description": "Ferrum flux uncertainty", "display_type": "spectrogram", "is_public": "True", "name": "fe flux unc: anti-sunward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV/n)", "xmlid": "solo_het_sun_feunc"}, "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Solar_Orbiter/EPD/so-het-sun.3", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "target": "Heliosphere.Inner", "xmlid": "so-het-sun.3"}, "xmlid": "solo-epd-het.3"}, "L2___h_flux": {"__spz_name__": "L2 : h flux", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "solo-epd-het", "is_public": "True", "name": "L2 : h flux", "so_het_anti": {"__spz_name__": "sunward flow", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "so-het-anti", "att": "auto/so-het-anti", "dataSource": "http://soar.esac.esa.int/soar", "desc": "Hydrogen Flux From AntiSun Direction ( mean Parker spiral )
MinSampling: 5S; MaxSampling: 30S
Provider: http://soar.esac.esa.int/soar", "is_public": "True", "lastModificationDate": "2024-10-06T22:37:13Z", "lastUpdate": "2024-09-30T00:01:18Z", "maxSampling": "30S", "measurement_type": "EnergeticParticles", "name": "sunward flow", "processing_level": "Calibrated", "sampling": "5S", "solo_het_asun_hflux": {"__spz_name__": "h flux: sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_asun_hflux", "dataset": "so-het-anti", "description": "Hydrogen flux", "display_type": "spectrogram", "is_public": "True", "name": "h flux: sunward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_het_asun_hflux"}, "solo_het_asun_hrate": {"__spz_name__": "h cntrate: sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_asun_hrate", "dataset": "so-het-anti", "description": "Hydrogen count rate", "display_type": "spectrogram", "is_public": "True", "name": "h cntrate: sunward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "cnts/s", "xmlid": "solo_het_asun_hrate"}, "solo_het_asun_hunc": {"__spz_name__": "h flux unc: sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_asun_hunc", "dataset": "so-het-anti", "description": "Uncertainty in Hydrogen flux", "display_type": "spectrogram", "is_public": "True", "name": "h flux unc: sunward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_het_asun_hunc"}, "solo_het_asun_qf": {"__spz_name__": "quality flag: sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_asun_qf", "dataset": "so-het-anti", "description": "0: Bad, 1: Known problems, 2: Survey data, 3: Good, 4: Excellent", "display_type": "timeseries", "is_public": "True", "name": "quality flag: sunward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_asun_qf"}, "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Solar_Orbiter/EPD/so-het-anti", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "target": "Heliosphere.Inner", "xmlid": "so-het-anti"}, "so_het_north": {"__spz_name__": "southward flow", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "so-het-north", "att": "auto/so-het-north", "dataSource": "http://soar.esac.esa.int/soar", "desc": "Hydrogen Flux From North Hemisphere Direction
MinSampling: 5S; MaxSampling: 30S
Provider: http://soar.esac.esa.int/soar", "is_public": "True", "lastModificationDate": "2024-10-06T22:37:12Z", "lastUpdate": "2024-09-30T00:00:46Z", "maxSampling": "30S", "measurement_type": "EnergeticParticles", "name": "southward flow", "processing_level": "Calibrated", "sampling": "5S", "solo_het_north_hflux": {"__spz_name__": "h flux: southward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_north_hflux", "dataset": "so-het-north", "description": "Hydrogen flux", "display_type": "spectrogram", "is_public": "True", "name": "h flux: southward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_het_north_hflux"}, "solo_het_north_hrate": {"__spz_name__": "h cntrate: southward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_north_hrate", "dataset": "so-het-north", "description": "Hydrogen count rate", "display_type": "spectrogram", "is_public": "True", "name": "h cntrate: southward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "cnts/s", "xmlid": "solo_het_north_hrate"}, "solo_het_north_hunc": {"__spz_name__": "h flux unc: southward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_north_hunc", "dataset": "so-het-north", "description": "Uncertainty in Hydrogen flux", "display_type": "spectrogram", "is_public": "True", "name": "h flux unc: southward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_het_north_hunc"}, "solo_het_north_qf": {"__spz_name__": "quality flag: southward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_north_qf", "dataset": "so-het-north", "description": "0: Bad, 1: Known problems, 2: Survey data, 3: Good, 4: Excellent", "display_type": "timeseries", "is_public": "True", "name": "quality flag: southward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_north_qf"}, "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Solar_Orbiter/EPD/so-het-north", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "target": "Heliosphere.Inner", "xmlid": "so-het-north"}, "so_het_omni": {"PriorID": "so-het-sun", "__spz_name__": "omni flux", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "so-het-omni", "att": "auto/so-het-omni", "dataSource": "http://soar.esac.esa.int/soar", "desc": "Omni Hydrogen Flux
MinSampling: 5S; MaxSampling: 30S
Provider: http://soar.esac.esa.int/soar", "is_public": "True", "lastModificationDate": "2024-10-06T22:37:12Z", "lastUpdate": "2024-09-30T00:00:30Z", "maxSampling": "30S", "measurement_type": "EnergeticParticles", "name": "omni flux", "processing_level": "Calibrated", "sampling": "5S", "solo_het_omni_hflux": {"__spz_name__": "h flux: omni", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_omni_hflux", "dataset": "so-het-omni", "description": "Hydrogen flux", "display_type": "spectrogram", "is_public": "True", "name": "h flux: omni", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_het_omni_hflux"}, "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Solar_Orbiter/EPD/so-het-omni", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "target": "Heliosphere.Inner", "xmlid": "so-het-omni"}, "so_het_south": {"__spz_name__": "northward flow", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "so-het-south", "att": "auto/so-het-south", "dataSource": "http://soar.esac.esa.int/soar", "desc": "Hydrogen Flux From South Hemisphere Direction
MinSampling: 5S; MaxSampling: 30S
Provider: http://soar.esac.esa.int/soar", "is_public": "True", "lastModificationDate": "2024-10-06T22:37:12Z", "lastUpdate": "2024-09-30T00:01:02Z", "maxSampling": "30S", "measurement_type": "EnergeticParticles", "name": "northward flow", "processing_level": "Calibrated", "sampling": "5S", "solo_het_south_hflux": {"__spz_name__": "h flux: northward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_south_hflux", "dataset": "so-het-south", "description": "Hydrogen flux", "display_type": "spectrogram", "is_public": "True", "name": "h flux: northward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_het_south_hflux"}, "solo_het_south_hrate": {"__spz_name__": "h cntrate: northward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_south_hrate", "dataset": "so-het-south", "description": "Hydrogen count rate", "display_type": "spectrogram", "is_public": "True", "name": "h cntrate: northward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "cnts/s", "xmlid": "solo_het_south_hrate"}, "solo_het_south_hunc": {"__spz_name__": "h flux unc: northward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_south_hunc", "dataset": "so-het-south", "description": "Uncertainty in Hydrogen flux", "display_type": "spectrogram", "is_public": "True", "name": "h flux unc: northward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_het_south_hunc"}, "solo_het_south_qf": {"__spz_name__": "quality flag: northward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_south_qf", "dataset": "so-het-south", "description": "0: Bad, 1: Known problems, 2: Survey data, 3: Good, 4: Excellent", "display_type": "timeseries", "is_public": "True", "name": "quality flag: northward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_south_qf"}, "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Solar_Orbiter/EPD/so-het-south", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "target": "Heliosphere.Inner", "xmlid": "so-het-south"}, "so_het_sun": {"__spz_name__": "anti-sunward flow", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "so-het-sun", "att": "auto/so-het-sun", "dataSource": "http://soar.esac.esa.int/soar", "desc": "Hydrogen From Sun Direction ( mean Parker spiral )
MinSampling: 5S; MaxSampling: 30S
Provider: http://soar.esac.esa.int/soar", "is_public": "True", "lastModificationDate": "2024-10-06T22:37:12Z", "lastUpdate": "2024-09-30T00:00:30Z", "maxSampling": "30S", "measurement_type": "EnergeticParticles", "name": "anti-sunward flow", "processing_level": "Calibrated", "sampling": "5S", "solo_het_sun_hflux": {"__spz_name__": "h flux: anti-sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_sun_hflux", "dataset": "so-het-sun", "description": "Hydrogen flux", "display_type": "spectrogram", "is_public": "True", "name": "h flux: anti-sunward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_het_sun_hflux"}, "solo_het_sun_hrate": {"__spz_name__": "h cntrate: anti-sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_sun_hrate", "dataset": "so-het-sun", "description": "Hydrogen count rate", "display_type": "spectrogram", "is_public": "True", "name": "h cntrate: anti-sunward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "cnts/s", "xmlid": "solo_het_sun_hrate"}, "solo_het_sun_hunc": {"__spz_name__": "h flux unc: anti-sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_sun_hunc", "dataset": "so-het-sun", "description": "Uncertainty in Hydrogen flux", "display_type": "spectrogram", "is_public": "True", "name": "h flux unc: anti-sunward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_het_sun_hunc"}, "solo_het_sun_qf": {"__spz_name__": "quality flag: anti-sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_het_sun_qf", "dataset": "so-het-sun", "description": "0: Bad, 1: Known problems, 2: Survey data, 3: Good, 4: Excellent", "display_type": "timeseries", "is_public": "True", "name": "quality flag: anti-sunward", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_het_sun_qf"}, "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Solar_Orbiter/EPD/so-het-sun", "start_date": "2020-05-13T00:00:03Z", "stop_date": "2024-05-31T23:59:59Z", "target": "Heliosphere.Inner", "xmlid": "so-het-sun"}, "xmlid": "solo-epd-het"}, "__spz_name__": "EPD/HET", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "SolO_epd-het", "att": "auto/SolO_epd-het", "desc": "Energetic Particle Detector / High Energy Telescope
SolidStateDetector", "is_public": "True", "name": "EPD/HET", "xmlid": "SolO_epd-het"}, "EPDSIS": {"L2___sis_a___anti_sunward_flow": {"__spz_name__": "L2 : sis-a ; anti-sunward flow", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "solo-epd-sisa", "is_public": "True", "name": "L2 : sis-a ; anti-sunward flow", "solo_sisa_slow": {"__spz_name__": "slow mode", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "solo-sisa-slow", "att": "auto/solo-sisa-slow", "dataSource": "http://soar.esac.esa.int/soar", "desc": "SIS-A ion anti-sunward flux
Sampling: 30M
Provider: http://soar.esac.esa.int/soar", "is_public": "True", "lastModificationDate": "2024-10-06T22:37:09Z", "lastUpdate": "2024-09-08T22:40:00Z", "measurement_type": "EnergeticParticles", "name": "slow mode", "processing_level": "Calibrated", "sampling": "30M", "solo_sisa_slow_caflux": {"__spz_name__": "ca flux: anti-sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_sisa_slow_caflux", "dataset": "solo-sisa-slow", "description": "Calcium flux", "display_type": "spectrogram", "is_public": "True", "name": "ca flux: anti-sunward", "start_date": "2020-04-02T10:52:18Z", "stop_date": "2024-05-31T23:50:52Z", "units": "1/(s cm\u00b2 sr MeV/n)", "xmlid": "solo_sisa_slow_caflux"}, "solo_sisa_slow_cflux": {"__spz_name__": "c flux: anti-sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_sisa_slow_cflux", "dataset": "solo-sisa-slow", "description": "Carbon flux", "display_type": "spectrogram", "is_public": "True", "name": "c flux: anti-sunward", "start_date": "2020-04-02T10:52:18Z", "stop_date": "2024-05-31T23:50:52Z", "units": "1/(s cm\u00b2 sr MeV/n)", "xmlid": "solo_sisa_slow_cflux"}, "solo_sisa_slow_feflux": {"__spz_name__": "fe flux: anti-sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_sisa_slow_feflux", "dataset": "solo-sisa-slow", "description": "Ferrum flux", "display_type": "spectrogram", "is_public": "True", "name": "fe flux: anti-sunward", "start_date": "2020-04-02T10:52:18Z", "stop_date": "2024-05-31T23:50:52Z", "units": "1/(s cm\u00b2 sr MeV/n)", "xmlid": "solo_sisa_slow_feflux"}, "solo_sisa_slow_he3flux": {"__spz_name__": "he3 flux: anti-sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_sisa_slow_he3flux", "dataset": "solo-sisa-slow", "description": "Helium-3 flux", "display_type": "spectrogram", "is_public": "True", "name": "he3 flux: anti-sunward", "start_date": "2020-04-02T10:52:18Z", "stop_date": "2024-05-31T23:50:52Z", "units": "1/(s cm\u00b2 sr MeV/n)", "xmlid": "solo_sisa_slow_he3flux"}, "solo_sisa_slow_he4flux": {"__spz_name__": "he4 flux: anti-sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_sisa_slow_he4flux", "dataset": "solo-sisa-slow", "description": "Heliun-4 flux", "display_type": "spectrogram", "is_public": "True", "name": "he4 flux: anti-sunward", "start_date": "2020-04-02T10:52:18Z", "stop_date": "2024-05-31T23:50:52Z", "units": "1/(s cm\u00b2 sr MeV/n)", "xmlid": "solo_sisa_slow_he4flux"}, "solo_sisa_slow_hflux": {"__spz_name__": "h flux: anti-sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_sisa_slow_hflux", "dataset": "solo-sisa-slow", "description": "Hydrogen flux", "display_type": "spectrogram", "is_public": "True", "name": "h flux: anti-sunward", "start_date": "2020-04-02T10:52:18Z", "stop_date": "2024-05-31T23:50:52Z", "units": "1/(s cm\u00b2 sr MeV/n)", "xmlid": "solo_sisa_slow_hflux"}, "solo_sisa_slow_mgflux": {"__spz_name__": "mg flux: anti-sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_sisa_slow_mgflux", "dataset": "solo-sisa-slow", "description": "Magnesium flux", "display_type": "spectrogram", "is_public": "True", "name": "mg flux: anti-sunward", "start_date": "2020-04-02T10:52:18Z", "stop_date": "2024-05-31T23:50:52Z", "units": "1/(s cm\u00b2 sr MeV/n)", "xmlid": "solo_sisa_slow_mgflux"}, "solo_sisa_slow_neflux": {"__spz_name__": "ne flux: anti-sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_sisa_slow_neflux", "dataset": "solo-sisa-slow", "description": "Neon flux", "display_type": "spectrogram", "is_public": "True", "name": "ne flux: anti-sunward", "start_date": "2020-04-02T10:52:18Z", "stop_date": "2024-05-31T23:50:52Z", "units": "1/(s cm\u00b2 sr MeV/n)", "xmlid": "solo_sisa_slow_neflux"}, "solo_sisa_slow_nflux": {"__spz_name__": "n flux: anti-sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_sisa_slow_nflux", "dataset": "solo-sisa-slow", "description": "Nitrogen flux", "display_type": "spectrogram", "is_public": "True", "name": "n flux: anti-sunward", "start_date": "2020-04-02T10:52:18Z", "stop_date": "2024-05-31T23:50:52Z", "units": "1/(s cm\u00b2 sr MeV/n)", "xmlid": "solo_sisa_slow_nflux"}, "solo_sisa_slow_oflux": {"__spz_name__": "o flux: anti-sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_sisa_slow_oflux", "dataset": "solo-sisa-slow", "description": "Oxygen flux", "display_type": "spectrogram", "is_public": "True", "name": "o flux: anti-sunward", "start_date": "2020-04-02T10:52:18Z", "stop_date": "2024-05-31T23:50:52Z", "units": "1/(s cm\u00b2 sr MeV/n)", "xmlid": "solo_sisa_slow_oflux"}, "solo_sisa_slow_qf": {"__spz_name__": "quality flag: anti-sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_sisa_slow_qf", "dataset": "solo-sisa-slow", "description": "0: Bad, 1: Known problems, 2: Survey data, 3: Good, 4: Excellent", "display_type": "timeseries", "is_public": "True", "name": "quality flag: anti-sunward", "start_date": "2020-04-02T10:52:18Z", "stop_date": "2024-05-31T23:50:52Z", "xmlid": "solo_sisa_slow_qf"}, "solo_sisa_slow_sflux": {"__spz_name__": "s flux: anti-sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_sisa_slow_sflux", "dataset": "solo-sisa-slow", "description": "Sulfur flux", "display_type": "spectrogram", "is_public": "True", "name": "s flux: anti-sunward", "start_date": "2020-04-02T10:52:18Z", "stop_date": "2024-05-31T23:50:52Z", "units": "1/(s cm\u00b2 sr MeV/n)", "xmlid": "solo_sisa_slow_sflux"}, "solo_sisa_slow_siflux": {"__spz_name__": "si flux: anti-sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_sisa_slow_siflux", "dataset": "solo-sisa-slow", "description": "Silicium flux", "display_type": "spectrogram", "is_public": "True", "name": "si flux: anti-sunward", "start_date": "2020-04-02T10:52:18Z", "stop_date": "2024-05-31T23:50:52Z", "units": "1/(s cm\u00b2 sr MeV/n)", "xmlid": "solo_sisa_slow_siflux"}, "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Solar_Orbiter/EPD/solo-sisa-slow", "start_date": "2020-04-02T10:52:18Z", "stop_date": "2024-05-31T23:50:52Z", "target": "Heliosphere.Inner", "xmlid": "solo-sisa-slow"}, "xmlid": "solo-epd-sisa"}, "L2___sis_b___sunward_flow": {"__spz_name__": "L2 : sis-b ; sunward flow", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "solo-epd-sisb", "is_public": "True", "name": "L2 : sis-b ; sunward flow", "solo_sisb_slow": {"__spz_name__": "slow mode", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "solo-sisb-slow", "att": "auto/solo-sisb-slow", "dataSource": "http://soar.esac.esa.int/soar", "desc": "SIS-B ion sunward flux
Sampling: 30M
Provider: http://soar.esac.esa.int/soar", "is_public": "True", "lastModificationDate": "2024-10-06T22:37:10Z", "lastUpdate": "2024-09-08T22:40:23Z", "measurement_type": "EnergeticParticles", "name": "slow mode", "processing_level": "Calibrated", "sampling": "30M", "solo_sisb_slow_caflux": {"__spz_name__": "ca flux: sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_sisb_slow_caflux", "dataset": "solo-sisb-slow", "description": "Calcium flux", "display_type": "spectrogram", "is_public": "True", "name": "ca flux: sunward", "start_date": "2020-06-14T00:10:09Z", "stop_date": "2024-05-31T23:50:52Z", "units": "1/(s cm\u00b2 sr MeV/n)", "xmlid": "solo_sisb_slow_caflux"}, "solo_sisb_slow_cflux": {"__spz_name__": "c flux: sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_sisb_slow_cflux", "dataset": "solo-sisb-slow", "description": "Carbon flux", "display_type": "spectrogram", "is_public": "True", "name": "c flux: sunward", "start_date": "2020-06-14T00:10:09Z", "stop_date": "2024-05-31T23:50:52Z", "units": "1/(s cm\u00b2 sr MeV/n)", "xmlid": "solo_sisb_slow_cflux"}, "solo_sisb_slow_feflux": {"__spz_name__": "fe flux: sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_sisb_slow_feflux", "dataset": "solo-sisb-slow", "description": "Ferrum flux", "display_type": "spectrogram", "is_public": "True", "name": "fe flux: sunward", "start_date": "2020-06-14T00:10:09Z", "stop_date": "2024-05-31T23:50:52Z", "units": "1/(s cm\u00b2 sr MeV/n)", "xmlid": "solo_sisb_slow_feflux"}, "solo_sisb_slow_he3flux": {"__spz_name__": "he3 flux: sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_sisb_slow_he3flux", "dataset": "solo-sisb-slow", "description": "Helium-3 flux", "display_type": "spectrogram", "is_public": "True", "name": "he3 flux: sunward", "start_date": "2020-06-14T00:10:09Z", "stop_date": "2024-05-31T23:50:52Z", "units": "1/(s cm\u00b2 sr MeV/n)", "xmlid": "solo_sisb_slow_he3flux"}, "solo_sisb_slow_he4flux": {"__spz_name__": "he4 flux: sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_sisb_slow_he4flux", "dataset": "solo-sisb-slow", "description": "Heliun-4 flux", "display_type": "spectrogram", "is_public": "True", "name": "he4 flux: sunward", "start_date": "2020-06-14T00:10:09Z", "stop_date": "2024-05-31T23:50:52Z", "units": "1/(s cm\u00b2 sr MeV/n)", "xmlid": "solo_sisb_slow_he4flux"}, "solo_sisb_slow_hflux": {"__spz_name__": "h flux: sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_sisb_slow_hflux", "dataset": "solo-sisb-slow", "description": "Hydrogen flux", "display_type": "spectrogram", "is_public": "True", "name": "h flux: sunward", "start_date": "2020-06-14T00:10:09Z", "stop_date": "2024-05-31T23:50:52Z", "units": "1/(s cm\u00b2 sr MeV/n)", "xmlid": "solo_sisb_slow_hflux"}, "solo_sisb_slow_mgflux": {"__spz_name__": "mg flux: sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_sisb_slow_mgflux", "dataset": "solo-sisb-slow", "description": "Magnesium flux", "display_type": "spectrogram", "is_public": "True", "name": "mg flux: sunward", "start_date": "2020-06-14T00:10:09Z", "stop_date": "2024-05-31T23:50:52Z", "units": "1/(s cm\u00b2 sr MeV/n)", "xmlid": "solo_sisb_slow_mgflux"}, "solo_sisb_slow_neflux": {"__spz_name__": "ne flux: sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_sisb_slow_neflux", "dataset": "solo-sisb-slow", "description": "Neon flux", "display_type": "spectrogram", "is_public": "True", "name": "ne flux: sunward", "start_date": "2020-06-14T00:10:09Z", "stop_date": "2024-05-31T23:50:52Z", "units": "1/(s cm\u00b2 sr MeV/n)", "xmlid": "solo_sisb_slow_neflux"}, "solo_sisb_slow_nflux": {"__spz_name__": "n flux: sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_sisb_slow_nflux", "dataset": "solo-sisb-slow", "description": "Nitrogen flux", "display_type": "spectrogram", "is_public": "True", "name": "n flux: sunward", "start_date": "2020-06-14T00:10:09Z", "stop_date": "2024-05-31T23:50:52Z", "units": "1/(s cm\u00b2 sr MeV/n)", "xmlid": "solo_sisb_slow_nflux"}, "solo_sisb_slow_oflux": {"__spz_name__": "o flux: sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_sisb_slow_oflux", "dataset": "solo-sisb-slow", "description": "Oxygen flux", "display_type": "spectrogram", "is_public": "True", "name": "o flux: sunward", "start_date": "2020-06-14T00:10:09Z", "stop_date": "2024-05-31T23:50:52Z", "units": "1/(s cm\u00b2 sr MeV/n)", "xmlid": "solo_sisb_slow_oflux"}, "solo_sisb_slow_qf": {"__spz_name__": "quality flag: sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_sisb_slow_qf", "dataset": "solo-sisb-slow", "description": "0: Bad, 1: Known problems, 2: Survey data, 3: Good, 4: Excellent", "display_type": "timeseries", "is_public": "True", "name": "quality flag: sunward", "start_date": "2020-06-14T00:10:09Z", "stop_date": "2024-05-31T23:50:52Z", "xmlid": "solo_sisb_slow_qf"}, "solo_sisb_slow_sflux": {"__spz_name__": "s flux: sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_sisb_slow_sflux", "dataset": "solo-sisb-slow", "description": "Sulfur flux", "display_type": "spectrogram", "is_public": "True", "name": "s flux: sunward", "start_date": "2020-06-14T00:10:09Z", "stop_date": "2024-05-31T23:50:52Z", "units": "1/(s cm\u00b2 sr MeV/n)", "xmlid": "solo_sisb_slow_sflux"}, "solo_sisb_slow_siflux": {"__spz_name__": "si flux: sunward", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_sisb_slow_siflux", "dataset": "solo-sisb-slow", "description": "Silicium flux", "display_type": "spectrogram", "is_public": "True", "name": "si flux: sunward", "start_date": "2020-06-14T00:10:09Z", "stop_date": "2024-05-31T23:50:52Z", "units": "1/(s cm\u00b2 sr MeV/n)", "xmlid": "solo_sisb_slow_siflux"}, "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Solar_Orbiter/EPD/solo-sisb-slow", "start_date": "2020-06-14T00:10:09Z", "stop_date": "2024-05-31T23:50:52Z", "target": "Heliosphere.Inner", "xmlid": "solo-sisb-slow"}, "xmlid": "solo-epd-sisb"}, "__spz_name__": "EPD/SIS", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "SolO_epd-sis", "att": "auto/SolO_epd-sis", "desc": "Energetic Particle Detector / Suprathermal Ion Spectrograph
TimeOfFlight", "is_public": "True", "name": "EPD/SIS", "xmlid": "SolO_epd-sis"}, "EPDSTEP": {"L2___main": {"__spz_name__": "L2 : main", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "solo-epd-step-main", "is_public": "True", "name": "L2 : main", "so_step_main": {"__spz_name__": "flux", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "so-step-main", "att": "auto/so-step-main", "dataSource": "http://soar.esac.esa.int/soar", "desc": "Flux averaged over sectors
MinSampling: 1S; MaxSampling: 10S
Provider: http://soar.esac.esa.int/soar", "is_public": "True", "lastModificationDate": "2024-10-06T22:37:10Z", "lastUpdate": "2024-09-29T23:56:42Z", "maxSampling": "10S", "measurement_type": "EnergeticParticles", "name": "flux", "processing_level": "Calibrated", "sampling": "1S", "solo_stepmain_eflux": {"__spz_name__": "el flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_stepmain_eflux", "dataset": "so-step-main", "description": "The electron flux is recovered by subtracting the magnet channel measurements from the integral channel ones", "display_type": "spectrogram", "is_public": "True", "name": "el flux", "start_date": "2021-10-22T11:38:20Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_stepmain_eflux"}, "solo_stepmain_iflux": {"__spz_name__": "total flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_stepmain_iflux", "dataset": "so-step-main", "description": "Particle intensities in integral channel (ions + electrons) averaged for all pixels", "display_type": "spectrogram", "is_public": "True", "name": "total flux", "start_date": "2021-10-22T11:38:20Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_stepmain_iflux"}, "solo_stepmain_iunc": {"__spz_name__": "total flux unc", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_stepmain_iunc", "dataset": "so-step-main", "description": "Uncertainty in integral channel flux averaged for all pixels", "display_type": "spectrogram", "is_public": "True", "name": "total flux unc", "start_date": "2021-10-22T11:38:20Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_stepmain_iunc"}, "solo_stepmain_mflux": {"__spz_name__": "ion flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_stepmain_mflux", "dataset": "so-step-main", "description": "Particle intensities in magnet channel (ions) averaged for all pixels", "display_type": "spectrogram", "is_public": "True", "name": "ion flux", "start_date": "2021-10-22T11:38:20Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_stepmain_mflux"}, "solo_stepmain_munc": {"__spz_name__": "ion flux unc", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_stepmain_munc", "dataset": "so-step-main", "description": "Uncertainty in magnet channel flux averaged for all pixels", "display_type": "spectrogram", "is_public": "True", "name": "ion flux unc", "start_date": "2021-10-22T11:38:20Z", "stop_date": "2024-05-31T23:59:59Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_stepmain_munc"}, "solo_stepmain_qf": {"__spz_name__": "quality flag", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_stepmain_qf", "dataset": "so-step-main", "description": "0: Bad, 1: Known problems, 2: Survey data, 3: Good, 4: Excellent", "display_type": "timeseries", "is_public": "True", "name": "quality flag", "start_date": "2021-10-22T11:38:20Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_stepmain_qf"}, "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Solar_Orbiter/EPD/so-step-main", "start_date": "2021-10-22T11:38:20Z", "stop_date": "2024-05-31T23:59:59Z", "target": "Heliosphere.Inner", "xmlid": "so-step-main"}, "so_step_mainrtn": {"__spz_name__": "flux direction RTN", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "so-step-mainrtn", "att": "auto/so-step-mainrtn", "dataSource": "http://soar.esac.esa.int/soar", "desc": "
Sampling: 60S
Provider: http://soar.esac.esa.int/soar", "is_public": "True", "lastModificationDate": "2024-10-06T22:37:16Z", "lastUpdate": "2024-09-30T00:12:11Z", "measurement_type": "EnergeticParticles", "name": "flux direction RTN", "processing_level": "Calibrated", "sampling": "60S", "solo_stepmain_dir_rtn": {"__spz_name__": "flux direction", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_stepmain_dir_rtn", "dataset": "so-step-mainrtn", "description": "Particle flow direction (unit vector) in RTN coordinates", "display_type": "timeseries", "is_public": "True", "name": "flux direction", "size": "3", "solo_stepmain_dir_rtn0": {"__spz_name__": "r", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_stepmain_dir_rtn(0)", "dataset": "so-step-mainrtn", "index1": "0", "is_public": "True", "name": "r", "parameter": "solo_stepmain_dir_rtn", "start_date": "2021-10-22T11:38:20Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_stepmain_dir_rtn(0)"}, "solo_stepmain_dir_rtn1": {"__spz_name__": "t", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_stepmain_dir_rtn(1)", "dataset": "so-step-mainrtn", "index1": "1", "is_public": "True", "name": "t", "parameter": "solo_stepmain_dir_rtn", "start_date": "2021-10-22T11:38:20Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_stepmain_dir_rtn(1)"}, "solo_stepmain_dir_rtn2": {"__spz_name__": "n", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_stepmain_dir_rtn(2)", "dataset": "so-step-mainrtn", "index1": "2", "is_public": "True", "name": "n", "parameter": "solo_stepmain_dir_rtn", "start_date": "2021-10-22T11:38:20Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_stepmain_dir_rtn(2)"}, "start_date": "2021-10-22T11:38:20Z", "stop_date": "2024-05-31T23:59:59Z", "xmlid": "solo_stepmain_dir_rtn"}, "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Solar_Orbiter/EPD/so-step-mainrtn", "start_date": "2021-10-22T11:38:20Z", "stop_date": "2024-05-31T23:59:59Z", "target": "Heliosphere.Inner", "xmlid": "so-step-mainrtn"}, "xmlid": "solo-epd-step-main"}, "L2___rates": {"__spz_name__": "L2 : rates", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "solo-epd-step", "is_public": "True", "name": "L2 : rates", "so_step_rates": {"__spz_name__": "flux", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "so-step-rates", "att": "auto/so-step-rates", "dataSource": "http://soar.esac.esa.int/soar", "desc": "Flux averaged over sectors
MinSampling: 10S; MaxSampling: 60S
Provider: http://soar.esac.esa.int/soar", "is_public": "True", "lastModificationDate": "2024-10-06T22:37:10Z", "lastUpdate": "2024-09-29T23:47:55Z", "maxSampling": "60S", "measurement_type": "EnergeticParticles", "name": "flux", "processing_level": "Calibrated", "sampling": "10S", "solo_step_eflux": {"__spz_name__": "el flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_step_eflux", "dataset": "so-step-rates", "description": "The electron flux is recovered by subtracting the magnet channel measurements from the integral channel ones", "display_type": "spectrogram", "is_public": "True", "name": "el flux", "start_date": "2020-04-30T00:00:11Z", "stop_date": "2021-10-22T11:48:29Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_step_eflux"}, "solo_step_iflux": {"__spz_name__": "total flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_step_iflux", "dataset": "so-step-rates", "description": "Integral channel. Measures all incoming particles", "display_type": "spectrogram", "is_public": "True", "name": "total flux", "start_date": "2020-04-30T00:00:11Z", "stop_date": "2021-10-22T11:48:29Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_step_iflux"}, "solo_step_irate": {"__spz_name__": "total cntrate", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_step_irate", "dataset": "so-step-rates", "description": "Sector averaged integral channel count rate", "display_type": "spectrogram", "is_public": "True", "name": "total cntrate", "start_date": "2020-04-30T00:00:11Z", "stop_date": "2021-10-22T11:48:29Z", "units": "cnts/s", "xmlid": "solo_step_irate"}, "solo_step_iunc": {"__spz_name__": "total flux unc", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_step_iunc", "dataset": "so-step-rates", "description": "Uncertainty in sector averaged integral channel flux", "display_type": "spectrogram", "is_public": "True", "name": "total flux unc", "start_date": "2020-04-30T00:00:11Z", "stop_date": "2021-10-22T11:48:29Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_step_iunc"}, "solo_step_mflux": {"__spz_name__": "ion flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_step_mflux", "dataset": "so-step-rates", "description": "Magnet channel. Uses a permanet magnet to deflect electrons. Measuring only ions (mostly protons)", "display_type": "spectrogram", "is_public": "True", "name": "ion flux", "start_date": "2020-04-30T00:00:11Z", "stop_date": "2021-10-22T11:48:29Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_step_mflux"}, "solo_step_mrate": {"__spz_name__": "ion cntrate", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_step_mrate", "dataset": "so-step-rates", "description": "Sector averaged magnet channel count rate", "display_type": "spectrogram", "is_public": "True", "name": "ion cntrate", "start_date": "2020-04-30T00:00:11Z", "stop_date": "2021-10-22T11:48:29Z", "units": "cnts/s", "xmlid": "solo_step_mrate"}, "solo_step_munc": {"__spz_name__": "ion flux unc", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_step_munc", "dataset": "so-step-rates", "description": "Uncertainty in sector averaged magnet channel flux", "display_type": "spectrogram", "is_public": "True", "name": "ion flux unc", "start_date": "2020-04-30T00:00:11Z", "stop_date": "2021-10-22T11:48:29Z", "units": "1/(s cm\u00b2 sr MeV)", "xmlid": "solo_step_munc"}, "solo_step_qf": {"__spz_name__": "quality flag", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_step_qf", "dataset": "so-step-rates", "description": "0: Bad, 1: Known problems, 2: Survey data, 3: Good, 4: Excellent", "display_type": "timeseries", "is_public": "True", "name": "quality flag", "start_date": "2020-04-30T00:00:11Z", "stop_date": "2021-10-22T11:48:29Z", "xmlid": "solo_step_qf"}, "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Solar_Orbiter/EPD/so-step-rates", "start_date": "2020-04-30T00:00:11Z", "stop_date": "2021-10-22T11:48:29Z", "target": "Heliosphere.Inner", "xmlid": "so-step-rates"}, "so_step_rtn": {"__spz_name__": "flux direction RTN", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "so-step-rtn", "att": "auto/so-step-rtn", "dataSource": "http://soar.esac.esa.int/soar", "desc": "
Sampling: 60S
Provider: http://soar.esac.esa.int/soar", "is_public": "True", "lastModificationDate": "2024-10-06T22:37:15Z", "lastUpdate": "2024-09-30T00:04:03Z", "measurement_type": "EnergeticParticles", "name": "flux direction RTN", "processing_level": "Calibrated", "sampling": "60S", "solo_step_dir_rtn": {"__spz_name__": "flux direction", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_step_dir_rtn", "dataset": "so-step-rtn", "description": "Particle flow direction (unit vector) in RTN coordinates", "display_type": "timeseries", "is_public": "True", "name": "flux direction", "size": "3", "solo_step_dir_rtn0": {"__spz_name__": "r", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_step_dir_rtn(0)", "dataset": "so-step-rtn", "index1": "0", "is_public": "True", "name": "r", "parameter": "solo_step_dir_rtn", "start_date": "2020-04-30T00:00:11Z", "stop_date": "2021-10-22T11:48:29Z", "xmlid": "solo_step_dir_rtn(0)"}, "solo_step_dir_rtn1": {"__spz_name__": "t", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_step_dir_rtn(1)", "dataset": "so-step-rtn", "index1": "1", "is_public": "True", "name": "t", "parameter": "solo_step_dir_rtn", "start_date": "2020-04-30T00:00:11Z", "stop_date": "2021-10-22T11:48:29Z", "xmlid": "solo_step_dir_rtn(1)"}, "solo_step_dir_rtn2": {"__spz_name__": "n", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_step_dir_rtn(2)", "dataset": "so-step-rtn", "index1": "2", "is_public": "True", "name": "n", "parameter": "solo_step_dir_rtn", "start_date": "2020-04-30T00:00:11Z", "stop_date": "2021-10-22T11:48:29Z", "xmlid": "solo_step_dir_rtn(2)"}, "start_date": "2020-04-30T00:00:11Z", "stop_date": "2021-10-22T11:48:29Z", "xmlid": "solo_step_dir_rtn"}, "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Solar_Orbiter/EPD/so-step-rtn", "start_date": "2020-04-30T00:00:11Z", "stop_date": "2021-10-22T11:48:29Z", "target": "Heliosphere.Inner", "xmlid": "so-step-rtn"}, "xmlid": "solo-epd-step"}, "__spz_name__": "EPD/STEP", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "SolO_epd-step", "att": "auto/SolO_epd-step", "desc": "Energetic Particle Detector / SupraThermal Electrons and Protons
SolidStateDetector", "is_public": "True", "name": "EPD/STEP", "xmlid": "SolO_epd-step"}, "Ephemeris": {"__spz_name__": "Ephemeris", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "SolO_ephemeris", "att": "auto/SolO_ephemeris", "desc": "", "is_public": "True", "name": "Ephemeris", "so_orb_all": {"__spz_name__": "orbit sun", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "so-orb-all", "att": "auto/so-orb-all", "dataSource": "ESA", "desc": "SolO ephemeris
Sampling: 1H
Provider: ESA", "is_public": "True", "lastModificationDate": "2024-10-02T02:06:22Z", "lastUpdate": "2024-10-02T02:06:22Z", "measurement_type": "Ephemeris", "name": "orbit sun", "processing_level": "Calibrated", "sampling": "1H", "so_lat_hci": {"__spz_name__": "lat hci", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "so_lat_hci", "dataset": "so-orb-all", "is_public": "True", "name": "lat hci", "start_date": "2020-02-11T00:00:00Z", "stop_date": "2030-10-31T22:00:00Z", "units": "deg", "xmlid": "so_lat_hci"}, "so_lat_hee": {"__spz_name__": "lat hee", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "so_lat_hee", "dataset": "so-orb-all", "is_public": "True", "name": "lat hee", "start_date": "2020-02-11T00:00:00Z", "stop_date": "2030-10-31T22:00:00Z", "units": "deg", "xmlid": "so_lat_hee"}, "so_lat_sun": {"__spz_name__": "lat iau_sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "so_lat_sun", "dataset": "so-orb-all", "is_public": "True", "name": "lat iau_sun", "start_date": "2020-02-11T00:00:00Z", "stop_date": "2030-10-31T22:00:00Z", "units": "deg", "xmlid": "so_lat_sun"}, "so_lon_hci": {"__spz_name__": "lon hci", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "so_lon_hci", "dataset": "so-orb-all", "is_public": "True", "name": "lon hci", "start_date": "2020-02-11T00:00:00Z", "stop_date": "2030-10-31T22:00:00Z", "units": "deg", "xmlid": "so_lon_hci"}, "so_lon_hee": {"__spz_name__": "lon hee", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "so_lon_hee", "dataset": "so-orb-all", "is_public": "True", "name": "lon hee", "start_date": "2020-02-11T00:00:00Z", "stop_date": "2030-10-31T22:00:00Z", "units": "deg", "xmlid": "so_lon_hee"}, "so_lon_sun": {"__spz_name__": "lon iau_sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "so_lon_sun", "dataset": "so-orb-all", "is_public": "True", "name": "lon iau_sun", "start_date": "2020-02-11T00:00:00Z", "stop_date": "2030-10-31T22:00:00Z", "units": "deg", "xmlid": "so_lon_sun"}, "so_orb_num": {"__spz_name__": "so_orbit_num", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "so_orb_num", "dataset": "so-orb-all", "display_type": "timeseries", "is_public": "True", "name": "so_orbit_num", "start_date": "2020-02-11T00:00:00Z", "stop_date": "2030-10-31T22:00:00Z", "xmlid": "so_orb_num"}, "so_r_sun": {"__spz_name__": "distance solo-sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "so_r_sun", "dataset": "so-orb-all", "is_public": "True", "name": "distance solo-sun", "start_date": "2020-02-11T00:00:00Z", "stop_date": "2030-10-31T22:00:00Z", "units": "AU", "xmlid": "so_r_sun"}, "so_xyz_hci": {"__spz_name__": "xyz_hci", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "so_xyz_hci", "dataset": "so-orb-all", "is_public": "True", "name": "xyz_hci", "size": "3", "so_xyz_hci0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "so_xyz_hci(0)", "dataset": "so-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "so_xyz_hci", "start_date": "2020-02-11T00:00:00Z", "stop_date": "2030-10-31T22:00:00Z", "xmlid": "so_xyz_hci(0)"}, "so_xyz_hci1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "so_xyz_hci(1)", "dataset": "so-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "so_xyz_hci", "start_date": "2020-02-11T00:00:00Z", "stop_date": "2030-10-31T22:00:00Z", "xmlid": "so_xyz_hci(1)"}, "so_xyz_hci2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "so_xyz_hci(2)", "dataset": "so-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "so_xyz_hci", "start_date": "2020-02-11T00:00:00Z", "stop_date": "2030-10-31T22:00:00Z", "xmlid": "so_xyz_hci(2)"}, "start_date": "2020-02-11T00:00:00Z", "stop_date": "2030-10-31T22:00:00Z", "units": "AU", "xmlid": "so_xyz_hci"}, "so_xyz_hee": {"__spz_name__": "xyz_hee", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "so_xyz_hee", "dataset": "so-orb-all", "is_public": "True", "name": "xyz_hee", "size": "3", "so_xyz_hee0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "so_xyz_hee(0)", "dataset": "so-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "so_xyz_hee", "start_date": "2020-02-11T00:00:00Z", "stop_date": "2030-10-31T22:00:00Z", "xmlid": "so_xyz_hee(0)"}, "so_xyz_hee1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "so_xyz_hee(1)", "dataset": "so-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "so_xyz_hee", "start_date": "2020-02-11T00:00:00Z", "stop_date": "2030-10-31T22:00:00Z", "xmlid": "so_xyz_hee(1)"}, "so_xyz_hee2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "so_xyz_hee(2)", "dataset": "so-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "so_xyz_hee", "start_date": "2020-02-11T00:00:00Z", "stop_date": "2030-10-31T22:00:00Z", "xmlid": "so_xyz_hee(2)"}, "start_date": "2020-02-11T00:00:00Z", "stop_date": "2030-10-31T22:00:00Z", "units": "AU", "xmlid": "so_xyz_hee"}, "so_xyz_heeq": {"__spz_name__": "xyz_heeq", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "so_xyz_heeq", "dataset": "so-orb-all", "is_public": "True", "name": "xyz_heeq", "size": "3", "so_xyz_heeq0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "so_xyz_heeq(0)", "dataset": "so-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "so_xyz_heeq", "start_date": "2020-02-11T00:00:00Z", "stop_date": "2030-10-31T22:00:00Z", "xmlid": "so_xyz_heeq(0)"}, "so_xyz_heeq1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "so_xyz_heeq(1)", "dataset": "so-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "so_xyz_heeq", "start_date": "2020-02-11T00:00:00Z", "stop_date": "2030-10-31T22:00:00Z", "xmlid": "so_xyz_heeq(1)"}, "so_xyz_heeq2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "so_xyz_heeq(2)", "dataset": "so-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "so_xyz_heeq", "start_date": "2020-02-11T00:00:00Z", "stop_date": "2030-10-31T22:00:00Z", "xmlid": "so_xyz_heeq(2)"}, "start_date": "2020-02-11T00:00:00Z", "stop_date": "2030-10-31T22:00:00Z", "units": "AU", "xmlid": "so_xyz_heeq"}, "so_xyz_iausun": {"__spz_name__": "xyz_iau_sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "so_xyz_iausun", "dataset": "so-orb-all", "is_public": "True", "name": "xyz_iau_sun", "size": "3", "so_xyz_iausun0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "so_xyz_iausun(0)", "dataset": "so-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "so_xyz_iausun", "start_date": "2020-02-11T00:00:00Z", "stop_date": "2030-10-31T22:00:00Z", "xmlid": "so_xyz_iausun(0)"}, "so_xyz_iausun1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "so_xyz_iausun(1)", "dataset": "so-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "so_xyz_iausun", "start_date": "2020-02-11T00:00:00Z", "stop_date": "2030-10-31T22:00:00Z", "xmlid": "so_xyz_iausun(1)"}, "so_xyz_iausun2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "so_xyz_iausun(2)", "dataset": "so-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "so_xyz_iausun", "start_date": "2020-02-11T00:00:00Z", "stop_date": "2030-10-31T22:00:00Z", "xmlid": "so_xyz_iausun(2)"}, "start_date": "2020-02-11T00:00:00Z", "stop_date": "2030-10-31T22:00:00Z", "units": "AU", "xmlid": "so_xyz_iausun"}, "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Solar_Orbiter/Ephemeris/so-orb-all", "start_date": "2020-02-11T00:00:00Z", "stop_date": "2030-10-31T22:00:00Z", "target": "Heliosphere.Inner", "xmlid": "so-orb-all"}, "so_orb_venus1": {"__spz_name__": "Venus flyby #1", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "so-orb-venus1", "att": "auto/so-orb-venus1", "dataSource": "ESA", "desc": "
Sampling: 60S
Provider: ESA", "is_public": "True", "lastModificationDate": "2021-08-31T08:10:35Z", "lastUpdate": "2021-08-31T08:09:21Z", "lat_so_venus1": {"__spz_name__": "lat iau_venus", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "lat_so_venus1", "dataset": "so-orb-venus1", "is_public": "True", "name": "lat iau_venus", "start_date": "2020-12-20T00:00:00Z", "stop_date": "2021-01-03T23:59:00Z", "units": "deg", "xmlid": "lat_so_venus1"}, "lon_so_venus1": {"__spz_name__": "lon iau_venus", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "lon_so_venus1", "dataset": "so-orb-venus1", "is_public": "True", "name": "lon iau_venus", "start_date": "2020-12-20T00:00:00Z", "stop_date": "2021-01-03T23:59:00Z", "units": "deg", "xmlid": "lon_so_venus1"}, "measurement_type": "Ephemeris", "name": "Venus flyby #1", "processing_level": "Calibrated", "sampling": "60S", "so_venus1_r": {"__spz_name__": "distance solo-venus", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "so_venus1_r", "dataset": "so-orb-venus1", "is_public": "True", "name": "distance solo-venus", "start_date": "2020-12-20T00:00:00Z", "stop_date": "2021-01-03T23:59:00Z", "units": "Rv", "xmlid": "so_venus1_r"}, "so_xyz_vso1": {"__spz_name__": "xyz_vso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "so_xyz_vso1", "dataset": "so-orb-venus1", "is_public": "True", "name": "xyz_vso", "size": "3", "so_xyz_vso10": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "so_xyz_vso1(0)", "dataset": "so-orb-venus1", "index1": "0", "is_public": "True", "name": "x", "parameter": "so_xyz_vso1", "start_date": "2020-12-20T00:00:00Z", "stop_date": "2021-01-03T23:59:00Z", "xmlid": "so_xyz_vso1(0)"}, "so_xyz_vso11": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "so_xyz_vso1(1)", "dataset": "so-orb-venus1", "index1": "1", "is_public": "True", "name": "y", "parameter": "so_xyz_vso1", "start_date": "2020-12-20T00:00:00Z", "stop_date": "2021-01-03T23:59:00Z", "xmlid": "so_xyz_vso1(1)"}, "so_xyz_vso12": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "so_xyz_vso1(2)", "dataset": "so-orb-venus1", "index1": "2", "is_public": "True", "name": "z", "parameter": "so_xyz_vso1", "start_date": "2020-12-20T00:00:00Z", "stop_date": "2021-01-03T23:59:00Z", "xmlid": "so_xyz_vso1(2)"}, "start_date": "2020-12-20T00:00:00Z", "stop_date": "2021-01-03T23:59:00Z", "units": "Rv", "xmlid": "so_xyz_vso1"}, "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Solar_Orbiter/Ephemeris/so-orb-venus1", "start_date": "2020-12-20T00:00:00Z", "stop_date": "2021-01-03T23:59:00Z", "target": "Venus", "xmlid": "so-orb-venus1"}, "so_orb_venus2": {"__spz_name__": "Venus flyby #2", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "so-orb-venus2", "att": "auto/so-orb-venus2", "dataSource": "ESA", "desc": "
Sampling: 60S
Provider: ESA", "is_public": "True", "lastModificationDate": "2021-08-31T08:10:09Z", "lastUpdate": "2021-08-31T08:09:43Z", "lat_so_venus2": {"__spz_name__": "lat iau_venus", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "lat_so_venus2", "dataset": "so-orb-venus2", "is_public": "True", "name": "lat iau_venus", "start_date": "2021-08-01T00:00:00Z", "stop_date": "2021-08-16T23:58:00Z", "units": "deg", "xmlid": "lat_so_venus2"}, "lon_so_venus2": {"__spz_name__": "lon iau_venus", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "lon_so_venus2", "dataset": "so-orb-venus2", "is_public": "True", "name": "lon iau_venus", "start_date": "2021-08-01T00:00:00Z", "stop_date": "2021-08-16T23:58:00Z", "units": "deg", "xmlid": "lon_so_venus2"}, "measurement_type": "Ephemeris", "name": "Venus flyby #2", "processing_level": "Calibrated", "sampling": "60S", "so_venus2_r": {"__spz_name__": "distance solo-venus", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "so_venus2_r", "dataset": "so-orb-venus2", "is_public": "True", "name": "distance solo-venus", "start_date": "2021-08-01T00:00:00Z", "stop_date": "2021-08-16T23:58:00Z", "units": "Rv", "xmlid": "so_venus2_r"}, "so_xyz_vso2": {"__spz_name__": "xyz_vso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "so_xyz_vso2", "dataset": "so-orb-venus2", "is_public": "True", "name": "xyz_vso", "size": "3", "so_xyz_vso20": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "so_xyz_vso2(0)", "dataset": "so-orb-venus2", "index1": "0", "is_public": "True", "name": "x", "parameter": "so_xyz_vso2", "start_date": "2021-08-01T00:00:00Z", "stop_date": "2021-08-16T23:58:00Z", "xmlid": "so_xyz_vso2(0)"}, "so_xyz_vso21": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "so_xyz_vso2(1)", "dataset": "so-orb-venus2", "index1": "1", "is_public": "True", "name": "y", "parameter": "so_xyz_vso2", "start_date": "2021-08-01T00:00:00Z", "stop_date": "2021-08-16T23:58:00Z", "xmlid": "so_xyz_vso2(1)"}, "so_xyz_vso22": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "so_xyz_vso2(2)", "dataset": "so-orb-venus2", "index1": "2", "is_public": "True", "name": "z", "parameter": "so_xyz_vso2", "start_date": "2021-08-01T00:00:00Z", "stop_date": "2021-08-16T23:58:00Z", "xmlid": "so_xyz_vso2(2)"}, "start_date": "2021-08-01T00:00:00Z", "stop_date": "2021-08-16T23:58:00Z", "units": "Rv", "xmlid": "so_xyz_vso2"}, "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Solar_Orbiter/Ephemeris/so-orb-venus2", "start_date": "2021-08-01T00:00:00Z", "stop_date": "2021-08-16T23:58:00Z", "target": "Venus", "xmlid": "so-orb-venus2"}, "xmlid": "SolO_ephemeris"}, "MAG": {"L2": {"__spz_name__": "L2", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "solo-mag-l2", "is_public": "True", "name": "L2", "so_mag_1min": {"__spz_name__": "1 min", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "so-mag-1min", "att": "auto/so-mag-1min", "dataSource": "http://soar.esac.esa.int/soar", "desc": "Magnetic Field RTN 1 minute
Sampling: 60S
Provider: http://soar.esac.esa.int/soar", "is_public": "True", "lastModificationDate": "2024-09-28T06:15:13Z", "lastUpdate": "2024-09-28T06:15:13Z", "measurement_type": "MagneticField", "name": "1 min", "processing_level": "Calibrated", "sampling": "60S", "solo_b_rtn": {"__spz_name__": "b_rtn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_b_rtn", "dataset": "so-mag-1min", "display_type": "timeseries", "is_public": "True", "name": "b_rtn", "size": "3", "solo_b_rtn0": {"__spz_name__": "br", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_b_rtn(0)", "dataset": "so-mag-1min", "index1": "0", "is_public": "True", "name": "br", "parameter": "solo_b_rtn", "start_date": "2020-04-15T00:00:29Z", "stop_date": "2024-06-30T23:59:30Z", "xmlid": "solo_b_rtn(0)"}, "solo_b_rtn1": {"__spz_name__": "bt", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_b_rtn(1)", "dataset": "so-mag-1min", "index1": "1", "is_public": "True", "name": "bt", "parameter": "solo_b_rtn", "start_date": "2020-04-15T00:00:29Z", "stop_date": "2024-06-30T23:59:30Z", "xmlid": "solo_b_rtn(1)"}, "solo_b_rtn2": {"__spz_name__": "bn", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_b_rtn(2)", "dataset": "so-mag-1min", "index1": "2", "is_public": "True", "name": "bn", "parameter": "solo_b_rtn", "start_date": "2020-04-15T00:00:29Z", "stop_date": "2024-06-30T23:59:30Z", "xmlid": "solo_b_rtn(2)"}, "start_date": "2020-04-15T00:00:29Z", "stop_date": "2024-06-30T23:59:30Z", "ucd": "phys.magField", "units": "nT", "xmlid": "solo_b_rtn"}, "solo_b_rtn_phi": {"__spz_name__": "phi", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_b_rtn_phi", "dataset": "so-mag-1min", "description": "Magnetic field phi angle", "display_type": "timeseries", "is_public": "True", "name": "phi", "start_date": "2020-04-15T00:00:29Z", "stop_date": "2024-06-30T23:59:30Z", "ucd": "phys.magField", "units": "degrees", "xmlid": "solo_b_rtn_phi"}, "solo_b_rtn_qf": {"__spz_name__": "quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_b_rtn_qf", "dataset": "so-mag-1min", "description": "Flag setting: 0: Bad data; 1: Known problems use at your own risk; 2: Survey data, possibly \n not publication quality; 3: Good for publication subject to PI approval; 4: Excellent data which has received special treatment", "display_type": "timeseries", "is_public": "True", "name": "quality", "start_date": "2020-04-15T00:00:29Z", "stop_date": "2024-06-30T23:59:30Z", "xmlid": "solo_b_rtn_qf"}, "solo_b_rtn_theta": {"__spz_name__": "theta", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_b_rtn_theta", "dataset": "so-mag-1min", "description": "Magnetic field theta angle", "display_type": "timeseries", "is_public": "True", "name": "theta", "start_date": "2020-04-15T00:00:29Z", "stop_date": "2024-06-30T23:59:30Z", "ucd": "phys.magField", "units": "degrees", "xmlid": "solo_b_rtn_theta"}, "solo_b_rtn_tot": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_b_rtn_tot", "dataset": "so-mag-1min", "description": "Magnetic field magnitude", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "2020-04-15T00:00:29Z", "stop_date": "2024-06-30T23:59:30Z", "ucd": "phys.magField", "units": "nT", "xmlid": "solo_b_rtn_tot"}, "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Solar_Orbiter/MAG/so-mag-1min", "start_date": "2020-04-15T00:00:29Z", "stop_date": "2024-06-30T23:59:30Z", "target": "Heliosphere.Inner", "xmlid": "so-mag-1min"}, "so_mag_rtnhr": {"__spz_name__": "0.1 sec : rtn", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "so-mag-rtnhr", "att": "auto/so-mag-rtnhr", "dataSource": "http://soar.esac.esa.int/soar", "desc": "Magnetic Field in RTN : 0.1 sec
Sampling: 0.1S
Provider: http://soar.esac.esa.int/soar", "is_public": "True", "lastModificationDate": "2024-09-28T06:24:54Z", "lastUpdate": "2024-09-28T06:24:26Z", "measurement_type": "MagneticField", "name": "0.1 sec : rtn", "processing_level": "Calibrated", "sampling": "0.1S", "solo_b_rtn_hr": {"__spz_name__": "b_rtn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_b_rtn_hr", "dataset": "so-mag-rtnhr", "display_type": "timeseries", "is_public": "True", "name": "b_rtn", "size": "3", "solo_b_rtn_hr0": {"__spz_name__": "br", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_b_rtn_hr(0)", "dataset": "so-mag-rtnhr", "index1": "0", "is_public": "True", "name": "br", "parameter": "solo_b_rtn_hr", "start_date": "2020-04-15T00:00:00Z", "stop_date": "2024-06-30T23:59:59Z", "xmlid": "solo_b_rtn_hr(0)"}, "solo_b_rtn_hr1": {"__spz_name__": "bt", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_b_rtn_hr(1)", "dataset": "so-mag-rtnhr", "index1": "1", "is_public": "True", "name": "bt", "parameter": "solo_b_rtn_hr", "start_date": "2020-04-15T00:00:00Z", "stop_date": "2024-06-30T23:59:59Z", "xmlid": "solo_b_rtn_hr(1)"}, "solo_b_rtn_hr2": {"__spz_name__": "bn", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_b_rtn_hr(2)", "dataset": "so-mag-rtnhr", "index1": "2", "is_public": "True", "name": "bn", "parameter": "solo_b_rtn_hr", "start_date": "2020-04-15T00:00:00Z", "stop_date": "2024-06-30T23:59:59Z", "xmlid": "solo_b_rtn_hr(2)"}, "start_date": "2020-04-15T00:00:00Z", "stop_date": "2024-06-30T23:59:59Z", "ucd": "phys.magField", "units": "nT", "xmlid": "solo_b_rtn_hr"}, "solo_b_rtn_hr_phi": {"__spz_name__": "phi", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_b_rtn_hr_phi", "dataset": "so-mag-rtnhr", "description": "Magnetic field phi angle", "display_type": "timeseries", "is_public": "True", "name": "phi", "start_date": "2020-04-15T00:00:00Z", "stop_date": "2024-06-30T23:59:59Z", "ucd": "phys.magField", "units": "degrees", "xmlid": "solo_b_rtn_hr_phi"}, "solo_b_rtn_hr_qf": {"__spz_name__": "quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_b_rtn_hr_qf", "dataset": "so-mag-rtnhr", "description": "Flag setting: 0: Bad data; 1: Known problems use at your own risk; 2: Survey data, possibly \n not publication quality; 3: Good for publication subject to PI approval; 4: Excellent data which has received special treatment", "display_type": "timeseries", "is_public": "True", "name": "quality", "start_date": "2020-04-15T00:00:00Z", "stop_date": "2024-06-30T23:59:59Z", "xmlid": "solo_b_rtn_hr_qf"}, "solo_b_rtn_hr_theta": {"__spz_name__": "theta", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_b_rtn_hr_theta", "dataset": "so-mag-rtnhr", "description": "Magnetic field theta angle", "display_type": "timeseries", "is_public": "True", "name": "theta", "start_date": "2020-04-15T00:00:00Z", "stop_date": "2024-06-30T23:59:59Z", "ucd": "phys.magField", "units": "degrees", "xmlid": "solo_b_rtn_hr_theta"}, "solo_b_rtn_hr_tot": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_b_rtn_hr_tot", "dataset": "so-mag-rtnhr", "description": "Magnetic field magnitude", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "2020-04-15T00:00:00Z", "stop_date": "2024-06-30T23:59:59Z", "ucd": "phys.magField", "units": "nT", "xmlid": "solo_b_rtn_hr_tot"}, "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Solar_Orbiter/MAG/so-mag-rtnhr", "start_date": "2020-04-15T00:00:00Z", "stop_date": "2024-06-30T23:59:59Z", "target": "Heliosphere.Inner", "xmlid": "so-mag-rtnhr"}, "solo_mag_hr": {"__spz_name__": "0.1 sec : srf", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "solo-mag-hr", "att": "auto/solo-mag-hr", "dataSource": "http://soar.esac.esa.int/soar", "desc": "Magnetic Field in spacecraft reference frame : 0.1 sec
Sampling: 0.1S
Provider: http://soar.esac.esa.int/soar", "is_public": "True", "lastModificationDate": "2024-09-28T06:20:03Z", "lastUpdate": "2024-09-28T06:19:35Z", "measurement_type": "MagneticField", "name": "0.1 sec : srf", "processing_level": "Calibrated", "sampling": "0.1S", "solo_b_sfr": {"__spz_name__": "b_srf", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_b_sfr", "dataset": "solo-mag-hr", "display_type": "timeseries", "is_public": "True", "name": "b_srf", "size": "3", "solo_b_sfr0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_b_sfr(0)", "dataset": "solo-mag-hr", "index1": "0", "is_public": "True", "name": "bx", "parameter": "solo_b_sfr", "start_date": "2020-04-15T00:00:00Z", "stop_date": "2024-06-30T23:59:59Z", "xmlid": "solo_b_sfr(0)"}, "solo_b_sfr1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_b_sfr(1)", "dataset": "solo-mag-hr", "index1": "1", "is_public": "True", "name": "by", "parameter": "solo_b_sfr", "start_date": "2020-04-15T00:00:00Z", "stop_date": "2024-06-30T23:59:59Z", "xmlid": "solo_b_sfr(1)"}, "solo_b_sfr2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_b_sfr(2)", "dataset": "solo-mag-hr", "index1": "2", "is_public": "True", "name": "bz", "parameter": "solo_b_sfr", "start_date": "2020-04-15T00:00:00Z", "stop_date": "2024-06-30T23:59:59Z", "xmlid": "solo_b_sfr(2)"}, "start_date": "2020-04-15T00:00:00Z", "stop_date": "2024-06-30T23:59:59Z", "ucd": "phys.magField", "units": "nT", "xmlid": "solo_b_sfr"}, "solo_b_sfr_tot": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_b_sfr_tot", "dataset": "solo-mag-hr", "description": "Magnetic field magnitude", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "2020-04-15T00:00:00Z", "stop_date": "2024-06-30T23:59:59Z", "ucd": "phys.magField", "units": "nT", "xmlid": "solo_b_sfr_tot"}, "solo_b_srf_qf": {"__spz_name__": "quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_b_srf_qf", "dataset": "solo-mag-hr", "description": "Flag setting: 0: Bad data; 1: Known problems use at your own risk; 2: Survey data, possibly \n not publication quality; 3: Good for publication subject to PI approval; 4: Excellent data which has received special treatment", "display_type": "timeseries", "is_public": "True", "name": "quality", "start_date": "2020-04-15T00:00:00Z", "stop_date": "2024-06-30T23:59:59Z", "xmlid": "solo_b_srf_qf"}, "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Solar_Orbiter/MAG/solo-mag-hr", "start_date": "2020-04-15T00:00:00Z", "stop_date": "2024-06-30T23:59:59Z", "target": "Heliosphere.Inner", "xmlid": "solo-mag-hr"}, "xmlid": "solo-mag-l2"}, "__spz_name__": "MAG", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "SolO_mag", "att": "auto/SolO_mag", "desc": "Magnetometer
Magnetometer", "is_public": "True", "name": "MAG", "solo_mag_8s": {"__spz_name__": "LL (Low Latency)", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "solo-mag-8s", "att": "auto/solo-mag-8s", "dataSource": "http://soar.esac.esa.int/soar", "desc": "Low Latency Magnetic Field : Not for Publication
Sampling: 8S
Provider: http://soar.esac.esa.int/soar", "is_public": "True", "lastModificationDate": "2023-02-14T05:25:04Z", "lastUpdate": "2023-02-14T05:25:04Z", "measurement_type": "MagneticField", "name": "LL (Low Latency)", "processing_level": "Calibrated", "sampling": "8S", "solo_b_rtn_8s": {"__spz_name__": "b_rtn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_b_rtn_8s", "dataset": "solo-mag-8s", "display_type": "timeseries", "is_public": "True", "name": "b_rtn", "size": "3", "solo_b_rtn_8s0": {"__spz_name__": "br", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_b_rtn_8s(0)", "dataset": "solo-mag-8s", "index1": "0", "is_public": "True", "name": "br", "parameter": "solo_b_rtn_8s", "start_date": "2020-06-03T14:28:15Z", "stop_date": "2023-02-13T20:49:37Z", "xmlid": "solo_b_rtn_8s(0)"}, "solo_b_rtn_8s1": {"__spz_name__": "bt", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_b_rtn_8s(1)", "dataset": "solo-mag-8s", "index1": "1", "is_public": "True", "name": "bt", "parameter": "solo_b_rtn_8s", "start_date": "2020-06-03T14:28:15Z", "stop_date": "2023-02-13T20:49:37Z", "xmlid": "solo_b_rtn_8s(1)"}, "solo_b_rtn_8s2": {"__spz_name__": "bn", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_b_rtn_8s(2)", "dataset": "solo-mag-8s", "index1": "2", "is_public": "True", "name": "bn", "parameter": "solo_b_rtn_8s", "start_date": "2020-06-03T14:28:15Z", "stop_date": "2023-02-13T20:49:37Z", "xmlid": "solo_b_rtn_8s(2)"}, "start_date": "2020-06-03T14:28:15Z", "stop_date": "2023-02-13T20:49:37Z", "ucd": "phys.magField", "units": "nT", "xmlid": "solo_b_rtn_8s"}, "solo_b_rtn_8s_phi": {"__spz_name__": "phi", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_b_rtn_8s_phi", "dataset": "solo-mag-8s", "description": "Magnetic field phi angle", "display_type": "timeseries", "is_public": "True", "name": "phi", "start_date": "2020-06-03T14:28:15Z", "stop_date": "2023-02-13T20:49:37Z", "ucd": "phys.magField", "units": "degrees", "xmlid": "solo_b_rtn_8s_phi"}, "solo_b_rtn_8s_theta": {"__spz_name__": "theta", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_b_rtn_8s_theta", "dataset": "solo-mag-8s", "description": "Magnetic field theta angle", "display_type": "timeseries", "is_public": "True", "name": "theta", "start_date": "2020-06-03T14:28:15Z", "stop_date": "2023-02-13T20:49:37Z", "ucd": "phys.magField", "units": "degrees", "xmlid": "solo_b_rtn_8s_theta"}, "solo_b_srf_8s": {"__spz_name__": "b_srf", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_b_srf_8s", "dataset": "solo-mag-8s", "display_type": "timeseries", "is_public": "True", "name": "b_srf", "size": "3", "solo_b_srf_8s0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_b_srf_8s(0)", "dataset": "solo-mag-8s", "index1": "0", "is_public": "True", "name": "bx", "parameter": "solo_b_srf_8s", "start_date": "2020-06-03T14:28:15Z", "stop_date": "2023-02-13T20:49:37Z", "xmlid": "solo_b_srf_8s(0)"}, "solo_b_srf_8s1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_b_srf_8s(1)", "dataset": "solo-mag-8s", "index1": "1", "is_public": "True", "name": "by", "parameter": "solo_b_srf_8s", "start_date": "2020-06-03T14:28:15Z", "stop_date": "2023-02-13T20:49:37Z", "xmlid": "solo_b_srf_8s(1)"}, "solo_b_srf_8s2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_b_srf_8s(2)", "dataset": "solo-mag-8s", "index1": "2", "is_public": "True", "name": "bz", "parameter": "solo_b_srf_8s", "start_date": "2020-06-03T14:28:15Z", "stop_date": "2023-02-13T20:49:37Z", "xmlid": "solo_b_srf_8s(2)"}, "start_date": "2020-06-03T14:28:15Z", "stop_date": "2023-02-13T20:49:37Z", "ucd": "phys.magField", "units": "nT", "xmlid": "solo_b_srf_8s"}, "solo_b_tot_8s": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_b_tot_8s", "dataset": "solo-mag-8s", "description": "Magnetic field magnitude", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "2020-06-03T14:28:15Z", "stop_date": "2023-02-13T20:49:37Z", "ucd": "phys.magField", "units": "nT", "xmlid": "solo_b_tot_8s"}, "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Solar_Orbiter/MAG/solo-mag-8s", "start_date": "2020-06-03T14:28:15Z", "stop_date": "2023-02-13T20:49:37Z", "target": "Heliosphere.Inner", "xmlid": "solo-mag-8s"}, "xmlid": "SolO_mag"}, "RPW": {"L3": {"__spz_name__": "L3", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "solo-rpw-l3", "is_public": "True", "name": "L3", "solo_rpw_density10s": {"__spz_name__": "electron density (10 s)", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "solo-rpw-density10s", "att": "auto/solo-rpw-density10s", "dataSource": "SOAR", "desc": "
Sampling: 10S
Provider: SOAR", "is_public": "True", "lastModificationDate": "2023-09-28T15:17:14Z", "lastUpdate": "2023-09-28T15:16:56Z", "measurement_type": "ElectricField", "name": "electron density (10 s)", "processing_level": "Calibrated", "sampling": "10S", "solo_rpw10s_ne": {"__spz_name__": "e- density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpw10s_ne", "dataset": "solo-rpw-density10s", "description": "Plasma density derived from probe-to-spacecraft potential and electron plasma frequency. Median value over 10 s interval.", "display_type": "timeseries", "is_public": "True", "name": "e- density", "start_date": "2020-06-15T00:00:10Z", "stop_date": "2022-11-26T00:02:00Z", "ucd": "phys.density;phys.electron", "units": "cm\u207b\u00b3", "xmlid": "solo_rpw10s_ne"}, "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Solar_Orbiter/RPW/solo-rpw-density10s", "start_date": "2020-06-15T00:00:10Z", "stop_date": "2022-11-26T00:02:00Z", "target": "Heliosphere.Inner", "xmlid": "solo-rpw-density10s"}, "solo_rpw_efield": {"__spz_name__": "electric field", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "solo-rpw-efield", "att": "auto/solo-rpw-efield", "dataSource": "SOAR", "desc": "
Sampling: 0.06S
Provider: SOAR", "is_public": "True", "lastModificationDate": "2024-07-04T15:45:27Z", "lastUpdate": "2024-07-04T14:18:24Z", "measurement_type": "ElectricField", "name": "electric field", "processing_level": "Calibrated", "sampling": "0.06S", "solo_rpw_esrf": {"__spz_name__": "e_srf", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpw_esrf", "dataset": "solo-rpw-efield", "description": "Electric field vector in SRF.", "display_type": "timeseries", "is_public": "True", "name": "e_srf", "size": "3", "solo_rpw_esrf0": {"__spz_name__": "ex", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_rpw_esrf(0)", "dataset": "solo-rpw-efield", "index1": "0", "is_public": "True", "name": "ex", "parameter": "solo_rpw_esrf", "start_date": "2020-06-15T00:00:13Z", "stop_date": "2022-12-01T00:01:17Z", "xmlid": "solo_rpw_esrf(0)"}, "solo_rpw_esrf1": {"__spz_name__": "ey", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_rpw_esrf(1)", "dataset": "solo-rpw-efield", "index1": "1", "is_public": "True", "name": "ey", "parameter": "solo_rpw_esrf", "start_date": "2020-06-15T00:00:13Z", "stop_date": "2022-12-01T00:01:17Z", "xmlid": "solo_rpw_esrf(1)"}, "solo_rpw_esrf2": {"__spz_name__": "ez", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_rpw_esrf(2)", "dataset": "solo-rpw-efield", "index1": "2", "is_public": "True", "name": "ez", "parameter": "solo_rpw_esrf", "start_date": "2020-06-15T00:00:13Z", "stop_date": "2022-12-01T00:01:17Z", "xmlid": "solo_rpw_esrf(2)"}, "start_date": "2020-06-15T00:00:13Z", "stop_date": "2022-12-01T00:01:17Z", "ucd": "phys.electField", "units": "mV/m", "xmlid": "solo_rpw_esrf"}, "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Solar_Orbiter/RPW/solo-rpw-efield", "start_date": "2020-06-15T00:00:13Z", "stop_date": "2022-12-01T00:01:17Z", "target": "Heliosphere.Inner", "xmlid": "solo-rpw-efield"}, "solo_rpw_efield10s": {"__spz_name__": "electric field (10 s)", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "solo-rpw-efield10s", "att": "auto/solo-rpw-efield10s", "dataSource": "SOAR", "desc": "
Sampling: 10S
Provider: SOAR", "is_public": "True", "lastModificationDate": "2023-09-28T15:28:18Z", "lastUpdate": "2023-09-28T15:27:48Z", "measurement_type": "ElectricField", "name": "electric field (10 s)", "processing_level": "Calibrated", "sampling": "10S", "solo_rpw10s_esrf": {"__spz_name__": "e_srf", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpw10s_esrf", "dataset": "solo-rpw-efield10s", "description": "Electric field vector in SRF. Median value over 10 s interval.", "display_type": "timeseries", "is_public": "True", "name": "e_srf", "size": "3", "solo_rpw10s_esrf0": {"__spz_name__": "ex", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_rpw10s_esrf(0)", "dataset": "solo-rpw-efield10s", "index1": "0", "is_public": "True", "name": "ex", "parameter": "solo_rpw10s_esrf", "start_date": "2020-06-15T00:00:10Z", "stop_date": "2022-12-01T00:01:20Z", "xmlid": "solo_rpw10s_esrf(0)"}, "solo_rpw10s_esrf1": {"__spz_name__": "ey", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_rpw10s_esrf(1)", "dataset": "solo-rpw-efield10s", "index1": "1", "is_public": "True", "name": "ey", "parameter": "solo_rpw10s_esrf", "start_date": "2020-06-15T00:00:10Z", "stop_date": "2022-12-01T00:01:20Z", "xmlid": "solo_rpw10s_esrf(1)"}, "solo_rpw10s_esrf2": {"__spz_name__": "ez", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "solo_rpw10s_esrf(2)", "dataset": "solo-rpw-efield10s", "index1": "2", "is_public": "True", "name": "ez", "parameter": "solo_rpw10s_esrf", "start_date": "2020-06-15T00:00:10Z", "stop_date": "2022-12-01T00:01:20Z", "xmlid": "solo_rpw10s_esrf(2)"}, "start_date": "2020-06-15T00:00:10Z", "stop_date": "2022-12-01T00:01:20Z", "ucd": "phys.electField", "units": "mV/m", "xmlid": "solo_rpw10s_esrf"}, "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Solar_Orbiter/RPW/solo-rpw-efield10s", "start_date": "2020-06-15T00:00:10Z", "stop_date": "2022-12-01T00:01:20Z", "target": "Heliosphere.Inner", "xmlid": "solo-rpw-efield10s"}, "solo_rpw_scpot10s": {"__spz_name__": "spacecraft potential (10 s)", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "solo-rpw-scpot10s", "att": "auto/solo-rpw-scpot10s", "dataSource": "SOAR", "desc": "
Sampling: 10S
Provider: SOAR", "is_public": "True", "lastModificationDate": "2023-09-28T15:58:04Z", "lastUpdate": "2023-09-28T15:57:40Z", "measurement_type": "ElectricField", "name": "spacecraft potential (10 s)", "processing_level": "Calibrated", "sampling": "10S", "solo_rpw10s_psp": {"__spz_name__": "probe-to-s/c potential", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpw10s_psp", "dataset": "solo-rpw-scpot10s", "description": "Average probe-to-spacecraft potential. Median over 10 s interval.", "display_type": "timeseries", "is_public": "True", "name": "probe-to-s/c potential", "start_date": "2020-06-15T00:00:10Z", "stop_date": "2022-12-01T00:01:20Z", "ucd": "phys.electField", "units": "V", "xmlid": "solo_rpw10s_psp"}, "solo_rpw10s_scpot": {"__spz_name__": "s/c potential", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpw10s_scpot", "dataset": "solo-rpw-scpot10s", "description": "Spacecraft potential with respect to plasma. Median value over 10 s interval.", "display_type": "timeseries", "is_public": "True", "name": "s/c potential", "start_date": "2020-06-15T00:00:10Z", "stop_date": "2022-12-01T00:01:20Z", "ucd": "phys.electField", "units": "V", "xmlid": "solo_rpw10s_scpot"}, "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Solar_Orbiter/RPW/solo-rpw-scpot10s", "start_date": "2020-06-15T00:00:10Z", "stop_date": "2022-12-01T00:01:20Z", "target": "Heliosphere.Inner", "xmlid": "solo-rpw-scpot10s"}, "xmlid": "solo-rpw-l3"}, "LFR_L2___ASM": {"__spz_name__": "LFR L2 - ASM", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "solo-rpw-l2asm", "is_public": "True", "name": "LFR L2 - ASM", "solo_rpw_survasm_f0": {"__spz_name__": "F0 - survey mode", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "solo-rpw-survasm.f0", "att": "auto/solo-rpw-survasm.f0", "dataSource": "SOAR", "desc": "
MinSampling: 4S; MaxSampling: 1H
Provider: SOAR", "is_public": "True", "lastModificationDate": "2024-01-07T09:06:52Z", "lastUpdate": "2024-01-07T09:05:37Z", "maxSampling": "1H", "measurement_type": "ElectricField", "name": "F0 - survey mode", "processing_level": "Calibrated", "sampling": "4S", "solo_rpwasmf0_b1": {"__spz_name__": "B1B1*", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwasmf0_b1", "dataset": "solo-rpw-survasm.f0", "description": "B1B1*", "display_type": "spectrogram", "is_public": "True", "name": "B1B1*", "start_date": "2020-06-15T01:05:14Z", "stop_date": "2023-09-21T00:03:10Z", "units": "nT\u00b2/Hz", "xmlid": "solo_rpwasmf0_b1"}, "solo_rpwasmf0_b2": {"__spz_name__": "B2B2*", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwasmf0_b2", "dataset": "solo-rpw-survasm.f0", "description": "B2B2*", "display_type": "spectrogram", "is_public": "True", "name": "B2B2*", "start_date": "2020-06-15T01:05:14Z", "stop_date": "2023-09-21T00:03:10Z", "units": "nT\u00b2/Hz", "xmlid": "solo_rpwasmf0_b2"}, "solo_rpwasmf0_b3": {"__spz_name__": "B3B3*", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwasmf0_b3", "dataset": "solo-rpw-survasm.f0", "description": "B3B3*", "display_type": "spectrogram", "is_public": "True", "name": "B3B3*", "start_date": "2020-06-15T01:05:14Z", "stop_date": "2023-09-21T00:03:10Z", "units": "nT\u00b2/Hz", "xmlid": "solo_rpwasmf0_b3"}, "solo_rpwasmf0_e1": {"__spz_name__": "E1E1*", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwasmf0_e1", "dataset": "solo-rpw-survasm.f0", "description": "E1E1*", "display_type": "spectrogram", "is_public": "True", "name": "E1E1*", "start_date": "2020-06-15T01:05:14Z", "stop_date": "2023-09-21T00:03:10Z", "units": "V\u00b2/Hz", "xmlid": "solo_rpwasmf0_e1"}, "solo_rpwasmf0_e2": {"__spz_name__": "E2E2*", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwasmf0_e2", "dataset": "solo-rpw-survasm.f0", "description": "E2E2*", "display_type": "spectrogram", "is_public": "True", "name": "E2E2*", "start_date": "2020-06-15T01:05:14Z", "stop_date": "2023-09-21T00:03:10Z", "units": "V\u00b2/Hz", "xmlid": "solo_rpwasmf0_e2"}, "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Solar_Orbiter/RPW/solo-rpw-survasm.f0", "start_date": "2020-06-15T01:05:14Z", "stop_date": "2023-09-21T00:03:10Z", "target": "Heliosphere.Inner", "xmlid": "solo-rpw-survasm.f0"}, "solo_rpw_survasm_f1": {"__spz_name__": "F1 - survey mode", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "solo-rpw-survasm.f1", "att": "auto/solo-rpw-survasm.f1", "dataSource": "SOAR", "desc": "
MinSampling: 4S; MaxSampling: 1H
Provider: SOAR", "is_public": "True", "lastModificationDate": "2024-01-07T09:09:37Z", "lastUpdate": "2024-01-07T09:08:36Z", "maxSampling": "1H", "measurement_type": "ElectricField", "name": "F1 - survey mode", "processing_level": "Calibrated", "sampling": "4S", "solo_rpwasmf1_b1": {"__spz_name__": "B1B1*", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwasmf1_b1", "dataset": "solo-rpw-survasm.f1", "description": "B1B1*", "display_type": "spectrogram", "is_public": "True", "name": "B1B1*", "start_date": "2020-06-15T01:05:14Z", "stop_date": "2023-09-20T23:03:10Z", "units": "nT\u00b2/Hz", "xmlid": "solo_rpwasmf1_b1"}, "solo_rpwasmf1_b2": {"__spz_name__": "B2B2*", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwasmf1_b2", "dataset": "solo-rpw-survasm.f1", "description": "B2B2*", "display_type": "spectrogram", "is_public": "True", "name": "B2B2*", "start_date": "2020-06-15T01:05:14Z", "stop_date": "2023-09-20T23:03:10Z", "units": "nT\u00b2/Hz", "xmlid": "solo_rpwasmf1_b2"}, "solo_rpwasmf1_b3": {"__spz_name__": "B3B3*", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwasmf1_b3", "dataset": "solo-rpw-survasm.f1", "description": "B3B3*", "display_type": "spectrogram", "is_public": "True", "name": "B3B3*", "start_date": "2020-06-15T01:05:14Z", "stop_date": "2023-09-20T23:03:10Z", "units": "nT\u00b2/Hz", "xmlid": "solo_rpwasmf1_b3"}, "solo_rpwasmf1_e1": {"__spz_name__": "E1E1*", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwasmf1_e1", "dataset": "solo-rpw-survasm.f1", "description": "E1E1*", "display_type": "spectrogram", "is_public": "True", "name": "E1E1*", "start_date": "2020-06-15T01:05:14Z", "stop_date": "2023-09-20T23:03:10Z", "units": "V\u00b2/Hz", "xmlid": "solo_rpwasmf1_e1"}, "solo_rpwasmf1_e2": {"__spz_name__": "E2E2*", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwasmf1_e2", "dataset": "solo-rpw-survasm.f1", "description": "E2E2*", "display_type": "spectrogram", "is_public": "True", "name": "E2E2*", "start_date": "2020-06-15T01:05:14Z", "stop_date": "2023-09-20T23:03:10Z", "units": "V\u00b2/Hz", "xmlid": "solo_rpwasmf1_e2"}, "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Solar_Orbiter/RPW/solo-rpw-survasm.f1", "start_date": "2020-06-15T01:05:14Z", "stop_date": "2023-09-20T23:03:10Z", "target": "Heliosphere.Inner", "xmlid": "solo-rpw-survasm.f1"}, "solo_rpw_survasm_f2": {"__spz_name__": "F2 - survey mode", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "solo-rpw-survasm.f2", "att": "auto/solo-rpw-survasm.f2", "dataSource": "SOAR", "desc": "
MinSampling: 4S; MaxSampling: 1H
Provider: SOAR", "is_public": "True", "lastModificationDate": "2024-01-07T09:11:37Z", "lastUpdate": "2024-01-07T09:10:44Z", "maxSampling": "1H", "measurement_type": "ElectricField", "name": "F2 - survey mode", "processing_level": "Calibrated", "sampling": "4S", "solo_rpwasmf2_b1": {"__spz_name__": "B1B1*", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwasmf2_b1", "dataset": "solo-rpw-survasm.f2", "description": "B1B1*", "display_type": "spectrogram", "is_public": "True", "name": "B1B1*", "start_date": "2020-06-15T01:05:14Z", "stop_date": "2023-09-20T23:03:10Z", "units": "nT\u00b2/Hz", "xmlid": "solo_rpwasmf2_b1"}, "solo_rpwasmf2_b2": {"__spz_name__": "B2B2*", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwasmf2_b2", "dataset": "solo-rpw-survasm.f2", "description": "B2B2*", "display_type": "spectrogram", "is_public": "True", "name": "B2B2*", "start_date": "2020-06-15T01:05:14Z", "stop_date": "2023-09-20T23:03:10Z", "units": "nT\u00b2/Hz", "xmlid": "solo_rpwasmf2_b2"}, "solo_rpwasmf2_b3": {"__spz_name__": "B3B3*", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwasmf2_b3", "dataset": "solo-rpw-survasm.f2", "description": "B3B3*", "display_type": "spectrogram", "is_public": "True", "name": "B3B3*", "start_date": "2020-06-15T01:05:14Z", "stop_date": "2023-09-20T23:03:10Z", "units": "nT\u00b2/Hz", "xmlid": "solo_rpwasmf2_b3"}, "solo_rpwasmf2_e1": {"__spz_name__": "E1E1*", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwasmf2_e1", "dataset": "solo-rpw-survasm.f2", "description": "E1E1*", "display_type": "spectrogram", "is_public": "True", "name": "E1E1*", "start_date": "2020-06-15T01:05:14Z", "stop_date": "2023-09-20T23:03:10Z", "units": "V\u00b2/Hz", "xmlid": "solo_rpwasmf2_e1"}, "solo_rpwasmf2_e2": {"__spz_name__": "E2E2*", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwasmf2_e2", "dataset": "solo-rpw-survasm.f2", "description": "E2E2*", "display_type": "spectrogram", "is_public": "True", "name": "E2E2*", "start_date": "2020-06-15T01:05:14Z", "stop_date": "2023-09-20T23:03:10Z", "units": "V\u00b2/Hz", "xmlid": "solo_rpwasmf2_e2"}, "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Solar_Orbiter/RPW/solo-rpw-survasm.f2", "start_date": "2020-06-15T01:05:14Z", "stop_date": "2023-09-20T23:03:10Z", "target": "Heliosphere.Inner", "xmlid": "solo-rpw-survasm.f2"}, "xmlid": "solo-rpw-l2asm"}, "LFR_L2___BP1": {"__spz_name__": "LFR L2 - BP1", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "solo-rpw-l2bp1", "is_public": "True", "name": "LFR L2 - BP1", "solo_rpw_survbp1_bf0": {"__spz_name__": "B-F0 - survey mode", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "solo-rpw-survbp1.bf0", "att": "auto/solo-rpw-survbp1.bf0", "dataSource": "SOAR", "desc": "
Sampling: 1S
Provider: SOAR", "is_public": "True", "lastModificationDate": "2024-01-07T09:38:18Z", "lastUpdate": "2024-01-07T09:17:16Z", "measurement_type": "ElectricField", "name": "B-F0 - survey mode", "processing_level": "Calibrated", "sampling": "1S", "solo_rpwbp1bf0_dop": {"__spz_name__": "DOP", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwbp1bf0_dop", "dataset": "solo-rpw-survbp1.bf0", "description": "Degree of polarization from magnetic field in normal mode", "display_type": "spectrogram", "is_public": "True", "name": "DOP", "start_date": "2020-07-07T22:30:02Z", "stop_date": "2023-09-20T18:03:11Z", "xmlid": "solo_rpwbp1bf0_dop"}, "solo_rpwbp1bf0_ellip": {"__spz_name__": "ellip", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwbp1bf0_ellip", "dataset": "solo-rpw-survbp1.bf0", "description": "Wave ellipticity from magnetic field in normal mode", "display_type": "spectrogram", "is_public": "True", "name": "ellip", "start_date": "2020-07-07T22:30:02Z", "stop_date": "2023-09-20T18:03:11Z", "xmlid": "solo_rpwbp1bf0_ellip"}, "solo_rpwbp1bf0_n1": {"__spz_name__": "n1", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwbp1bf0_n1", "dataset": "solo-rpw-survbp1.bf0", "description": "Component 1 of the Wave normal vector from magnetic field in normal mode in the SCM B1-B2-B3 axis system frame", "display_type": "spectrogram", "is_public": "True", "name": "n1", "start_date": "2020-07-07T22:30:02Z", "stop_date": "2023-09-20T18:03:11Z", "xmlid": "solo_rpwbp1bf0_n1"}, "solo_rpwbp1bf0_n2": {"__spz_name__": "n2", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwbp1bf0_n2", "dataset": "solo-rpw-survbp1.bf0", "description": "Component 2 of the Wave normal vector from magnetic field in normal mode in the SCM B1-B2-B3 axis system frame", "display_type": "spectrogram", "is_public": "True", "name": "n2", "start_date": "2020-07-07T22:30:02Z", "stop_date": "2023-09-20T18:03:11Z", "xmlid": "solo_rpwbp1bf0_n2"}, "solo_rpwbp1bf0_n3": {"__spz_name__": "n3", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwbp1bf0_n3", "dataset": "solo-rpw-survbp1.bf0", "description": "Component 3 of the Wave normal vector from magnetic field in normal mode in the SCM B1-B2-B3 axis system frame", "display_type": "spectrogram", "is_public": "True", "name": "n3", "start_date": "2020-07-07T22:30:02Z", "stop_date": "2023-09-20T18:03:11Z", "xmlid": "solo_rpwbp1bf0_n3"}, "solo_rpwbp1bf0_pb": {"__spz_name__": "PB", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwbp1bf0_pb", "dataset": "solo-rpw-survbp1.bf0", "description": "Spectral power of B field in normal mode", "display_type": "spectrogram", "is_public": "True", "name": "PB", "start_date": "2020-07-07T22:30:02Z", "stop_date": "2023-09-20T18:03:11Z", "units": "nT\u00b2/Hz", "xmlid": "solo_rpwbp1bf0_pb"}, "solo_rpwbp1bf0_pe": {"__spz_name__": "PE", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwbp1bf0_pe", "dataset": "solo-rpw-survbp1.bf0", "description": "Spectral power of E field in normal mode", "display_type": "spectrogram", "is_public": "True", "name": "PE", "start_date": "2020-07-07T22:30:02Z", "stop_date": "2023-09-20T18:03:11Z", "units": "V\u00b2/Hz", "xmlid": "solo_rpwbp1bf0_pe"}, "solo_rpwbp1bf0_sx": {"__spz_name__": "SX", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwbp1bf0_sx", "dataset": "solo-rpw-survbp1.bf0", "description": "Real part of the X component of the Poynting vector in normal mode", "display_type": "spectrogram", "is_public": "True", "name": "SX", "start_date": "2020-07-07T22:30:02Z", "stop_date": "2023-09-20T18:03:11Z", "units": "nW/m\u00b2/Hz", "xmlid": "solo_rpwbp1bf0_sx"}, "solo_rpwbp1bf0_vphi": {"__spz_name__": "VPHI", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwbp1bf0_vphi", "dataset": "solo-rpw-survbp1.bf0", "description": "Phase velocity estimated from the X projection of Maxwell-Faraday equation in normal mode", "display_type": "spectrogram", "is_public": "True", "name": "VPHI", "start_date": "2020-07-07T22:30:02Z", "stop_date": "2023-09-20T18:03:11Z", "units": "km/s", "xmlid": "solo_rpwbp1bf0_vphi"}, "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Solar_Orbiter/RPW/solo-rpw-survbp1.bf0", "start_date": "2020-07-07T22:30:02Z", "stop_date": "2023-09-20T18:03:11Z", "target": "Heliosphere.Inner", "xmlid": "solo-rpw-survbp1.bf0"}, "solo_rpw_survbp1_bf1": {"__spz_name__": "B-F1 - survey mode", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "solo-rpw-survbp1.bf1", "att": "auto/solo-rpw-survbp1.bf1", "dataSource": "SOAR", "desc": "
Sampling: 1S
Provider: SOAR", "is_public": "True", "lastModificationDate": "2024-01-07T10:12:41Z", "lastUpdate": "2024-01-07T09:44:04Z", "measurement_type": "ElectricField", "name": "B-F1 - survey mode", "processing_level": "Calibrated", "sampling": "1S", "solo_rpwbp1bf1_dop": {"__spz_name__": "DOP", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwbp1bf1_dop", "dataset": "solo-rpw-survbp1.bf1", "description": "Degree of polarization from magnetic field in normal mode", "display_type": "spectrogram", "is_public": "True", "name": "DOP", "start_date": "2020-07-07T22:30:02Z", "stop_date": "2023-09-20T18:03:11Z", "xmlid": "solo_rpwbp1bf1_dop"}, "solo_rpwbp1bf1_ellip": {"__spz_name__": "ellip", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwbp1bf1_ellip", "dataset": "solo-rpw-survbp1.bf1", "description": "Wave ellipticity from magnetic field in normal mode", "display_type": "spectrogram", "is_public": "True", "name": "ellip", "start_date": "2020-07-07T22:30:02Z", "stop_date": "2023-09-20T18:03:11Z", "xmlid": "solo_rpwbp1bf1_ellip"}, "solo_rpwbp1bf1_n1": {"__spz_name__": "n1", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwbp1bf1_n1", "dataset": "solo-rpw-survbp1.bf1", "description": "Component 1 of the Wave normal vector from magnetic field in normal mode in the SCM B1-B2-B3 axis system frame", "display_type": "spectrogram", "is_public": "True", "name": "n1", "start_date": "2020-07-07T22:30:02Z", "stop_date": "2023-09-20T18:03:11Z", "xmlid": "solo_rpwbp1bf1_n1"}, "solo_rpwbp1bf1_n2": {"__spz_name__": "n2", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwbp1bf1_n2", "dataset": "solo-rpw-survbp1.bf1", "description": "Component 2 of the Wave normal vector from magnetic field in normal mode in the SCM B1-B2-B3 axis system frame", "display_type": "spectrogram", "is_public": "True", "name": "n2", "start_date": "2020-07-07T22:30:02Z", "stop_date": "2023-09-20T18:03:11Z", "xmlid": "solo_rpwbp1bf1_n2"}, "solo_rpwbp1bf1_n3": {"__spz_name__": "n3", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwbp1bf1_n3", "dataset": "solo-rpw-survbp1.bf1", "description": "Component 3 of the Wave normal vector from magnetic field in normal mode in the SCM B1-B2-B3 axis system frame", "display_type": "spectrogram", "is_public": "True", "name": "n3", "start_date": "2020-07-07T22:30:02Z", "stop_date": "2023-09-20T18:03:11Z", "xmlid": "solo_rpwbp1bf1_n3"}, "solo_rpwbp1bf1_pb": {"__spz_name__": "PB", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwbp1bf1_pb", "dataset": "solo-rpw-survbp1.bf1", "description": "Spectral power of B field in normal mode", "display_type": "spectrogram", "is_public": "True", "name": "PB", "start_date": "2020-07-07T22:30:02Z", "stop_date": "2023-09-20T18:03:11Z", "units": "nT\u00b2/Hz", "xmlid": "solo_rpwbp1bf1_pb"}, "solo_rpwbp1bf1_pe": {"__spz_name__": "PE", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwbp1bf1_pe", "dataset": "solo-rpw-survbp1.bf1", "description": "Spectral power of E field in normal mode", "display_type": "spectrogram", "is_public": "True", "name": "PE", "start_date": "2020-07-07T22:30:02Z", "stop_date": "2023-09-20T18:03:11Z", "units": "V\u00b2/Hz", "xmlid": "solo_rpwbp1bf1_pe"}, "solo_rpwbp1bf1_sx": {"__spz_name__": "SX", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwbp1bf1_sx", "dataset": "solo-rpw-survbp1.bf1", "description": "Real part of the X component of the Poynting vector in normal mode", "display_type": "spectrogram", "is_public": "True", "name": "SX", "start_date": "2020-07-07T22:30:02Z", "stop_date": "2023-09-20T18:03:11Z", "units": "nW/m\u00b2/Hz", "xmlid": "solo_rpwbp1bf1_sx"}, "solo_rpwbp1bf1_vphi": {"__spz_name__": "VPHI", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwbp1bf1_vphi", "dataset": "solo-rpw-survbp1.bf1", "description": "Phase velocity estimated from the X projection of Maxwell-Faraday equation in normal mode", "display_type": "spectrogram", "is_public": "True", "name": "VPHI", "start_date": "2020-07-07T22:30:02Z", "stop_date": "2023-09-20T18:03:11Z", "units": "km/s", "xmlid": "solo_rpwbp1bf1_vphi"}, "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Solar_Orbiter/RPW/solo-rpw-survbp1.bf1", "start_date": "2020-07-07T22:30:02Z", "stop_date": "2023-09-20T18:03:11Z", "target": "Heliosphere.Inner", "xmlid": "solo-rpw-survbp1.bf1"}, "solo_rpw_survbp1_nf0": {"__spz_name__": "N-F0 - survey mode", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "solo-rpw-survbp1.nf0", "att": "auto/solo-rpw-survbp1.nf0", "dataSource": "SOAR", "desc": "
Sampling: 4S
Provider: SOAR", "is_public": "True", "lastModificationDate": "2024-01-07T10:23:54Z", "lastUpdate": "2024-01-07T10:15:54Z", "measurement_type": "ElectricField", "name": "N-F0 - survey mode", "processing_level": "Calibrated", "sampling": "4S", "solo_rpwbp1nf0_dop": {"__spz_name__": "DOP", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwbp1nf0_dop", "dataset": "solo-rpw-survbp1.nf0", "description": "Degree of polarization from magnetic field in normal mode", "display_type": "spectrogram", "is_public": "True", "name": "DOP", "start_date": "2020-06-15T00:00:17Z", "stop_date": "2023-09-21T00:03:10Z", "xmlid": "solo_rpwbp1nf0_dop"}, "solo_rpwbp1nf0_ellip": {"__spz_name__": "ellip", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwbp1nf0_ellip", "dataset": "solo-rpw-survbp1.nf0", "description": "Wave ellipticity from magnetic field in normal mode", "display_type": "spectrogram", "is_public": "True", "name": "ellip", "start_date": "2020-06-15T00:00:17Z", "stop_date": "2023-09-21T00:03:10Z", "xmlid": "solo_rpwbp1nf0_ellip"}, "solo_rpwbp1nf0_n1": {"__spz_name__": "n1", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwbp1nf0_n1", "dataset": "solo-rpw-survbp1.nf0", "description": "Component 1 of the Wave normal vector from magnetic field in normal mode in the SCM B1-B2-B3 axis system frame", "display_type": "spectrogram", "is_public": "True", "name": "n1", "start_date": "2020-06-15T00:00:17Z", "stop_date": "2023-09-21T00:03:10Z", "xmlid": "solo_rpwbp1nf0_n1"}, "solo_rpwbp1nf0_n2": {"__spz_name__": "n2", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwbp1nf0_n2", "dataset": "solo-rpw-survbp1.nf0", "description": "Component 2 of the Wave normal vector from magnetic field in normal mode in the SCM B1-B2-B3 axis system frame", "display_type": "spectrogram", "is_public": "True", "name": "n2", "start_date": "2020-06-15T00:00:17Z", "stop_date": "2023-09-21T00:03:10Z", "xmlid": "solo_rpwbp1nf0_n2"}, "solo_rpwbp1nf0_n3": {"__spz_name__": "n3", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwbp1nf0_n3", "dataset": "solo-rpw-survbp1.nf0", "description": "Component 3 of the Wave normal vector from magnetic field in normal mode in the SCM B1-B2-B3 axis system frame", "display_type": "spectrogram", "is_public": "True", "name": "n3", "start_date": "2020-06-15T00:00:17Z", "stop_date": "2023-09-21T00:03:10Z", "xmlid": "solo_rpwbp1nf0_n3"}, "solo_rpwbp1nf0_pb": {"__spz_name__": "PB", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwbp1nf0_pb", "dataset": "solo-rpw-survbp1.nf0", "description": "Spectral power of B field in normal mode", "display_type": "spectrogram", "is_public": "True", "name": "PB", "start_date": "2020-06-15T00:00:17Z", "stop_date": "2023-09-21T00:03:10Z", "units": "nT\u00b2/Hz", "xmlid": "solo_rpwbp1nf0_pb"}, "solo_rpwbp1nf0_pe": {"__spz_name__": "PE", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwbp1nf0_pe", "dataset": "solo-rpw-survbp1.nf0", "description": "Spectral power of E field in normal mode", "display_type": "spectrogram", "is_public": "True", "name": "PE", "start_date": "2020-06-15T00:00:17Z", "stop_date": "2023-09-21T00:03:10Z", "units": "V\u00b2/Hz", "xmlid": "solo_rpwbp1nf0_pe"}, "solo_rpwbp1nf0_sx": {"__spz_name__": "SX", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwbp1nf0_sx", "dataset": "solo-rpw-survbp1.nf0", "description": "Real part of the X component of the Poynting vector in normal mode", "display_type": "spectrogram", "is_public": "True", "name": "SX", "start_date": "2020-06-15T00:00:17Z", "stop_date": "2023-09-21T00:03:10Z", "units": "nW/m\u00b2/Hz", "xmlid": "solo_rpwbp1nf0_sx"}, "solo_rpwbp1nf0_vphi": {"__spz_name__": "VPHI", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwbp1nf0_vphi", "dataset": "solo-rpw-survbp1.nf0", "description": "Phase velocity estimated from the X projection of Maxwell-Faraday equation in normal mode", "display_type": "spectrogram", "is_public": "True", "name": "VPHI", "start_date": "2020-06-15T00:00:17Z", "stop_date": "2023-09-21T00:03:10Z", "units": "km/s", "xmlid": "solo_rpwbp1nf0_vphi"}, "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Solar_Orbiter/RPW/solo-rpw-survbp1.nf0", "start_date": "2020-06-15T00:00:17Z", "stop_date": "2023-09-21T00:03:10Z", "target": "Heliosphere.Inner", "xmlid": "solo-rpw-survbp1.nf0"}, "solo_rpw_survbp1_nf1": {"__spz_name__": "N-F1 - survey mode", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "solo-rpw-survbp1.nf1", "att": "auto/solo-rpw-survbp1.nf1", "dataSource": "SOAR", "desc": "
Sampling: 4S
Provider: SOAR", "is_public": "True", "lastModificationDate": "2024-01-07T10:34:48Z", "lastUpdate": "2024-01-07T10:25:36Z", "measurement_type": "ElectricField", "name": "N-F1 - survey mode", "processing_level": "Calibrated", "sampling": "4S", "solo_rpwbp1nf1_dop": {"__spz_name__": "DOP", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwbp1nf1_dop", "dataset": "solo-rpw-survbp1.nf1", "description": "Degree of polarization from magnetic field in normal mode", "display_type": "spectrogram", "is_public": "True", "name": "DOP", "start_date": "2020-06-15T00:00:17Z", "stop_date": "2023-09-21T00:03:06Z", "xmlid": "solo_rpwbp1nf1_dop"}, "solo_rpwbp1nf1_ellip": {"__spz_name__": "ellip", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwbp1nf1_ellip", "dataset": "solo-rpw-survbp1.nf1", "description": "Wave ellipticity from magnetic field in normal mode", "display_type": "spectrogram", "is_public": "True", "name": "ellip", "start_date": "2020-06-15T00:00:17Z", "stop_date": "2023-09-21T00:03:06Z", "xmlid": "solo_rpwbp1nf1_ellip"}, "solo_rpwbp1nf1_n1": {"__spz_name__": "n1", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwbp1nf1_n1", "dataset": "solo-rpw-survbp1.nf1", "description": "Component 1 of the Wave normal vector from magnetic field in normal mode in the SCM B1-B2-B3 axis system frame", "display_type": "spectrogram", "is_public": "True", "name": "n1", "start_date": "2020-06-15T00:00:17Z", "stop_date": "2023-09-21T00:03:06Z", "xmlid": "solo_rpwbp1nf1_n1"}, "solo_rpwbp1nf1_n2": {"__spz_name__": "n2", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwbp1nf1_n2", "dataset": "solo-rpw-survbp1.nf1", "description": "Component 2 of the Wave normal vector from magnetic field in normal mode in the SCM B1-B2-B3 axis system frame", "display_type": "spectrogram", "is_public": "True", "name": "n2", "start_date": "2020-06-15T00:00:17Z", "stop_date": "2023-09-21T00:03:06Z", "xmlid": "solo_rpwbp1nf1_n2"}, "solo_rpwbp1nf1_n3": {"__spz_name__": "n3", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwbp1nf1_n3", "dataset": "solo-rpw-survbp1.nf1", "description": "Component 3 of the Wave normal vector from magnetic field in normal mode in the SCM B1-B2-B3 axis system frame", "display_type": "spectrogram", "is_public": "True", "name": "n3", "start_date": "2020-06-15T00:00:17Z", "stop_date": "2023-09-21T00:03:06Z", "xmlid": "solo_rpwbp1nf1_n3"}, "solo_rpwbp1nf1_pb": {"__spz_name__": "PB", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwbp1nf1_pb", "dataset": "solo-rpw-survbp1.nf1", "description": "Spectral power of B field in normal mode", "display_type": "spectrogram", "is_public": "True", "name": "PB", "start_date": "2020-06-15T00:00:17Z", "stop_date": "2023-09-21T00:03:06Z", "units": "nT\u00b2/Hz", "xmlid": "solo_rpwbp1nf1_pb"}, "solo_rpwbp1nf1_pe": {"__spz_name__": "PE", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwbp1nf1_pe", "dataset": "solo-rpw-survbp1.nf1", "description": "Spectral power of E field in normal mode", "display_type": "spectrogram", "is_public": "True", "name": "PE", "start_date": "2020-06-15T00:00:17Z", "stop_date": "2023-09-21T00:03:06Z", "units": "V\u00b2/Hz", "xmlid": "solo_rpwbp1nf1_pe"}, "solo_rpwbp1nf1_sx": {"__spz_name__": "SX", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwbp1nf1_sx", "dataset": "solo-rpw-survbp1.nf1", "description": "Real part of the X component of the Poynting vector in normal mode", "display_type": "spectrogram", "is_public": "True", "name": "SX", "start_date": "2020-06-15T00:00:17Z", "stop_date": "2023-09-21T00:03:06Z", "units": "nW/m\u00b2/Hz", "xmlid": "solo_rpwbp1nf1_sx"}, "solo_rpwbp1nf1_vphi": {"__spz_name__": "VPHI", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwbp1nf1_vphi", "dataset": "solo-rpw-survbp1.nf1", "description": "Phase velocity estimated from the X projection of Maxwell-Faraday equation in normal mode", "display_type": "spectrogram", "is_public": "True", "name": "VPHI", "start_date": "2020-06-15T00:00:17Z", "stop_date": "2023-09-21T00:03:06Z", "units": "km/s", "xmlid": "solo_rpwbp1nf1_vphi"}, "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Solar_Orbiter/RPW/solo-rpw-survbp1.nf1", "start_date": "2020-06-15T00:00:17Z", "stop_date": "2023-09-21T00:03:06Z", "target": "Heliosphere.Inner", "xmlid": "solo-rpw-survbp1.nf1"}, "solo_rpw_survbp1_nf2": {"__spz_name__": "N-F2 - survey mode", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "solo-rpw-survbp1.nf2", "att": "auto/solo-rpw-survbp1.nf2", "dataSource": "SOAR", "desc": "
Sampling: 4S
Provider: SOAR", "is_public": "True", "lastModificationDate": "2024-01-07T10:46:07Z", "lastUpdate": "2024-01-07T10:36:51Z", "measurement_type": "ElectricField", "name": "N-F2 - survey mode", "processing_level": "Calibrated", "sampling": "4S", "solo_rpwbp1nf2_dop": {"__spz_name__": "DOP", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwbp1nf2_dop", "dataset": "solo-rpw-survbp1.nf2", "description": "Degree of polarization from magnetic field in normal mode", "display_type": "spectrogram", "is_public": "True", "name": "DOP", "start_date": "2020-06-15T00:00:17Z", "stop_date": "2023-09-21T00:03:06Z", "xmlid": "solo_rpwbp1nf2_dop"}, "solo_rpwbp1nf2_ellip": {"__spz_name__": "ellip", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwbp1nf2_ellip", "dataset": "solo-rpw-survbp1.nf2", "description": "Wave ellipticity from magnetic field in normal mode", "display_type": "spectrogram", "is_public": "True", "name": "ellip", "start_date": "2020-06-15T00:00:17Z", "stop_date": "2023-09-21T00:03:06Z", "xmlid": "solo_rpwbp1nf2_ellip"}, "solo_rpwbp1nf2_n1": {"__spz_name__": "n1", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwbp1nf2_n1", "dataset": "solo-rpw-survbp1.nf2", "description": "Component 1 of the Wave normal vector from magnetic field in normal mode in the SCM B1-B2-B3 axis system frame", "display_type": "spectrogram", "is_public": "True", "name": "n1", "start_date": "2020-06-15T00:00:17Z", "stop_date": "2023-09-21T00:03:06Z", "xmlid": "solo_rpwbp1nf2_n1"}, "solo_rpwbp1nf2_n2": {"__spz_name__": "n2", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwbp1nf2_n2", "dataset": "solo-rpw-survbp1.nf2", "description": "Component 2 of the Wave normal vector from magnetic field in normal mode in the SCM B1-B2-B3 axis system frame", "display_type": "spectrogram", "is_public": "True", "name": "n2", "start_date": "2020-06-15T00:00:17Z", "stop_date": "2023-09-21T00:03:06Z", "xmlid": "solo_rpwbp1nf2_n2"}, "solo_rpwbp1nf2_n3": {"__spz_name__": "n3", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwbp1nf2_n3", "dataset": "solo-rpw-survbp1.nf2", "description": "Component 3 of the Wave normal vector from magnetic field in normal mode in the SCM B1-B2-B3 axis system frame", "display_type": "spectrogram", "is_public": "True", "name": "n3", "start_date": "2020-06-15T00:00:17Z", "stop_date": "2023-09-21T00:03:06Z", "xmlid": "solo_rpwbp1nf2_n3"}, "solo_rpwbp1nf2_pb": {"__spz_name__": "PB", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwbp1nf2_pb", "dataset": "solo-rpw-survbp1.nf2", "description": "Spectral power of B field in normal mode", "display_type": "spectrogram", "is_public": "True", "name": "PB", "start_date": "2020-06-15T00:00:17Z", "stop_date": "2023-09-21T00:03:06Z", "units": "nT\u00b2/Hz", "xmlid": "solo_rpwbp1nf2_pb"}, "solo_rpwbp1nf2_pe": {"__spz_name__": "PE", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwbp1nf2_pe", "dataset": "solo-rpw-survbp1.nf2", "description": "Spectral power of E field in normal mode", "display_type": "spectrogram", "is_public": "True", "name": "PE", "start_date": "2020-06-15T00:00:17Z", "stop_date": "2023-09-21T00:03:06Z", "units": "V\u00b2/Hz", "xmlid": "solo_rpwbp1nf2_pe"}, "solo_rpwbp1nf2_sx": {"__spz_name__": "SX", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwbp1nf2_sx", "dataset": "solo-rpw-survbp1.nf2", "description": "Real part of the X component of the Poynting vector in normal mode", "display_type": "spectrogram", "is_public": "True", "name": "SX", "start_date": "2020-06-15T00:00:17Z", "stop_date": "2023-09-21T00:03:06Z", "units": "nW/m\u00b2/Hz", "xmlid": "solo_rpwbp1nf2_sx"}, "solo_rpwbp1nf2_vphi": {"__spz_name__": "VPHI", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwbp1nf2_vphi", "dataset": "solo-rpw-survbp1.nf2", "description": "Phase velocity estimated from the X projection of Maxwell-Faraday equation in normal mode", "display_type": "spectrogram", "is_public": "True", "name": "VPHI", "start_date": "2020-06-15T00:00:17Z", "stop_date": "2023-09-21T00:03:06Z", "units": "km/s", "xmlid": "solo_rpwbp1nf2_vphi"}, "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Solar_Orbiter/RPW/solo-rpw-survbp1.nf2", "start_date": "2020-06-15T00:00:17Z", "stop_date": "2023-09-21T00:03:06Z", "target": "Heliosphere.Inner", "xmlid": "solo-rpw-survbp1.nf2"}, "xmlid": "solo-rpw-l2bp1"}, "LFR_L2___BP2": {"__spz_name__": "LFR L2 - BP2", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "solo-rpw-l2bp2", "is_public": "True", "name": "LFR L2 - BP2", "solo_rpw_survbp2_bf0": {"__spz_name__": "B-F0 - survey mode", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "solo-rpw-survbp2.bf0", "att": "auto/solo-rpw-survbp2.bf0", "dataSource": "SOAR", "desc": "
Sampling: 5S
Provider: SOAR", "is_public": "True", "lastModificationDate": "2024-01-08T14:15:27Z", "lastUpdate": "2024-01-08T14:10:44Z", "measurement_type": "ElectricField", "name": "B-F0 - survey mode", "processing_level": "Calibrated", "sampling": "5S", "solo_rpwbp2bf0_b1": {"__spz_name__": "B1B1*", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwbp2bf0_b1", "dataset": "solo-rpw-survbp2.bf0", "description": "B1B1*", "display_type": "spectrogram", "is_public": "True", "name": "B1B1*", "start_date": "2020-07-07T22:30:06Z", "stop_date": "2023-09-20T18:03:07Z", "units": "nT\u00b2/Hz", "xmlid": "solo_rpwbp2bf0_b1"}, "solo_rpwbp2bf0_b2": {"__spz_name__": "B2B2*", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwbp2bf0_b2", "dataset": "solo-rpw-survbp2.bf0", "description": "B2B2*", "display_type": "spectrogram", "is_public": "True", "name": "B2B2*", "start_date": "2020-07-07T22:30:06Z", "stop_date": "2023-09-20T18:03:07Z", "units": "nT\u00b2/Hz", "xmlid": "solo_rpwbp2bf0_b2"}, "solo_rpwbp2bf0_b3": {"__spz_name__": "B3B3*", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwbp2bf0_b3", "dataset": "solo-rpw-survbp2.bf0", "description": "B3B3*", "display_type": "spectrogram", "is_public": "True", "name": "B3B3*", "start_date": "2020-07-07T22:30:06Z", "stop_date": "2023-09-20T18:03:07Z", "units": "nT\u00b2/Hz", "xmlid": "solo_rpwbp2bf0_b3"}, "solo_rpwbp2bf0_e1": {"__spz_name__": "E1E1*", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwbp2bf0_e1", "dataset": "solo-rpw-survbp2.bf0", "description": "E1E1*", "display_type": "spectrogram", "is_public": "True", "name": "E1E1*", "start_date": "2020-07-07T22:30:06Z", "stop_date": "2023-09-20T18:03:07Z", "units": "V\u00b2/Hz", "xmlid": "solo_rpwbp2bf0_e1"}, "solo_rpwbp2bf0_e2": {"__spz_name__": "E2E2*", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwbp2bf0_e2", "dataset": "solo-rpw-survbp2.bf0", "description": "E2E2*", "display_type": "spectrogram", "is_public": "True", "name": "E2E2*", "start_date": "2020-07-07T22:30:06Z", "stop_date": "2023-09-20T18:03:07Z", "units": "V\u00b2/Hz", "xmlid": "solo_rpwbp2bf0_e2"}, "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Solar_Orbiter/RPW/solo-rpw-survbp2.bf0", "start_date": "2020-07-07T22:30:06Z", "stop_date": "2023-09-20T18:03:07Z", "target": "Heliosphere.Inner", "xmlid": "solo-rpw-survbp2.bf0"}, "solo_rpw_survbp2_bf1": {"__spz_name__": "B-F1 - survey mode", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "solo-rpw-survbp2.bf1", "att": "auto/solo-rpw-survbp2.bf1", "dataSource": "SOAR", "desc": "
Sampling: 5S
Provider: SOAR", "is_public": "True", "lastModificationDate": "2024-01-08T14:20:46Z", "lastUpdate": "2024-01-08T14:16:56Z", "measurement_type": "ElectricField", "name": "B-F1 - survey mode", "processing_level": "Calibrated", "sampling": "5S", "solo_rpwbp2bf1_b1": {"__spz_name__": "B1B1*", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwbp2bf1_b1", "dataset": "solo-rpw-survbp2.bf1", "description": "B1B1*", "display_type": "spectrogram", "is_public": "True", "name": "B1B1*", "start_date": "2020-07-07T22:30:06Z", "stop_date": "2023-09-20T18:03:07Z", "units": "nT\u00b2/Hz", "xmlid": "solo_rpwbp2bf1_b1"}, "solo_rpwbp2bf1_b2": {"__spz_name__": "B2B2*", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwbp2bf1_b2", "dataset": "solo-rpw-survbp2.bf1", "description": "B2B2*", "display_type": "spectrogram", "is_public": "True", "name": "B2B2*", "start_date": "2020-07-07T22:30:06Z", "stop_date": "2023-09-20T18:03:07Z", "units": "nT\u00b2/Hz", "xmlid": "solo_rpwbp2bf1_b2"}, "solo_rpwbp2bf1_b3": {"__spz_name__": "B3B3*", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwbp2bf1_b3", "dataset": "solo-rpw-survbp2.bf1", "description": "B3B3*", "display_type": "spectrogram", "is_public": "True", "name": "B3B3*", "start_date": "2020-07-07T22:30:06Z", "stop_date": "2023-09-20T18:03:07Z", "units": "nT\u00b2/Hz", "xmlid": "solo_rpwbp2bf1_b3"}, "solo_rpwbp2bf1_e1": {"__spz_name__": "E1E1*", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwbp2bf1_e1", "dataset": "solo-rpw-survbp2.bf1", "description": "E1E1*", "display_type": "spectrogram", "is_public": "True", "name": "E1E1*", "start_date": "2020-07-07T22:30:06Z", "stop_date": "2023-09-20T18:03:07Z", "units": "V\u00b2/Hz", "xmlid": "solo_rpwbp2bf1_e1"}, "solo_rpwbp2bf1_e2": {"__spz_name__": "E2E2*", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwbp2bf1_e2", "dataset": "solo-rpw-survbp2.bf1", "description": "E2E2*", "display_type": "spectrogram", "is_public": "True", "name": "E2E2*", "start_date": "2020-07-07T22:30:06Z", "stop_date": "2023-09-20T18:03:07Z", "units": "V\u00b2/Hz", "xmlid": "solo_rpwbp2bf1_e2"}, "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Solar_Orbiter/RPW/solo-rpw-survbp2.bf1", "start_date": "2020-07-07T22:30:06Z", "stop_date": "2023-09-20T18:03:07Z", "target": "Heliosphere.Inner", "xmlid": "solo-rpw-survbp2.bf1"}, "solo_rpw_survbp2_nf0": {"__spz_name__": "N-F0 - survey mode", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "solo-rpw-survbp2.nf0", "att": "auto/solo-rpw-survbp2.nf0", "dataSource": "SOAR", "desc": "
Sampling: 20S
Provider: SOAR", "is_public": "True", "lastModificationDate": "2024-01-08T14:23:24Z", "lastUpdate": "2024-01-08T14:21:46Z", "measurement_type": "ElectricField", "name": "N-F0 - survey mode", "processing_level": "Calibrated", "sampling": "20S", "solo_rpwbp2nf0_b1": {"__spz_name__": "B1B1*", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwbp2nf0_b1", "dataset": "solo-rpw-survbp2.nf0", "description": "B1B1*", "display_type": "spectrogram", "is_public": "True", "name": "B1B1*", "start_date": "2020-06-15T00:00:29Z", "stop_date": "2023-09-21T00:03:10Z", "units": "nT\u00b2/Hz", "xmlid": "solo_rpwbp2nf0_b1"}, "solo_rpwbp2nf0_b2": {"__spz_name__": "B2B2*", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwbp2nf0_b2", "dataset": "solo-rpw-survbp2.nf0", "description": "B2B2*", "display_type": "spectrogram", "is_public": "True", "name": "B2B2*", "start_date": "2020-06-15T00:00:29Z", "stop_date": "2023-09-21T00:03:10Z", "units": "nT\u00b2/Hz", "xmlid": "solo_rpwbp2nf0_b2"}, "solo_rpwbp2nf0_b3": {"__spz_name__": "B3B3*", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwbp2nf0_b3", "dataset": "solo-rpw-survbp2.nf0", "description": "B3B3*", "display_type": "spectrogram", "is_public": "True", "name": "B3B3*", "start_date": "2020-06-15T00:00:29Z", "stop_date": "2023-09-21T00:03:10Z", "units": "nT\u00b2/Hz", "xmlid": "solo_rpwbp2nf0_b3"}, "solo_rpwbp2nf0_e1": {"__spz_name__": "E1E1*", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwbp2nf0_e1", "dataset": "solo-rpw-survbp2.nf0", "description": "E1E1*", "display_type": "spectrogram", "is_public": "True", "name": "E1E1*", "start_date": "2020-06-15T00:00:29Z", "stop_date": "2023-09-21T00:03:10Z", "units": "V\u00b2/Hz", "xmlid": "solo_rpwbp2nf0_e1"}, "solo_rpwbp2nf0_e2": {"__spz_name__": "E2E2*", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwbp2nf0_e2", "dataset": "solo-rpw-survbp2.nf0", "description": "E2E2*", "display_type": "spectrogram", "is_public": "True", "name": "E2E2*", "start_date": "2020-06-15T00:00:29Z", "stop_date": "2023-09-21T00:03:10Z", "units": "V\u00b2/Hz", "xmlid": "solo_rpwbp2nf0_e2"}, "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Solar_Orbiter/RPW/solo-rpw-survbp2.nf0", "start_date": "2020-06-15T00:00:29Z", "stop_date": "2023-09-21T00:03:10Z", "target": "Heliosphere.Inner", "xmlid": "solo-rpw-survbp2.nf0"}, "solo_rpw_survbp2_nf1": {"__spz_name__": "N-F1 - survey mode", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "solo-rpw-survbp2.nf1", "att": "auto/solo-rpw-survbp2.nf1", "dataSource": "SOAR", "desc": "
Sampling: 20S
Provider: SOAR", "is_public": "True", "lastModificationDate": "2024-01-08T14:25:46Z", "lastUpdate": "2024-01-08T14:24:04Z", "measurement_type": "ElectricField", "name": "N-F1 - survey mode", "processing_level": "Calibrated", "sampling": "20S", "solo_rpwbp2nf1_b1": {"__spz_name__": "B1B1*", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwbp2nf1_b1", "dataset": "solo-rpw-survbp2.nf1", "description": "B1B1*", "display_type": "spectrogram", "is_public": "True", "name": "B1B1*", "start_date": "2020-06-15T00:00:29Z", "stop_date": "2023-09-21T00:02:50Z", "units": "nT\u00b2/Hz", "xmlid": "solo_rpwbp2nf1_b1"}, "solo_rpwbp2nf1_b2": {"__spz_name__": "B2B2*", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwbp2nf1_b2", "dataset": "solo-rpw-survbp2.nf1", "description": "B2B2*", "display_type": "spectrogram", "is_public": "True", "name": "B2B2*", "start_date": "2020-06-15T00:00:29Z", "stop_date": "2023-09-21T00:02:50Z", "units": "nT\u00b2/Hz", "xmlid": "solo_rpwbp2nf1_b2"}, "solo_rpwbp2nf1_b3": {"__spz_name__": "B3B3*", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwbp2nf1_b3", "dataset": "solo-rpw-survbp2.nf1", "description": "B3B3*", "display_type": "spectrogram", "is_public": "True", "name": "B3B3*", "start_date": "2020-06-15T00:00:29Z", "stop_date": "2023-09-21T00:02:50Z", "units": "nT\u00b2/Hz", "xmlid": "solo_rpwbp2nf1_b3"}, "solo_rpwbp2nf1_e1": {"__spz_name__": "E1E1*", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwbp2nf1_e1", "dataset": "solo-rpw-survbp2.nf1", "description": "E1E1*", "display_type": "spectrogram", "is_public": "True", "name": "E1E1*", "start_date": "2020-06-15T00:00:29Z", "stop_date": "2023-09-21T00:02:50Z", "units": "V\u00b2/Hz", "xmlid": "solo_rpwbp2nf1_e1"}, "solo_rpwbp2nf1_e2": {"__spz_name__": "E2E2*", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwbp2nf1_e2", "dataset": "solo-rpw-survbp2.nf1", "description": "E2E2*", "display_type": "spectrogram", "is_public": "True", "name": "E2E2*", "start_date": "2020-06-15T00:00:29Z", "stop_date": "2023-09-21T00:02:50Z", "units": "V\u00b2/Hz", "xmlid": "solo_rpwbp2nf1_e2"}, "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Solar_Orbiter/RPW/solo-rpw-survbp2.nf1", "start_date": "2020-06-15T00:00:29Z", "stop_date": "2023-09-21T00:02:50Z", "target": "Heliosphere.Inner", "xmlid": "solo-rpw-survbp2.nf1"}, "solo_rpw_survbp2_nf2": {"__spz_name__": "N-F2 - survey mode", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "solo-rpw-survbp2.nf2", "att": "auto/solo-rpw-survbp2.nf2", "dataSource": "SOAR", "desc": "
Sampling: 20S
Provider: SOAR", "is_public": "True", "lastModificationDate": "2024-01-08T14:28:01Z", "lastUpdate": "2024-01-08T14:26:25Z", "measurement_type": "ElectricField", "name": "N-F2 - survey mode", "processing_level": "Calibrated", "sampling": "20S", "solo_rpwbp2nf2_b1": {"__spz_name__": "B1B1*", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwbp2nf2_b1", "dataset": "solo-rpw-survbp2.nf2", "description": "B1B1*", "display_type": "spectrogram", "is_public": "True", "name": "B1B1*", "start_date": "2020-06-15T00:00:29Z", "stop_date": "2023-09-21T00:02:50Z", "units": "nT\u00b2/Hz", "xmlid": "solo_rpwbp2nf2_b1"}, "solo_rpwbp2nf2_b2": {"__spz_name__": "B2B2*", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwbp2nf2_b2", "dataset": "solo-rpw-survbp2.nf2", "description": "B2B2*", "display_type": "spectrogram", "is_public": "True", "name": "B2B2*", "start_date": "2020-06-15T00:00:29Z", "stop_date": "2023-09-21T00:02:50Z", "units": "nT\u00b2/Hz", "xmlid": "solo_rpwbp2nf2_b2"}, "solo_rpwbp2nf2_b3": {"__spz_name__": "B3B3*", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwbp2nf2_b3", "dataset": "solo-rpw-survbp2.nf2", "description": "B3B3*", "display_type": "spectrogram", "is_public": "True", "name": "B3B3*", "start_date": "2020-06-15T00:00:29Z", "stop_date": "2023-09-21T00:02:50Z", "units": "nT\u00b2/Hz", "xmlid": "solo_rpwbp2nf2_b3"}, "solo_rpwbp2nf2_e1": {"__spz_name__": "E1E1*", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwbp2nf2_e1", "dataset": "solo-rpw-survbp2.nf2", "description": "E1E1*", "display_type": "spectrogram", "is_public": "True", "name": "E1E1*", "start_date": "2020-06-15T00:00:29Z", "stop_date": "2023-09-21T00:02:50Z", "units": "V\u00b2/Hz", "xmlid": "solo_rpwbp2nf2_e1"}, "solo_rpwbp2nf2_e2": {"__spz_name__": "E2E2*", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_rpwbp2nf2_e2", "dataset": "solo-rpw-survbp2.nf2", "description": "E2E2*", "display_type": "spectrogram", "is_public": "True", "name": "E2E2*", "start_date": "2020-06-15T00:00:29Z", "stop_date": "2023-09-21T00:02:50Z", "units": "V\u00b2/Hz", "xmlid": "solo_rpwbp2nf2_e2"}, "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Solar_Orbiter/RPW/solo-rpw-survbp2.nf2", "start_date": "2020-06-15T00:00:29Z", "stop_date": "2023-09-21T00:02:50Z", "target": "Heliosphere.Inner", "xmlid": "solo-rpw-survbp2.nf2"}, "xmlid": "solo-rpw-l2bp2"}, "__spz_name__": "RPW", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "SolO_rpw", "att": "auto/SolO_rpw", "desc": "Plasma Wave Investigation
Antenna", "is_public": "True", "name": "RPW", "xmlid": "SolO_rpw"}, "SWAEAS": {"__spz_name__": "SWA/EAS", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "SolO_eas", "att": "auto/SolO_eas", "desc": "Electron Analyser System
EnergeticParticleInstrument", "is_public": "True", "name": "SWA/EAS", "solo_eas1_nm3d": {"__spz_name__": "EAS1-NM3D", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "solo-eas1-nm3d", "att": "auto/solo-eas1-nm3d", "dataSource": "SOAR", "desc": "Nominal Mode 3D
Sampling: 10S
Provider: SOAR", "eas1_nm3d_2d_azimuth": {"__spz_name__": "PSD: sum on azimuth : 2D", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "eas1_nm3d_2d_azimuth", "dataset": "solo-eas1-nm3d", "description": "Phase Space Density", "display_type": "spectrogram", "is_public": "True", "name": "PSD: sum on azimuth : 2D", "start_date": "2020-06-15T14:48:38Z", "stop_date": "2023-08-25T08:33:20Z", "template": "eas1_nm3d_2d_azimuth_##min##_##max##", "units": "eV m\u207b\u00b2 s\u207b\u00b9 sr\u207b\u00b9 eV\u207b\u00b9", "xmlid": "eas1_nm3d_2d_azimuth"}, "eas1_nm3d_2d_elevation": {"__spz_name__": "PSD: sum on elev : 2D", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "eas1_nm3d_2d_elevation", "dataset": "solo-eas1-nm3d", "description": "Phase Space Density", "display_type": "spectrogram", "is_public": "True", "name": "PSD: sum on elev : 2D", "start_date": "2020-06-15T14:48:38Z", "stop_date": "2023-08-25T08:33:20Z", "template": "eas1_nm3d_2d_elevation_##min##_##max##", "units": "eV m\u207b\u00b2 s\u207b\u00b9 sr\u207b\u00b9 eV\u207b\u00b9", "xmlid": "eas1_nm3d_2d_elevation"}, "eas1_nm3d_2d_energy": {"__spz_name__": "PSD: sum on energy : 2D", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "eas1_nm3d_2d_energy", "dataset": "solo-eas1-nm3d", "description": "Phase Space Density", "display_type": "spectrogram", "is_public": "True", "name": "PSD: sum on energy : 2D", "start_date": "2020-06-15T14:48:38Z", "stop_date": "2023-08-25T08:33:20Z", "template": "eas1_nm3d_2d_energy_##min##_##max##", "units": "eV m\u207b\u00b2 s\u207b\u00b9 sr\u207b\u00b9 eV\u207b\u00b9", "xmlid": "eas1_nm3d_2d_energy"}, "is_public": "True", "lastModificationDate": "2024-01-06T06:43:58Z", "lastUpdate": "2024-01-05T23:03:06Z", "measurement_type": "ThermalPlasma", "name": "EAS1-NM3D", "processing_level": "Calibrated", "sampling": "10S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Solar_Orbiter/EAS/solo-eas1-nm3d", "start_date": "2020-06-15T14:48:38Z", "stop_date": "2023-08-25T08:33:20Z", "target": "Heliosphere.Inner", "xmlid": "solo-eas1-nm3d"}, "solo_eas2_nm3d": {"__spz_name__": "EAS2-NM3D", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "solo-eas2-nm3d", "att": "auto/solo-eas2-nm3d", "dataSource": "SOAR", "desc": "Nominal Mode 3D
Sampling: 10S
Provider: SOAR", "eas2_nm3d_2d_azimuth": {"__spz_name__": "PSD: sum on azimuth : 2D", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "eas2_nm3d_2d_azimuth", "dataset": "solo-eas2-nm3d", "description": "Phase Space Density", "display_type": "spectrogram", "is_public": "True", "name": "PSD: sum on azimuth : 2D", "start_date": "2020-06-15T14:48:38Z", "stop_date": "2023-08-25T08:33:20Z", "template": "eas2_nm3d_2d_azimuth_##min##_##max##", "units": "eV m\u207b\u00b2 s\u207b\u00b9 sr\u207b\u00b9 eV\u207b\u00b9", "xmlid": "eas2_nm3d_2d_azimuth"}, "eas2_nm3d_2d_elevation": {"__spz_name__": "PSD: sum on elev : 2D", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "eas2_nm3d_2d_elevation", "dataset": "solo-eas2-nm3d", "description": "Phase Space Density", "display_type": "spectrogram", "is_public": "True", "name": "PSD: sum on elev : 2D", "start_date": "2020-06-15T14:48:38Z", "stop_date": "2023-08-25T08:33:20Z", "template": "eas2_nm3d_2d_elevation_##min##_##max##", "units": "eV m\u207b\u00b2 s\u207b\u00b9 sr\u207b\u00b9 eV\u207b\u00b9", "xmlid": "eas2_nm3d_2d_elevation"}, "eas2_nm3d_2d_energy": {"__spz_name__": "PSD: sum on energy : 2D", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "eas2_nm3d_2d_energy", "dataset": "solo-eas2-nm3d", "description": "Phase Space Density", "display_type": "spectrogram", "is_public": "True", "name": "PSD: sum on energy : 2D", "start_date": "2020-06-15T14:48:38Z", "stop_date": "2023-08-25T08:33:20Z", "template": "eas2_nm3d_2d_energy_##min##_##max##", "units": "eV m\u207b\u00b2 s\u207b\u00b9 sr\u207b\u00b9 eV\u207b\u00b9", "xmlid": "eas2_nm3d_2d_energy"}, "is_public": "True", "lastModificationDate": "2024-01-06T22:51:22Z", "lastUpdate": "2024-01-06T15:03:49Z", "measurement_type": "ThermalPlasma", "name": "EAS2-NM3D", "processing_level": "Calibrated", "sampling": "10S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Solar_Orbiter/EAS/solo-eas2-nm3d", "start_date": "2020-06-15T14:48:38Z", "stop_date": "2023-08-25T08:33:20Z", "target": "Heliosphere.Inner", "xmlid": "solo-eas2-nm3d"}, "solo_eas_pad": {"__spz_name__": "EAS-PAD", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "solo-eas-pad", "att": "auto/solo-eas-pad", "dataSource": "SOAR", "desc": "Pitch angle distribution
Sampling: 0.125S
Provider: SOAR", "eas_pad_psd": {"__spz_name__": "PSD: PAD", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "eas_pad_psd", "dataset": "solo-eas-pad", "description": "Electron pitch angle data - Phase Space Density", "display_type": "spectrogram", "is_public": "True", "name": "PSD: PAD", "start_date": "2021-04-22T05:27:34Z", "stop_date": "2023-08-31T17:32:33Z", "template": "eas_pad_psd_##elevmin##_##elevmax##", "units": "eV m\u207b\u00b2 s\u207b\u00b9 sr\u207b\u00b9 eV\u207b\u00b9", "xmlid": "eas_pad_psd"}, "is_public": "True", "lastModificationDate": "2024-01-05T15:27:00Z", "lastUpdate": "2024-01-05T15:36:35Z", "measurement_type": "ThermalPlasma", "name": "EAS-PAD", "processing_level": "Calibrated", "sampling": "0.125S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Solar_Orbiter/EAS/solo-eas-pad", "start_date": "2021-04-22T05:27:34Z", "stop_date": "2023-08-31T17:32:33Z", "target": "Heliosphere.Inner", "xmlid": "solo-eas-pad"}, "xmlid": "SolO_eas"}, "SWAHIS": {"L3": {"__spz_name__": "L3", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "solo-his-l3", "is_public": "True", "name": "L3", "solo_his_comp10min": {"__spz_name__": "composition 10min", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "solo-his-comp10min", "att": "auto/solo-his-comp10min", "dataSource": "SOAR", "desc": "Solar Wind Analyzer, Heavy Ion Sensor, Composition 10 Minute Resolution
Sampling: 600S
Provider: SOAR", "is_public": "True", "lastModificationDate": "2023-09-18T11:27:25Z", "lastUpdate": "2023-09-18T11:23:26Z", "measurement_type": "ThermalPlasma", "name": "composition 10min", "processing_level": "Calibrated", "sampling": "600S", "solo_his_comp10min_C5_n": {"__spz_name__": "C5 density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_his_comp10min_C5_n", "dataset": "solo-his-comp10min", "is_public": "True", "name": "C5 density", "start_date": "2022-01-19T00:00:20Z", "stop_date": "2022-12-31T23:58:03Z", "units": "cm\u207b\u00b3", "xmlid": "solo_his_comp10min_C5_n"}, "solo_his_comp10min_C5_nerr": {"__spz_name__": "C5 density err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_his_comp10min_C5_nerr", "dataset": "solo-his-comp10min", "is_public": "True", "name": "C5 density err", "start_date": "2022-01-19T00:00:20Z", "stop_date": "2022-12-31T23:58:03Z", "units": "cm\u207b\u00b3", "xmlid": "solo_his_comp10min_C5_nerr"}, "solo_his_comp10min_C5_nqf": {"__spz_name__": "C5 density quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_his_comp10min_C5_nqf", "dataset": "solo-his-comp10min", "is_public": "True", "name": "C5 density quality", "start_date": "2022-01-19T00:00:20Z", "stop_date": "2022-12-31T23:58:03Z", "xmlid": "solo_his_comp10min_C5_nqf"}, "solo_his_comp10min_C5_ths": {"__spz_name__": "C5 v_thermal", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_his_comp10min_C5_ths", "dataset": "solo-his-comp10min", "is_public": "True", "name": "C5 v_thermal", "start_date": "2022-01-19T00:00:20Z", "stop_date": "2022-12-31T23:58:03Z", "units": "km/s", "xmlid": "solo_his_comp10min_C5_ths"}, "solo_his_comp10min_C5_thserr": {"__spz_name__": "C5 v_thermal err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_his_comp10min_C5_thserr", "dataset": "solo-his-comp10min", "is_public": "True", "name": "C5 v_thermal err", "start_date": "2022-01-19T00:00:20Z", "stop_date": "2022-12-31T23:58:03Z", "units": "km/s", "xmlid": "solo_his_comp10min_C5_thserr"}, "solo_his_comp10min_C5_thsqf": {"__spz_name__": "C5 v_thermal quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_his_comp10min_C5_thsqf", "dataset": "solo-his-comp10min", "is_public": "True", "name": "C5 v_thermal quality", "start_date": "2022-01-19T00:00:20Z", "stop_date": "2022-12-31T23:58:03Z", "xmlid": "solo_his_comp10min_C5_thsqf"}, "solo_his_comp10min_C5_v": {"__spz_name__": "C5 |v|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_his_comp10min_C5_v", "dataset": "solo-his-comp10min", "is_public": "True", "name": "C5 |v|", "start_date": "2022-01-19T00:00:20Z", "stop_date": "2022-12-31T23:58:03Z", "units": "km/s", "xmlid": "solo_his_comp10min_C5_v"}, "solo_his_comp10min_C5_verr": {"__spz_name__": "C5 |v| err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_his_comp10min_C5_verr", "dataset": "solo-his-comp10min", "is_public": "True", "name": "C5 |v| err", "start_date": "2022-01-19T00:00:20Z", "stop_date": "2022-12-31T23:58:03Z", "units": "km/s", "xmlid": "solo_his_comp10min_C5_verr"}, "solo_his_comp10min_C5_vqf": {"__spz_name__": "C5 |v| quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_his_comp10min_C5_vqf", "dataset": "solo-his-comp10min", "is_public": "True", "name": "C5 |v| quality", "start_date": "2022-01-19T00:00:20Z", "stop_date": "2022-12-31T23:58:03Z", "xmlid": "solo_his_comp10min_C5_vqf"}, "solo_his_comp10min_C6_C4_r": {"__spz_name__": "C6/C4 ratio", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_his_comp10min_C6_C4_r", "dataset": "solo-his-comp10min", "is_public": "True", "name": "C6/C4 ratio", "start_date": "2022-01-19T00:00:20Z", "stop_date": "2022-12-31T23:58:03Z", "units": "km/s", "xmlid": "solo_his_comp10min_C6_C4_r"}, "solo_his_comp10min_C6_C4_rerr": {"__spz_name__": "C6/C4 ratio err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_his_comp10min_C6_C4_rerr", "dataset": "solo-his-comp10min", "is_public": "True", "name": "C6/C4 ratio err", "start_date": "2022-01-19T00:00:20Z", "stop_date": "2022-12-31T23:58:03Z", "units": "km/s", "xmlid": "solo_his_comp10min_C6_C4_rerr"}, "solo_his_comp10min_C6_C4_rqf": {"__spz_name__": "C6/C4 ratio quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_his_comp10min_C6_C4_rqf", "dataset": "solo-his-comp10min", "is_public": "True", "name": "C6/C4 ratio quality", "start_date": "2022-01-19T00:00:20Z", "stop_date": "2022-12-31T23:58:03Z", "xmlid": "solo_his_comp10min_C6_C4_rqf"}, "solo_his_comp10min_C6_C5_r": {"__spz_name__": "C6/C5 ratio", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_his_comp10min_C6_C5_r", "dataset": "solo-his-comp10min", "is_public": "True", "name": "C6/C5 ratio", "start_date": "2022-01-19T00:00:20Z", "stop_date": "2022-12-31T23:58:03Z", "units": "km/s", "xmlid": "solo_his_comp10min_C6_C5_r"}, "solo_his_comp10min_C6_C5_rerr": {"__spz_name__": "C6/C5 ratio err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_his_comp10min_C6_C5_rerr", "dataset": "solo-his-comp10min", "is_public": "True", "name": "C6/C5 ratio err", "start_date": "2022-01-19T00:00:20Z", "stop_date": "2022-12-31T23:58:03Z", "units": "km/s", "xmlid": "solo_his_comp10min_C6_C5_rerr"}, "solo_his_comp10min_C6_C5_rqf": {"__spz_name__": "C6/C5 ratio quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_his_comp10min_C6_C5_rqf", "dataset": "solo-his-comp10min", "is_public": "True", "name": "C6/C5 ratio quality", "start_date": "2022-01-19T00:00:20Z", "stop_date": "2022-12-31T23:58:03Z", "xmlid": "solo_his_comp10min_C6_C5_rqf"}, "solo_his_comp10min_C_O_a": {"__spz_name__": "C/O abun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_his_comp10min_C_O_a", "dataset": "solo-his-comp10min", "is_public": "True", "name": "C/O abun", "start_date": "2022-01-19T00:00:20Z", "stop_date": "2022-12-31T23:58:03Z", "units": "km/s", "xmlid": "solo_his_comp10min_C_O_a"}, "solo_his_comp10min_C_O_aerr": {"__spz_name__": "C/O abun err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_his_comp10min_C_O_aerr", "dataset": "solo-his-comp10min", "is_public": "True", "name": "C/O abun err", "start_date": "2022-01-19T00:00:20Z", "stop_date": "2022-12-31T23:58:03Z", "units": "km/s", "xmlid": "solo_his_comp10min_C_O_aerr"}, "solo_his_comp10min_C_O_aqf": {"__spz_name__": "C/O abun quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_his_comp10min_C_O_aqf", "dataset": "solo-his-comp10min", "is_public": "True", "name": "C/O abun quality", "start_date": "2022-01-19T00:00:20Z", "stop_date": "2022-12-31T23:58:03Z", "xmlid": "solo_his_comp10min_C_O_aqf"}, "solo_his_comp10min_Fe10_n": {"__spz_name__": "Fe10 density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_his_comp10min_Fe10_n", "dataset": "solo-his-comp10min", "is_public": "True", "name": "Fe10 density", "start_date": "2022-01-19T00:00:20Z", "stop_date": "2022-12-31T23:58:03Z", "units": "cm\u207b\u00b3", "xmlid": "solo_his_comp10min_Fe10_n"}, "solo_his_comp10min_Fe10_nerr": {"__spz_name__": "Fe10 density err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_his_comp10min_Fe10_nerr", "dataset": "solo-his-comp10min", "is_public": "True", "name": "Fe10 density err", "start_date": "2022-01-19T00:00:20Z", "stop_date": "2022-12-31T23:58:03Z", "units": "cm\u207b\u00b3", "xmlid": "solo_his_comp10min_Fe10_nerr"}, "solo_his_comp10min_Fe10_nqf": {"__spz_name__": "Fe10 density quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_his_comp10min_Fe10_nqf", "dataset": "solo-his-comp10min", "is_public": "True", "name": "Fe10 density quality", "start_date": "2022-01-19T00:00:20Z", "stop_date": "2022-12-31T23:58:03Z", "xmlid": "solo_his_comp10min_Fe10_nqf"}, "solo_his_comp10min_Fe10_ths": {"__spz_name__": "Fe10 v_thermal", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_his_comp10min_Fe10_ths", "dataset": "solo-his-comp10min", "is_public": "True", "name": "Fe10 v_thermal", "start_date": "2022-01-19T00:00:20Z", "stop_date": "2022-12-31T23:58:03Z", "units": "km/s", "xmlid": "solo_his_comp10min_Fe10_ths"}, "solo_his_comp10min_Fe10_thserr": {"__spz_name__": "Fe10 v_thermal err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_his_comp10min_Fe10_thserr", "dataset": "solo-his-comp10min", "is_public": "True", "name": "Fe10 v_thermal err", "start_date": "2022-01-19T00:00:20Z", "stop_date": "2022-12-31T23:58:03Z", "units": "km/s", "xmlid": "solo_his_comp10min_Fe10_thserr"}, "solo_his_comp10min_Fe10_thsqf": {"__spz_name__": "Fe10 v_thermal quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_his_comp10min_Fe10_thsqf", "dataset": "solo-his-comp10min", "is_public": "True", "name": "Fe10 v_thermal quality", "start_date": "2022-01-19T00:00:20Z", "stop_date": "2022-12-31T23:58:03Z", "xmlid": "solo_his_comp10min_Fe10_thsqf"}, "solo_his_comp10min_Fe10_v": {"__spz_name__": "Fe10 |v|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_his_comp10min_Fe10_v", "dataset": "solo-his-comp10min", "is_public": "True", "name": "Fe10 |v|", "start_date": "2022-01-19T00:00:20Z", "stop_date": "2022-12-31T23:58:03Z", "units": "km/s", "xmlid": "solo_his_comp10min_Fe10_v"}, "solo_his_comp10min_Fe10_verr": {"__spz_name__": "Fe10 |v| err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_his_comp10min_Fe10_verr", "dataset": "solo-his-comp10min", "is_public": "True", "name": "Fe10 |v| err", "start_date": "2022-01-19T00:00:20Z", "stop_date": "2022-12-31T23:58:03Z", "units": "km/s", "xmlid": "solo_his_comp10min_Fe10_verr"}, "solo_his_comp10min_Fe10_vqf": {"__spz_name__": "Fe10 |v| quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_his_comp10min_Fe10_vqf", "dataset": "solo-his-comp10min", "is_public": "True", "name": "Fe10 |v| quality", "start_date": "2022-01-19T00:00:20Z", "stop_date": "2022-12-31T23:58:03Z", "xmlid": "solo_his_comp10min_Fe10_vqf"}, "solo_his_comp10min_Fe_O_a": {"__spz_name__": "Fe/O abun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_his_comp10min_Fe_O_a", "dataset": "solo-his-comp10min", "is_public": "True", "name": "Fe/O abun", "start_date": "2022-01-19T00:00:20Z", "stop_date": "2022-12-31T23:58:03Z", "units": "km/s", "xmlid": "solo_his_comp10min_Fe_O_a"}, "solo_his_comp10min_Fe_O_aerr": {"__spz_name__": "Fe/O abun err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_his_comp10min_Fe_O_aerr", "dataset": "solo-his-comp10min", "is_public": "True", "name": "Fe/O abun err", "start_date": "2022-01-19T00:00:20Z", "stop_date": "2022-12-31T23:58:03Z", "units": "km/s", "xmlid": "solo_his_comp10min_Fe_O_aerr"}, "solo_his_comp10min_Fe_O_aqf": {"__spz_name__": "Fe/O abun quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_his_comp10min_Fe_O_aqf", "dataset": "solo-his-comp10min", "is_public": "True", "name": "Fe/O abun quality", "start_date": "2022-01-19T00:00:20Z", "stop_date": "2022-12-31T23:58:03Z", "xmlid": "solo_his_comp10min_Fe_O_aqf"}, "solo_his_comp10min_He2_n": {"__spz_name__": "He2 density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_his_comp10min_He2_n", "dataset": "solo-his-comp10min", "is_public": "True", "name": "He2 density", "start_date": "2022-01-19T00:00:20Z", "stop_date": "2022-12-31T23:58:03Z", "units": "cm\u207b\u00b3", "xmlid": "solo_his_comp10min_He2_n"}, "solo_his_comp10min_He2_nerr": {"__spz_name__": "He2 density err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_his_comp10min_He2_nerr", "dataset": "solo-his-comp10min", "is_public": "True", "name": "He2 density err", "start_date": "2022-01-19T00:00:20Z", "stop_date": "2022-12-31T23:58:03Z", "units": "cm\u207b\u00b3", "xmlid": "solo_his_comp10min_He2_nerr"}, "solo_his_comp10min_He2_nqf": {"__spz_name__": "He2 density quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_his_comp10min_He2_nqf", "dataset": "solo-his-comp10min", "is_public": "True", "name": "He2 density quality", "start_date": "2022-01-19T00:00:20Z", "stop_date": "2022-12-31T23:58:03Z", "xmlid": "solo_his_comp10min_He2_nqf"}, "solo_his_comp10min_He2_ths": {"__spz_name__": "He2 v_thermal", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_his_comp10min_He2_ths", "dataset": "solo-his-comp10min", "is_public": "True", "name": "He2 v_thermal", "start_date": "2022-01-19T00:00:20Z", "stop_date": "2022-12-31T23:58:03Z", "units": "km/s", "xmlid": "solo_his_comp10min_He2_ths"}, "solo_his_comp10min_He2_thserr": {"__spz_name__": "He2 v_thermal err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_his_comp10min_He2_thserr", "dataset": "solo-his-comp10min", "is_public": "True", "name": "He2 v_thermal err", "start_date": "2022-01-19T00:00:20Z", "stop_date": "2022-12-31T23:58:03Z", "units": "km/s", "xmlid": "solo_his_comp10min_He2_thserr"}, "solo_his_comp10min_He2_thsqf": {"__spz_name__": "He2 v_thermal quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_his_comp10min_He2_thsqf", "dataset": "solo-his-comp10min", "is_public": "True", "name": "He2 v_thermal quality", "start_date": "2022-01-19T00:00:20Z", "stop_date": "2022-12-31T23:58:03Z", "xmlid": "solo_his_comp10min_He2_thsqf"}, "solo_his_comp10min_He2_v": {"__spz_name__": "He2 |v|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_his_comp10min_He2_v", "dataset": "solo-his-comp10min", "is_public": "True", "name": "He2 |v|", "start_date": "2022-01-19T00:00:20Z", "stop_date": "2022-12-31T23:58:03Z", "units": "km/s", "xmlid": "solo_his_comp10min_He2_v"}, "solo_his_comp10min_He2_verr": {"__spz_name__": "He2 |v| err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_his_comp10min_He2_verr", "dataset": "solo-his-comp10min", "is_public": "True", "name": "He2 |v| err", "start_date": "2022-01-19T00:00:20Z", "stop_date": "2022-12-31T23:58:03Z", "units": "km/s", "xmlid": "solo_his_comp10min_He2_verr"}, "solo_his_comp10min_He2_vqf": {"__spz_name__": "He2 |v| quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_his_comp10min_He2_vqf", "dataset": "solo-his-comp10min", "is_public": "True", "name": "He2 |v| quality", "start_date": "2022-01-19T00:00:20Z", "stop_date": "2022-12-31T23:58:03Z", "xmlid": "solo_his_comp10min_He2_vqf"}, "solo_his_comp10min_He_O_a": {"__spz_name__": "He/O abun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_his_comp10min_He_O_a", "dataset": "solo-his-comp10min", "is_public": "True", "name": "He/O abun", "start_date": "2022-01-19T00:00:20Z", "stop_date": "2022-12-31T23:58:03Z", "units": "km/s", "xmlid": "solo_his_comp10min_He_O_a"}, "solo_his_comp10min_He_O_aerr": {"__spz_name__": "He/O abun err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_his_comp10min_He_O_aerr", "dataset": "solo-his-comp10min", "is_public": "True", "name": "He/O abun err", "start_date": "2022-01-19T00:00:20Z", "stop_date": "2022-12-31T23:58:03Z", "units": "km/s", "xmlid": "solo_his_comp10min_He_O_aerr"}, "solo_his_comp10min_He_O_aqf": {"__spz_name__": "He/O abun quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_his_comp10min_He_O_aqf", "dataset": "solo-his-comp10min", "is_public": "True", "name": "He/O abun quality", "start_date": "2022-01-19T00:00:20Z", "stop_date": "2022-12-31T23:58:03Z", "xmlid": "solo_his_comp10min_He_O_aqf"}, "solo_his_comp10min_Mg_O_a": {"__spz_name__": "Mg/O abun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_his_comp10min_Mg_O_a", "dataset": "solo-his-comp10min", "is_public": "True", "name": "Mg/O abun", "start_date": "2022-01-19T00:00:20Z", "stop_date": "2022-12-31T23:58:03Z", "units": "km/s", "xmlid": "solo_his_comp10min_Mg_O_a"}, "solo_his_comp10min_Mg_O_aerr": {"__spz_name__": "Mg/O abun err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_his_comp10min_Mg_O_aerr", "dataset": "solo-his-comp10min", "is_public": "True", "name": "Mg/O abun err", "start_date": "2022-01-19T00:00:20Z", "stop_date": "2022-12-31T23:58:03Z", "units": "km/s", "xmlid": "solo_his_comp10min_Mg_O_aerr"}, "solo_his_comp10min_Mg_O_aqf": {"__spz_name__": "Mg/O abun quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_his_comp10min_Mg_O_aqf", "dataset": "solo-his-comp10min", "is_public": "True", "name": "Mg/O abun quality", "start_date": "2022-01-19T00:00:20Z", "stop_date": "2022-12-31T23:58:03Z", "xmlid": "solo_his_comp10min_Mg_O_aqf"}, "solo_his_comp10min_N_O_a": {"__spz_name__": "N/O abun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_his_comp10min_N_O_a", "dataset": "solo-his-comp10min", "is_public": "True", "name": "N/O abun", "start_date": "2022-01-19T00:00:20Z", "stop_date": "2022-12-31T23:58:03Z", "units": "km/s", "xmlid": "solo_his_comp10min_N_O_a"}, "solo_his_comp10min_N_O_aerr": {"__spz_name__": "N/O abun err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_his_comp10min_N_O_aerr", "dataset": "solo-his-comp10min", "is_public": "True", "name": "N/O abun err", "start_date": "2022-01-19T00:00:20Z", "stop_date": "2022-12-31T23:58:03Z", "units": "km/s", "xmlid": "solo_his_comp10min_N_O_aerr"}, "solo_his_comp10min_N_O_aqf": {"__spz_name__": "N/O abun quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_his_comp10min_N_O_aqf", "dataset": "solo-his-comp10min", "is_public": "True", "name": "N/O abun quality", "start_date": "2022-01-19T00:00:20Z", "stop_date": "2022-12-31T23:58:03Z", "xmlid": "solo_his_comp10min_N_O_aqf"}, "solo_his_comp10min_Ne_O_a": {"__spz_name__": "Ne/O abun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_his_comp10min_Ne_O_a", "dataset": "solo-his-comp10min", "is_public": "True", "name": "Ne/O abun", "start_date": "2022-01-19T00:00:20Z", "stop_date": "2022-12-31T23:58:03Z", "units": "km/s", "xmlid": "solo_his_comp10min_Ne_O_a"}, "solo_his_comp10min_Ne_O_aerr": {"__spz_name__": "Ne/O abun err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_his_comp10min_Ne_O_aerr", "dataset": "solo-his-comp10min", "is_public": "True", "name": "Ne/O abun err", "start_date": "2022-01-19T00:00:20Z", "stop_date": "2022-12-31T23:58:03Z", "units": "km/s", "xmlid": "solo_his_comp10min_Ne_O_aerr"}, "solo_his_comp10min_Ne_O_aqf": {"__spz_name__": "Ne/O abun quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_his_comp10min_Ne_O_aqf", "dataset": "solo-his-comp10min", "is_public": "True", "name": "Ne/O abun quality", "start_date": "2022-01-19T00:00:20Z", "stop_date": "2022-12-31T23:58:03Z", "xmlid": "solo_his_comp10min_Ne_O_aqf"}, "solo_his_comp10min_O6_n": {"__spz_name__": "O6 density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_his_comp10min_O6_n", "dataset": "solo-his-comp10min", "is_public": "True", "name": "O6 density", "start_date": "2022-01-19T00:00:20Z", "stop_date": "2022-12-31T23:58:03Z", "units": "cm\u207b\u00b3", "xmlid": "solo_his_comp10min_O6_n"}, "solo_his_comp10min_O6_nerr": {"__spz_name__": "O6 density err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_his_comp10min_O6_nerr", "dataset": "solo-his-comp10min", "is_public": "True", "name": "O6 density err", "start_date": "2022-01-19T00:00:20Z", "stop_date": "2022-12-31T23:58:03Z", "units": "cm\u207b\u00b3", "xmlid": "solo_his_comp10min_O6_nerr"}, "solo_his_comp10min_O6_nqf": {"__spz_name__": "O6 density quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_his_comp10min_O6_nqf", "dataset": "solo-his-comp10min", "is_public": "True", "name": "O6 density quality", "start_date": "2022-01-19T00:00:20Z", "stop_date": "2022-12-31T23:58:03Z", "xmlid": "solo_his_comp10min_O6_nqf"}, "solo_his_comp10min_O6_ths": {"__spz_name__": "O6 v_thermal", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_his_comp10min_O6_ths", "dataset": "solo-his-comp10min", "is_public": "True", "name": "O6 v_thermal", "start_date": "2022-01-19T00:00:20Z", "stop_date": "2022-12-31T23:58:03Z", "units": "km/s", "xmlid": "solo_his_comp10min_O6_ths"}, "solo_his_comp10min_O6_thserr": {"__spz_name__": "O6 v_thermal err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_his_comp10min_O6_thserr", "dataset": "solo-his-comp10min", "is_public": "True", "name": "O6 v_thermal err", "start_date": "2022-01-19T00:00:20Z", "stop_date": "2022-12-31T23:58:03Z", "units": "km/s", "xmlid": "solo_his_comp10min_O6_thserr"}, "solo_his_comp10min_O6_thsqf": {"__spz_name__": "O6 v_thermal quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_his_comp10min_O6_thsqf", "dataset": "solo-his-comp10min", "is_public": "True", "name": "O6 v_thermal quality", "start_date": "2022-01-19T00:00:20Z", "stop_date": "2022-12-31T23:58:03Z", "xmlid": "solo_his_comp10min_O6_thsqf"}, "solo_his_comp10min_O6_v": {"__spz_name__": "O6 |v|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_his_comp10min_O6_v", "dataset": "solo-his-comp10min", "is_public": "True", "name": "O6 |v|", "start_date": "2022-01-19T00:00:20Z", "stop_date": "2022-12-31T23:58:03Z", "units": "km/s", "xmlid": "solo_his_comp10min_O6_v"}, "solo_his_comp10min_O6_verr": {"__spz_name__": "O6 |v| err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_his_comp10min_O6_verr", "dataset": "solo-his-comp10min", "is_public": "True", "name": "O6 |v| err", "start_date": "2022-01-19T00:00:20Z", "stop_date": "2022-12-31T23:58:03Z", "units": "km/s", "xmlid": "solo_his_comp10min_O6_verr"}, "solo_his_comp10min_O6_vqf": {"__spz_name__": "O6 |v| quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_his_comp10min_O6_vqf", "dataset": "solo-his-comp10min", "is_public": "True", "name": "O6 |v| quality", "start_date": "2022-01-19T00:00:20Z", "stop_date": "2022-12-31T23:58:03Z", "xmlid": "solo_his_comp10min_O6_vqf"}, "solo_his_comp10min_O7_O6_r": {"__spz_name__": "O7/O6 ratio", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_his_comp10min_O7_O6_r", "dataset": "solo-his-comp10min", "is_public": "True", "name": "O7/O6 ratio", "start_date": "2022-01-19T00:00:20Z", "stop_date": "2022-12-31T23:58:03Z", "units": "km/s", "xmlid": "solo_his_comp10min_O7_O6_r"}, "solo_his_comp10min_O7_O6_rerr": {"__spz_name__": "O7/O6 ratio err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_his_comp10min_O7_O6_rerr", "dataset": "solo-his-comp10min", "is_public": "True", "name": "O7/O6 ratio err", "start_date": "2022-01-19T00:00:20Z", "stop_date": "2022-12-31T23:58:03Z", "units": "km/s", "xmlid": "solo_his_comp10min_O7_O6_rerr"}, "solo_his_comp10min_O7_O6_rqf": {"__spz_name__": "O7/O6 ratio quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_his_comp10min_O7_O6_rqf", "dataset": "solo-his-comp10min", "is_public": "True", "name": "O7/O6 ratio quality", "start_date": "2022-01-19T00:00:20Z", "stop_date": "2022-12-31T23:58:03Z", "xmlid": "solo_his_comp10min_O7_O6_rqf"}, "solo_his_comp10min_S_O_a": {"__spz_name__": "S/O abun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_his_comp10min_S_O_a", "dataset": "solo-his-comp10min", "is_public": "True", "name": "S/O abun", "start_date": "2022-01-19T00:00:20Z", "stop_date": "2022-12-31T23:58:03Z", "units": "km/s", "xmlid": "solo_his_comp10min_S_O_a"}, "solo_his_comp10min_S_O_aerr": {"__spz_name__": "S/O abun err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_his_comp10min_S_O_aerr", "dataset": "solo-his-comp10min", "is_public": "True", "name": "S/O abun err", "start_date": "2022-01-19T00:00:20Z", "stop_date": "2022-12-31T23:58:03Z", "units": "km/s", "xmlid": "solo_his_comp10min_S_O_aerr"}, "solo_his_comp10min_S_O_aqf": {"__spz_name__": "S/O abun quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_his_comp10min_S_O_aqf", "dataset": "solo-his-comp10min", "is_public": "True", "name": "S/O abun quality", "start_date": "2022-01-19T00:00:20Z", "stop_date": "2022-12-31T23:58:03Z", "xmlid": "solo_his_comp10min_S_O_aqf"}, "solo_his_comp10min_Si_O_a": {"__spz_name__": "Si/O abun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_his_comp10min_Si_O_a", "dataset": "solo-his-comp10min", "is_public": "True", "name": "Si/O abun", "start_date": "2022-01-19T00:00:20Z", "stop_date": "2022-12-31T23:58:03Z", "units": "km/s", "xmlid": "solo_his_comp10min_Si_O_a"}, "solo_his_comp10min_Si_O_aerr": {"__spz_name__": "Si/O abun err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_his_comp10min_Si_O_aerr", "dataset": "solo-his-comp10min", "is_public": "True", "name": "Si/O abun err", "start_date": "2022-01-19T00:00:20Z", "stop_date": "2022-12-31T23:58:03Z", "units": "km/s", "xmlid": "solo_his_comp10min_Si_O_aerr"}, "solo_his_comp10min_Si_O_aqf": {"__spz_name__": "Si/O abun quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_his_comp10min_Si_O_aqf", "dataset": "solo-his-comp10min", "is_public": "True", "name": "Si/O abun quality", "start_date": "2022-01-19T00:00:20Z", "stop_date": "2022-12-31T23:58:03Z", "xmlid": "solo_his_comp10min_Si_O_aqf"}, "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Solar_Orbiter/HIS/solo-his-comp10min", "start_date": "2022-01-19T00:00:20Z", "stop_date": "2022-12-31T23:58:03Z", "target": "Heliosphere.Inner", "xmlid": "solo-his-comp10min"}, "xmlid": "solo-his-l3"}, "__spz_name__": "SWA/HIS", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "SolO_his", "att": "auto/SolO_his", "desc": "Heavy Ion Sensor
EnergeticParticleInstrument", "is_public": "True", "name": "SWA/HIS", "xmlid": "SolO_his"}, "SWAPAS": {"L1": {"__spz_name__": "L1", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "solo-pas-l1", "is_public": "True", "name": "L1", "so_pas_3d": {"__spz_name__": "3D", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "so-pas-3d", "att": "auto/so-pas-3d", "dataSource": "IRAP", "desc": "
Sampling: 4S
Provider: IRAP", "group": "PAS", "is_public": "True", "lastModificationDate": "2024-10-07T06:00:06Z", "lastUpdate": "2024-10-03T06:40:17Z", "measurement_type": "ThermalPlasma", "name": "3D", "pas_2d_cem": {"__spz_name__": "cnts sum on cem; elev/energy : 2D", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pas_2d_cem", "dataset": "so-pas-3d", "display_type": "spectrogram", "is_public": "True", "name": "cnts sum on cem; elev/energy : 2D", "start_date": "2000-01-01T00:00:00Z", "stop_date": "2024-09-24T09:29:57Z", "template": "pas_2d_cem_##min##_##max##", "ucd": "phys.flux;phys.atmol.ionStage", "units": "cnts", "xmlid": "pas_2d_cem"}, "pas_2d_elevation": {"__spz_name__": "cnts sum on elev; cem/energy : 2D", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pas_2d_elevation", "dataset": "so-pas-3d", "display_type": "spectrogram", "is_public": "True", "name": "cnts sum on elev; cem/energy : 2D", "start_date": "2000-01-01T00:00:00Z", "stop_date": "2024-09-24T09:29:57Z", "template": "pas_2d_elevation_##min##_##max##", "ucd": "phys.flux;phys.atmol.ionStage", "units": "cnts", "xmlid": "pas_2d_elevation"}, "pas_2d_energy": {"__spz_name__": "cnts sum on energy; cem/elev : 2D", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pas_2d_energy", "dataset": "so-pas-3d", "display_type": "spectrogram", "is_public": "True", "name": "cnts sum on energy; cem/elev : 2D", "start_date": "2000-01-01T00:00:00Z", "stop_date": "2024-09-24T09:29:57Z", "template": "pas_2d_energy_##min##_##max##", "ucd": "phys.flux;phys.atmol.ionStage", "units": "cnts", "xmlid": "pas_2d_energy"}, "pas_3d_cem_nb": {"__spz_name__": "cem : number", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pas_3d_cem_nb", "dataset": "so-pas-3d", "is_public": "True", "name": "cem : number", "start_date": "2000-01-01T00:00:00Z", "stop_date": "2024-09-24T09:29:57Z", "xmlid": "pas_3d_cem_nb"}, "pas_3d_e0": {"__spz_name__": "energy : first", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pas_3d_e0", "dataset": "so-pas-3d", "is_public": "True", "name": "energy : first", "start_date": "2000-01-01T00:00:00Z", "stop_date": "2024-09-24T09:29:57Z", "xmlid": "pas_3d_e0"}, "pas_3d_e_nb": {"__spz_name__": "energy : number", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pas_3d_e_nb", "dataset": "so-pas-3d", "is_public": "True", "name": "energy : number", "start_date": "2000-01-01T00:00:00Z", "stop_date": "2024-09-24T09:29:57Z", "xmlid": "pas_3d_e_nb"}, "pas_3d_el0": {"__spz_name__": "elevation : first", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pas_3d_el0", "dataset": "so-pas-3d", "is_public": "True", "name": "elevation : first", "start_date": "2000-01-01T00:00:00Z", "stop_date": "2024-09-24T09:29:57Z", "xmlid": "pas_3d_el0"}, "pas_3d_el_nb": {"__spz_name__": "elevation : number", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pas_3d_el_nb", "dataset": "so-pas-3d", "is_public": "True", "name": "elevation : number", "start_date": "2000-01-01T00:00:00Z", "stop_date": "2024-09-24T09:29:57Z", "xmlid": "pas_3d_el_nb"}, "pas_3d_max_cem": {"__spz_name__": "max cnt : cem", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pas_3d_max_cem", "dataset": "so-pas-3d", "is_public": "True", "name": "max cnt : cem", "start_date": "2000-01-01T00:00:00Z", "stop_date": "2024-09-24T09:29:57Z", "xmlid": "pas_3d_max_cem"}, "pas_3d_max_e": {"__spz_name__": "max cnt : energy", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pas_3d_max_e", "dataset": "so-pas-3d", "is_public": "True", "name": "max cnt : energy", "start_date": "2000-01-01T00:00:00Z", "stop_date": "2024-09-24T09:29:57Z", "xmlid": "pas_3d_max_e"}, "pas_3d_max_el": {"__spz_name__": "max cnt : elevation", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pas_3d_max_el", "dataset": "so-pas-3d", "is_public": "True", "name": "max cnt : elevation", "start_date": "2000-01-01T00:00:00Z", "stop_date": "2024-09-24T09:29:57Z", "xmlid": "pas_3d_max_el"}, "pas_3d_spec": {"__spz_name__": "cnts per cem ", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pas_3d_spec", "dataset": "so-pas-3d", "display_type": "spectrogram", "is_public": "True", "name": "cnts per cem ", "start_date": "2000-01-01T00:00:00Z", "stop_date": "2024-09-24T09:29:57Z", "template": "pas_3d_spec_##anode##", "ucd": "phys.flux;phys.atmol.ionStage", "units": "cnts", "xmlid": "pas_3d_spec"}, "pas_3d_src": {"__spz_name__": "source", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pas_3d_src", "dataset": "so-pas-3d", "is_public": "True", "name": "source", "start_date": "2000-01-01T00:00:00Z", "stop_date": "2024-09-24T09:29:57Z", "xmlid": "pas_3d_src"}, "pas_3d_sum": {"__spz_name__": "cnts sum per cem ", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pas_3d_sum", "dataset": "so-pas-3d", "is_public": "True", "name": "cnts sum per cem ", "start_date": "2000-01-01T00:00:00Z", "stop_date": "2024-09-24T09:29:57Z", "template": "pas_3d_sum_##anode##", "ucd": "phys.flux;phys.atmol.ionStage", "units": "cnts", "xmlid": "pas_3d_sum"}, "pas_3d_tot": {"__spz_name__": "total cnts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pas_3d_tot", "dataset": "so-pas-3d", "is_public": "True", "name": "total cnts", "start_date": "2000-01-01T00:00:00Z", "stop_date": "2024-09-24T09:29:57Z", "ucd": "phys.flux;phys.atmol.ionStage", "units": "cnts", "xmlid": "pas_3d_tot"}, "processing_level": "Calibrated", "restriction": "2024-07-06T23:59:59.999Z", "sampling": "4S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Solar_Orbiter/PAS/so-pas-3d", "start_date": "2000-01-01T00:00:00Z", "stop_date": "2024-09-24T09:29:57Z", "target": "Heliosphere.Inner", "timeRestriction": "2024-07-09T23:59:59.999Z", "xmlid": "so-pas-3d"}, "so_pas_hk": {"__spz_name__": "housekeeping", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "so-pas-hk", "att": "auto/so-pas-hk", "dataSource": "IRAP", "desc": "
Sampling: 10S
Provider: IRAP", "group": "PAS", "is_public": "True", "lastModificationDate": "2024-10-07T05:59:57Z", "lastUpdate": "2024-10-07T05:59:57Z", "measurement_type": "ThermalPlasma", "name": "housekeeping", "pashk_28v_prime_curr": {"__spz_name__": "+28V primary curr.", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pashk_28v_prime_curr", "dataset": "so-pas-hk", "is_public": "True", "name": "+28V primary curr.", "start_date": "2012-06-18T15:59:56Z", "stop_date": "2024-10-06T22:47:15Z", "units": "mA", "xmlid": "pashk_28v_prime_curr"}, "pashk_anl_hv": {"__spz_name__": "analyzer HV", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pashk_anl_hv", "dataset": "so-pas-hk", "is_public": "True", "name": "analyzer HV", "start_date": "2012-06-18T15:59:56Z", "stop_date": "2024-10-06T22:47:15Z", "units": "V", "xmlid": "pashk_anl_hv"}, "pashk_anl_temp": {"__spz_name__": "temp. analyzer", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pashk_anl_temp", "dataset": "so-pas-hk", "is_public": "True", "name": "temp. analyzer", "start_date": "2012-06-18T15:59:56Z", "stop_date": "2024-10-06T22:47:15Z", "units": "C", "xmlid": "pashk_anl_temp"}, "pashk_bot_hv": {"__spz_name__": "defl. bot HV", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pashk_bot_hv", "dataset": "so-pas-hk", "is_public": "True", "name": "defl. bot HV", "start_date": "2012-06-18T15:59:56Z", "stop_date": "2024-10-06T22:47:15Z", "units": "V", "xmlid": "pashk_bot_hv"}, "pashk_cem_24v": {"__spz_name__": "+24V for CEM", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pashk_cem_24v", "dataset": "so-pas-hk", "is_public": "True", "name": "+24V for CEM", "start_date": "2012-06-18T15:59:56Z", "stop_date": "2024-10-06T22:47:15Z", "units": "V", "xmlid": "pashk_cem_24v"}, "pashk_cem_24v_curr": {"__spz_name__": "+24V for CEM curr.", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pashk_cem_24v_curr", "dataset": "so-pas-hk", "is_public": "True", "name": "+24V for CEM curr.", "start_date": "2012-06-18T15:59:56Z", "stop_date": "2024-10-06T22:47:15Z", "units": "mA", "xmlid": "pashk_cem_24v_curr"}, "pashk_cem_5v": {"__spz_name__": "+5V for CEM", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pashk_cem_5v", "dataset": "so-pas-hk", "is_public": "True", "name": "+5V for CEM", "start_date": "2012-06-18T15:59:56Z", "stop_date": "2024-10-06T22:47:15Z", "units": "V", "xmlid": "pashk_cem_5v"}, "pashk_cem_5v_curr": {"__spz_name__": "+5V for CEM curr.", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pashk_cem_5v_curr", "dataset": "so-pas-hk", "is_public": "True", "name": "+5V for CEM curr.", "start_date": "2012-06-18T15:59:56Z", "stop_date": "2024-10-06T22:47:15Z", "units": "mA", "xmlid": "pashk_cem_5v_curr"}, "pashk_cem_curr_centr": {"__spz_name__": "centr. CEM curr.", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pashk_cem_curr_centr", "dataset": "so-pas-hk", "is_public": "True", "name": "centr. CEM curr.", "start_date": "2012-06-18T15:59:56Z", "stop_date": "2024-10-06T22:47:15Z", "units": "uA", "xmlid": "pashk_cem_curr_centr"}, "pashk_cem_curr_perif": {"__spz_name__": "periph. CEM curr.", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pashk_cem_curr_perif", "dataset": "so-pas-hk", "is_public": "True", "name": "periph. CEM curr.", "start_date": "2012-06-18T15:59:56Z", "stop_date": "2024-10-06T22:47:15Z", "units": "uA", "xmlid": "pashk_cem_curr_perif"}, "pashk_cem_hv_centr": {"__spz_name__": "centr. CEM HV", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pashk_cem_hv_centr", "dataset": "so-pas-hk", "is_public": "True", "name": "centr. CEM HV", "start_date": "2012-06-18T15:59:56Z", "stop_date": "2024-10-06T22:47:15Z", "units": "V", "xmlid": "pashk_cem_hv_centr"}, "pashk_cem_hv_perif": {"__spz_name__": "periph. CEM HV", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pashk_cem_hv_perif", "dataset": "so-pas-hk", "is_public": "True", "name": "periph. CEM HV", "start_date": "2012-06-18T15:59:56Z", "stop_date": "2024-10-06T22:47:15Z", "units": "V", "xmlid": "pashk_cem_hv_perif"}, "pashk_cem_temp_centr": {"__spz_name__": "centr. CEM temp.", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pashk_cem_temp_centr", "dataset": "so-pas-hk", "is_public": "True", "name": "centr. CEM temp.", "start_date": "2012-06-18T15:59:56Z", "stop_date": "2024-10-06T22:47:15Z", "units": "C", "xmlid": "pashk_cem_temp_centr"}, "pashk_cem_temp_perif": {"__spz_name__": "periph. CEM temp.", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pashk_cem_temp_perif", "dataset": "so-pas-hk", "is_public": "True", "name": "periph. CEM temp.", "start_date": "2012-06-18T15:59:56Z", "stop_date": "2024-10-06T22:47:15Z", "units": "C", "xmlid": "pashk_cem_temp_perif"}, "pashk_dcdc_temp": {"__spz_name__": "temp. DC-DC", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pashk_dcdc_temp", "dataset": "so-pas-hk", "is_public": "True", "name": "temp. DC-DC", "start_date": "2012-06-18T15:59:56Z", "stop_date": "2024-10-06T22:47:15Z", "units": "C", "xmlid": "pashk_dcdc_temp"}, "pashk_fpga_1v5": {"__spz_name__": "+1.5V for FPGA", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pashk_fpga_1v5", "dataset": "so-pas-hk", "is_public": "True", "name": "+1.5V for FPGA", "start_date": "2012-06-18T15:59:56Z", "stop_date": "2024-10-06T22:47:15Z", "units": "V", "xmlid": "pashk_fpga_1v5"}, "pashk_fpga_1v5_curr": {"__spz_name__": "+1.5V for FPGA curr.", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pashk_fpga_1v5_curr", "dataset": "so-pas-hk", "is_public": "True", "name": "+1.5V for FPGA curr.", "start_date": "2012-06-18T15:59:56Z", "stop_date": "2024-10-06T22:47:15Z", "units": "mA", "xmlid": "pashk_fpga_1v5_curr"}, "pashk_fpga_3v5": {"__spz_name__": "+3.5V for FPGA", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pashk_fpga_3v5", "dataset": "so-pas-hk", "is_public": "True", "name": "+3.5V for FPGA", "start_date": "2012-06-18T15:59:56Z", "stop_date": "2024-10-06T22:47:15Z", "units": "V", "xmlid": "pashk_fpga_3v5"}, "pashk_fpga_3v5_curr": {"__spz_name__": "+3.5V for FPGA curr.", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pashk_fpga_3v5_curr", "dataset": "so-pas-hk", "is_public": "True", "name": "+3.5V for FPGA curr.", "start_date": "2012-06-18T15:59:56Z", "stop_date": "2024-10-06T22:47:15Z", "units": "mA", "xmlid": "pashk_fpga_3v5_curr"}, "pashk_fpga_temp": {"__spz_name__": "temp. FPGA", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pashk_fpga_temp", "dataset": "so-pas-hk", "is_public": "True", "name": "temp. FPGA", "start_date": "2012-06-18T15:59:56Z", "stop_date": "2024-10-06T22:47:15Z", "units": "C", "xmlid": "pashk_fpga_temp"}, "pashk_heat1_temp": {"__spz_name__": "temp. heater1", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pashk_heat1_temp", "dataset": "so-pas-hk", "is_public": "True", "name": "temp. heater1", "start_date": "2012-06-18T15:59:56Z", "stop_date": "2024-10-06T22:47:15Z", "units": "C", "xmlid": "pashk_heat1_temp"}, "pashk_heat2_temp": {"__spz_name__": "temp. heater2", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pashk_heat2_temp", "dataset": "so-pas-hk", "is_public": "True", "name": "temp. heater2", "start_date": "2012-06-18T15:59:56Z", "stop_date": "2024-10-06T22:47:15Z", "units": "C", "xmlid": "pashk_heat2_temp"}, "pashk_heat3_temp": {"__spz_name__": "temp. heater3", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pashk_heat3_temp", "dataset": "so-pas-hk", "is_public": "True", "name": "temp. heater3", "start_date": "2012-06-18T15:59:56Z", "stop_date": "2024-10-06T22:47:15Z", "units": "C", "xmlid": "pashk_heat3_temp"}, "pashk_hvps_m12v": {"__spz_name__": "-12V for HVPS", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pashk_hvps_m12v", "dataset": "so-pas-hk", "is_public": "True", "name": "-12V for HVPS", "start_date": "2012-06-18T15:59:56Z", "stop_date": "2024-10-06T22:47:15Z", "units": "V", "xmlid": "pashk_hvps_m12v"}, "pashk_hvps_m12v_curr": {"__spz_name__": "-12V for HVPS curr.", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pashk_hvps_m12v_curr", "dataset": "so-pas-hk", "is_public": "True", "name": "-12V for HVPS curr.", "start_date": "2012-06-18T15:59:56Z", "stop_date": "2024-10-06T22:47:15Z", "units": "mA", "xmlid": "pashk_hvps_m12v_curr"}, "pashk_hvps_p12v": {"__spz_name__": "+12V for HVPS", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pashk_hvps_p12v", "dataset": "so-pas-hk", "is_public": "True", "name": "+12V for HVPS", "start_date": "2012-06-18T15:59:56Z", "stop_date": "2024-10-06T22:47:15Z", "units": "V", "xmlid": "pashk_hvps_p12v"}, "pashk_hvps_p12v_curr": {"__spz_name__": "+12V for HVPS curr.", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pashk_hvps_p12v_curr", "dataset": "so-pas-hk", "is_public": "True", "name": "+12V for HVPS curr.", "start_date": "2012-06-18T15:59:56Z", "stop_date": "2024-10-06T22:47:15Z", "units": "mA", "xmlid": "pashk_hvps_p12v_curr"}, "pashk_hvps_temp": {"__spz_name__": "temp. HVPS", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pashk_hvps_temp", "dataset": "so-pas-hk", "is_public": "True", "name": "temp. HVPS", "start_date": "2012-06-18T15:59:56Z", "stop_date": "2024-10-06T22:47:15Z", "units": "C", "xmlid": "pashk_hvps_temp"}, "pashk_main_mhv": {"__spz_name__": "main - HV", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pashk_main_mhv", "dataset": "so-pas-hk", "is_public": "True", "name": "main - HV", "start_date": "2012-06-18T15:59:56Z", "stop_date": "2024-10-06T22:47:15Z", "units": "V", "xmlid": "pashk_main_mhv"}, "pashk_main_phv": {"__spz_name__": "main + HV", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pashk_main_phv", "dataset": "so-pas-hk", "is_public": "True", "name": "main + HV", "start_date": "2012-06-18T15:59:56Z", "stop_date": "2024-10-06T22:47:15Z", "units": "V", "xmlid": "pashk_main_phv"}, "pashk_top_hv": {"__spz_name__": "defl. top HV", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pashk_top_hv", "dataset": "so-pas-hk", "is_public": "True", "name": "defl. top HV", "start_date": "2012-06-18T15:59:56Z", "stop_date": "2024-10-06T22:47:15Z", "units": "V", "xmlid": "pashk_top_hv"}, "pashk_topcap_hv": {"__spz_name__": "top cap HV", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pashk_topcap_hv", "dataset": "so-pas-hk", "is_public": "True", "name": "top cap HV", "start_date": "2012-06-18T15:59:56Z", "stop_date": "2024-10-06T22:47:15Z", "units": "V", "xmlid": "pashk_topcap_hv"}, "processing_level": "Calibrated", "restriction": "2024-07-06T23:59:59.999Z", "sampling": "10S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Solar_Orbiter/PAS/so-pas-hk", "start_date": "2012-06-18T15:59:56Z", "stop_date": "2024-10-06T22:47:15Z", "target": "Heliosphere.Inner", "timeRestriction": "2024-07-09T23:59:59.999Z", "xmlid": "so-pas-hk"}, "so_pas_mom": {"__spz_name__": "onboard moments", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "so-pas-mom", "att": "auto/so-pas-mom", "dataSource": "IRAP", "desc": "
MinSampling: 0.25S; MaxSampling: 10S
Provider: IRAP", "group": "PAS", "is_public": "True", "lastModificationDate": "2024-10-07T06:00:02Z", "lastUpdate": "2024-10-07T06:00:02Z", "maxSampling": "10S", "measurement_type": "ThermalPlasma", "name": "onboard moments", "pas_mom_n": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pas_mom_n", "dataset": "so-pas-mom", "is_public": "True", "name": "density", "start_date": "2000-01-01T00:00:00Z", "stop_date": "2024-10-06T22:47:03Z", "units": "cm\u207b\u00b3", "xmlid": "pas_mom_n"}, "pas_mom_press": {"__spz_name__": "pressure_s/c", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pas_mom_press", "dataset": "so-pas-mom", "display_type": "timeseries", "is_public": "True", "name": "pressure_s/c", "pas_mom_press0": {"__spz_name__": "press_xx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "pas_mom_press(0)", "dataset": "so-pas-mom", "index1": "0", "is_public": "True", "name": "press_xx", "parameter": "pas_mom_press", "start_date": "2000-01-01T00:00:00Z", "stop_date": "2024-10-06T22:47:03Z", "xmlid": "pas_mom_press(0)"}, "pas_mom_press1": {"__spz_name__": "press_yy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "pas_mom_press(1)", "dataset": "so-pas-mom", "index1": "1", "is_public": "True", "name": "press_yy", "parameter": "pas_mom_press", "start_date": "2000-01-01T00:00:00Z", "stop_date": "2024-10-06T22:47:03Z", "xmlid": "pas_mom_press(1)"}, "pas_mom_press2": {"__spz_name__": "press_zz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "pas_mom_press(2)", "dataset": "so-pas-mom", "index1": "2", "is_public": "True", "name": "press_zz", "parameter": "pas_mom_press", "start_date": "2000-01-01T00:00:00Z", "stop_date": "2024-10-06T22:47:03Z", "xmlid": "pas_mom_press(2)"}, "pas_mom_press3": {"__spz_name__": "press_xy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "pas_mom_press(3)", "dataset": "so-pas-mom", "index1": "3", "is_public": "True", "name": "press_xy", "parameter": "pas_mom_press", "start_date": "2000-01-01T00:00:00Z", "stop_date": "2024-10-06T22:47:03Z", "xmlid": "pas_mom_press(3)"}, "pas_mom_press4": {"__spz_name__": "press_xz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "pas_mom_press(4)", "dataset": "so-pas-mom", "index1": "4", "is_public": "True", "name": "press_xz", "parameter": "pas_mom_press", "start_date": "2000-01-01T00:00:00Z", "stop_date": "2024-10-06T22:47:03Z", "xmlid": "pas_mom_press(4)"}, "pas_mom_press5": {"__spz_name__": "press_yz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "pas_mom_press(5)", "dataset": "so-pas-mom", "index1": "5", "is_public": "True", "name": "press_yz", "parameter": "pas_mom_press", "start_date": "2000-01-01T00:00:00Z", "stop_date": "2024-10-06T22:47:03Z", "xmlid": "pas_mom_press(5)"}, "size": "6", "start_date": "2000-01-01T00:00:00Z", "stop_date": "2024-10-06T22:47:03Z", "units": "J*cm\u207b\u00b3", "xmlid": "pas_mom_press"}, "pas_mom_t": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pas_mom_t", "dataset": "so-pas-mom", "display_type": "timeseries", "is_public": "True", "name": "temperature", "start_date": "2000-01-01T00:00:00Z", "stop_date": "2024-10-06T22:47:03Z", "units": "eV", "xmlid": "pas_mom_t"}, "pas_mom_v": {"__spz_name__": "v_s/c", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pas_mom_v", "dataset": "so-pas-mom", "display_type": "timeseries", "is_public": "True", "name": "v_s/c", "pas_mom_v0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "pas_mom_v(0)", "dataset": "so-pas-mom", "index1": "0", "is_public": "True", "name": "vx", "parameter": "pas_mom_v", "start_date": "2000-01-01T00:00:00Z", "stop_date": "2024-10-06T22:47:03Z", "xmlid": "pas_mom_v(0)"}, "pas_mom_v1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "pas_mom_v(1)", "dataset": "so-pas-mom", "index1": "1", "is_public": "True", "name": "vy", "parameter": "pas_mom_v", "start_date": "2000-01-01T00:00:00Z", "stop_date": "2024-10-06T22:47:03Z", "xmlid": "pas_mom_v(1)"}, "pas_mom_v2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "pas_mom_v(2)", "dataset": "so-pas-mom", "index1": "2", "is_public": "True", "name": "vz", "parameter": "pas_mom_v", "start_date": "2000-01-01T00:00:00Z", "stop_date": "2024-10-06T22:47:03Z", "xmlid": "pas_mom_v(2)"}, "size": "3", "start_date": "2000-01-01T00:00:00Z", "stop_date": "2024-10-06T22:47:03Z", "units": "km/s", "xmlid": "pas_mom_v"}, "pas_mom_v_tot": {"__spz_name__": "|v_s/c|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pas_mom_v_tot", "dataset": "so-pas-mom", "description": "Velocity magnitude", "is_public": "True", "name": "|v_s/c|", "start_date": "2000-01-01T00:00:00Z", "stop_date": "2024-10-06T22:47:03Z", "units": "km/s", "xmlid": "pas_mom_v_tot"}, "processing_level": "Calibrated", "restriction": "2024-07-06T23:59:59.999Z", "sampling": "0.25S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Solar_Orbiter/PAS/so-pas-mom", "start_date": "2000-01-01T00:00:00Z", "stop_date": "2024-10-06T22:47:03Z", "target": "Heliosphere.Inner", "timeRestriction": "2024-07-09T23:59:59.999Z", "xmlid": "so-pas-mom"}, "xmlid": "solo-pas-l1"}, "L2": {"__spz_name__": "L2", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "solo-pas-l2", "is_public": "True", "name": "L2", "so_pas_l2_3d": {"__spz_name__": "3D : distribution function", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "so-pas-l2.3d", "att": "auto/so-pas-l2.3d", "dataSource": "IRAP", "desc": "
Sampling: 4S
Provider: IRAP", "group": "PAS", "is_public": "True", "lastModificationDate": "2024-10-07T06:02:41Z", "lastUpdate": "2024-10-07T06:02:04Z", "measurement_type": "ThermalPlasma", "name": "3D : distribution function", "pas_l2_2d_cem": {"__spz_name__": "Fdis : sum on azim; elev/energy : 2D", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pas_l2_2d_cem", "dataset": "so-pas-l2.3d", "display_type": "spectrogram", "is_public": "True", "name": "Fdis : sum on azim; elev/energy : 2D", "start_date": "2020-04-14T15:03:06Z", "stop_date": "2024-08-30T09:38:43Z", "template": "pas_l2_2d_cem_##min##_##max##", "units": "s3 m\u207b\u2076", "xmlid": "pas_l2_2d_cem"}, "pas_l2_2d_elevation": {"__spz_name__": "Fdis : sum on elev; azim/energy : 2D", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pas_l2_2d_elevation", "dataset": "so-pas-l2.3d", "display_type": "spectrogram", "is_public": "True", "name": "Fdis : sum on elev; azim/energy : 2D", "start_date": "2020-04-14T15:03:06Z", "stop_date": "2024-08-30T09:38:43Z", "template": "pas_l2_2d_elevation_##min##_##max##", "units": "s3 m\u207b\u2076", "xmlid": "pas_l2_2d_elevation"}, "pas_l2_2d_energy": {"__spz_name__": "Fdis : sum on energy; azim/elev : 2D", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pas_l2_2d_energy", "dataset": "so-pas-l2.3d", "display_type": "spectrogram", "is_public": "True", "name": "Fdis : sum on energy; azim/elev : 2D", "start_date": "2020-04-14T15:03:06Z", "stop_date": "2024-08-30T09:38:43Z", "template": "pas_l2_2d_energy_##min##_##max##", "units": "s3 m\u207b\u2076", "xmlid": "pas_l2_2d_energy"}, "pas_l2_3d_e0": {"__spz_name__": "energy : first", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pas_l2_3d_e0", "dataset": "so-pas-l2.3d", "is_public": "True", "name": "energy : first", "start_date": "2020-04-14T15:03:06Z", "stop_date": "2024-08-30T09:38:43Z", "xmlid": "pas_l2_3d_e0"}, "pas_l2_3d_el0": {"__spz_name__": "elevation : first", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pas_l2_3d_el0", "dataset": "so-pas-l2.3d", "is_public": "True", "name": "elevation : first", "start_date": "2020-04-14T15:03:06Z", "stop_date": "2024-08-30T09:38:43Z", "xmlid": "pas_l2_3d_el0"}, "pas_l2_3d_enb": {"__spz_name__": "energy : number", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pas_l2_3d_enb", "dataset": "so-pas-l2.3d", "is_public": "True", "name": "energy : number", "start_date": "2020-04-14T15:03:06Z", "stop_date": "2024-08-30T09:38:43Z", "xmlid": "pas_l2_3d_enb"}, "pas_l2_3d_nbel": {"__spz_name__": "elevation : number", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pas_l2_3d_nbel", "dataset": "so-pas-l2.3d", "is_public": "True", "name": "elevation : number", "start_date": "2020-04-14T15:03:06Z", "stop_date": "2024-08-30T09:38:43Z", "xmlid": "pas_l2_3d_nbel"}, "pas_l2_3d_quality": {"__spz_name__": "quality factor", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pas_l2_3d_quality", "dataset": "so-pas-l2.3d", "is_public": "True", "name": "quality factor", "start_date": "2020-04-14T15:03:06Z", "stop_date": "2024-08-30T09:38:43Z", "xmlid": "pas_l2_3d_quality"}, "processing_level": "Calibrated", "restriction": "2024-07-06T23:59:59.999Z", "sampling": "4S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Solar_Orbiter/PAS/so-pas-l2.3d", "start_date": "2020-04-14T15:03:06Z", "stop_date": "2024-08-30T09:38:43Z", "target": "Heliosphere.Inner", "timeRestriction": "2024-07-09T23:59:59.999Z", "xmlid": "so-pas-l2.3d"}, "so_pas_l2_omni": {"__spz_name__": "omni : diff E flux", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "so-pas-l2.omni", "att": "auto/so-pas-l2.omni", "dataSource": "IRAP", "desc": "
Sampling: 4S
Provider: IRAP", "group": "PAS", "is_public": "True", "lastModificationDate": "2024-10-07T06:00:37Z", "lastUpdate": "2024-10-07T06:00:36Z", "measurement_type": "ThermalPlasma", "name": "omni : diff E flux", "pas_l2_omni": {"__spz_name__": "dE flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pas_l2_omni", "dataset": "so-pas-l2.omni", "display_type": "spectrogram", "is_public": "True", "name": "dE flux", "start_date": "2020-04-14T15:03:06Z", "stop_date": "2024-08-30T09:38:43Z", "units": "cm\u207b\u00b2 s\u207b\u00b9 eV/eV", "xmlid": "pas_l2_omni"}, "pas_omni_e0": {"__spz_name__": "energy : first", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pas_omni_e0", "dataset": "so-pas-l2.omni", "is_public": "True", "name": "energy : first", "start_date": "2020-04-14T15:03:06Z", "stop_date": "2024-08-30T09:38:43Z", "xmlid": "pas_omni_e0"}, "pas_omni_enb": {"__spz_name__": "energy : number", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pas_omni_enb", "dataset": "so-pas-l2.omni", "is_public": "True", "name": "energy : number", "start_date": "2020-04-14T15:03:06Z", "stop_date": "2024-08-30T09:38:43Z", "xmlid": "pas_omni_enb"}, "pas_omni_quality": {"__spz_name__": "quality factor", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pas_omni_quality", "dataset": "so-pas-l2.omni", "is_public": "True", "name": "quality factor", "start_date": "2020-04-14T15:03:06Z", "stop_date": "2024-08-30T09:38:43Z", "xmlid": "pas_omni_quality"}, "processing_level": "Calibrated", "restriction": "2024-07-06T23:59:59.999Z", "sampling": "4S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Solar_Orbiter/PAS/so-pas-l2.omni", "start_date": "2020-04-14T15:03:06Z", "stop_date": "2024-08-30T09:38:43Z", "target": "Heliosphere.Inner", "timeRestriction": "2024-07-09T23:59:59.999Z", "xmlid": "so-pas-l2.omni"}, "so_pas_momgr1": {"__spz_name__": "on the ground moments", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "so-pas-momgr1", "att": "auto/so-pas-momgr1", "dataSource": "IRAP", "desc": "
MinSampling: 0.25S; MaxSampling: 10S
Provider: IRAP", "group": "PAS", "is_public": "True", "lastModificationDate": "2024-10-07T06:00:32Z", "lastUpdate": "2024-10-07T06:00:31Z", "maxSampling": "10S", "measurement_type": "ThermalPlasma", "name": "on the ground moments", "pas_momgr1_info": {"__spz_name__": "info", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pas_momgr1_info", "dataset": "so-pas-momgr1", "description": "0: Ground; 1: Normal; 2: Snapshot; 3: Burst; 4: Engineering", "is_public": "True", "name": "info", "start_date": "2020-04-14T15:03:06Z", "stop_date": "2024-08-30T09:38:43Z", "xmlid": "pas_momgr1_info"}, "pas_momgr1_quality": {"__spz_name__": "quality factor", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pas_momgr1_quality", "dataset": "so-pas-momgr1", "is_public": "True", "name": "quality factor", "start_date": "2020-04-14T15:03:06Z", "stop_date": "2024-08-30T09:38:43Z", "xmlid": "pas_momgr1_quality"}, "pas_momgr1_v_rtn": {"__spz_name__": "v_rtn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pas_momgr1_v_rtn", "dataset": "so-pas-momgr1", "description": "Velocity in RTN frame", "display_type": "timeseries", "is_public": "True", "name": "v_rtn", "pas_momgr1_v_rtn0": {"__spz_name__": "vr", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "pas_momgr1_v_rtn(0)", "dataset": "so-pas-momgr1", "index1": "0", "is_public": "True", "name": "vr", "parameter": "pas_momgr1_v_rtn", "start_date": "2020-04-14T15:03:06Z", "stop_date": "2024-08-30T09:38:43Z", "xmlid": "pas_momgr1_v_rtn(0)"}, "pas_momgr1_v_rtn1": {"__spz_name__": "vt", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "pas_momgr1_v_rtn(1)", "dataset": "so-pas-momgr1", "index1": "1", "is_public": "True", "name": "vt", "parameter": "pas_momgr1_v_rtn", "start_date": "2020-04-14T15:03:06Z", "stop_date": "2024-08-30T09:38:43Z", "xmlid": "pas_momgr1_v_rtn(1)"}, "pas_momgr1_v_rtn2": {"__spz_name__": "vn", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "pas_momgr1_v_rtn(2)", "dataset": "so-pas-momgr1", "index1": "2", "is_public": "True", "name": "vn", "parameter": "pas_momgr1_v_rtn", "start_date": "2020-04-14T15:03:06Z", "stop_date": "2024-08-30T09:38:43Z", "xmlid": "pas_momgr1_v_rtn(2)"}, "size": "3", "start_date": "2020-04-14T15:03:06Z", "stop_date": "2024-08-30T09:38:43Z", "units": "km/s", "xmlid": "pas_momgr1_v_rtn"}, "pas_momgr1_v_rtn_tot": {"__spz_name__": "|v_rtn|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pas_momgr1_v_rtn_tot", "dataset": "so-pas-momgr1", "description": "Velocity magnitude in RTN frame", "is_public": "True", "name": "|v_rtn|", "start_date": "2020-04-14T15:03:06Z", "stop_date": "2024-08-30T09:38:43Z", "units": "km/s", "xmlid": "pas_momgr1_v_rtn_tot"}, "pas_momgr1_v_solo_rtn": {"__spz_name__": "v_solo_rtn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pas_momgr1_v_solo_rtn", "dataset": "so-pas-momgr1", "description": "Spacecraft velocity in RTN frame", "display_type": "timeseries", "is_public": "True", "name": "v_solo_rtn", "pas_momgr1_v_solo_rtn0": {"__spz_name__": "vr", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "pas_momgr1_v_solo_rtn(0)", "dataset": "so-pas-momgr1", "index1": "0", "is_public": "True", "name": "vr", "parameter": "pas_momgr1_v_solo_rtn", "start_date": "2020-04-14T15:03:06Z", "stop_date": "2024-08-30T09:38:43Z", "xmlid": "pas_momgr1_v_solo_rtn(0)"}, "pas_momgr1_v_solo_rtn1": {"__spz_name__": "vt", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "pas_momgr1_v_solo_rtn(1)", "dataset": "so-pas-momgr1", "index1": "1", "is_public": "True", "name": "vt", "parameter": "pas_momgr1_v_solo_rtn", "start_date": "2020-04-14T15:03:06Z", "stop_date": "2024-08-30T09:38:43Z", "xmlid": "pas_momgr1_v_solo_rtn(1)"}, "pas_momgr1_v_solo_rtn2": {"__spz_name__": "vn", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "pas_momgr1_v_solo_rtn(2)", "dataset": "so-pas-momgr1", "index1": "2", "is_public": "True", "name": "vn", "parameter": "pas_momgr1_v_solo_rtn", "start_date": "2020-04-14T15:03:06Z", "stop_date": "2024-08-30T09:38:43Z", "xmlid": "pas_momgr1_v_solo_rtn(2)"}, "size": "3", "start_date": "2020-04-14T15:03:06Z", "stop_date": "2024-08-30T09:38:43Z", "units": "km/s", "xmlid": "pas_momgr1_v_solo_rtn"}, "pas_momgr1_v_solo_tot": {"__spz_name__": "|v_solo|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pas_momgr1_v_solo_tot", "dataset": "so-pas-momgr1", "description": "Magnitude of spacecraft velocity", "is_public": "True", "name": "|v_solo|", "start_date": "2020-04-14T15:03:06Z", "stop_date": "2024-08-30T09:38:43Z", "units": "km/s", "xmlid": "pas_momgr1_v_solo_tot"}, "pas_momgr_n": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pas_momgr_n", "dataset": "so-pas-momgr1", "is_public": "True", "name": "density", "start_date": "2020-04-14T15:03:06Z", "stop_date": "2024-08-30T09:38:43Z", "units": "cm\u207b\u00b3", "xmlid": "pas_momgr_n"}, "pas_momgr_n_err": {"__spz_name__": "density : err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pas_momgr_n_err", "dataset": "so-pas-momgr1", "description": "err = density * sqrt(cnts) / cnts", "is_public": "True", "name": "density : err", "start_date": "2020-04-14T15:03:06Z", "stop_date": "2024-08-30T09:38:43Z", "units": "cm\u207b\u00b3", "xmlid": "pas_momgr_n_err"}, "pas_momgr_press": {"__spz_name__": "pressure_srf", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pas_momgr_press", "dataset": "so-pas-momgr1", "description": "Pressure tensor in SRF frame", "display_type": "timeseries", "is_public": "True", "name": "pressure_srf", "pas_momgr_press0": {"__spz_name__": "press_xx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "pas_momgr_press(0)", "dataset": "so-pas-momgr1", "index1": "0", "is_public": "True", "name": "press_xx", "parameter": "pas_momgr_press", "start_date": "2020-04-14T15:03:06Z", "stop_date": "2024-08-30T09:38:43Z", "xmlid": "pas_momgr_press(0)"}, "pas_momgr_press1": {"__spz_name__": "press_yy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "pas_momgr_press(1)", "dataset": "so-pas-momgr1", "index1": "1", "is_public": "True", "name": "press_yy", "parameter": "pas_momgr_press", "start_date": "2020-04-14T15:03:06Z", "stop_date": "2024-08-30T09:38:43Z", "xmlid": "pas_momgr_press(1)"}, "pas_momgr_press2": {"__spz_name__": "press_zz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "pas_momgr_press(2)", "dataset": "so-pas-momgr1", "index1": "2", "is_public": "True", "name": "press_zz", "parameter": "pas_momgr_press", "start_date": "2020-04-14T15:03:06Z", "stop_date": "2024-08-30T09:38:43Z", "xmlid": "pas_momgr_press(2)"}, "pas_momgr_press3": {"__spz_name__": "press_xy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "pas_momgr_press(3)", "dataset": "so-pas-momgr1", "index1": "3", "is_public": "True", "name": "press_xy", "parameter": "pas_momgr_press", "start_date": "2020-04-14T15:03:06Z", "stop_date": "2024-08-30T09:38:43Z", "xmlid": "pas_momgr_press(3)"}, "pas_momgr_press4": {"__spz_name__": "press_xz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "pas_momgr_press(4)", "dataset": "so-pas-momgr1", "index1": "4", "is_public": "True", "name": "press_xz", "parameter": "pas_momgr_press", "start_date": "2020-04-14T15:03:06Z", "stop_date": "2024-08-30T09:38:43Z", "xmlid": "pas_momgr_press(4)"}, "pas_momgr_press5": {"__spz_name__": "press_yz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "pas_momgr_press(5)", "dataset": "so-pas-momgr1", "index1": "5", "is_public": "True", "name": "press_yz", "parameter": "pas_momgr_press", "start_date": "2020-04-14T15:03:06Z", "stop_date": "2024-08-30T09:38:43Z", "xmlid": "pas_momgr_press(5)"}, "size": "6", "start_date": "2020-04-14T15:03:06Z", "stop_date": "2024-08-30T09:38:43Z", "units": "J*cm\u207b\u00b3", "xmlid": "pas_momgr_press"}, "pas_momgr_pressrtn": {"__spz_name__": "pressure_rtn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pas_momgr_pressrtn", "dataset": "so-pas-momgr1", "description": "Pressure tensor in RTN frame", "display_type": "timeseries", "is_public": "True", "name": "pressure_rtn", "pas_momgr_pressrtn0": {"__spz_name__": "press_xx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "pas_momgr_pressrtn(0)", "dataset": "so-pas-momgr1", "index1": "0", "is_public": "True", "name": "press_xx", "parameter": "pas_momgr_pressrtn", "start_date": "2020-04-14T15:03:06Z", "stop_date": "2024-08-30T09:38:43Z", "xmlid": "pas_momgr_pressrtn(0)"}, "pas_momgr_pressrtn1": {"__spz_name__": "press_yy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "pas_momgr_pressrtn(1)", "dataset": "so-pas-momgr1", "index1": "1", "is_public": "True", "name": "press_yy", "parameter": "pas_momgr_pressrtn", "start_date": "2020-04-14T15:03:06Z", "stop_date": "2024-08-30T09:38:43Z", "xmlid": "pas_momgr_pressrtn(1)"}, "pas_momgr_pressrtn2": {"__spz_name__": "press_zz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "pas_momgr_pressrtn(2)", "dataset": "so-pas-momgr1", "index1": "2", "is_public": "True", "name": "press_zz", "parameter": "pas_momgr_pressrtn", "start_date": "2020-04-14T15:03:06Z", "stop_date": "2024-08-30T09:38:43Z", "xmlid": "pas_momgr_pressrtn(2)"}, "pas_momgr_pressrtn3": {"__spz_name__": "press_xy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "pas_momgr_pressrtn(3)", "dataset": "so-pas-momgr1", "index1": "3", "is_public": "True", "name": "press_xy", "parameter": "pas_momgr_pressrtn", "start_date": "2020-04-14T15:03:06Z", "stop_date": "2024-08-30T09:38:43Z", "xmlid": "pas_momgr_pressrtn(3)"}, "pas_momgr_pressrtn4": {"__spz_name__": "press_xz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "pas_momgr_pressrtn(4)", "dataset": "so-pas-momgr1", "index1": "4", "is_public": "True", "name": "press_xz", "parameter": "pas_momgr_pressrtn", "start_date": "2020-04-14T15:03:06Z", "stop_date": "2024-08-30T09:38:43Z", "xmlid": "pas_momgr_pressrtn(4)"}, "pas_momgr_pressrtn5": {"__spz_name__": "press_yz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "pas_momgr_pressrtn(5)", "dataset": "so-pas-momgr1", "index1": "5", "is_public": "True", "name": "press_yz", "parameter": "pas_momgr_pressrtn", "start_date": "2020-04-14T15:03:06Z", "stop_date": "2024-08-30T09:38:43Z", "xmlid": "pas_momgr_pressrtn(5)"}, "size": "6", "start_date": "2020-04-14T15:03:06Z", "stop_date": "2024-08-30T09:38:43Z", "units": "J*cm\u207b\u00b3", "xmlid": "pas_momgr_pressrtn"}, "pas_momgr_t": {"__spz_name__": "t_srf", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pas_momgr_t", "dataset": "so-pas-momgr1", "description": "Temperature components (Tx, Ty, Tz) in SRF frame", "display_type": "timeseries", "is_public": "True", "name": "t_srf", "pas_momgr_t0": {"__spz_name__": "t_xx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "pas_momgr_t(0)", "dataset": "so-pas-momgr1", "index1": "0", "is_public": "True", "name": "t_xx", "parameter": "pas_momgr_t", "start_date": "2020-04-14T15:03:06Z", "stop_date": "2024-08-30T09:38:43Z", "xmlid": "pas_momgr_t(0)"}, "pas_momgr_t1": {"__spz_name__": "t_yy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "pas_momgr_t(1)", "dataset": "so-pas-momgr1", "index1": "1", "is_public": "True", "name": "t_yy", "parameter": "pas_momgr_t", "start_date": "2020-04-14T15:03:06Z", "stop_date": "2024-08-30T09:38:43Z", "xmlid": "pas_momgr_t(1)"}, "pas_momgr_t2": {"__spz_name__": "t_zz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "pas_momgr_t(2)", "dataset": "so-pas-momgr1", "index1": "2", "is_public": "True", "name": "t_zz", "parameter": "pas_momgr_t", "start_date": "2020-04-14T15:03:06Z", "stop_date": "2024-08-30T09:38:43Z", "xmlid": "pas_momgr_t(2)"}, "size": "3", "start_date": "2020-04-14T15:03:06Z", "stop_date": "2024-08-30T09:38:43Z", "units": "eV", "xmlid": "pas_momgr_t"}, "pas_momgr_tav": {"__spz_name__": "t_av", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pas_momgr_tav", "dataset": "so-pas-momgr1", "is_public": "True", "name": "t_av", "start_date": "2020-04-14T15:03:06Z", "stop_date": "2024-08-30T09:38:43Z", "units": "eV", "xmlid": "pas_momgr_tav"}, "pas_momgr_trtn": {"__spz_name__": "t_rtn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pas_momgr_trtn", "dataset": "so-pas-momgr1", "description": "Temperature components (Tx, Ty, Tz) in RTN frame", "display_type": "timeseries", "is_public": "True", "name": "t_rtn", "pas_momgr_trtn0": {"__spz_name__": "t_xx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "pas_momgr_trtn(0)", "dataset": "so-pas-momgr1", "index1": "0", "is_public": "True", "name": "t_xx", "parameter": "pas_momgr_trtn", "start_date": "2020-04-14T15:03:06Z", "stop_date": "2024-08-30T09:38:43Z", "xmlid": "pas_momgr_trtn(0)"}, "pas_momgr_trtn1": {"__spz_name__": "t_yy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "pas_momgr_trtn(1)", "dataset": "so-pas-momgr1", "index1": "1", "is_public": "True", "name": "t_yy", "parameter": "pas_momgr_trtn", "start_date": "2020-04-14T15:03:06Z", "stop_date": "2024-08-30T09:38:43Z", "xmlid": "pas_momgr_trtn(1)"}, "pas_momgr_trtn2": {"__spz_name__": "t_zz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "pas_momgr_trtn(2)", "dataset": "so-pas-momgr1", "index1": "2", "is_public": "True", "name": "t_zz", "parameter": "pas_momgr_trtn", "start_date": "2020-04-14T15:03:06Z", "stop_date": "2024-08-30T09:38:43Z", "xmlid": "pas_momgr_trtn(2)"}, "size": "3", "start_date": "2020-04-14T15:03:06Z", "stop_date": "2024-08-30T09:38:43Z", "units": "eV", "xmlid": "pas_momgr_trtn"}, "pas_momgr_v": {"__spz_name__": "v_srf", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pas_momgr_v", "dataset": "so-pas-momgr1", "description": "Velocity in SRF frame", "display_type": "timeseries", "is_public": "True", "name": "v_srf", "pas_momgr_v0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "pas_momgr_v(0)", "dataset": "so-pas-momgr1", "index1": "0", "is_public": "True", "name": "vx", "parameter": "pas_momgr_v", "start_date": "2020-04-14T15:03:06Z", "stop_date": "2024-08-30T09:38:43Z", "xmlid": "pas_momgr_v(0)"}, "pas_momgr_v1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "pas_momgr_v(1)", "dataset": "so-pas-momgr1", "index1": "1", "is_public": "True", "name": "vy", "parameter": "pas_momgr_v", "start_date": "2020-04-14T15:03:06Z", "stop_date": "2024-08-30T09:38:43Z", "xmlid": "pas_momgr_v(1)"}, "pas_momgr_v2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "pas_momgr_v(2)", "dataset": "so-pas-momgr1", "index1": "2", "is_public": "True", "name": "vz", "parameter": "pas_momgr_v", "start_date": "2020-04-14T15:03:06Z", "stop_date": "2024-08-30T09:38:43Z", "xmlid": "pas_momgr_v(2)"}, "size": "3", "start_date": "2020-04-14T15:03:06Z", "stop_date": "2024-08-30T09:38:43Z", "units": "km/s", "xmlid": "pas_momgr_v"}, "pas_momgr_v_err": {"__spz_name__": "|v_srf| : err", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pas_momgr_v_err", "dataset": "so-pas-momgr1", "description": "err = v * sqrt(t/e_mean)/sqrt(cnts)", "is_public": "True", "name": "|v_srf| : err", "start_date": "2020-04-14T15:03:06Z", "stop_date": "2024-08-30T09:38:43Z", "units": "km/s", "xmlid": "pas_momgr_v_err"}, "pas_momgr_v_tot": {"__spz_name__": "|v_srf|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "pas_momgr_v_tot", "dataset": "so-pas-momgr1", "description": "Velocity magnitude in SRF frame", "is_public": "True", "name": "|v_srf|", "start_date": "2020-04-14T15:03:06Z", "stop_date": "2024-08-30T09:38:43Z", "units": "km/s", "xmlid": "pas_momgr_v_tot"}, "processing_level": "Calibrated", "restriction": "2024-07-06T23:59:59.999Z", "sampling": "0.25S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Solar_Orbiter/PAS/so-pas-momgr1", "start_date": "2020-04-14T15:03:06Z", "stop_date": "2024-08-30T09:38:43Z", "target": "Heliosphere.Inner", "timeRestriction": "2024-07-09T23:59:59.999Z", "xmlid": "so-pas-momgr1"}, "xmlid": "solo-pas-l2"}, "__spz_name__": "SWA/PAS", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "SolO_pas", "att": "auto/SolO_pas", "desc": "Proton-Alpha Sensor
ParticleDetector", "is_public": "True", "name": "SWA/PAS", "xmlid": "SolO_pas"}, "__spz_name__": "SolarOrbiter", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "SolO", "att": "auto/SolO", "desc": "Solar Orbiter
2020-02-09T23:15:00", "is_public": "True", "name": "SolarOrbiter", "rank": "1", "target": "Sun", "xmlid": "SolO"}, "Solar_Irradiance": {"FERMI": {"LAT": {"__spz_name__": "LAT", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Fermi_lat", "att": "auto/Fermi_lat", "desc": "Large Area Telescope
Imager", "fermi_lat_lc": {"__spz_name__": "lightcurve", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "fermi-lat-lc", "att": "auto/fermi-lat-lc", "dataSource": "HESPERIA", "desc": "
Sampling: 3600S
Provider: HESPERIA", "fermi_lat_cts": {"__spz_name__": "counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "fermi_lat_cts", "dataset": "fermi-lat-lc", "description": "photons > 100MeV counts recorded by the LAT orientied sunward", "display_type": "timeseries", "is_public": "True", "name": "counts", "start_date": "2008-08-12T00:00:31Z", "stop_date": "2024-10-05T23:59:34Z", "units": "counts", "xmlid": "fermi_lat_cts"}, "fermi_lat_err": {"__spz_name__": "counts error", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "fermi_lat_err", "dataset": "fermi-lat-lc", "display_type": "timeseries", "is_public": "True", "name": "counts error", "start_date": "2008-08-12T00:00:31Z", "stop_date": "2024-10-05T23:59:34Z", "units": "counts", "xmlid": "fermi_lat_err"}, "fermi_lat_exp": {"__spz_name__": "exposure", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "fermi_lat_exp", "dataset": "fermi-lat-lc", "description": "estimated exposure of detector", "display_type": "timeseries", "is_public": "True", "name": "exposure", "start_date": "2008-08-12T00:00:31Z", "stop_date": "2024-10-05T23:59:34Z", "units": "cm\u00b2.MeV.sr", "xmlid": "fermi_lat_exp"}, "fermi_lat_fl": {"__spz_name__": "flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "fermi_lat_fl", "dataset": "fermi-lat-lc", "description": "counts/exposure", "display_type": "timeseries", "is_public": "True", "name": "flux", "start_date": "2008-08-12T00:00:31Z", "stop_date": "2024-10-05T23:59:34Z", "units": "1/(cm\u00b2 MeV sr)", "xmlid": "fermi_lat_fl"}, "is_public": "True", "lastModificationDate": "2024-10-06T22:29:53Z", "lastUpdate": "2024-10-06T22:29:26Z", "measurement_type": "Radiance", "name": "lightcurve", "processing_level": "Calibrated", "sampling": "3600S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/FERMI/LAT/fermi-lat-lc", "start_date": "2008-08-12T00:00:31Z", "stop_date": "2024-10-05T23:59:34Z", "target": "Sun", "xmlid": "fermi-lat-lc"}, "is_public": "True", "name": "LAT", "xmlid": "Fermi_lat"}, "__spz_name__": "FERMI", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Fermi", "att": "auto/Fermi", "desc": "FERMI gamma-ray space telescope
2008-06-11T12:05:00", "is_public": "True", "name": "FERMI", "rank": "6", "target": "Earth.Magnetosphere", "xmlid": "Fermi"}, "TIMED": {"SEE": {"EUV__X_ray": {"__spz_name__": "EUV / X ray", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "timed-see-flux", "is_public": "True", "name": "EUV / X ray", "timed_see_l3": {"__spz_name__": "daily averages", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "timed-see-l3", "att": "auto/timed-see-l3", "dataSource": "http://lasp.colorado.edu/data", "desc": "daily averages / level3 / flares excluded
Sampling: 24H
Provider: http://lasp.colorado.edu/data", "is_public": "True", "lastModificationDate": "2024-10-07T04:21:04Z", "lastUpdate": "2024-10-07T04:21:03Z", "measurement_type": "Irradiance", "name": "daily averages", "processing_level": "Calibrated", "sampling": "24H", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/TIMED/SEE/timed-see-l3", "start_date": "2002-01-22T12:00:00Z", "stop_date": "2024-10-03T12:00:00Z", "target": "Earth.NearSurface.Ionosphere", "timed_ln_daily": {"__spz_name__": "flux : lines", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "timed_ln_daily", "dataset": "timed-see-l3", "description": "Integrated median spectral line irradiance", "display_type": "timeseries", "is_public": "True", "name": "flux : lines", "start_date": "2002-01-22T12:00:00Z", "stop_date": "2024-10-03T12:00:00Z", "units": "W/m\u00b2/nm", "xmlid": "timed_ln_daily"}, "timed_sp_daily": {"__spz_name__": "flux : spectra", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "timed_sp_daily", "dataset": "timed-see-l3", "description": "Merged median solar irradiance for XPS and EGS flux at 1nm bins", "display_type": "spectrogram", "is_public": "True", "name": "flux : spectra", "start_date": "2002-01-22T12:00:00Z", "stop_date": "2024-10-03T12:00:00Z", "units": "W/m\u00b2/nm", "xmlid": "timed_sp_daily"}, "xmlid": "timed-see-l3"}, "timed_see_l3a": {"__spz_name__": "3 min averages", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "timed-see-l3a", "att": "auto/timed-see-l3a", "dataSource": "http://lasp.colorado.edu/data", "desc": "3 min averages / level3a / flares included
Sampling: 90M
Provider: http://lasp.colorado.edu/data", "is_public": "True", "lastModificationDate": "2024-10-07T05:30:55Z", "lastUpdate": "2024-10-07T05:30:55Z", "measurement_type": "Irradiance", "name": "3 min averages", "processing_level": "Calibrated", "sampling": "90M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/TIMED/SEE/timed-see-l3a", "start_date": "2002-01-22T00:00:00Z", "stop_date": "2024-10-04T23:59:59Z", "target": "Earth.NearSurface.Ionosphere", "timed_ln_high": {"__spz_name__": "flux : lines", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "timed_ln_high", "dataset": "timed-see-l3a", "description": "Integrated median spectral line irradiance", "display_type": "timeseries", "is_public": "True", "name": "flux : lines", "start_date": "2002-01-22T00:00:00Z", "stop_date": "2024-10-04T23:59:59Z", "units": "W/m\u00b2/nm", "xmlid": "timed_ln_high"}, "timed_sp_high": {"__spz_name__": "flux : spectra", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "timed_sp_high", "dataset": "timed-see-l3a", "description": "Merged median solar irradiance for XPS and EGS flux at 1nm bins", "display_type": "spectrogram", "is_public": "True", "name": "flux : spectra", "start_date": "2002-01-22T00:00:00Z", "stop_date": "2024-10-04T23:59:59Z", "units": "W/m\u00b2/nm", "xmlid": "timed_sp_high"}, "xmlid": "timed-see-l3a"}, "xmlid": "timed-see-flux"}, "__spz_name__": "SEE", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "TIMED_see", "att": "auto/TIMED_see", "desc": "Solar EUV Experiment
Photometer", "is_public": "True", "name": "SEE", "xmlid": "TIMED_see"}, "__spz_name__": "TIMED", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "TIMED", "att": "auto/TIMED", "desc": "Thermosphere Ionosphere Mesosphere Energetics and Dynamics
2001-12-07T00:00:00", "is_public": "True", "name": "TIMED", "rank": "6", "target": "Earth.Magnetosphere", "xmlid": "TIMED"}, "__spz_name__": "Solar Irradiance", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Solar", "att": "auto/Solar", "desc": "Solar Irradiance : Different Missions : Different Locations
2002-01-22T00:00:00", "is_public": "True", "name": "Solar Irradiance", "rank": "1", "target": "Sun", "xmlid": "Solar"}, "Solar_Wind_Propagation_Models": {"Bepi": {"Ballistic_Model": {"__spz_name__": "Ballistic Model", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "ballistic_bepi", "att": "auto/ballistic_bepi", "bls_bepi_dsc": {"__spz_name__": "input DSCOVR", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "bls-bepi-dsc", "att": "auto/bls-bepi-dsc", "bepi_bls_dsc_da": {"__spz_name__": "angle bepi-sun-earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "bepi_bls_dsc_da", "dataset": "bls-bepi-dsc", "is_public": "True", "name": "angle bepi-sun-earth", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2024-10-05T23:59:00Z", "units": "deg", "xmlid": "bepi_bls_dsc_da"}, "bepi_bls_dsc_lag": {"__spz_name__": "delay earth-bepi", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "bepi_bls_dsc_lag", "dataset": "bls-bepi-dsc", "is_public": "True", "name": "delay earth-bepi", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2024-10-05T23:59:00Z", "units": "days", "xmlid": "bepi_bls_dsc_lag"}, "dataSource": "", "desc": "Ballistic delay from the Earth to Bepi
Sampling: 1H", "inputResourceID": "dsc-fc-1m", "is_public": "True", "lastModificationDate": "2024-10-07T04:12:49Z", "lastUpdate": "2024-10-07T04:12:49Z", "measurement_type": "ThermalPlasma", "name": "input DSCOVR", "processing_level": "Calibrated", "sampling": "1H", "simulation": "1", "spaseId": "spase://CNES/NumericalOutput/CDPP-AMDA/BALLISTIC/bls-bepi-dsc", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2024-10-05T23:59:00Z", "xmlid": "bls-bepi-dsc"}, "bls_bepi_omni": {"__spz_name__": "input OMNI", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "bls-bepi-omni", "att": "auto/bls-bepi-omni", "bepi_bls_da": {"__spz_name__": "angle bepi-sun-earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "bepi_bls_da", "dataset": "bls-bepi-omni", "is_public": "True", "name": "angle bepi-sun-earth", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2024-09-20T10:00:00Z", "units": "deg", "xmlid": "bepi_bls_da"}, "bepi_bls_lag": {"__spz_name__": "delay earth-bepi", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "bepi_bls_lag", "dataset": "bls-bepi-omni", "is_public": "True", "name": "delay earth-bepi", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2024-09-20T10:00:00Z", "units": "days", "xmlid": "bepi_bls_lag"}, "dataSource": "", "desc": "Ballistic delay from the Earth to Bepi
Sampling: 1H", "inputResourceID": "omni-hour-all", "is_public": "True", "lastModificationDate": "2024-09-29T22:22:28Z", "lastUpdate": "2024-09-29T22:22:28Z", "measurement_type": "ThermalPlasma", "name": "input OMNI", "processing_level": "Calibrated", "sampling": "1H", "simulation": "1", "spaseId": "spase://CNES/NumericalOutput/CDPP-AMDA/BALLISTIC/bls-bepi-omni", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2024-09-20T10:00:00Z", "xmlid": "bls-bepi-omni"}, "desc": "", "is_public": "True", "name": "Ballistic Model", "xmlid": "ballistic_bepi"}, "Tao_Model": {"__spz_name__": "Tao Model", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "tao_bepi", "att": "auto/tao_bepi", "desc": "", "is_public": "True", "name": "Tao Model", "tao_bepi_dsc": {"__spz_name__": "SW / Input DSCOVR", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "tao-bepi-dsc", "att": "auto/tao-bepi-dsc", "bepi_dsc_b": {"__spz_name__": "b tangential", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "bepi_dsc_b", "dataset": "tao-bepi-dsc", "is_public": "True", "name": "b tangential", "start_date": "2018-10-21T00:00:00Z", "stop_date": "2022-06-26T00:00:00Z", "units": "nT", "xmlid": "bepi_dsc_b"}, "bepi_dsc_bx": {"__spz_name__": "b radial", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "bepi_dsc_bx", "dataset": "tao-bepi-dsc", "description": "br along parker spiral computed with tao model outputs", "is_public": "True", "name": "b radial", "start_date": "2018-10-21T00:00:00Z", "stop_date": "2022-06-26T00:00:00Z", "units": "nT", "xmlid": "bepi_dsc_bx"}, "bepi_dsc_da": {"__spz_name__": "angle Bepi-Sun-Earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "bepi_dsc_da", "dataset": "tao-bepi-dsc", "is_public": "True", "name": "angle Bepi-Sun-Earth", "start_date": "2018-10-21T00:00:00Z", "stop_date": "2022-06-26T00:00:00Z", "units": "deg", "xmlid": "bepi_dsc_da"}, "bepi_dsc_n": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "bepi_dsc_n", "dataset": "tao-bepi-dsc", "description": "Solar Wind Proton Number Density, scalar", "is_public": "True", "name": "density", "start_date": "2018-10-21T00:00:00Z", "stop_date": "2022-06-26T00:00:00Z", "units": "cm\u207b\u00b3", "xmlid": "bepi_dsc_n"}, "bepi_dsc_pdyn": {"__spz_name__": "dynamic pressure", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "bepi_dsc_pdyn", "dataset": "tao-bepi-dsc", "is_public": "True", "name": "dynamic pressure", "start_date": "2018-10-21T00:00:00Z", "stop_date": "2022-06-26T00:00:00Z", "units": "nPa", "xmlid": "bepi_dsc_pdyn"}, "bepi_dsc_t": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "bepi_dsc_t", "dataset": "tao-bepi-dsc", "is_public": "True", "name": "temperature", "start_date": "2018-10-21T00:00:00Z", "stop_date": "2022-06-26T00:00:00Z", "units": "eV", "xmlid": "bepi_dsc_t"}, "bepi_dsc_v": {"__spz_name__": "velocity", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "bepi_dsc_v", "bepi_dsc_v0": {"__spz_name__": "V r", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "bepi_dsc_v(0)", "dataset": "tao-bepi-dsc", "index1": "0", "is_public": "True", "name": "V r", "parameter": "bepi_dsc_v", "start_date": "2018-10-21T00:00:00Z", "stop_date": "2022-06-26T00:00:00Z", "xmlid": "bepi_dsc_v(0)"}, "bepi_dsc_v1": {"__spz_name__": "V t", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "bepi_dsc_v(1)", "dataset": "tao-bepi-dsc", "index1": "1", "is_public": "True", "name": "V t", "parameter": "bepi_dsc_v", "start_date": "2018-10-21T00:00:00Z", "stop_date": "2022-06-26T00:00:00Z", "xmlid": "bepi_dsc_v(1)"}, "dataset": "tao-bepi-dsc", "description": "Solar Wind Bulk Speed", "is_public": "True", "name": "velocity", "size": "2", "start_date": "2018-10-21T00:00:00Z", "stop_date": "2022-06-26T00:00:00Z", "units": "km/s", "xmlid": "bepi_dsc_v"}, "dataSource": "", "desc": "Tao SW Bepi / Input DSCOVR
Sampling: 1H", "inputResourceID": "dsc-fc-1m", "is_public": "True", "lastModificationDate": "2022-06-29T04:00:44Z", "lastUpdate": "2022-06-29T04:00:44Z", "measurement_type": "ThermalPlasma", "name": "SW / Input DSCOVR", "processing_level": "Calibrated", "sampling": "1H", "simulation": "1", "spaseId": "spase://CNES/NumericalOutput/CDPP-AMDA/TAO/Bepi/tao-bepi-dsc", "start_date": "2018-10-21T00:00:00Z", "stop_date": "2022-06-26T00:00:00Z", "xmlid": "tao-bepi-dsc"}, "tao_bepi_sta": {"__spz_name__": "SW / Input STA", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "tao-bepi-sta", "att": "auto/tao-bepi-sta", "bepi_sta_b": {"__spz_name__": "b tangential", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "bepi_sta_b", "dataset": "tao-bepi-sta", "is_public": "True", "name": "b tangential", "start_date": "2018-01-01T00:00:00Z", "stop_date": "2019-04-30T00:00:00Z", "units": "nT", "xmlid": "bepi_sta_b"}, "bepi_sta_bx": {"__spz_name__": "b radial", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "bepi_sta_bx", "dataset": "tao-bepi-sta", "description": "br along parker spiral computed with tao model outputs", "is_public": "True", "name": "b radial", "start_date": "2018-01-01T00:00:00Z", "stop_date": "2019-04-30T00:00:00Z", "units": "nT", "xmlid": "bepi_sta_bx"}, "bepi_sta_da": {"__spz_name__": "angle Bepi-Sun-STA", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "bepi_sta_da", "dataset": "tao-bepi-sta", "is_public": "True", "name": "angle Bepi-Sun-STA", "start_date": "2018-01-01T00:00:00Z", "stop_date": "2019-04-30T00:00:00Z", "units": "deg", "xmlid": "bepi_sta_da"}, "bepi_sta_n": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "bepi_sta_n", "dataset": "tao-bepi-sta", "description": "Solar Wind Proton Number Density, scalar", "is_public": "True", "name": "density", "start_date": "2018-01-01T00:00:00Z", "stop_date": "2019-04-30T00:00:00Z", "units": "cm\u207b\u00b3", "xmlid": "bepi_sta_n"}, "bepi_sta_pdyn": {"__spz_name__": "dynamic pressure", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "bepi_sta_pdyn", "dataset": "tao-bepi-sta", "is_public": "True", "name": "dynamic pressure", "start_date": "2018-01-01T00:00:00Z", "stop_date": "2019-04-30T00:00:00Z", "units": "nPa", "xmlid": "bepi_sta_pdyn"}, "bepi_sta_t": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "bepi_sta_t", "dataset": "tao-bepi-sta", "is_public": "True", "name": "temperature", "start_date": "2018-01-01T00:00:00Z", "stop_date": "2019-04-30T00:00:00Z", "units": "eV", "xmlid": "bepi_sta_t"}, "bepi_sta_v": {"__spz_name__": "velocity", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "bepi_sta_v", "bepi_sta_v0": {"__spz_name__": "V r", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "bepi_sta_v(0)", "dataset": "tao-bepi-sta", "index1": "0", "is_public": "True", "name": "V r", "parameter": "bepi_sta_v", "start_date": "2018-01-01T00:00:00Z", "stop_date": "2019-04-30T00:00:00Z", "xmlid": "bepi_sta_v(0)"}, "bepi_sta_v1": {"__spz_name__": "V t", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "bepi_sta_v(1)", "dataset": "tao-bepi-sta", "index1": "1", "is_public": "True", "name": "V t", "parameter": "bepi_sta_v", "start_date": "2018-01-01T00:00:00Z", "stop_date": "2019-04-30T00:00:00Z", "xmlid": "bepi_sta_v(1)"}, "dataset": "tao-bepi-sta", "description": "Solar Wind Bulk Speed", "is_public": "True", "name": "velocity", "size": "2", "start_date": "2018-01-01T00:00:00Z", "stop_date": "2019-04-30T00:00:00Z", "units": "km/s", "xmlid": "bepi_sta_v"}, "dataSource": "", "desc": "Tao SW Bepi / Input Stereo-A
Sampling: 1H", "inputResourceID": "sta-l2-pla", "is_public": "True", "lastModificationDate": "2021-12-07T18:47:08Z", "lastUpdate": "2021-12-07T18:47:08Z", "measurement_type": "ThermalPlasma", "name": "SW / Input STA", "processing_level": "Calibrated", "sampling": "1H", "simulation": "1", "spaseId": "spase://CNES/NumericalOutput/CDPP-AMDA/TAO/Bepi/tao-bepi-sta", "start_date": "2018-01-01T00:00:00Z", "stop_date": "2019-04-30T00:00:00Z", "xmlid": "tao-bepi-sta"}, "tao_bepi_sw": {"__spz_name__": "SW / Input OMNI", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "tao-bepi-sw", "att": "auto/tao-bepi-sw", "bepi_sw_b": {"__spz_name__": "b tangential", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "bepi_sw_b", "dataset": "tao-bepi-sw", "is_public": "True", "name": "b tangential", "start_date": "2018-10-21T00:00:00Z", "stop_date": "2024-02-14T00:00:00Z", "units": "nT", "xmlid": "bepi_sw_b"}, "bepi_sw_bx": {"__spz_name__": "b radial", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "bepi_sw_bx", "dataset": "tao-bepi-sw", "description": "br along parker spiral computed with tao model outputs", "is_public": "True", "name": "b radial", "start_date": "2018-10-21T00:00:00Z", "stop_date": "2024-02-14T00:00:00Z", "units": "nT", "xmlid": "bepi_sw_bx"}, "bepi_sw_da": {"__spz_name__": "angle Bepi-Sun-Earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "bepi_sw_da", "dataset": "tao-bepi-sw", "is_public": "True", "name": "angle Bepi-Sun-Earth", "start_date": "2018-10-21T00:00:00Z", "stop_date": "2024-02-14T00:00:00Z", "units": "deg", "xmlid": "bepi_sw_da"}, "bepi_sw_n": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "bepi_sw_n", "dataset": "tao-bepi-sw", "description": "Solar Wind Proton Number Density, scalar", "is_public": "True", "name": "density", "start_date": "2018-10-21T00:00:00Z", "stop_date": "2024-02-14T00:00:00Z", "units": "cm\u207b\u00b3", "xmlid": "bepi_sw_n"}, "bepi_sw_pdyn": {"__spz_name__": "dynamic pressure", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "bepi_sw_pdyn", "dataset": "tao-bepi-sw", "is_public": "True", "name": "dynamic pressure", "start_date": "2018-10-21T00:00:00Z", "stop_date": "2024-02-14T00:00:00Z", "units": "nPa", "xmlid": "bepi_sw_pdyn"}, "bepi_sw_t": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "bepi_sw_t", "dataset": "tao-bepi-sw", "is_public": "True", "name": "temperature", "start_date": "2018-10-21T00:00:00Z", "stop_date": "2024-02-14T00:00:00Z", "units": "eV", "xmlid": "bepi_sw_t"}, "bepi_sw_v": {"__spz_name__": "velocity", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "bepi_sw_v", "bepi_sw_v0": {"__spz_name__": "V r", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "bepi_sw_v(0)", "dataset": "tao-bepi-sw", "index1": "0", "is_public": "True", "name": "V r", "parameter": "bepi_sw_v", "start_date": "2018-10-21T00:00:00Z", "stop_date": "2024-02-14T00:00:00Z", "xmlid": "bepi_sw_v(0)"}, "bepi_sw_v1": {"__spz_name__": "V t", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "bepi_sw_v(1)", "dataset": "tao-bepi-sw", "index1": "1", "is_public": "True", "name": "V t", "parameter": "bepi_sw_v", "start_date": "2018-10-21T00:00:00Z", "stop_date": "2024-02-14T00:00:00Z", "xmlid": "bepi_sw_v(1)"}, "dataset": "tao-bepi-sw", "description": "Solar Wind Bulk Speed", "is_public": "True", "name": "velocity", "size": "2", "start_date": "2018-10-21T00:00:00Z", "stop_date": "2024-02-14T00:00:00Z", "units": "km/s", "xmlid": "bepi_sw_v"}, "dataSource": "", "desc": "Tao SW Bepi / Input OMNI
Sampling: 1H", "inputResourceID": "omni-hour-all", "is_public": "True", "lastModificationDate": "2024-03-24T20:30:06Z", "lastUpdate": "2024-03-24T20:30:06Z", "measurement_type": "ThermalPlasma", "name": "SW / Input OMNI", "processing_level": "Calibrated", "sampling": "1H", "simulation": "1", "spaseId": "spase://CNES/NumericalOutput/CDPP-AMDA/TAO/Bepi/tao-bepi-sw", "start_date": "2018-10-21T00:00:00Z", "stop_date": "2024-02-14T00:00:00Z", "xmlid": "tao-bepi-sw"}, "tao_bepi_swrt": {"__spz_name__": "SW / Input ACE Real Time", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "tao-bepi-swrt", "att": "auto/tao-bepi-swrt", "bepi_swrt_b": {"__spz_name__": "b tangential", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "bepi_swrt_b", "dataset": "tao-bepi-swrt", "is_public": "True", "name": "b tangential", "start_date": "2024-07-05T01:00:00Z", "stop_date": "2024-09-29T00:00:00Z", "units": "nT", "xmlid": "bepi_swrt_b"}, "bepi_swrt_bx": {"__spz_name__": "b radial", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "bepi_swrt_bx", "dataset": "tao-bepi-swrt", "description": "br along parker spiral computed with tao model outputs", "is_public": "True", "name": "b radial", "start_date": "2024-07-05T01:00:00Z", "stop_date": "2024-09-29T00:00:00Z", "units": "nT", "xmlid": "bepi_swrt_bx"}, "bepi_swrt_da": {"__spz_name__": "angle Bepi-Sun-Earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "bepi_swrt_da", "dataset": "tao-bepi-swrt", "is_public": "True", "name": "angle Bepi-Sun-Earth", "start_date": "2024-07-05T01:00:00Z", "stop_date": "2024-09-29T00:00:00Z", "units": "deg", "xmlid": "bepi_swrt_da"}, "bepi_swrt_n": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "bepi_swrt_n", "dataset": "tao-bepi-swrt", "description": "Solar Wind Proton Number Density, scalar", "is_public": "True", "name": "density", "start_date": "2024-07-05T01:00:00Z", "stop_date": "2024-09-29T00:00:00Z", "units": "cm\u207b\u00b3", "xmlid": "bepi_swrt_n"}, "bepi_swrt_pdyn": {"__spz_name__": "dynamic pressure", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "bepi_swrt_pdyn", "dataset": "tao-bepi-swrt", "is_public": "True", "name": "dynamic pressure", "start_date": "2024-07-05T01:00:00Z", "stop_date": "2024-09-29T00:00:00Z", "units": "nPa", "xmlid": "bepi_swrt_pdyn"}, "bepi_swrt_t": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "bepi_swrt_t", "dataset": "tao-bepi-swrt", "is_public": "True", "name": "temperature", "start_date": "2024-07-05T01:00:00Z", "stop_date": "2024-09-29T00:00:00Z", "units": "eV", "xmlid": "bepi_swrt_t"}, "bepi_swrt_v": {"__spz_name__": "velocity", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "bepi_swrt_v", "bepi_swrt_v0": {"__spz_name__": "V r", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "bepi_swrt_v(0)", "dataset": "tao-bepi-swrt", "index1": "0", "is_public": "True", "name": "V r", "parameter": "bepi_swrt_v", "start_date": "2024-07-05T01:00:00Z", "stop_date": "2024-09-29T00:00:00Z", "xmlid": "bepi_swrt_v(0)"}, "bepi_swrt_v1": {"__spz_name__": "V t", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "bepi_swrt_v(1)", "dataset": "tao-bepi-swrt", "index1": "1", "is_public": "True", "name": "V t", "parameter": "bepi_swrt_v", "start_date": "2024-07-05T01:00:00Z", "stop_date": "2024-09-29T00:00:00Z", "xmlid": "bepi_swrt_v(1)"}, "dataset": "tao-bepi-swrt", "description": "Solar Wind Bulk Speed", "is_public": "True", "name": "velocity", "size": "2", "start_date": "2024-07-05T01:00:00Z", "stop_date": "2024-09-29T00:00:00Z", "units": "km/s", "xmlid": "bepi_swrt_v"}, "dataSource": "", "desc": "Tao SW Bepi / Input ACE Real Time
Sampling: 1H", "inputResourceID": "ace-mag-real", "is_public": "True", "lastModificationDate": "2024-09-29T21:20:19Z", "lastUpdate": "2024-09-29T21:20:19Z", "measurement_type": "ThermalPlasma", "name": "SW / Input ACE Real Time", "processing_level": "Calibrated", "sampling": "1H", "simulation": "1", "spaseId": "spase://CNES/NumericalOutput/CDPP-AMDA/TAO/Bepi/tao-bepi-swrt", "start_date": "2024-07-05T01:00:00Z", "stop_date": "2024-09-29T00:00:00Z", "xmlid": "tao-bepi-swrt"}, "xmlid": "tao_bepi"}, "__spz_name__": "Bepi", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "SW_Propagation_Model_Bepi", "is_public": "True", "name": "Bepi", "target": "Bepi", "xmlid": "SW_Propagation_Model_Bepi"}, "Cassini": {"Tao_Model": {"__spz_name__": "Tao Model", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "tao_cassini", "att": "auto/tao_cassini", "desc": "", "is_public": "True", "name": "Tao Model", "tao_cass_sw": {"__spz_name__": "SW / Input OMNI", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "tao-cass-sw", "att": "auto/tao-cass-sw", "cass_sw_b": {"__spz_name__": "b tangential", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_sw_b", "dataset": "tao-cass-sw", "is_public": "True", "name": "b tangential", "start_date": "1998-01-01T01:00:00Z", "stop_date": "2004-07-04T00:00:00Z", "units": "nT", "xmlid": "cass_sw_b"}, "cass_sw_bx": {"__spz_name__": "b radial", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_sw_bx", "dataset": "tao-cass-sw", "description": "br along parker spiral computed with tao model outputs", "is_public": "True", "name": "b radial", "start_date": "1998-01-01T01:00:00Z", "stop_date": "2004-07-04T00:00:00Z", "units": "nT", "xmlid": "cass_sw_bx"}, "cass_sw_da": {"__spz_name__": "angle Cassini-Sun-Earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_sw_da", "dataset": "tao-cass-sw", "is_public": "True", "name": "angle Cassini-Sun-Earth", "start_date": "1998-01-01T01:00:00Z", "stop_date": "2004-07-04T00:00:00Z", "units": "deg", "xmlid": "cass_sw_da"}, "cass_sw_n": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_sw_n", "dataset": "tao-cass-sw", "description": "Solar Wind Proton Number Density, scalar", "is_public": "True", "name": "density", "start_date": "1998-01-01T01:00:00Z", "stop_date": "2004-07-04T00:00:00Z", "units": "cm\u207b\u00b3", "xmlid": "cass_sw_n"}, "cass_sw_pdyn": {"__spz_name__": "dynamic pressure", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_sw_pdyn", "dataset": "tao-cass-sw", "is_public": "True", "name": "dynamic pressure", "start_date": "1998-01-01T01:00:00Z", "stop_date": "2004-07-04T00:00:00Z", "units": "nPa", "xmlid": "cass_sw_pdyn"}, "cass_sw_t": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_sw_t", "dataset": "tao-cass-sw", "is_public": "True", "name": "temperature", "start_date": "1998-01-01T01:00:00Z", "stop_date": "2004-07-04T00:00:00Z", "units": "eV", "xmlid": "cass_sw_t"}, "cass_sw_v": {"__spz_name__": "velocity", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "cass_sw_v", "cass_sw_v0": {"__spz_name__": "V r", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_sw_v(0)", "dataset": "tao-cass-sw", "index1": "0", "is_public": "True", "name": "V r", "parameter": "cass_sw_v", "start_date": "1998-01-01T01:00:00Z", "stop_date": "2004-07-04T00:00:00Z", "xmlid": "cass_sw_v(0)"}, "cass_sw_v1": {"__spz_name__": "V t", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "cass_sw_v(1)", "dataset": "tao-cass-sw", "index1": "1", "is_public": "True", "name": "V t", "parameter": "cass_sw_v", "start_date": "1998-01-01T01:00:00Z", "stop_date": "2004-07-04T00:00:00Z", "xmlid": "cass_sw_v(1)"}, "dataset": "tao-cass-sw", "description": "Solar Wind Bulk Speed", "is_public": "True", "name": "velocity", "size": "2", "start_date": "1998-01-01T01:00:00Z", "stop_date": "2004-07-04T00:00:00Z", "units": "km/s", "xmlid": "cass_sw_v"}, "dataSource": "", "desc": "Tao SW Cassini / Input OMNI : Cruise Phase
Sampling: 1H", "inputResourceID": "omni-hour-all", "is_public": "True", "lastModificationDate": "2019-08-30T11:55:38Z", "lastUpdate": "2019-08-30T11:39:04Z", "measurement_type": "ThermalPlasma", "name": "SW / Input OMNI", "processing_level": "Calibrated", "sampling": "1H", "simulation": "1", "spaseId": "spase://CNES/NumericalOutput/CDPP-AMDA/TAO/Cassini/tao-cass-sw", "start_date": "1998-01-01T01:00:00Z", "stop_date": "2004-07-04T00:00:00Z", "xmlid": "tao-cass-sw"}, "xmlid": "tao_cassini"}, "__spz_name__": "Cassini", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "SW_Propagation_Model_Cassini", "is_public": "True", "name": "Cassini", "target": "Cassini", "xmlid": "SW_Propagation_Model_Cassini"}, "Juno": {"Tao_Model": {"__spz_name__": "Tao Model", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "tao_juno", "att": "auto/tao_juno", "desc": "", "is_public": "True", "name": "Tao Model", "tao_juno_sw": {"__spz_name__": "SW / Input OMNI", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "tao-juno-sw", "att": "auto/tao-juno-sw", "dataSource": "", "desc": "Tao SW Juno / Input OMNI : Cruise Phase
Sampling: 1H", "inputResourceID": "omni-hour-all", "is_public": "True", "juno_sw_b": {"__spz_name__": "b tangential", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juno_sw_b", "dataset": "tao-juno-sw", "is_public": "True", "name": "b tangential", "start_date": "2012-01-01T00:00:00Z", "stop_date": "2016-11-02T22:00:00Z", "units": "nT", "xmlid": "juno_sw_b"}, "juno_sw_bx": {"__spz_name__": "b radial", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juno_sw_bx", "dataset": "tao-juno-sw", "description": "br along parker spiral computed with tao model outputs", "is_public": "True", "name": "b radial", "start_date": "2012-01-01T00:00:00Z", "stop_date": "2016-11-02T22:00:00Z", "units": "nT", "xmlid": "juno_sw_bx"}, "juno_sw_da": {"__spz_name__": "angle Juno-Sun-Earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juno_sw_da", "dataset": "tao-juno-sw", "is_public": "True", "name": "angle Juno-Sun-Earth", "start_date": "2012-01-01T00:00:00Z", "stop_date": "2016-11-02T22:00:00Z", "units": "deg", "xmlid": "juno_sw_da"}, "juno_sw_n": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juno_sw_n", "dataset": "tao-juno-sw", "description": "Solar Wind Proton Number Density, scalar", "is_public": "True", "name": "density", "start_date": "2012-01-01T00:00:00Z", "stop_date": "2016-11-02T22:00:00Z", "units": "cm\u207b\u00b3", "xmlid": "juno_sw_n"}, "juno_sw_pdyn": {"__spz_name__": "dynamic pressure", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juno_sw_pdyn", "dataset": "tao-juno-sw", "is_public": "True", "name": "dynamic pressure", "start_date": "2012-01-01T00:00:00Z", "stop_date": "2016-11-02T22:00:00Z", "units": "nPa", "xmlid": "juno_sw_pdyn"}, "juno_sw_t": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juno_sw_t", "dataset": "tao-juno-sw", "is_public": "True", "name": "temperature", "start_date": "2012-01-01T00:00:00Z", "stop_date": "2016-11-02T22:00:00Z", "units": "eV", "xmlid": "juno_sw_t"}, "juno_sw_v": {"__spz_name__": "velocity", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "juno_sw_v", "dataset": "tao-juno-sw", "description": "Solar Wind Bulk Speed", "is_public": "True", "juno_sw_v0": {"__spz_name__": "V r", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juno_sw_v(0)", "dataset": "tao-juno-sw", "index1": "0", "is_public": "True", "name": "V r", "parameter": "juno_sw_v", "start_date": "2012-01-01T00:00:00Z", "stop_date": "2016-11-02T22:00:00Z", "xmlid": "juno_sw_v(0)"}, "juno_sw_v1": {"__spz_name__": "V t", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "juno_sw_v(1)", "dataset": "tao-juno-sw", "index1": "1", "is_public": "True", "name": "V t", "parameter": "juno_sw_v", "start_date": "2012-01-01T00:00:00Z", "stop_date": "2016-11-02T22:00:00Z", "xmlid": "juno_sw_v(1)"}, "name": "velocity", "size": "2", "start_date": "2012-01-01T00:00:00Z", "stop_date": "2016-11-02T22:00:00Z", "units": "km/s", "xmlid": "juno_sw_v"}, "lastModificationDate": "2017-11-16T16:28:42Z", "lastUpdate": "2017-02-27T17:52:03Z", "measurement_type": "ThermalPlasma", "name": "SW / Input OMNI", "processing_level": "Calibrated", "sampling": "1H", "simulation": "1", "spaseId": "spase://CNES/NumericalOutput/CDPP-AMDA/TAO/Juno/tao-juno-sw", "start_date": "2012-01-01T00:00:00Z", "stop_date": "2016-11-02T22:00:00Z", "xmlid": "tao-juno-sw"}, "xmlid": "tao_juno"}, "__spz_name__": "Juno", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "SW_Propagation_Model_Juno", "is_public": "True", "name": "Juno", "target": "Juno", "xmlid": "SW_Propagation_Model_Juno"}, "Jupiter": {"Ballistic_Model": {"__spz_name__": "Ballistic Model", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "ballistic_jupiter", "att": "auto/ballistic_jupiter", "bls_jupiter_omni": {"__spz_name__": "input OMNI", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "bls-jupiter-omni", "att": "auto/bls-jupiter-omni", "dataSource": "", "desc": "Ballistic delay from the Earth to Jupiter
Sampling: 1H", "inputResourceID": "omni-hour-all", "is_public": "True", "jup_bls_da": {"__spz_name__": "angle jupiter-sun-earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jup_bls_da", "dataset": "bls-jupiter-omni", "is_public": "True", "name": "angle jupiter-sun-earth", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2024-09-20T10:00:00Z", "units": "deg", "xmlid": "jup_bls_da"}, "jup_bls_lag": {"__spz_name__": "delay earth-jupiter", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jup_bls_lag", "dataset": "bls-jupiter-omni", "is_public": "True", "name": "delay earth-jupiter", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2024-09-20T10:00:00Z", "units": "days", "xmlid": "jup_bls_lag"}, "lastModificationDate": "2024-09-29T22:22:28Z", "lastUpdate": "2024-09-29T22:22:28Z", "measurement_type": "ThermalPlasma", "name": "input OMNI", "processing_level": "Calibrated", "sampling": "1H", "simulation": "1", "spaseId": "spase://CNES/NumericalOutput/CDPP-AMDA/BALLISTIC/bls-jupiter-omni", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2024-09-20T10:00:00Z", "xmlid": "bls-jupiter-omni"}, "desc": "", "is_public": "True", "name": "Ballistic Model", "xmlid": "ballistic_jupiter"}, "Tao_Model": {"__spz_name__": "Tao Model", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "tao_jupiter", "att": "auto/tao_jupiter", "desc": "", "is_public": "True", "name": "Tao Model", "tao_jup_dsc": {"__spz_name__": "SW / Input DSCOVR", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "tao-jup-dsc", "att": "auto/tao-jup-dsc", "dataSource": "", "desc": "Tao SW Jupiter / Input DSCOVR
Sampling: 1H", "inputResourceID": "dsc-fc-1m", "is_public": "True", "jup_dsc_b": {"__spz_name__": "b tangential", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jup_dsc_b", "dataset": "tao-jup-dsc", "is_public": "True", "name": "b tangential", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2023-04-22T23:00:00Z", "units": "nT", "xmlid": "jup_dsc_b"}, "jup_dsc_bx": {"__spz_name__": "b radial", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jup_dsc_bx", "dataset": "tao-jup-dsc", "description": "br along parker spiral computed with tao model outputs", "is_public": "True", "name": "b radial", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2023-04-22T23:00:00Z", "units": "nT", "xmlid": "jup_dsc_bx"}, "jup_dsc_da": {"__spz_name__": "angle Jup-Sun-Earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jup_dsc_da", "dataset": "tao-jup-dsc", "is_public": "True", "name": "angle Jup-Sun-Earth", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2023-04-22T23:00:00Z", "units": "deg", "xmlid": "jup_dsc_da"}, "jup_dsc_n": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jup_dsc_n", "dataset": "tao-jup-dsc", "description": "Solar Wind Proton Number Density, scalar", "is_public": "True", "name": "density", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2023-04-22T23:00:00Z", "units": "cm\u207b\u00b3", "xmlid": "jup_dsc_n"}, "jup_dsc_pdyn": {"__spz_name__": "dynamic pressure", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jup_dsc_pdyn", "dataset": "tao-jup-dsc", "is_public": "True", "name": "dynamic pressure", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2023-04-22T23:00:00Z", "units": "nPa", "xmlid": "jup_dsc_pdyn"}, "jup_dsc_t": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jup_dsc_t", "dataset": "tao-jup-dsc", "is_public": "True", "name": "temperature", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2023-04-22T23:00:00Z", "units": "eV", "xmlid": "jup_dsc_t"}, "jup_dsc_v": {"__spz_name__": "velocity", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jup_dsc_v", "dataset": "tao-jup-dsc", "description": "Solar Wind Bulk Speed", "is_public": "True", "jup_dsc_v0": {"__spz_name__": "V r", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jup_dsc_v(0)", "dataset": "tao-jup-dsc", "index1": "0", "is_public": "True", "name": "V r", "parameter": "jup_dsc_v", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2023-04-22T23:00:00Z", "xmlid": "jup_dsc_v(0)"}, "jup_dsc_v1": {"__spz_name__": "V t", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jup_dsc_v(1)", "dataset": "tao-jup-dsc", "index1": "1", "is_public": "True", "name": "V t", "parameter": "jup_dsc_v", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2023-04-22T23:00:00Z", "xmlid": "jup_dsc_v(1)"}, "name": "velocity", "size": "2", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2023-04-22T23:00:00Z", "units": "km/s", "xmlid": "jup_dsc_v"}, "lastModificationDate": "2023-04-25T02:20:36Z", "lastUpdate": "2023-04-25T02:20:36Z", "measurement_type": "ThermalPlasma", "name": "SW / Input DSCOVR", "processing_level": "Calibrated", "sampling": "1H", "simulation": "1", "spaseId": "spase://CNES/NumericalOutput/CDPP-AMDA/TAO/Jupiter/tao-jup-dsc", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2023-04-22T23:00:00Z", "xmlid": "tao-jup-dsc"}, "tao_jup_sta": {"__spz_name__": "SW / Input STA", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "tao-jup-sta", "att": "auto/tao-jup-sta", "dataSource": "", "desc": "Tao SW Jupiter / Input Stereo-A
Sampling: 1H", "inputResourceID": "sta-l2-pla", "is_public": "True", "jup_sta_b": {"__spz_name__": "b tangential", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jup_sta_b", "dataset": "tao-jup-sta", "is_public": "True", "name": "b tangential", "start_date": "2007-03-01T00:00:00Z", "stop_date": "2019-04-30T00:00:00Z", "units": "nT", "xmlid": "jup_sta_b"}, "jup_sta_bx": {"__spz_name__": "b radial", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jup_sta_bx", "dataset": "tao-jup-sta", "description": "br along parker spiral computed with tao model outputs", "is_public": "True", "name": "b radial", "start_date": "2007-03-01T00:00:00Z", "stop_date": "2019-04-30T00:00:00Z", "units": "nT", "xmlid": "jup_sta_bx"}, "jup_sta_da": {"__spz_name__": "angle Jup-Sun-STA", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jup_sta_da", "dataset": "tao-jup-sta", "is_public": "True", "name": "angle Jup-Sun-STA", "start_date": "2007-03-01T00:00:00Z", "stop_date": "2019-04-30T00:00:00Z", "units": "deg", "xmlid": "jup_sta_da"}, "jup_sta_n": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jup_sta_n", "dataset": "tao-jup-sta", "description": "Solar Wind Proton Number Density, scalar", "is_public": "True", "name": "density", "start_date": "2007-03-01T00:00:00Z", "stop_date": "2019-04-30T00:00:00Z", "units": "cm\u207b\u00b3", "xmlid": "jup_sta_n"}, "jup_sta_pdyn": {"__spz_name__": "dynamic pressure", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jup_sta_pdyn", "dataset": "tao-jup-sta", "is_public": "True", "name": "dynamic pressure", "start_date": "2007-03-01T00:00:00Z", "stop_date": "2019-04-30T00:00:00Z", "units": "nPa", "xmlid": "jup_sta_pdyn"}, "jup_sta_t": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jup_sta_t", "dataset": "tao-jup-sta", "is_public": "True", "name": "temperature", "start_date": "2007-03-01T00:00:00Z", "stop_date": "2019-04-30T00:00:00Z", "units": "eV", "xmlid": "jup_sta_t"}, "jup_sta_v": {"__spz_name__": "velocity", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jup_sta_v", "dataset": "tao-jup-sta", "description": "Solar Wind Bulk Speed", "is_public": "True", "jup_sta_v0": {"__spz_name__": "V r", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jup_sta_v(0)", "dataset": "tao-jup-sta", "index1": "0", "is_public": "True", "name": "V r", "parameter": "jup_sta_v", "start_date": "2007-03-01T00:00:00Z", "stop_date": "2019-04-30T00:00:00Z", "xmlid": "jup_sta_v(0)"}, "jup_sta_v1": {"__spz_name__": "V t", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jup_sta_v(1)", "dataset": "tao-jup-sta", "index1": "1", "is_public": "True", "name": "V t", "parameter": "jup_sta_v", "start_date": "2007-03-01T00:00:00Z", "stop_date": "2019-04-30T00:00:00Z", "xmlid": "jup_sta_v(1)"}, "name": "velocity", "size": "2", "start_date": "2007-03-01T00:00:00Z", "stop_date": "2019-04-30T00:00:00Z", "units": "km/s", "xmlid": "jup_sta_v"}, "lastModificationDate": "2021-12-07T16:46:55Z", "lastUpdate": "2021-12-07T16:46:55Z", "measurement_type": "ThermalPlasma", "name": "SW / Input STA", "processing_level": "Calibrated", "sampling": "1H", "simulation": "1", "spaseId": "spase://CNES/NumericalOutput/CDPP-AMDA/TAO/Jupiter/tao-jup-sta", "start_date": "2007-03-01T00:00:00Z", "stop_date": "2019-04-30T00:00:00Z", "xmlid": "tao-jup-sta"}, "tao_jup_stb": {"__spz_name__": "SW / Input STB", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "tao-jup-stb", "att": "auto/tao-jup-stb", "dataSource": "", "desc": "Tao SW Jupiter / Input Stereo-B
Sampling: 1H", "inputResourceID": "stb-l2-pla", "is_public": "True", "jup_stb_b": {"__spz_name__": "b tangential", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jup_stb_b", "dataset": "tao-jup-stb", "is_public": "True", "name": "b tangential", "start_date": "2007-10-01T00:00:00Z", "stop_date": "2014-11-01T00:00:00Z", "units": "nT", "xmlid": "jup_stb_b"}, "jup_stb_bx": {"__spz_name__": "b radial", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jup_stb_bx", "dataset": "tao-jup-stb", "description": "br along parker spiral computed with tao model outputs", "is_public": "True", "name": "b radial", "start_date": "2007-10-01T00:00:00Z", "stop_date": "2014-11-01T00:00:00Z", "units": "nT", "xmlid": "jup_stb_bx"}, "jup_stb_da": {"__spz_name__": "angle Jup-Sun-STB", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jup_stb_da", "dataset": "tao-jup-stb", "is_public": "True", "name": "angle Jup-Sun-STB", "start_date": "2007-10-01T00:00:00Z", "stop_date": "2014-11-01T00:00:00Z", "units": "deg", "xmlid": "jup_stb_da"}, "jup_stb_n": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jup_stb_n", "dataset": "tao-jup-stb", "description": "Solar Wind Proton Number Density, scalar", "is_public": "True", "name": "density", "start_date": "2007-10-01T00:00:00Z", "stop_date": "2014-11-01T00:00:00Z", "units": "cm\u207b\u00b3", "xmlid": "jup_stb_n"}, "jup_stb_pdyn": {"__spz_name__": "dynamic pressure", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jup_stb_pdyn", "dataset": "tao-jup-stb", "is_public": "True", "name": "dynamic pressure", "start_date": "2007-10-01T00:00:00Z", "stop_date": "2014-11-01T00:00:00Z", "units": "nPa", "xmlid": "jup_stb_pdyn"}, "jup_stb_t": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jup_stb_t", "dataset": "tao-jup-stb", "is_public": "True", "name": "temperature", "start_date": "2007-10-01T00:00:00Z", "stop_date": "2014-11-01T00:00:00Z", "units": "eV", "xmlid": "jup_stb_t"}, "jup_stb_v": {"__spz_name__": "velocity", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jup_stb_v", "dataset": "tao-jup-stb", "description": "Solar Wind Bulk Speed", "is_public": "True", "jup_stb_v0": {"__spz_name__": "V r", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jup_stb_v(0)", "dataset": "tao-jup-stb", "index1": "0", "is_public": "True", "name": "V r", "parameter": "jup_stb_v", "start_date": "2007-10-01T00:00:00Z", "stop_date": "2014-11-01T00:00:00Z", "xmlid": "jup_stb_v(0)"}, "jup_stb_v1": {"__spz_name__": "V t", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jup_stb_v(1)", "dataset": "tao-jup-stb", "index1": "1", "is_public": "True", "name": "V t", "parameter": "jup_stb_v", "start_date": "2007-10-01T00:00:00Z", "stop_date": "2014-11-01T00:00:00Z", "xmlid": "jup_stb_v(1)"}, "name": "velocity", "size": "2", "start_date": "2007-10-01T00:00:00Z", "stop_date": "2014-11-01T00:00:00Z", "units": "km/s", "xmlid": "jup_stb_v"}, "lastModificationDate": "2019-02-01T15:41:31Z", "lastUpdate": "2019-02-01T15:41:31Z", "measurement_type": "ThermalPlasma", "name": "SW / Input STB", "processing_level": "Calibrated", "sampling": "1H", "simulation": "1", "spaseId": "spase://CNES/NumericalOutput/CDPP-AMDA/TAO/Jupiter/tao-jup-stb", "start_date": "2007-10-01T00:00:00Z", "stop_date": "2014-11-01T00:00:00Z", "xmlid": "tao-jup-stb"}, "tao_jup_sw": {"__spz_name__": "SW / Input OMNI", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "tao-jup-sw", "att": "auto/tao-jup-sw", "dataSource": "", "desc": "Tao SW Jupiter / Input OMNI
Sampling: 1H", "inputResourceID": "omni-hour-all", "is_public": "True", "jup_sw_b": {"__spz_name__": "b tangential", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jup_sw_b", "dataset": "tao-jup-sw", "is_public": "True", "name": "b tangential", "start_date": "1990-01-01T01:00:00Z", "stop_date": "2024-09-04T00:00:00Z", "units": "nT", "xmlid": "jup_sw_b"}, "jup_sw_bx": {"__spz_name__": "b radial", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jup_sw_bx", "dataset": "tao-jup-sw", "description": "br along parker spiral computed with tao model outputs", "is_public": "True", "name": "b radial", "start_date": "1990-01-01T01:00:00Z", "stop_date": "2024-09-04T00:00:00Z", "units": "nT", "xmlid": "jup_sw_bx"}, "jup_sw_da": {"__spz_name__": "angle Jup-Sun-Earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jup_sw_da", "dataset": "tao-jup-sw", "is_public": "True", "name": "angle Jup-Sun-Earth", "start_date": "1990-01-01T01:00:00Z", "stop_date": "2024-09-04T00:00:00Z", "units": "deg", "xmlid": "jup_sw_da"}, "jup_sw_n": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jup_sw_n", "dataset": "tao-jup-sw", "description": "Solar Wind Proton Number Density, scalar", "is_public": "True", "name": "density", "start_date": "1990-01-01T01:00:00Z", "stop_date": "2024-09-04T00:00:00Z", "units": "cm\u207b\u00b3", "xmlid": "jup_sw_n"}, "jup_sw_pdyn": {"__spz_name__": "dynamic pressure", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jup_sw_pdyn", "dataset": "tao-jup-sw", "is_public": "True", "name": "dynamic pressure", "start_date": "1990-01-01T01:00:00Z", "stop_date": "2024-09-04T00:00:00Z", "units": "nPa", "xmlid": "jup_sw_pdyn"}, "jup_sw_t": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jup_sw_t", "dataset": "tao-jup-sw", "is_public": "True", "name": "temperature", "start_date": "1990-01-01T01:00:00Z", "stop_date": "2024-09-04T00:00:00Z", "units": "eV", "xmlid": "jup_sw_t"}, "jup_sw_v": {"__spz_name__": "velocity", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jup_sw_v", "dataset": "tao-jup-sw", "description": "Solar Wind Bulk Speed", "is_public": "True", "jup_sw_v0": {"__spz_name__": "V r", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jup_sw_v(0)", "dataset": "tao-jup-sw", "index1": "0", "is_public": "True", "name": "V r", "parameter": "jup_sw_v", "start_date": "1990-01-01T01:00:00Z", "stop_date": "2024-09-04T00:00:00Z", "xmlid": "jup_sw_v(0)"}, "jup_sw_v1": {"__spz_name__": "V t", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jup_sw_v(1)", "dataset": "tao-jup-sw", "index1": "1", "is_public": "True", "name": "V t", "parameter": "jup_sw_v", "start_date": "1990-01-01T01:00:00Z", "stop_date": "2024-09-04T00:00:00Z", "xmlid": "jup_sw_v(1)"}, "name": "velocity", "size": "2", "start_date": "1990-01-01T01:00:00Z", "stop_date": "2024-09-04T00:00:00Z", "units": "km/s", "xmlid": "jup_sw_v"}, "lastModificationDate": "2024-09-23T21:00:05Z", "lastUpdate": "2024-09-23T21:00:05Z", "measurement_type": "ThermalPlasma", "name": "SW / Input OMNI", "processing_level": "Calibrated", "sampling": "1H", "simulation": "1", "spaseId": "spase://CNES/NumericalOutput/CDPP-AMDA/TAO/Jupiter/tao-jup-sw", "start_date": "1990-01-01T01:00:00Z", "stop_date": "2024-09-04T00:00:00Z", "xmlid": "tao-jup-sw"}, "tao_jup_swrt": {"__spz_name__": "SW / Input ACE RealTime", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "tao-jup-swrt", "att": "auto/tao-jup-swrt", "dataSource": "", "desc": "Tao SW Jupiter / Input ACE RealTime
Sampling: 1H", "inputResourceID": "ace-mag-real", "is_public": "True", "jup_swrt_b": {"__spz_name__": "b tangential", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jup_swrt_b", "dataset": "tao-jup-swrt", "is_public": "True", "name": "b tangential", "start_date": "2024-05-24T01:00:00Z", "stop_date": "2024-08-28T00:00:00Z", "units": "nT", "xmlid": "jup_swrt_b"}, "jup_swrt_bx": {"__spz_name__": "b radial", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jup_swrt_bx", "dataset": "tao-jup-swrt", "description": "br along parker spiral computed with tao model outputs", "is_public": "True", "name": "b radial", "start_date": "2024-05-24T01:00:00Z", "stop_date": "2024-08-28T00:00:00Z", "units": "nT", "xmlid": "jup_swrt_bx"}, "jup_swrt_da": {"__spz_name__": "angle Jup-Sun-Earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jup_swrt_da", "dataset": "tao-jup-swrt", "is_public": "True", "name": "angle Jup-Sun-Earth", "start_date": "2024-05-24T01:00:00Z", "stop_date": "2024-08-28T00:00:00Z", "units": "deg", "xmlid": "jup_swrt_da"}, "jup_swrt_n": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jup_swrt_n", "dataset": "tao-jup-swrt", "description": "Solar Wind Proton Number Density, scalar", "is_public": "True", "name": "density", "start_date": "2024-05-24T01:00:00Z", "stop_date": "2024-08-28T00:00:00Z", "units": "cm\u207b\u00b3", "xmlid": "jup_swrt_n"}, "jup_swrt_pdyn": {"__spz_name__": "dynamic pressure", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jup_swrt_pdyn", "dataset": "tao-jup-swrt", "is_public": "True", "name": "dynamic pressure", "start_date": "2024-05-24T01:00:00Z", "stop_date": "2024-08-28T00:00:00Z", "units": "nPa", "xmlid": "jup_swrt_pdyn"}, "jup_swrt_t": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jup_swrt_t", "dataset": "tao-jup-swrt", "is_public": "True", "name": "temperature", "start_date": "2024-05-24T01:00:00Z", "stop_date": "2024-08-28T00:00:00Z", "units": "eV", "xmlid": "jup_swrt_t"}, "jup_swrt_v": {"__spz_name__": "velocity", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "jup_swrt_v", "dataset": "tao-jup-swrt", "description": "Solar Wind Bulk Speed", "is_public": "True", "jup_swrt_v0": {"__spz_name__": "V r", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jup_swrt_v(0)", "dataset": "tao-jup-swrt", "index1": "0", "is_public": "True", "name": "V r", "parameter": "jup_swrt_v", "start_date": "2024-05-24T01:00:00Z", "stop_date": "2024-08-28T00:00:00Z", "xmlid": "jup_swrt_v(0)"}, "jup_swrt_v1": {"__spz_name__": "V t", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "jup_swrt_v(1)", "dataset": "tao-jup-swrt", "index1": "1", "is_public": "True", "name": "V t", "parameter": "jup_swrt_v", "start_date": "2024-05-24T01:00:00Z", "stop_date": "2024-08-28T00:00:00Z", "xmlid": "jup_swrt_v(1)"}, "name": "velocity", "size": "2", "start_date": "2024-05-24T01:00:00Z", "stop_date": "2024-08-28T00:00:00Z", "units": "km/s", "xmlid": "jup_swrt_v"}, "lastModificationDate": "2024-08-29T01:30:26Z", "lastUpdate": "2024-08-29T01:30:26Z", "measurement_type": "ThermalPlasma", "name": "SW / Input ACE RealTime", "processing_level": "Calibrated", "sampling": "1H", "simulation": "1", "spaseId": "spase://CNES/NumericalOutput/CDPP-AMDA/TAO/Jupiter/tao-jup-swrt", "start_date": "2024-05-24T01:00:00Z", "stop_date": "2024-08-28T00:00:00Z", "xmlid": "tao-jup-swrt"}, "xmlid": "tao_jupiter"}, "__spz_name__": "Jupiter", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "SW_Propagation_Model_Jupiter", "is_public": "True", "name": "Jupiter", "rank": "9", "target": "Jupiter", "xmlid": "SW_Propagation_Model_Jupiter"}, "Mars": {"Ballistic_Model": {"__spz_name__": "Ballistic Model", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "ballistic_mars", "att": "auto/ballistic_mars", "bls_mars_omni": {"__spz_name__": "input OMNI", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "bls-mars-omni", "att": "auto/bls-mars-omni", "dataSource": "", "desc": "Ballistic delay from the Earth to Mars
Sampling: 1H", "inputResourceID": "omni-hour-all", "is_public": "True", "lastModificationDate": "2024-09-29T22:22:28Z", "lastUpdate": "2024-09-29T22:22:28Z", "mars_bls_da": {"__spz_name__": "angle mars-sun-earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mars_bls_da", "dataset": "bls-mars-omni", "is_public": "True", "name": "angle mars-sun-earth", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2024-09-20T10:00:00Z", "units": "deg", "xmlid": "mars_bls_da"}, "mars_bls_lag": {"__spz_name__": "delay earth-mars", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mars_bls_lag", "dataset": "bls-mars-omni", "is_public": "True", "name": "delay earth-mars", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2024-09-20T10:00:00Z", "units": "days", "xmlid": "mars_bls_lag"}, "measurement_type": "ThermalPlasma", "name": "input OMNI", "processing_level": "Calibrated", "sampling": "1H", "simulation": "1", "spaseId": "spase://CNES/NumericalOutput/CDPP-AMDA/BALLISTIC/bls-mars-omni", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2024-09-20T10:00:00Z", "xmlid": "bls-mars-omni"}, "desc": "", "is_public": "True", "name": "Ballistic Model", "xmlid": "ballistic_mars"}, "Tao_Model": {"__spz_name__": "Tao Model", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "tao_mars", "att": "auto/tao_mars", "desc": "", "is_public": "True", "name": "Tao Model", "tao_mars_dsc": {"__spz_name__": "SW / Input DSCOVR", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "tao-mars-dsc", "att": "auto/tao-mars-dsc", "dataSource": "", "desc": "Tao SW Mars / Input DSCOVR
Sampling: 1H", "inputResourceID": "dsc-fc-1m", "is_public": "True", "lastModificationDate": "2023-04-25T02:10:35Z", "lastUpdate": "2023-04-25T02:10:35Z", "mars_dsc_b": {"__spz_name__": "b tangential", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mars_dsc_b", "dataset": "tao-mars-dsc", "is_public": "True", "name": "b tangential", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2023-04-22T23:00:00Z", "units": "nT", "xmlid": "mars_dsc_b"}, "mars_dsc_bx": {"__spz_name__": "b radial", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mars_dsc_bx", "dataset": "tao-mars-dsc", "description": "br along parker spiral computed with tao model outputs", "is_public": "True", "name": "b radial", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2023-04-22T23:00:00Z", "units": "nT", "xmlid": "mars_dsc_bx"}, "mars_dsc_da": {"__spz_name__": "angle Mars-Sun-Earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mars_dsc_da", "dataset": "tao-mars-dsc", "is_public": "True", "name": "angle Mars-Sun-Earth", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2023-04-22T23:00:00Z", "units": "deg", "xmlid": "mars_dsc_da"}, "mars_dsc_n": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mars_dsc_n", "dataset": "tao-mars-dsc", "description": "Solar Wind Proton Number Density, scalar", "is_public": "True", "name": "density", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2023-04-22T23:00:00Z", "units": "cm\u207b\u00b3", "xmlid": "mars_dsc_n"}, "mars_dsc_pdyn": {"__spz_name__": "dynamic pressure", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mars_dsc_pdyn", "dataset": "tao-mars-dsc", "is_public": "True", "name": "dynamic pressure", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2023-04-22T23:00:00Z", "units": "nPa", "xmlid": "mars_dsc_pdyn"}, "mars_dsc_t": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mars_dsc_t", "dataset": "tao-mars-dsc", "is_public": "True", "name": "temperature", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2023-04-22T23:00:00Z", "units": "eV", "xmlid": "mars_dsc_t"}, "mars_dsc_v": {"__spz_name__": "velocity", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mars_dsc_v", "dataset": "tao-mars-dsc", "description": "Solar Wind Bulk Speed", "is_public": "True", "mars_dsc_v0": {"__spz_name__": "V r", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mars_dsc_v(0)", "dataset": "tao-mars-dsc", "index1": "0", "is_public": "True", "name": "V r", "parameter": "mars_dsc_v", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2023-04-22T23:00:00Z", "xmlid": "mars_dsc_v(0)"}, "mars_dsc_v1": {"__spz_name__": "V t", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mars_dsc_v(1)", "dataset": "tao-mars-dsc", "index1": "1", "is_public": "True", "name": "V t", "parameter": "mars_dsc_v", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2023-04-22T23:00:00Z", "xmlid": "mars_dsc_v(1)"}, "name": "velocity", "size": "2", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2023-04-22T23:00:00Z", "units": "km/s", "xmlid": "mars_dsc_v"}, "measurement_type": "ThermalPlasma", "name": "SW / Input DSCOVR", "processing_level": "Calibrated", "sampling": "1H", "simulation": "1", "spaseId": "spase://CNES/NumericalOutput/CDPP-AMDA/TAO/Mars/tao-mars-dsc", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2023-04-22T23:00:00Z", "xmlid": "tao-mars-dsc"}, "tao_mars_sta": {"__spz_name__": "SW / Input STA", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "tao-mars-sta", "att": "auto/tao-mars-sta", "dataSource": "", "desc": "Tao SW Mars / Input Stereo-A
Sampling: 1H", "inputResourceID": "sta-l2-pla", "is_public": "True", "lastModificationDate": "2021-12-09T14:29:13Z", "lastUpdate": "2021-12-09T14:29:12Z", "mars_sta_b": {"__spz_name__": "b tangential", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mars_sta_b", "dataset": "tao-mars-sta", "is_public": "True", "name": "b tangential", "start_date": "2007-03-01T00:00:00Z", "stop_date": "2019-04-30T00:00:00Z", "units": "nT", "xmlid": "mars_sta_b"}, "mars_sta_bx": {"__spz_name__": "b radial", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mars_sta_bx", "dataset": "tao-mars-sta", "description": "br along parker spiral computed with tao model outputs", "is_public": "True", "name": "b radial", "start_date": "2007-03-01T00:00:00Z", "stop_date": "2019-04-30T00:00:00Z", "units": "nT", "xmlid": "mars_sta_bx"}, "mars_sta_da": {"__spz_name__": "angle Mars-Sun-STA", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mars_sta_da", "dataset": "tao-mars-sta", "is_public": "True", "name": "angle Mars-Sun-STA", "start_date": "2007-03-01T00:00:00Z", "stop_date": "2019-04-30T00:00:00Z", "units": "deg", "xmlid": "mars_sta_da"}, "mars_sta_n": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mars_sta_n", "dataset": "tao-mars-sta", "description": "Solar Wind Proton Number Density, scalar", "is_public": "True", "name": "density", "start_date": "2007-03-01T00:00:00Z", "stop_date": "2019-04-30T00:00:00Z", "units": "cm\u207b\u00b3", "xmlid": "mars_sta_n"}, "mars_sta_pdyn": {"__spz_name__": "dynamic pressure", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mars_sta_pdyn", "dataset": "tao-mars-sta", "is_public": "True", "name": "dynamic pressure", "start_date": "2007-03-01T00:00:00Z", "stop_date": "2019-04-30T00:00:00Z", "units": "nPa", "xmlid": "mars_sta_pdyn"}, "mars_sta_t": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mars_sta_t", "dataset": "tao-mars-sta", "is_public": "True", "name": "temperature", "start_date": "2007-03-01T00:00:00Z", "stop_date": "2019-04-30T00:00:00Z", "units": "eV", "xmlid": "mars_sta_t"}, "mars_sta_v": {"__spz_name__": "velocity", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mars_sta_v", "dataset": "tao-mars-sta", "description": "Solar Wind Bulk Speed", "is_public": "True", "mars_sta_v0": {"__spz_name__": "V r", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mars_sta_v(0)", "dataset": "tao-mars-sta", "index1": "0", "is_public": "True", "name": "V r", "parameter": "mars_sta_v", "start_date": "2007-03-01T00:00:00Z", "stop_date": "2019-04-30T00:00:00Z", "xmlid": "mars_sta_v(0)"}, "mars_sta_v1": {"__spz_name__": "V t", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mars_sta_v(1)", "dataset": "tao-mars-sta", "index1": "1", "is_public": "True", "name": "V t", "parameter": "mars_sta_v", "start_date": "2007-03-01T00:00:00Z", "stop_date": "2019-04-30T00:00:00Z", "xmlid": "mars_sta_v(1)"}, "name": "velocity", "size": "2", "start_date": "2007-03-01T00:00:00Z", "stop_date": "2019-04-30T00:00:00Z", "units": "km/s", "xmlid": "mars_sta_v"}, "measurement_type": "ThermalPlasma", "name": "SW / Input STA", "processing_level": "Calibrated", "sampling": "1H", "simulation": "1", "spaseId": "spase://CNES/NumericalOutput/CDPP-AMDA/TAO/Mars/tao-mars-sta", "start_date": "2007-03-01T00:00:00Z", "stop_date": "2019-04-30T00:00:00Z", "xmlid": "tao-mars-sta"}, "tao_mars_stb": {"__spz_name__": "SW / Input STB", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "tao-mars-stb", "att": "auto/tao-mars-stb", "dataSource": "", "desc": "Tao SW Mars / Input Stereo-B
Sampling: 1H", "inputResourceID": "stb-l2-pla", "is_public": "True", "lastModificationDate": "2019-01-31T18:00:47Z", "lastUpdate": "2018-12-14T12:11:30Z", "mars_stb_b": {"__spz_name__": "b tangential", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mars_stb_b", "dataset": "tao-mars-stb", "is_public": "True", "name": "b tangential", "start_date": "2007-03-01T00:00:00Z", "stop_date": "2014-10-20T00:00:00Z", "units": "nT", "xmlid": "mars_stb_b"}, "mars_stb_bx": {"__spz_name__": "b radial", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mars_stb_bx", "dataset": "tao-mars-stb", "description": "br along parker spiral computed with tao model outputs", "is_public": "True", "name": "b radial", "start_date": "2007-03-01T00:00:00Z", "stop_date": "2014-10-20T00:00:00Z", "units": "nT", "xmlid": "mars_stb_bx"}, "mars_stb_da": {"__spz_name__": "angle Mars-Sun-STB", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mars_stb_da", "dataset": "tao-mars-stb", "is_public": "True", "name": "angle Mars-Sun-STB", "start_date": "2007-03-01T00:00:00Z", "stop_date": "2014-10-20T00:00:00Z", "units": "deg", "xmlid": "mars_stb_da"}, "mars_stb_n": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mars_stb_n", "dataset": "tao-mars-stb", "description": "Solar Wind Proton Number Density, scalar", "is_public": "True", "name": "density", "start_date": "2007-03-01T00:00:00Z", "stop_date": "2014-10-20T00:00:00Z", "units": "cm\u207b\u00b3", "xmlid": "mars_stb_n"}, "mars_stb_pdyn": {"__spz_name__": "dynamic pressure", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mars_stb_pdyn", "dataset": "tao-mars-stb", "is_public": "True", "name": "dynamic pressure", "start_date": "2007-03-01T00:00:00Z", "stop_date": "2014-10-20T00:00:00Z", "units": "nPa", "xmlid": "mars_stb_pdyn"}, "mars_stb_t": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mars_stb_t", "dataset": "tao-mars-stb", "is_public": "True", "name": "temperature", "start_date": "2007-03-01T00:00:00Z", "stop_date": "2014-10-20T00:00:00Z", "units": "eV", "xmlid": "mars_stb_t"}, "mars_stb_v": {"__spz_name__": "velocity", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mars_stb_v", "dataset": "tao-mars-stb", "description": "Solar Wind Bulk Speed", "is_public": "True", "mars_stb_v0": {"__spz_name__": "V r", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mars_stb_v(0)", "dataset": "tao-mars-stb", "index1": "0", "is_public": "True", "name": "V r", "parameter": "mars_stb_v", "start_date": "2007-03-01T00:00:00Z", "stop_date": "2014-10-20T00:00:00Z", "xmlid": "mars_stb_v(0)"}, "mars_stb_v1": {"__spz_name__": "V t", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mars_stb_v(1)", "dataset": "tao-mars-stb", "index1": "1", "is_public": "True", "name": "V t", "parameter": "mars_stb_v", "start_date": "2007-03-01T00:00:00Z", "stop_date": "2014-10-20T00:00:00Z", "xmlid": "mars_stb_v(1)"}, "name": "velocity", "size": "2", "start_date": "2007-03-01T00:00:00Z", "stop_date": "2014-10-20T00:00:00Z", "units": "km/s", "xmlid": "mars_stb_v"}, "measurement_type": "ThermalPlasma", "name": "SW / Input STB", "processing_level": "Calibrated", "sampling": "1H", "simulation": "1", "spaseId": "spase://CNES/NumericalOutput/CDPP-AMDA/TAO/Mars/tao-mars-stb", "start_date": "2007-03-01T00:00:00Z", "stop_date": "2014-10-20T00:00:00Z", "xmlid": "tao-mars-stb"}, "tao_mars_sw": {"__spz_name__": "SW / Input OMNI", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "tao-mars-sw", "att": "auto/tao-mars-sw", "dataSource": "", "desc": "Tao SW Mars / Input OMNI
Sampling: 1H", "inputResourceID": "omni-hour-all", "is_public": "True", "lastModificationDate": "2024-09-23T21:10:07Z", "lastUpdate": "2024-09-23T21:10:06Z", "mars_sw_b": {"__spz_name__": "b tangential", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mars_sw_b", "dataset": "tao-mars-sw", "is_public": "True", "name": "b tangential", "start_date": "1990-01-01T01:00:00Z", "stop_date": "2024-09-04T00:00:00Z", "units": "nT", "xmlid": "mars_sw_b"}, "mars_sw_bx": {"__spz_name__": "b radial", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mars_sw_bx", "dataset": "tao-mars-sw", "description": "br along parker spiral computed with tao model outputs", "is_public": "True", "name": "b radial", "start_date": "1990-01-01T01:00:00Z", "stop_date": "2024-09-04T00:00:00Z", "units": "nT", "xmlid": "mars_sw_bx"}, "mars_sw_da": {"__spz_name__": "angle Mars-Sun-Earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mars_sw_da", "dataset": "tao-mars-sw", "is_public": "True", "name": "angle Mars-Sun-Earth", "start_date": "1990-01-01T01:00:00Z", "stop_date": "2024-09-04T00:00:00Z", "units": "deg", "xmlid": "mars_sw_da"}, "mars_sw_n": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mars_sw_n", "dataset": "tao-mars-sw", "description": "Solar Wind Proton Number Density, scalar", "is_public": "True", "name": "density", "start_date": "1990-01-01T01:00:00Z", "stop_date": "2024-09-04T00:00:00Z", "units": "cm\u207b\u00b3", "xmlid": "mars_sw_n"}, "mars_sw_pdyn": {"__spz_name__": "dynamic pressure", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mars_sw_pdyn", "dataset": "tao-mars-sw", "is_public": "True", "name": "dynamic pressure", "start_date": "1990-01-01T01:00:00Z", "stop_date": "2024-09-04T00:00:00Z", "units": "nPa", "xmlid": "mars_sw_pdyn"}, "mars_sw_t": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mars_sw_t", "dataset": "tao-mars-sw", "is_public": "True", "name": "temperature", "start_date": "1990-01-01T01:00:00Z", "stop_date": "2024-09-04T00:00:00Z", "units": "eV", "xmlid": "mars_sw_t"}, "mars_sw_v": {"__spz_name__": "velocity", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mars_sw_v", "dataset": "tao-mars-sw", "description": "Solar Wind Bulk Speed", "is_public": "True", "mars_sw_v0": {"__spz_name__": "V r", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mars_sw_v(0)", "dataset": "tao-mars-sw", "index1": "0", "is_public": "True", "name": "V r", "parameter": "mars_sw_v", "start_date": "1990-01-01T01:00:00Z", "stop_date": "2024-09-04T00:00:00Z", "xmlid": "mars_sw_v(0)"}, "mars_sw_v1": {"__spz_name__": "V t", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mars_sw_v(1)", "dataset": "tao-mars-sw", "index1": "1", "is_public": "True", "name": "V t", "parameter": "mars_sw_v", "start_date": "1990-01-01T01:00:00Z", "stop_date": "2024-09-04T00:00:00Z", "xmlid": "mars_sw_v(1)"}, "name": "velocity", "size": "2", "start_date": "1990-01-01T01:00:00Z", "stop_date": "2024-09-04T00:00:00Z", "units": "km/s", "xmlid": "mars_sw_v"}, "measurement_type": "ThermalPlasma", "name": "SW / Input OMNI", "processing_level": "Calibrated", "sampling": "1H", "simulation": "1", "spaseId": "spase://CNES/NumericalOutput/CDPP-AMDA/TAO/Mars/tao-mars-sw", "start_date": "1990-01-01T01:00:00Z", "stop_date": "2024-09-04T00:00:00Z", "xmlid": "tao-mars-sw"}, "tao_mars_swrt": {"__spz_name__": "SW / Input ACE Real Time", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "tao-mars-swrt", "att": "auto/tao-mars-swrt", "dataSource": "", "desc": "Tao SW Mars / Input ACE Real Time
Sampling: 1H", "inputResourceID": "ace-mag-real", "is_public": "True", "lastModificationDate": "2024-08-29T01:20:24Z", "lastUpdate": "2024-08-29T01:20:24Z", "mars_swrt_b": {"__spz_name__": "b tangential", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mars_swrt_b", "dataset": "tao-mars-swrt", "is_public": "True", "name": "b tangential", "start_date": "2024-05-24T01:00:00Z", "stop_date": "2024-08-28T00:00:00Z", "units": "nT", "xmlid": "mars_swrt_b"}, "mars_swrt_bx": {"__spz_name__": "b radial", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mars_swrt_bx", "dataset": "tao-mars-swrt", "description": "br along parker spiral computed with tao model outputs", "is_public": "True", "name": "b radial", "start_date": "2024-05-24T01:00:00Z", "stop_date": "2024-08-28T00:00:00Z", "units": "nT", "xmlid": "mars_swrt_bx"}, "mars_swrt_da": {"__spz_name__": "angle Mars-Sun-Earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mars_swrt_da", "dataset": "tao-mars-swrt", "is_public": "True", "name": "angle Mars-Sun-Earth", "start_date": "2024-05-24T01:00:00Z", "stop_date": "2024-08-28T00:00:00Z", "units": "deg", "xmlid": "mars_swrt_da"}, "mars_swrt_n": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mars_swrt_n", "dataset": "tao-mars-swrt", "description": "Solar Wind Proton Number Density, scalar", "is_public": "True", "name": "density", "start_date": "2024-05-24T01:00:00Z", "stop_date": "2024-08-28T00:00:00Z", "units": "cm\u207b\u00b3", "xmlid": "mars_swrt_n"}, "mars_swrt_pdyn": {"__spz_name__": "dynamic pressure", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mars_swrt_pdyn", "dataset": "tao-mars-swrt", "is_public": "True", "name": "dynamic pressure", "start_date": "2024-05-24T01:00:00Z", "stop_date": "2024-08-28T00:00:00Z", "units": "nPa", "xmlid": "mars_swrt_pdyn"}, "mars_swrt_t": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mars_swrt_t", "dataset": "tao-mars-swrt", "is_public": "True", "name": "temperature", "start_date": "2024-05-24T01:00:00Z", "stop_date": "2024-08-28T00:00:00Z", "units": "eV", "xmlid": "mars_swrt_t"}, "mars_swrt_v": {"__spz_name__": "velocity", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mars_swrt_v", "dataset": "tao-mars-swrt", "description": "Solar Wind Bulk Speed", "is_public": "True", "mars_swrt_v0": {"__spz_name__": "V r", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mars_swrt_v(0)", "dataset": "tao-mars-swrt", "index1": "0", "is_public": "True", "name": "V r", "parameter": "mars_swrt_v", "start_date": "2024-05-24T01:00:00Z", "stop_date": "2024-08-28T00:00:00Z", "xmlid": "mars_swrt_v(0)"}, "mars_swrt_v1": {"__spz_name__": "V t", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mars_swrt_v(1)", "dataset": "tao-mars-swrt", "index1": "1", "is_public": "True", "name": "V t", "parameter": "mars_swrt_v", "start_date": "2024-05-24T01:00:00Z", "stop_date": "2024-08-28T00:00:00Z", "xmlid": "mars_swrt_v(1)"}, "name": "velocity", "size": "2", "start_date": "2024-05-24T01:00:00Z", "stop_date": "2024-08-28T00:00:00Z", "units": "km/s", "xmlid": "mars_swrt_v"}, "measurement_type": "ThermalPlasma", "name": "SW / Input ACE Real Time", "processing_level": "Calibrated", "sampling": "1H", "simulation": "1", "spaseId": "spase://CNES/NumericalOutput/CDPP-AMDA/TAO/Mars/tao-mars-swrt", "start_date": "2024-05-24T01:00:00Z", "stop_date": "2024-08-28T00:00:00Z", "xmlid": "tao-mars-swrt"}, "xmlid": "tao_mars"}, "__spz_name__": "Mars", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "SW_Propagation_Model_Mars", "is_public": "True", "name": "Mars", "rank": "8", "target": "Mars", "xmlid": "SW_Propagation_Model_Mars"}, "Mercury": {"Ballistic_Model": {"__spz_name__": "Ballistic Model", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "ballistic_mercury", "att": "auto/ballistic_mercury", "bls_mercury_omni": {"__spz_name__": "input OMNI", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "bls-mercury-omni", "att": "auto/bls-mercury-omni", "dataSource": "", "desc": "Ballistic delay from the Earth to Mercury
Sampling: 1H", "inputResourceID": "omni-hour-all", "is_public": "True", "lastModificationDate": "2024-09-29T22:22:28Z", "lastUpdate": "2024-09-29T22:22:28Z", "measurement_type": "ThermalPlasma", "mercury_bls_da": {"__spz_name__": "angle mercury-sun-earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mercury_bls_da", "dataset": "bls-mercury-omni", "is_public": "True", "name": "angle mercury-sun-earth", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2024-09-20T10:00:00Z", "units": "deg", "xmlid": "mercury_bls_da"}, "mercury_bls_lag": {"__spz_name__": "delay earth-mercury", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mercury_bls_lag", "dataset": "bls-mercury-omni", "is_public": "True", "name": "delay earth-mercury", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2024-09-20T10:00:00Z", "units": "days", "xmlid": "mercury_bls_lag"}, "name": "input OMNI", "processing_level": "Calibrated", "sampling": "1H", "simulation": "1", "spaseId": "spase://CNES/NumericalOutput/CDPP-AMDA/BALLISTIC/bls-mercury-omni", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2024-09-20T10:00:00Z", "xmlid": "bls-mercury-omni"}, "desc": "", "is_public": "True", "name": "Ballistic Model", "xmlid": "ballistic_mercury"}, "Tao_Model": {"__spz_name__": "Tao Model", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "tao_mercury", "att": "auto/tao_mercury", "desc": "", "is_public": "True", "name": "Tao Model", "tao_mercury_dsc": {"__spz_name__": "SW / Input DSCOVR", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "tao-mercury-dsc", "att": "auto/tao-mercury-dsc", "dataSource": "", "desc": "Tao SW Mercury / Input DSCOVR
Sampling: 1H", "inputResourceID": "dsc-fc-1m", "is_public": "True", "lastModificationDate": "2022-06-29T02:50:38Z", "lastUpdate": "2022-06-29T02:50:38Z", "measurement_type": "ThermalPlasma", "mercury_dsc_b": {"__spz_name__": "b tangential", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mercury_dsc_b", "dataset": "tao-mercury-dsc", "is_public": "True", "name": "b tangential", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2022-06-26T00:00:00Z", "units": "nT", "xmlid": "mercury_dsc_b"}, "mercury_dsc_bx": {"__spz_name__": "b radial", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mercury_dsc_bx", "dataset": "tao-mercury-dsc", "description": "br along parker spiral computed with tao model outputs", "is_public": "True", "name": "b radial", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2022-06-26T00:00:00Z", "units": "nT", "xmlid": "mercury_dsc_bx"}, "mercury_dsc_da": {"__spz_name__": "angle Mercury-Sun-Earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mercury_dsc_da", "dataset": "tao-mercury-dsc", "is_public": "True", "name": "angle Mercury-Sun-Earth", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2022-06-26T00:00:00Z", "units": "deg", "xmlid": "mercury_dsc_da"}, "mercury_dsc_n": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mercury_dsc_n", "dataset": "tao-mercury-dsc", "description": "Solar Wind Proton Number Density, scalar", "is_public": "True", "name": "density", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2022-06-26T00:00:00Z", "units": "cm\u207b\u00b3", "xmlid": "mercury_dsc_n"}, "mercury_dsc_pdyn": {"__spz_name__": "dynamic pressure", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mercury_dsc_pdyn", "dataset": "tao-mercury-dsc", "is_public": "True", "name": "dynamic pressure", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2022-06-26T00:00:00Z", "units": "nPa", "xmlid": "mercury_dsc_pdyn"}, "mercury_dsc_t": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mercury_dsc_t", "dataset": "tao-mercury-dsc", "is_public": "True", "name": "temperature", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2022-06-26T00:00:00Z", "units": "eV", "xmlid": "mercury_dsc_t"}, "mercury_dsc_v": {"__spz_name__": "velocity", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mercury_dsc_v", "dataset": "tao-mercury-dsc", "description": "Solar Wind Bulk Speed", "is_public": "True", "mercury_dsc_v0": {"__spz_name__": "V r", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mercury_dsc_v(0)", "dataset": "tao-mercury-dsc", "index1": "0", "is_public": "True", "name": "V r", "parameter": "mercury_dsc_v", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2022-06-26T00:00:00Z", "xmlid": "mercury_dsc_v(0)"}, "mercury_dsc_v1": {"__spz_name__": "V t", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mercury_dsc_v(1)", "dataset": "tao-mercury-dsc", "index1": "1", "is_public": "True", "name": "V t", "parameter": "mercury_dsc_v", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2022-06-26T00:00:00Z", "xmlid": "mercury_dsc_v(1)"}, "name": "velocity", "size": "2", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2022-06-26T00:00:00Z", "units": "km/s", "xmlid": "mercury_dsc_v"}, "name": "SW / Input DSCOVR", "processing_level": "Calibrated", "sampling": "1H", "simulation": "1", "spaseId": "spase://CNES/NumericalOutput/CDPP-AMDA/TAO/Mercury/tao-mercury-dsc", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2022-06-26T00:00:00Z", "xmlid": "tao-mercury-dsc"}, "tao_mercury_sta": {"__spz_name__": "SW / Input STA", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "tao-mercury-sta", "att": "auto/tao-mercury-sta", "dataSource": "", "desc": "Tao SW Mercury / Input Stereo-A
Sampling: 1H", "inputResourceID": "sta-l2-pla", "is_public": "True", "lastModificationDate": "2021-12-07T17:06:59Z", "lastUpdate": "2021-12-07T17:06:59Z", "measurement_type": "ThermalPlasma", "mercury_sta_b": {"__spz_name__": "b tangential", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mercury_sta_b", "dataset": "tao-mercury-sta", "is_public": "True", "name": "b tangential", "start_date": "2011-01-01T00:00:00Z", "stop_date": "2019-04-29T00:00:00Z", "units": "nT", "xmlid": "mercury_sta_b"}, "mercury_sta_bx": {"__spz_name__": "b radial", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mercury_sta_bx", "dataset": "tao-mercury-sta", "description": "br along parker spiral computed with tao model outputs", "is_public": "True", "name": "b radial", "start_date": "2011-01-01T00:00:00Z", "stop_date": "2019-04-29T00:00:00Z", "units": "nT", "xmlid": "mercury_sta_bx"}, "mercury_sta_da": {"__spz_name__": "angle Mercury-Sun-STA", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mercury_sta_da", "dataset": "tao-mercury-sta", "is_public": "True", "name": "angle Mercury-Sun-STA", "start_date": "2011-01-01T00:00:00Z", "stop_date": "2019-04-29T00:00:00Z", "units": "deg", "xmlid": "mercury_sta_da"}, "mercury_sta_n": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mercury_sta_n", "dataset": "tao-mercury-sta", "description": "Solar Wind Proton Number Density, scalar", "is_public": "True", "name": "density", "start_date": "2011-01-01T00:00:00Z", "stop_date": "2019-04-29T00:00:00Z", "units": "cm\u207b\u00b3", "xmlid": "mercury_sta_n"}, "mercury_sta_pdyn": {"__spz_name__": "dynamic pressure", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mercury_sta_pdyn", "dataset": "tao-mercury-sta", "is_public": "True", "name": "dynamic pressure", "start_date": "2011-01-01T00:00:00Z", "stop_date": "2019-04-29T00:00:00Z", "units": "nPa", "xmlid": "mercury_sta_pdyn"}, "mercury_sta_t": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mercury_sta_t", "dataset": "tao-mercury-sta", "is_public": "True", "name": "temperature", "start_date": "2011-01-01T00:00:00Z", "stop_date": "2019-04-29T00:00:00Z", "units": "eV", "xmlid": "mercury_sta_t"}, "mercury_sta_v": {"__spz_name__": "velocity", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mercury_sta_v", "dataset": "tao-mercury-sta", "description": "Solar Wind Bulk Speed", "is_public": "True", "mercury_sta_v0": {"__spz_name__": "V r", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mercury_sta_v(0)", "dataset": "tao-mercury-sta", "index1": "0", "is_public": "True", "name": "V r", "parameter": "mercury_sta_v", "start_date": "2011-01-01T00:00:00Z", "stop_date": "2019-04-29T00:00:00Z", "xmlid": "mercury_sta_v(0)"}, "mercury_sta_v1": {"__spz_name__": "V t", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mercury_sta_v(1)", "dataset": "tao-mercury-sta", "index1": "1", "is_public": "True", "name": "V t", "parameter": "mercury_sta_v", "start_date": "2011-01-01T00:00:00Z", "stop_date": "2019-04-29T00:00:00Z", "xmlid": "mercury_sta_v(1)"}, "name": "velocity", "size": "2", "start_date": "2011-01-01T00:00:00Z", "stop_date": "2019-04-29T00:00:00Z", "units": "km/s", "xmlid": "mercury_sta_v"}, "name": "SW / Input STA", "processing_level": "Calibrated", "sampling": "1H", "simulation": "1", "spaseId": "spase://CNES/NumericalOutput/CDPP-AMDA/TAO/Mercury/tao-mercury-sta", "start_date": "2011-01-01T00:00:00Z", "stop_date": "2019-04-29T00:00:00Z", "xmlid": "tao-mercury-sta"}, "tao_mercury_stb": {"__spz_name__": "SW / Input STB", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "tao-mercury-stb", "att": "auto/tao-mercury-stb", "dataSource": "", "desc": "Tao SW Mercury / Input Stereo-B
Sampling: 1H", "inputResourceID": "stb-l2-pla", "is_public": "True", "lastModificationDate": "2019-02-01T15:45:12Z", "lastUpdate": "2019-02-01T15:45:12Z", "measurement_type": "ThermalPlasma", "mercury_stb_b": {"__spz_name__": "b tangential", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mercury_stb_b", "dataset": "tao-mercury-stb", "is_public": "True", "name": "b tangential", "start_date": "2008-01-01T00:00:00Z", "stop_date": "2014-11-01T00:00:00Z", "units": "nT", "xmlid": "mercury_stb_b"}, "mercury_stb_bx": {"__spz_name__": "b radial", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mercury_stb_bx", "dataset": "tao-mercury-stb", "description": "br along parker spiral computed with tao model outputs", "is_public": "True", "name": "b radial", "start_date": "2008-01-01T00:00:00Z", "stop_date": "2014-11-01T00:00:00Z", "units": "nT", "xmlid": "mercury_stb_bx"}, "mercury_stb_da": {"__spz_name__": "angle Mercury-Sun-STB", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mercury_stb_da", "dataset": "tao-mercury-stb", "is_public": "True", "name": "angle Mercury-Sun-STB", "start_date": "2008-01-01T00:00:00Z", "stop_date": "2014-11-01T00:00:00Z", "units": "deg", "xmlid": "mercury_stb_da"}, "mercury_stb_n": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mercury_stb_n", "dataset": "tao-mercury-stb", "description": "Solar Wind Proton Number Density, scalar", "is_public": "True", "name": "density", "start_date": "2008-01-01T00:00:00Z", "stop_date": "2014-11-01T00:00:00Z", "units": "cm\u207b\u00b3", "xmlid": "mercury_stb_n"}, "mercury_stb_pdyn": {"__spz_name__": "dynamic pressure", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mercury_stb_pdyn", "dataset": "tao-mercury-stb", "is_public": "True", "name": "dynamic pressure", "start_date": "2008-01-01T00:00:00Z", "stop_date": "2014-11-01T00:00:00Z", "units": "nPa", "xmlid": "mercury_stb_pdyn"}, "mercury_stb_t": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mercury_stb_t", "dataset": "tao-mercury-stb", "is_public": "True", "name": "temperature", "start_date": "2008-01-01T00:00:00Z", "stop_date": "2014-11-01T00:00:00Z", "units": "eV", "xmlid": "mercury_stb_t"}, "mercury_stb_v": {"__spz_name__": "velocity", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mercury_stb_v", "dataset": "tao-mercury-stb", "description": "Solar Wind Bulk Speed", "is_public": "True", "mercury_stb_v0": {"__spz_name__": "V r", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mercury_stb_v(0)", "dataset": "tao-mercury-stb", "index1": "0", "is_public": "True", "name": "V r", "parameter": "mercury_stb_v", "start_date": "2008-01-01T00:00:00Z", "stop_date": "2014-11-01T00:00:00Z", "xmlid": "mercury_stb_v(0)"}, "mercury_stb_v1": {"__spz_name__": "V t", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mercury_stb_v(1)", "dataset": "tao-mercury-stb", "index1": "1", "is_public": "True", "name": "V t", "parameter": "mercury_stb_v", "start_date": "2008-01-01T00:00:00Z", "stop_date": "2014-11-01T00:00:00Z", "xmlid": "mercury_stb_v(1)"}, "name": "velocity", "size": "2", "start_date": "2008-01-01T00:00:00Z", "stop_date": "2014-11-01T00:00:00Z", "units": "km/s", "xmlid": "mercury_stb_v"}, "name": "SW / Input STB", "processing_level": "Calibrated", "sampling": "1H", "simulation": "1", "spaseId": "spase://CNES/NumericalOutput/CDPP-AMDA/TAO/Mercury/tao-mercury-stb", "start_date": "2008-01-01T00:00:00Z", "stop_date": "2014-11-01T00:00:00Z", "xmlid": "tao-mercury-stb"}, "tao_mercury_sw": {"__spz_name__": "SW / Input OMNI", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "tao-mercury-sw", "att": "auto/tao-mercury-sw", "dataSource": "", "desc": "Tao SW Mercury / Input OMNI
Sampling: 1H", "inputResourceID": "omni-hour-all", "is_public": "True", "lastModificationDate": "2024-03-24T20:20:04Z", "lastUpdate": "2024-03-24T20:20:04Z", "measurement_type": "ThermalPlasma", "mercury_sw_b": {"__spz_name__": "b tangential", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mercury_sw_b", "dataset": "tao-mercury-sw", "is_public": "True", "name": "b tangential", "start_date": "1990-01-01T01:00:00Z", "stop_date": "2024-02-14T00:00:00Z", "units": "nT", "xmlid": "mercury_sw_b"}, "mercury_sw_bx": {"__spz_name__": "b radial", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mercury_sw_bx", "dataset": "tao-mercury-sw", "description": "br along parker spiral computed with tao model outputs", "is_public": "True", "name": "b radial", "start_date": "1990-01-01T01:00:00Z", "stop_date": "2024-02-14T00:00:00Z", "units": "nT", "xmlid": "mercury_sw_bx"}, "mercury_sw_da": {"__spz_name__": "angle Mercury-Sun-Earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mercury_sw_da", "dataset": "tao-mercury-sw", "is_public": "True", "name": "angle Mercury-Sun-Earth", "start_date": "1990-01-01T01:00:00Z", "stop_date": "2024-02-14T00:00:00Z", "units": "deg", "xmlid": "mercury_sw_da"}, "mercury_sw_n": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mercury_sw_n", "dataset": "tao-mercury-sw", "description": "Solar Wind Proton Number Density, scalar", "is_public": "True", "name": "density", "start_date": "1990-01-01T01:00:00Z", "stop_date": "2024-02-14T00:00:00Z", "units": "cm\u207b\u00b3", "xmlid": "mercury_sw_n"}, "mercury_sw_pdyn": {"__spz_name__": "dynamic pressure", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mercury_sw_pdyn", "dataset": "tao-mercury-sw", "is_public": "True", "name": "dynamic pressure", "start_date": "1990-01-01T01:00:00Z", "stop_date": "2024-02-14T00:00:00Z", "units": "nPa", "xmlid": "mercury_sw_pdyn"}, "mercury_sw_t": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mercury_sw_t", "dataset": "tao-mercury-sw", "is_public": "True", "name": "temperature", "start_date": "1990-01-01T01:00:00Z", "stop_date": "2024-02-14T00:00:00Z", "units": "eV", "xmlid": "mercury_sw_t"}, "mercury_sw_v": {"__spz_name__": "velocity", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mercury_sw_v", "dataset": "tao-mercury-sw", "description": "Solar Wind Bulk Speed", "is_public": "True", "mercury_sw_v0": {"__spz_name__": "V r", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mercury_sw_v(0)", "dataset": "tao-mercury-sw", "index1": "0", "is_public": "True", "name": "V r", "parameter": "mercury_sw_v", "start_date": "1990-01-01T01:00:00Z", "stop_date": "2024-02-14T00:00:00Z", "xmlid": "mercury_sw_v(0)"}, "mercury_sw_v1": {"__spz_name__": "V t", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mercury_sw_v(1)", "dataset": "tao-mercury-sw", "index1": "1", "is_public": "True", "name": "V t", "parameter": "mercury_sw_v", "start_date": "1990-01-01T01:00:00Z", "stop_date": "2024-02-14T00:00:00Z", "xmlid": "mercury_sw_v(1)"}, "name": "velocity", "size": "2", "start_date": "1990-01-01T01:00:00Z", "stop_date": "2024-02-14T00:00:00Z", "units": "km/s", "xmlid": "mercury_sw_v"}, "name": "SW / Input OMNI", "processing_level": "Calibrated", "sampling": "1H", "simulation": "1", "spaseId": "spase://CNES/NumericalOutput/CDPP-AMDA/TAO/Mercury/tao-mercury-sw", "start_date": "1990-01-01T01:00:00Z", "stop_date": "2024-02-14T00:00:00Z", "xmlid": "tao-mercury-sw"}, "tao_mercury_swrt": {"__spz_name__": "SW / Input ACE Real Time", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "tao-mercury-swrt", "att": "auto/tao-mercury-swrt", "dataSource": "", "desc": "Tao SW Mercury / Input ACE Real Time
Sampling: 1H", "inputResourceID": "ace-mag-real", "is_public": "True", "lastModificationDate": "2024-10-01T21:30:15Z", "lastUpdate": "2024-10-01T21:30:15Z", "measurement_type": "ThermalPlasma", "mercury_swrt_b": {"__spz_name__": "b tangential", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mercury_swrt_b", "dataset": "tao-mercury-swrt", "is_public": "True", "name": "b tangential", "start_date": "2024-07-05T01:00:00Z", "stop_date": "2024-10-01T00:00:00Z", "units": "nT", "xmlid": "mercury_swrt_b"}, "mercury_swrt_bx": {"__spz_name__": "b radial", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mercury_swrt_bx", "dataset": "tao-mercury-swrt", "description": "br along parker spiral computed with tao model outputs", "is_public": "True", "name": "b radial", "start_date": "2024-07-05T01:00:00Z", "stop_date": "2024-10-01T00:00:00Z", "units": "nT", "xmlid": "mercury_swrt_bx"}, "mercury_swrt_da": {"__spz_name__": "angle Mercury-Sun-Earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mercury_swrt_da", "dataset": "tao-mercury-swrt", "is_public": "True", "name": "angle Mercury-Sun-Earth", "start_date": "2024-07-05T01:00:00Z", "stop_date": "2024-10-01T00:00:00Z", "units": "deg", "xmlid": "mercury_swrt_da"}, "mercury_swrt_n": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mercury_swrt_n", "dataset": "tao-mercury-swrt", "description": "Solar Wind Proton Number Density, scalar", "is_public": "True", "name": "density", "start_date": "2024-07-05T01:00:00Z", "stop_date": "2024-10-01T00:00:00Z", "units": "cm\u207b\u00b3", "xmlid": "mercury_swrt_n"}, "mercury_swrt_pdyn": {"__spz_name__": "dynamic pressure", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mercury_swrt_pdyn", "dataset": "tao-mercury-swrt", "is_public": "True", "name": "dynamic pressure", "start_date": "2024-07-05T01:00:00Z", "stop_date": "2024-10-01T00:00:00Z", "units": "nPa", "xmlid": "mercury_swrt_pdyn"}, "mercury_swrt_t": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mercury_swrt_t", "dataset": "tao-mercury-swrt", "is_public": "True", "name": "temperature", "start_date": "2024-07-05T01:00:00Z", "stop_date": "2024-10-01T00:00:00Z", "units": "eV", "xmlid": "mercury_swrt_t"}, "mercury_swrt_v": {"__spz_name__": "velocity", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "mercury_swrt_v", "dataset": "tao-mercury-swrt", "description": "Solar Wind Bulk Speed", "is_public": "True", "mercury_swrt_v0": {"__spz_name__": "V r", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mercury_swrt_v(0)", "dataset": "tao-mercury-swrt", "index1": "0", "is_public": "True", "name": "V r", "parameter": "mercury_swrt_v", "start_date": "2024-07-05T01:00:00Z", "stop_date": "2024-10-01T00:00:00Z", "xmlid": "mercury_swrt_v(0)"}, "mercury_swrt_v1": {"__spz_name__": "V t", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "mercury_swrt_v(1)", "dataset": "tao-mercury-swrt", "index1": "1", "is_public": "True", "name": "V t", "parameter": "mercury_swrt_v", "start_date": "2024-07-05T01:00:00Z", "stop_date": "2024-10-01T00:00:00Z", "xmlid": "mercury_swrt_v(1)"}, "name": "velocity", "size": "2", "start_date": "2024-07-05T01:00:00Z", "stop_date": "2024-10-01T00:00:00Z", "units": "km/s", "xmlid": "mercury_swrt_v"}, "name": "SW / Input ACE Real Time", "processing_level": "Calibrated", "sampling": "1H", "simulation": "1", "spaseId": "spase://CNES/NumericalOutput/CDPP-AMDA/TAO/Mercury/tao-mercury-swrt", "start_date": "2024-07-05T01:00:00Z", "stop_date": "2024-10-01T00:00:00Z", "xmlid": "tao-mercury-swrt"}, "xmlid": "tao_mercury"}, "__spz_name__": "Mercury", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "SW_Propagation_Model_Mercury", "is_public": "True", "name": "Mercury", "rank": "2", "target": "Mercury", "xmlid": "SW_Propagation_Model_Mercury"}, "Neptune": {"Ballistic_Model": {"__spz_name__": "Ballistic Model", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "ballistic_neptune", "att": "auto/ballistic_neptune", "bls_neptune_omni": {"__spz_name__": "input OMNI", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "bls-neptune-omni", "att": "auto/bls-neptune-omni", "dataSource": "", "desc": "Ballistic delay from the Earth to Neptune
Sampling: 1H", "inputResourceID": "omni-hour-all", "is_public": "True", "lastModificationDate": "2024-09-29T22:22:28Z", "lastUpdate": "2024-09-29T22:22:28Z", "measurement_type": "ThermalPlasma", "name": "input OMNI", "nep_bls_da": {"__spz_name__": "angle neptune-sun-earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "nep_bls_da", "dataset": "bls-neptune-omni", "is_public": "True", "name": "angle neptune-sun-earth", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2024-09-20T10:00:00Z", "units": "deg", "xmlid": "nep_bls_da"}, "nep_bls_lag": {"__spz_name__": "delay earth-neptune", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "nep_bls_lag", "dataset": "bls-neptune-omni", "is_public": "True", "name": "delay earth-neptune", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2024-09-20T10:00:00Z", "units": "days", "xmlid": "nep_bls_lag"}, "processing_level": "Calibrated", "sampling": "1H", "simulation": "1", "spaseId": "spase://CNES/NumericalOutput/CDPP-AMDA/BALLISTIC/bls-neptune-omni", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2024-09-20T10:00:00Z", "xmlid": "bls-neptune-omni"}, "desc": "", "is_public": "True", "name": "Ballistic Model", "xmlid": "ballistic_neptune"}, "Tao_Model": {"__spz_name__": "Tao Model", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "tao_neptune", "att": "auto/tao_neptune", "desc": "", "is_public": "True", "name": "Tao Model", "tao_nep_dsc": {"__spz_name__": "SW / Input DSCOVR", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "tao-nep-dsc", "att": "auto/tao-nep-dsc", "dataSource": "", "desc": "Tao SW Neptune / Input DSCOVR
Sampling: 1H", "inputResourceID": "dsc-fc-1m", "is_public": "True", "lastModificationDate": "2024-10-04T00:30:35Z", "lastUpdate": "2022-06-23T20:31:15Z", "measurement_type": "ThermalPlasma", "name": "SW / Input DSCOVR", "nep_dsc_b": {"__spz_name__": "b tangential", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "nep_dsc_b", "dataset": "tao-nep-dsc", "is_public": "True", "name": "b tangential", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2022-06-25T23:00:00Z", "units": "nT", "xmlid": "nep_dsc_b"}, "nep_dsc_bx": {"__spz_name__": "b radial", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "nep_dsc_bx", "dataset": "tao-nep-dsc", "description": "br along parker spiral computed with tao model outputs", "is_public": "True", "name": "b radial", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2022-06-25T23:00:00Z", "units": "nT", "xmlid": "nep_dsc_bx"}, "nep_dsc_da": {"__spz_name__": "angle Neptune-Sun-Earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "nep_dsc_da", "dataset": "tao-nep-dsc", "is_public": "True", "name": "angle Neptune-Sun-Earth", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2022-06-25T23:00:00Z", "units": "deg", "xmlid": "nep_dsc_da"}, "nep_dsc_n": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "nep_dsc_n", "dataset": "tao-nep-dsc", "description": "Solar Wind Proton Number Density, scalar", "is_public": "True", "name": "density", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2022-06-25T23:00:00Z", "units": "cm\u207b\u00b3", "xmlid": "nep_dsc_n"}, "nep_dsc_pdyn": {"__spz_name__": "dynamic pressure", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "nep_dsc_pdyn", "dataset": "tao-nep-dsc", "is_public": "True", "name": "dynamic pressure", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2022-06-25T23:00:00Z", "units": "nPa", "xmlid": "nep_dsc_pdyn"}, "nep_dsc_t": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "nep_dsc_t", "dataset": "tao-nep-dsc", "is_public": "True", "name": "temperature", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2022-06-25T23:00:00Z", "units": "eV", "xmlid": "nep_dsc_t"}, "nep_dsc_v": {"__spz_name__": "velocity", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "nep_dsc_v", "dataset": "tao-nep-dsc", "description": "Solar Wind Bulk Speed", "is_public": "True", "name": "velocity", "nep_dsc_v0": {"__spz_name__": "V r", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "nep_dsc_v(0)", "dataset": "tao-nep-dsc", "index1": "0", "is_public": "True", "name": "V r", "parameter": "nep_dsc_v", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2022-06-25T23:00:00Z", "xmlid": "nep_dsc_v(0)"}, "nep_dsc_v1": {"__spz_name__": "V t", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "nep_dsc_v(1)", "dataset": "tao-nep-dsc", "index1": "1", "is_public": "True", "name": "V t", "parameter": "nep_dsc_v", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2022-06-25T23:00:00Z", "xmlid": "nep_dsc_v(1)"}, "size": "2", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2022-06-25T23:00:00Z", "units": "km/s", "xmlid": "nep_dsc_v"}, "processing_level": "Calibrated", "sampling": "1H", "simulation": "1", "spaseId": "spase://CNES/NumericalOutput/CDPP-AMDA/TAO/Neptune/tao-nep-dsc", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2022-06-25T23:00:00Z", "xmlid": "tao-nep-dsc"}, "tao_nep_sta": {"__spz_name__": "SW / Input STA", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "tao-nep-sta", "att": "auto/tao-nep-sta", "dataSource": "", "desc": "Tao SW Neptune / Input Stereo-A
Sampling: 1H", "inputResourceID": "sta-l2-pla", "is_public": "True", "lastModificationDate": "2024-10-04T02:20:49Z", "lastUpdate": "2020-01-10T12:37:07Z", "measurement_type": "ThermalPlasma", "name": "SW / Input STA", "nep_sta_b": {"__spz_name__": "b tangential", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "nep_sta_b", "dataset": "tao-nep-sta", "is_public": "True", "name": "b tangential", "start_date": "2007-03-01T00:00:00Z", "stop_date": "2019-01-01T00:00:00Z", "units": "nT", "xmlid": "nep_sta_b"}, "nep_sta_bx": {"__spz_name__": "b radial", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "nep_sta_bx", "dataset": "tao-nep-sta", "description": "br along parker spiral computed with tao model outputs", "is_public": "True", "name": "b radial", "start_date": "2007-03-01T00:00:00Z", "stop_date": "2019-01-01T00:00:00Z", "units": "nT", "xmlid": "nep_sta_bx"}, "nep_sta_da": {"__spz_name__": "angle Neptune-Sun-STA", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "nep_sta_da", "dataset": "tao-nep-sta", "is_public": "True", "name": "angle Neptune-Sun-STA", "start_date": "2007-03-01T00:00:00Z", "stop_date": "2019-01-01T00:00:00Z", "units": "deg", "xmlid": "nep_sta_da"}, "nep_sta_n": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "nep_sta_n", "dataset": "tao-nep-sta", "description": "Solar Wind Proton Number Density, scalar", "is_public": "True", "name": "density", "start_date": "2007-03-01T00:00:00Z", "stop_date": "2019-01-01T00:00:00Z", "units": "cm\u207b\u00b3", "xmlid": "nep_sta_n"}, "nep_sta_pdyn": {"__spz_name__": "dynamic pressure", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "nep_sta_pdyn", "dataset": "tao-nep-sta", "is_public": "True", "name": "dynamic pressure", "start_date": "2007-03-01T00:00:00Z", "stop_date": "2019-01-01T00:00:00Z", "units": "nPa", "xmlid": "nep_sta_pdyn"}, "nep_sta_t": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "nep_sta_t", "dataset": "tao-nep-sta", "is_public": "True", "name": "temperature", "start_date": "2007-03-01T00:00:00Z", "stop_date": "2019-01-01T00:00:00Z", "units": "eV", "xmlid": "nep_sta_t"}, "nep_sta_v": {"__spz_name__": "velocity", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "nep_sta_v", "dataset": "tao-nep-sta", "description": "Solar Wind Bulk Speed", "is_public": "True", "name": "velocity", "nep_sta_v0": {"__spz_name__": "V r", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "nep_sta_v(0)", "dataset": "tao-nep-sta", "index1": "0", "is_public": "True", "name": "V r", "parameter": "nep_sta_v", "start_date": "2007-03-01T00:00:00Z", "stop_date": "2019-01-01T00:00:00Z", "xmlid": "nep_sta_v(0)"}, "nep_sta_v1": {"__spz_name__": "V t", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "nep_sta_v(1)", "dataset": "tao-nep-sta", "index1": "1", "is_public": "True", "name": "V t", "parameter": "nep_sta_v", "start_date": "2007-03-01T00:00:00Z", "stop_date": "2019-01-01T00:00:00Z", "xmlid": "nep_sta_v(1)"}, "size": "2", "start_date": "2007-03-01T00:00:00Z", "stop_date": "2019-01-01T00:00:00Z", "units": "km/s", "xmlid": "nep_sta_v"}, "processing_level": "Calibrated", "sampling": "1H", "simulation": "1", "spaseId": "spase://CNES/NumericalOutput/CDPP-AMDA/TAO/Neptune/tao-nep-sta", "start_date": "2007-03-01T00:00:00Z", "stop_date": "2019-01-01T00:00:00Z", "xmlid": "tao-nep-sta"}, "tao_nep_stb": {"__spz_name__": "SW / Input STB", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "tao-nep-stb", "att": "auto/tao-nep-stb", "dataSource": "", "desc": "Tao SW Neptune / Input Stereo-B
Sampling: 1H", "inputResourceID": "stb-l2-pla", "is_public": "True", "lastModificationDate": "2019-02-01T15:43:55Z", "lastUpdate": "2019-02-01T15:43:55Z", "measurement_type": "ThermalPlasma", "name": "SW / Input STB", "nep_stb_b": {"__spz_name__": "b tangential", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "nep_stb_b", "dataset": "tao-nep-stb", "is_public": "True", "name": "b tangential", "start_date": "2008-01-01T00:00:00Z", "stop_date": "2014-11-01T00:00:00Z", "units": "nT", "xmlid": "nep_stb_b"}, "nep_stb_bx": {"__spz_name__": "b radial", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "nep_stb_bx", "dataset": "tao-nep-stb", "description": "br along parker spiral computed with tao model outputs", "is_public": "True", "name": "b radial", "start_date": "2008-01-01T00:00:00Z", "stop_date": "2014-11-01T00:00:00Z", "units": "nT", "xmlid": "nep_stb_bx"}, "nep_stb_da": {"__spz_name__": "angle Neptune-Sun-STB", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "nep_stb_da", "dataset": "tao-nep-stb", "is_public": "True", "name": "angle Neptune-Sun-STB", "start_date": "2008-01-01T00:00:00Z", "stop_date": "2014-11-01T00:00:00Z", "units": "deg", "xmlid": "nep_stb_da"}, "nep_stb_n": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "nep_stb_n", "dataset": "tao-nep-stb", "description": "Solar Wind Proton Number Density, scalar", "is_public": "True", "name": "density", "start_date": "2008-01-01T00:00:00Z", "stop_date": "2014-11-01T00:00:00Z", "units": "cm\u207b\u00b3", "xmlid": "nep_stb_n"}, "nep_stb_pdyn": {"__spz_name__": "dynamic pressure", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "nep_stb_pdyn", "dataset": "tao-nep-stb", "is_public": "True", "name": "dynamic pressure", "start_date": "2008-01-01T00:00:00Z", "stop_date": "2014-11-01T00:00:00Z", "units": "nPa", "xmlid": "nep_stb_pdyn"}, "nep_stb_t": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "nep_stb_t", "dataset": "tao-nep-stb", "is_public": "True", "name": "temperature", "start_date": "2008-01-01T00:00:00Z", "stop_date": "2014-11-01T00:00:00Z", "units": "eV", "xmlid": "nep_stb_t"}, "nep_stb_v": {"__spz_name__": "velocity", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "nep_stb_v", "dataset": "tao-nep-stb", "description": "Solar Wind Bulk Speed", "is_public": "True", "name": "velocity", "nep_stb_v0": {"__spz_name__": "V r", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "nep_stb_v(0)", "dataset": "tao-nep-stb", "index1": "0", "is_public": "True", "name": "V r", "parameter": "nep_stb_v", "start_date": "2008-01-01T00:00:00Z", "stop_date": "2014-11-01T00:00:00Z", "xmlid": "nep_stb_v(0)"}, "nep_stb_v1": {"__spz_name__": "V t", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "nep_stb_v(1)", "dataset": "tao-nep-stb", "index1": "1", "is_public": "True", "name": "V t", "parameter": "nep_stb_v", "start_date": "2008-01-01T00:00:00Z", "stop_date": "2014-11-01T00:00:00Z", "xmlid": "nep_stb_v(1)"}, "size": "2", "start_date": "2008-01-01T00:00:00Z", "stop_date": "2014-11-01T00:00:00Z", "units": "km/s", "xmlid": "nep_stb_v"}, "processing_level": "Calibrated", "sampling": "1H", "simulation": "1", "spaseId": "spase://CNES/NumericalOutput/CDPP-AMDA/TAO/Neptune/tao-nep-stb", "start_date": "2008-01-01T00:00:00Z", "stop_date": "2014-11-01T00:00:00Z", "xmlid": "tao-nep-stb"}, "tao_nep_sw": {"__spz_name__": "SW / Input OMNI", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "tao-nep-sw", "att": "auto/tao-nep-sw", "dataSource": "", "desc": "Tao SW Neptune / Input OMNI
Sampling: 1H", "inputResourceID": "omni-hour-all", "is_public": "True", "lastModificationDate": "2024-09-24T01:10:24Z", "lastUpdate": "2024-09-24T01:10:24Z", "measurement_type": "ThermalPlasma", "name": "SW / Input OMNI", "nep_sw_b": {"__spz_name__": "b tangential", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "nep_sw_b", "dataset": "tao-nep-sw", "is_public": "True", "name": "b tangential", "start_date": "2000-01-01T00:00:00Z", "stop_date": "2024-09-04T00:00:00Z", "units": "nT", "xmlid": "nep_sw_b"}, "nep_sw_bx": {"__spz_name__": "b radial", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "nep_sw_bx", "dataset": "tao-nep-sw", "description": "br along parker spiral computed with tao model outputs", "is_public": "True", "name": "b radial", "start_date": "2000-01-01T00:00:00Z", "stop_date": "2024-09-04T00:00:00Z", "units": "nT", "xmlid": "nep_sw_bx"}, "nep_sw_da": {"__spz_name__": "angle Neptune-Sun-Earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "nep_sw_da", "dataset": "tao-nep-sw", "is_public": "True", "name": "angle Neptune-Sun-Earth", "start_date": "2000-01-01T00:00:00Z", "stop_date": "2024-09-04T00:00:00Z", "units": "deg", "xmlid": "nep_sw_da"}, "nep_sw_n": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "nep_sw_n", "dataset": "tao-nep-sw", "description": "Solar Wind Proton Number Density, scalar", "is_public": "True", "name": "density", "start_date": "2000-01-01T00:00:00Z", "stop_date": "2024-09-04T00:00:00Z", "units": "cm\u207b\u00b3", "xmlid": "nep_sw_n"}, "nep_sw_pdyn": {"__spz_name__": "dynamic pressure", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "nep_sw_pdyn", "dataset": "tao-nep-sw", "is_public": "True", "name": "dynamic pressure", "start_date": "2000-01-01T00:00:00Z", "stop_date": "2024-09-04T00:00:00Z", "units": "nPa", "xmlid": "nep_sw_pdyn"}, "nep_sw_t": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "nep_sw_t", "dataset": "tao-nep-sw", "is_public": "True", "name": "temperature", "start_date": "2000-01-01T00:00:00Z", "stop_date": "2024-09-04T00:00:00Z", "units": "eV", "xmlid": "nep_sw_t"}, "nep_sw_v": {"__spz_name__": "velocity", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "nep_sw_v", "dataset": "tao-nep-sw", "description": "Solar Wind Bulk Speed", "is_public": "True", "name": "velocity", "nep_sw_v0": {"__spz_name__": "V r", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "nep_sw_v(0)", "dataset": "tao-nep-sw", "index1": "0", "is_public": "True", "name": "V r", "parameter": "nep_sw_v", "start_date": "2000-01-01T00:00:00Z", "stop_date": "2024-09-04T00:00:00Z", "xmlid": "nep_sw_v(0)"}, "nep_sw_v1": {"__spz_name__": "V t", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "nep_sw_v(1)", "dataset": "tao-nep-sw", "index1": "1", "is_public": "True", "name": "V t", "parameter": "nep_sw_v", "start_date": "2000-01-01T00:00:00Z", "stop_date": "2024-09-04T00:00:00Z", "xmlid": "nep_sw_v(1)"}, "size": "2", "start_date": "2000-01-01T00:00:00Z", "stop_date": "2024-09-04T00:00:00Z", "units": "km/s", "xmlid": "nep_sw_v"}, "processing_level": "Calibrated", "sampling": "1H", "simulation": "1", "spaseId": "spase://CNES/NumericalOutput/CDPP-AMDA/TAO/Neptune/tao-nep-sw", "start_date": "2000-01-01T00:00:00Z", "stop_date": "2024-09-04T00:00:00Z", "xmlid": "tao-nep-sw"}, "tao_nep_swrt": {"__spz_name__": "SW / Input ACE Real Time", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "tao-nep-swrt", "att": "auto/tao-nep-swrt", "dataSource": "", "desc": "Tao SW Neptune / Input ACE Real Time
Sampling: 1H", "inputResourceID": "ace-mag-real", "is_public": "True", "lastModificationDate": "2024-08-29T02:40:34Z", "lastUpdate": "2024-08-29T02:40:34Z", "measurement_type": "ThermalPlasma", "name": "SW / Input ACE Real Time", "nep_swrt_b": {"__spz_name__": "b tangential", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "nep_swrt_b", "dataset": "tao-nep-swrt", "is_public": "True", "name": "b tangential", "start_date": "2024-05-24T01:00:00Z", "stop_date": "2024-08-28T00:00:00Z", "units": "nT", "xmlid": "nep_swrt_b"}, "nep_swrt_bx": {"__spz_name__": "b radial", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "nep_swrt_bx", "dataset": "tao-nep-swrt", "description": "br along parker spiral computed with tao model outputs", "is_public": "True", "name": "b radial", "start_date": "2024-05-24T01:00:00Z", "stop_date": "2024-08-28T00:00:00Z", "units": "nT", "xmlid": "nep_swrt_bx"}, "nep_swrt_da": {"__spz_name__": "angle Neptune-Sun-Earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "nep_swrt_da", "dataset": "tao-nep-swrt", "is_public": "True", "name": "angle Neptune-Sun-Earth", "start_date": "2024-05-24T01:00:00Z", "stop_date": "2024-08-28T00:00:00Z", "units": "deg", "xmlid": "nep_swrt_da"}, "nep_swrt_n": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "nep_swrt_n", "dataset": "tao-nep-swrt", "description": "Solar Wind Proton Number Density, scalar", "is_public": "True", "name": "density", "start_date": "2024-05-24T01:00:00Z", "stop_date": "2024-08-28T00:00:00Z", "units": "cm\u207b\u00b3", "xmlid": "nep_swrt_n"}, "nep_swrt_pdyn": {"__spz_name__": "dynamic pressure", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "nep_swrt_pdyn", "dataset": "tao-nep-swrt", "is_public": "True", "name": "dynamic pressure", "start_date": "2024-05-24T01:00:00Z", "stop_date": "2024-08-28T00:00:00Z", "units": "nPa", "xmlid": "nep_swrt_pdyn"}, "nep_swrt_t": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "nep_swrt_t", "dataset": "tao-nep-swrt", "is_public": "True", "name": "temperature", "start_date": "2024-05-24T01:00:00Z", "stop_date": "2024-08-28T00:00:00Z", "units": "eV", "xmlid": "nep_swrt_t"}, "nep_swrt_v": {"__spz_name__": "velocity", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "nep_swrt_v", "dataset": "tao-nep-swrt", "description": "Solar Wind Bulk Speed", "is_public": "True", "name": "velocity", "nep_swrt_v0": {"__spz_name__": "V r", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "nep_swrt_v(0)", "dataset": "tao-nep-swrt", "index1": "0", "is_public": "True", "name": "V r", "parameter": "nep_swrt_v", "start_date": "2024-05-24T01:00:00Z", "stop_date": "2024-08-28T00:00:00Z", "xmlid": "nep_swrt_v(0)"}, "nep_swrt_v1": {"__spz_name__": "V t", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "nep_swrt_v(1)", "dataset": "tao-nep-swrt", "index1": "1", "is_public": "True", "name": "V t", "parameter": "nep_swrt_v", "start_date": "2024-05-24T01:00:00Z", "stop_date": "2024-08-28T00:00:00Z", "xmlid": "nep_swrt_v(1)"}, "size": "2", "start_date": "2024-05-24T01:00:00Z", "stop_date": "2024-08-28T00:00:00Z", "units": "km/s", "xmlid": "nep_swrt_v"}, "processing_level": "Calibrated", "sampling": "1H", "simulation": "1", "spaseId": "spase://CNES/NumericalOutput/CDPP-AMDA/TAO/Neptune/tao-nep-swrt", "start_date": "2024-05-24T01:00:00Z", "stop_date": "2024-08-28T00:00:00Z", "xmlid": "tao-nep-swrt"}, "xmlid": "tao_neptune"}, "__spz_name__": "Neptune", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "SW_Propagation_Model_Neptune", "is_public": "True", "name": "Neptune", "rank": "93", "target": "Neptune", "xmlid": "SW_Propagation_Model_Neptune"}, "PSP": {"Ballistic_Model": {"__spz_name__": "Ballistic Model", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "ballistic_psp", "att": "auto/ballistic_psp", "bls_psp_dsc": {"__spz_name__": "input DSCOVR", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "bls-psp-dsc", "att": "auto/bls-psp-dsc", "dataSource": "", "desc": "Ballistic delay from the Earth to PSP
Sampling: 1H", "inputResourceID": "dsc-fc-1m", "is_public": "True", "lastModificationDate": "2024-10-07T04:12:49Z", "lastUpdate": "2024-10-07T04:12:49Z", "measurement_type": "ThermalPlasma", "name": "input DSCOVR", "processing_level": "Calibrated", "psp_bls_dsc_da": {"__spz_name__": "angle psp-sun-earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_bls_dsc_da", "dataset": "bls-psp-dsc", "is_public": "True", "name": "angle psp-sun-earth", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2024-10-05T23:59:00Z", "units": "deg", "xmlid": "psp_bls_dsc_da"}, "psp_bls_dsc_lag": {"__spz_name__": "delay earth-psp", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_bls_dsc_lag", "dataset": "bls-psp-dsc", "is_public": "True", "name": "delay earth-psp", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2024-10-05T23:59:00Z", "units": "days", "xmlid": "psp_bls_dsc_lag"}, "sampling": "1H", "simulation": "1", "spaseId": "spase://CNES/NumericalOutput/CDPP-AMDA/BALLISTIC/bls-psp-dsc", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2024-10-05T23:59:00Z", "xmlid": "bls-psp-dsc"}, "bls_psp_omni": {"__spz_name__": "input OMNI", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "bls-psp-omni", "att": "auto/bls-psp-omni", "dataSource": "", "desc": "Ballistic delay from the Earth to PSP
Sampling: 1H", "inputResourceID": "omni-hour-all", "is_public": "True", "lastModificationDate": "2024-09-29T22:22:28Z", "lastUpdate": "2024-09-29T22:22:28Z", "measurement_type": "ThermalPlasma", "name": "input OMNI", "processing_level": "Calibrated", "psp_bls_da": {"__spz_name__": "angle psp-sun-earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_bls_da", "dataset": "bls-psp-omni", "is_public": "True", "name": "angle psp-sun-earth", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2024-09-20T10:00:00Z", "units": "deg", "xmlid": "psp_bls_da"}, "psp_bls_lag": {"__spz_name__": "delay earth-psp", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_bls_lag", "dataset": "bls-psp-omni", "is_public": "True", "name": "delay earth-psp", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2024-09-20T10:00:00Z", "units": "days", "xmlid": "psp_bls_lag"}, "sampling": "1H", "simulation": "1", "spaseId": "spase://CNES/NumericalOutput/CDPP-AMDA/BALLISTIC/bls-psp-omni", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2024-09-20T10:00:00Z", "xmlid": "bls-psp-omni"}, "desc": "", "is_public": "True", "name": "Ballistic Model", "xmlid": "ballistic_psp"}, "Tao_Model": {"__spz_name__": "Tao Model", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "tao_psp", "att": "auto/tao_psp", "desc": "", "is_public": "True", "name": "Tao Model", "tao_psp_dsc": {"__spz_name__": "SW / Input DSCOVR", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "tao-psp-dsc", "att": "auto/tao-psp-dsc", "dataSource": "", "desc": "Tao SW PSP / Input DSCOVR
Sampling: 1H", "inputResourceID": "dsc-fc-1m", "is_public": "True", "lastModificationDate": "2022-06-27T19:31:20Z", "lastUpdate": "2022-06-27T19:31:20Z", "measurement_type": "ThermalPlasma", "name": "SW / Input DSCOVR", "processing_level": "Calibrated", "psp_dsc_b": {"__spz_name__": "b tangential", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_dsc_b", "dataset": "tao-psp-dsc", "is_public": "True", "name": "b tangential", "start_date": "2018-08-12T00:00:00Z", "stop_date": "2022-06-25T23:00:00Z", "units": "nT", "xmlid": "psp_dsc_b"}, "psp_dsc_bx": {"__spz_name__": "b radial", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_dsc_bx", "dataset": "tao-psp-dsc", "description": "br along parker spiral computed with tao model outputs", "is_public": "True", "name": "b radial", "start_date": "2018-08-12T00:00:00Z", "stop_date": "2022-06-25T23:00:00Z", "units": "nT", "xmlid": "psp_dsc_bx"}, "psp_dsc_da": {"__spz_name__": "angle PSP-Sun-Earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_dsc_da", "dataset": "tao-psp-dsc", "is_public": "True", "name": "angle PSP-Sun-Earth", "start_date": "2018-08-12T00:00:00Z", "stop_date": "2022-06-25T23:00:00Z", "units": "deg", "xmlid": "psp_dsc_da"}, "psp_dsc_n": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_dsc_n", "dataset": "tao-psp-dsc", "description": "Solar Wind Proton Number Density, scalar", "is_public": "True", "name": "density", "start_date": "2018-08-12T00:00:00Z", "stop_date": "2022-06-25T23:00:00Z", "units": "cm\u207b\u00b3", "xmlid": "psp_dsc_n"}, "psp_dsc_pdyn": {"__spz_name__": "dynamic pressure", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_dsc_pdyn", "dataset": "tao-psp-dsc", "is_public": "True", "name": "dynamic pressure", "start_date": "2018-08-12T00:00:00Z", "stop_date": "2022-06-25T23:00:00Z", "units": "nPa", "xmlid": "psp_dsc_pdyn"}, "psp_dsc_t": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_dsc_t", "dataset": "tao-psp-dsc", "is_public": "True", "name": "temperature", "start_date": "2018-08-12T00:00:00Z", "stop_date": "2022-06-25T23:00:00Z", "units": "eV", "xmlid": "psp_dsc_t"}, "psp_dsc_v": {"__spz_name__": "velocity", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_dsc_v", "dataset": "tao-psp-dsc", "description": "Solar Wind Bulk Speed", "is_public": "True", "name": "velocity", "psp_dsc_v0": {"__spz_name__": "V r", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_dsc_v(0)", "dataset": "tao-psp-dsc", "index1": "0", "is_public": "True", "name": "V r", "parameter": "psp_dsc_v", "start_date": "2018-08-12T00:00:00Z", "stop_date": "2022-06-25T23:00:00Z", "xmlid": "psp_dsc_v(0)"}, "psp_dsc_v1": {"__spz_name__": "V t", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_dsc_v(1)", "dataset": "tao-psp-dsc", "index1": "1", "is_public": "True", "name": "V t", "parameter": "psp_dsc_v", "start_date": "2018-08-12T00:00:00Z", "stop_date": "2022-06-25T23:00:00Z", "xmlid": "psp_dsc_v(1)"}, "size": "2", "start_date": "2018-08-12T00:00:00Z", "stop_date": "2022-06-25T23:00:00Z", "units": "km/s", "xmlid": "psp_dsc_v"}, "sampling": "1H", "simulation": "1", "spaseId": "spase://CNES/NumericalOutput/CDPP-AMDA/TAO/Psp/tao-psp-dsc", "start_date": "2018-08-12T00:00:00Z", "stop_date": "2022-06-25T23:00:00Z", "xmlid": "tao-psp-dsc"}, "tao_psp_sta": {"__spz_name__": "SW / Input STA", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "tao-psp-sta", "att": "auto/tao-psp-sta", "dataSource": "", "desc": "Tao SW PSP / Input Stereo-A
Sampling: 1H", "inputResourceID": "sta-l2-pla", "is_public": "True", "lastModificationDate": "2021-12-07T18:57:10Z", "lastUpdate": "2021-12-07T18:57:10Z", "measurement_type": "ThermalPlasma", "name": "SW / Input STA", "processing_level": "Calibrated", "psp_sta_b": {"__spz_name__": "b tangential", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_sta_b", "dataset": "tao-psp-sta", "is_public": "True", "name": "b tangential", "start_date": "2018-08-12T00:00:00Z", "stop_date": "2019-04-29T00:00:00Z", "units": "nT", "xmlid": "psp_sta_b"}, "psp_sta_bx": {"__spz_name__": "b radial", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_sta_bx", "dataset": "tao-psp-sta", "description": "br along parker spiral computed with tao model outputs", "is_public": "True", "name": "b radial", "start_date": "2018-08-12T00:00:00Z", "stop_date": "2019-04-29T00:00:00Z", "units": "nT", "xmlid": "psp_sta_bx"}, "psp_sta_da": {"__spz_name__": "angle PSP-Sun-Earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_sta_da", "dataset": "tao-psp-sta", "is_public": "True", "name": "angle PSP-Sun-Earth", "start_date": "2018-08-12T00:00:00Z", "stop_date": "2019-04-29T00:00:00Z", "units": "deg", "xmlid": "psp_sta_da"}, "psp_sta_n": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_sta_n", "dataset": "tao-psp-sta", "description": "Solar Wind Proton Number Density, scalar", "is_public": "True", "name": "density", "start_date": "2018-08-12T00:00:00Z", "stop_date": "2019-04-29T00:00:00Z", "units": "cm\u207b\u00b3", "xmlid": "psp_sta_n"}, "psp_sta_pdyn": {"__spz_name__": "dynamic pressure", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_sta_pdyn", "dataset": "tao-psp-sta", "is_public": "True", "name": "dynamic pressure", "start_date": "2018-08-12T00:00:00Z", "stop_date": "2019-04-29T00:00:00Z", "units": "nPa", "xmlid": "psp_sta_pdyn"}, "psp_sta_t": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_sta_t", "dataset": "tao-psp-sta", "is_public": "True", "name": "temperature", "start_date": "2018-08-12T00:00:00Z", "stop_date": "2019-04-29T00:00:00Z", "units": "eV", "xmlid": "psp_sta_t"}, "psp_sta_v": {"__spz_name__": "velocity", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_sta_v", "dataset": "tao-psp-sta", "description": "Solar Wind Bulk Speed", "is_public": "True", "name": "velocity", "psp_sta_v0": {"__spz_name__": "V r", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_sta_v(0)", "dataset": "tao-psp-sta", "index1": "0", "is_public": "True", "name": "V r", "parameter": "psp_sta_v", "start_date": "2018-08-12T00:00:00Z", "stop_date": "2019-04-29T00:00:00Z", "xmlid": "psp_sta_v(0)"}, "psp_sta_v1": {"__spz_name__": "V t", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_sta_v(1)", "dataset": "tao-psp-sta", "index1": "1", "is_public": "True", "name": "V t", "parameter": "psp_sta_v", "start_date": "2018-08-12T00:00:00Z", "stop_date": "2019-04-29T00:00:00Z", "xmlid": "psp_sta_v(1)"}, "size": "2", "start_date": "2018-08-12T00:00:00Z", "stop_date": "2019-04-29T00:00:00Z", "units": "km/s", "xmlid": "psp_sta_v"}, "sampling": "1H", "simulation": "1", "spaseId": "spase://CNES/NumericalOutput/CDPP-AMDA/TAO/Psp/tao-psp-sta", "start_date": "2018-08-12T00:00:00Z", "stop_date": "2019-04-29T00:00:00Z", "xmlid": "tao-psp-sta"}, "tao_psp_sw": {"__spz_name__": "SW / Input OMNI", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "tao-psp-sw", "att": "auto/tao-psp-sw", "dataSource": "", "desc": "Tao SW PSP / Input OMNI
Sampling: 1H", "inputResourceID": "omni-hour-all", "is_public": "True", "lastModificationDate": "2024-03-24T20:50:09Z", "lastUpdate": "2024-03-24T20:50:09Z", "measurement_type": "ThermalPlasma", "name": "SW / Input OMNI", "processing_level": "Calibrated", "psp_sw_b": {"__spz_name__": "b tangential", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_sw_b", "dataset": "tao-psp-sw", "is_public": "True", "name": "b tangential", "start_date": "2018-08-12T00:00:00Z", "stop_date": "2024-02-14T00:00:00Z", "units": "nT", "xmlid": "psp_sw_b"}, "psp_sw_bx": {"__spz_name__": "b radial", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_sw_bx", "dataset": "tao-psp-sw", "description": "br along parker spiral computed with tao model outputs", "is_public": "True", "name": "b radial", "start_date": "2018-08-12T00:00:00Z", "stop_date": "2024-02-14T00:00:00Z", "units": "nT", "xmlid": "psp_sw_bx"}, "psp_sw_da": {"__spz_name__": "angle PSP-Sun-Earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_sw_da", "dataset": "tao-psp-sw", "is_public": "True", "name": "angle PSP-Sun-Earth", "start_date": "2018-08-12T00:00:00Z", "stop_date": "2024-02-14T00:00:00Z", "units": "deg", "xmlid": "psp_sw_da"}, "psp_sw_n": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_sw_n", "dataset": "tao-psp-sw", "description": "Solar Wind Proton Number Density, scalar", "is_public": "True", "name": "density", "start_date": "2018-08-12T00:00:00Z", "stop_date": "2024-02-14T00:00:00Z", "units": "cm\u207b\u00b3", "xmlid": "psp_sw_n"}, "psp_sw_pdyn": {"__spz_name__": "dynamic pressure", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_sw_pdyn", "dataset": "tao-psp-sw", "is_public": "True", "name": "dynamic pressure", "start_date": "2018-08-12T00:00:00Z", "stop_date": "2024-02-14T00:00:00Z", "units": "nPa", "xmlid": "psp_sw_pdyn"}, "psp_sw_t": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_sw_t", "dataset": "tao-psp-sw", "is_public": "True", "name": "temperature", "start_date": "2018-08-12T00:00:00Z", "stop_date": "2024-02-14T00:00:00Z", "units": "eV", "xmlid": "psp_sw_t"}, "psp_sw_v": {"__spz_name__": "velocity", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_sw_v", "dataset": "tao-psp-sw", "description": "Solar Wind Bulk Speed", "is_public": "True", "name": "velocity", "psp_sw_v0": {"__spz_name__": "V r", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_sw_v(0)", "dataset": "tao-psp-sw", "index1": "0", "is_public": "True", "name": "V r", "parameter": "psp_sw_v", "start_date": "2018-08-12T00:00:00Z", "stop_date": "2024-02-14T00:00:00Z", "xmlid": "psp_sw_v(0)"}, "psp_sw_v1": {"__spz_name__": "V t", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_sw_v(1)", "dataset": "tao-psp-sw", "index1": "1", "is_public": "True", "name": "V t", "parameter": "psp_sw_v", "start_date": "2018-08-12T00:00:00Z", "stop_date": "2024-02-14T00:00:00Z", "xmlid": "psp_sw_v(1)"}, "size": "2", "start_date": "2018-08-12T00:00:00Z", "stop_date": "2024-02-14T00:00:00Z", "units": "km/s", "xmlid": "psp_sw_v"}, "sampling": "1H", "simulation": "1", "spaseId": "spase://CNES/NumericalOutput/CDPP-AMDA/TAO/Psp/tao-psp-sw", "start_date": "2018-08-12T00:00:00Z", "stop_date": "2024-02-14T00:00:00Z", "xmlid": "tao-psp-sw"}, "tao_psp_swrt": {"__spz_name__": "SW / Input ACE Real Time", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "tao-psp-swrt", "att": "auto/tao-psp-swrt", "dataSource": "", "desc": "Tao SW Psp / Input ACE Real Time
Sampling: 1H", "inputResourceID": "ace-mag-real", "is_public": "True", "lastModificationDate": "2024-10-01T22:20:23Z", "lastUpdate": "2024-10-01T22:20:23Z", "measurement_type": "ThermalPlasma", "name": "SW / Input ACE Real Time", "processing_level": "Calibrated", "psp_swrt_b": {"__spz_name__": "b tangential", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_swrt_b", "dataset": "tao-psp-swrt", "is_public": "True", "name": "b tangential", "start_date": "2024-07-05T01:00:00Z", "stop_date": "2024-10-01T00:00:00Z", "units": "nT", "xmlid": "psp_swrt_b"}, "psp_swrt_bx": {"__spz_name__": "b radial", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_swrt_bx", "dataset": "tao-psp-swrt", "description": "br along parker spiral computed with tao model outputs", "is_public": "True", "name": "b radial", "start_date": "2024-07-05T01:00:00Z", "stop_date": "2024-10-01T00:00:00Z", "units": "nT", "xmlid": "psp_swrt_bx"}, "psp_swrt_da": {"__spz_name__": "angle Psp-Sun-Earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_swrt_da", "dataset": "tao-psp-swrt", "is_public": "True", "name": "angle Psp-Sun-Earth", "start_date": "2024-07-05T01:00:00Z", "stop_date": "2024-10-01T00:00:00Z", "units": "deg", "xmlid": "psp_swrt_da"}, "psp_swrt_n": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_swrt_n", "dataset": "tao-psp-swrt", "description": "Solar Wind Proton Number Density, scalar", "is_public": "True", "name": "density", "start_date": "2024-07-05T01:00:00Z", "stop_date": "2024-10-01T00:00:00Z", "units": "cm\u207b\u00b3", "xmlid": "psp_swrt_n"}, "psp_swrt_pdyn": {"__spz_name__": "dynamic pressure", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_swrt_pdyn", "dataset": "tao-psp-swrt", "is_public": "True", "name": "dynamic pressure", "start_date": "2024-07-05T01:00:00Z", "stop_date": "2024-10-01T00:00:00Z", "units": "nPa", "xmlid": "psp_swrt_pdyn"}, "psp_swrt_t": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_swrt_t", "dataset": "tao-psp-swrt", "is_public": "True", "name": "temperature", "start_date": "2024-07-05T01:00:00Z", "stop_date": "2024-10-01T00:00:00Z", "units": "eV", "xmlid": "psp_swrt_t"}, "psp_swrt_v": {"__spz_name__": "velocity", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "psp_swrt_v", "dataset": "tao-psp-swrt", "description": "Solar Wind Bulk Speed", "is_public": "True", "name": "velocity", "psp_swrt_v0": {"__spz_name__": "V r", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_swrt_v(0)", "dataset": "tao-psp-swrt", "index1": "0", "is_public": "True", "name": "V r", "parameter": "psp_swrt_v", "start_date": "2024-07-05T01:00:00Z", "stop_date": "2024-10-01T00:00:00Z", "xmlid": "psp_swrt_v(0)"}, "psp_swrt_v1": {"__spz_name__": "V t", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "psp_swrt_v(1)", "dataset": "tao-psp-swrt", "index1": "1", "is_public": "True", "name": "V t", "parameter": "psp_swrt_v", "start_date": "2024-07-05T01:00:00Z", "stop_date": "2024-10-01T00:00:00Z", "xmlid": "psp_swrt_v(1)"}, "size": "2", "start_date": "2024-07-05T01:00:00Z", "stop_date": "2024-10-01T00:00:00Z", "units": "km/s", "xmlid": "psp_swrt_v"}, "sampling": "1H", "simulation": "1", "spaseId": "spase://CNES/NumericalOutput/CDPP-AMDA/TAO/Psp/tao-psp-swrt", "start_date": "2024-07-05T01:00:00Z", "stop_date": "2024-10-01T00:00:00Z", "xmlid": "tao-psp-swrt"}, "xmlid": "tao_psp"}, "__spz_name__": "PSP", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "SW_Propagation_Model_PSP", "is_public": "True", "name": "PSP", "target": "PSP", "xmlid": "SW_Propagation_Model_PSP"}, "Rosetta@C_G": {"Ballistic_Model": {"__spz_name__": "Ballistic Model", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "ballistic_rosetta", "att": "auto/ballistic_rosetta", "bls_ros_omni": {"__spz_name__": "input OMNI", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "bls-ros-omni", "att": "auto/bls-ros-omni", "dataSource": "", "desc": "Ballistic delay from the Earth to Rosetta
Sampling: 1H", "inputResourceID": "omni-hour-all", "is_public": "True", "lastModificationDate": "2024-09-29T22:22:28Z", "lastUpdate": "2024-09-29T22:22:28Z", "measurement_type": "ThermalPlasma", "name": "input OMNI", "processing_level": "Calibrated", "ros_bls_da": {"__spz_name__": "angle rosetta-sun-earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_bls_da", "dataset": "bls-ros-omni", "is_public": "True", "name": "angle rosetta-sun-earth", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2024-09-20T10:00:00Z", "units": "deg", "xmlid": "ros_bls_da"}, "ros_bls_lag": {"__spz_name__": "delay earth-rosetta", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_bls_lag", "dataset": "bls-ros-omni", "is_public": "True", "name": "delay earth-rosetta", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2024-09-20T10:00:00Z", "units": "days", "xmlid": "ros_bls_lag"}, "sampling": "1H", "simulation": "1", "spaseId": "spase://CNES/NumericalOutput/CDPP-AMDA/BALLISTIC/bls-ros-omni", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2024-09-20T10:00:00Z", "xmlid": "bls-ros-omni"}, "desc": "", "is_public": "True", "name": "Ballistic Model", "xmlid": "ballistic_rosetta"}, "Tao_Model": {"__spz_name__": "Tao Model", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "tao_rosetta", "att": "auto/tao_rosetta", "desc": "", "is_public": "True", "name": "Tao Model", "tao_ros_sw": {"__spz_name__": "SW / Input OMNI", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "tao-ros-sw", "att": "auto/tao-ros-sw", "dataSource": "", "desc": "Tao SW Rosetta @ C-G / Input OMNI
Sampling: 1H", "inputResourceID": "omni-hour-all", "is_public": "True", "lastModificationDate": "2017-11-16T16:41:31Z", "lastUpdate": "2017-10-23T16:09:59Z", "measurement_type": "ThermalPlasma", "name": "SW / Input OMNI", "processing_level": "Calibrated", "ros_sw_b": {"__spz_name__": "b tangential", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_sw_b", "dataset": "tao-ros-sw", "is_public": "True", "name": "b tangential", "start_date": "2014-01-01T00:00:00Z", "stop_date": "2016-10-01T00:00:00Z", "units": "nT", "xmlid": "ros_sw_b"}, "ros_sw_bx": {"__spz_name__": "b radial", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_sw_bx", "dataset": "tao-ros-sw", "description": "br along parker spiral computed with tao model outputs", "is_public": "True", "name": "b radial", "start_date": "2014-01-01T00:00:00Z", "stop_date": "2016-10-01T00:00:00Z", "units": "nT", "xmlid": "ros_sw_bx"}, "ros_sw_da": {"__spz_name__": "angle Ros-Sun-Earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_sw_da", "dataset": "tao-ros-sw", "is_public": "True", "name": "angle Ros-Sun-Earth", "start_date": "2014-01-01T00:00:00Z", "stop_date": "2016-10-01T00:00:00Z", "units": "deg", "xmlid": "ros_sw_da"}, "ros_sw_n": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_sw_n", "dataset": "tao-ros-sw", "description": "Solar Wind Proton Number Density, scalar", "is_public": "True", "name": "density", "start_date": "2014-01-01T00:00:00Z", "stop_date": "2016-10-01T00:00:00Z", "units": "cm\u207b\u00b3", "xmlid": "ros_sw_n"}, "ros_sw_pdyn": {"__spz_name__": "dynamic pressure", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_sw_pdyn", "dataset": "tao-ros-sw", "is_public": "True", "name": "dynamic pressure", "start_date": "2014-01-01T00:00:00Z", "stop_date": "2016-10-01T00:00:00Z", "units": "nPa", "xmlid": "ros_sw_pdyn"}, "ros_sw_t": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_sw_t", "dataset": "tao-ros-sw", "is_public": "True", "name": "temperature", "start_date": "2014-01-01T00:00:00Z", "stop_date": "2016-10-01T00:00:00Z", "units": "eV", "xmlid": "ros_sw_t"}, "ros_sw_v": {"__spz_name__": "velocity", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ros_sw_v", "dataset": "tao-ros-sw", "description": "Solar Wind Bulk Speed", "is_public": "True", "name": "velocity", "ros_sw_v0": {"__spz_name__": "V r", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ros_sw_v(0)", "dataset": "tao-ros-sw", "index1": "0", "is_public": "True", "name": "V r", "parameter": "ros_sw_v", "start_date": "2014-01-01T00:00:00Z", "stop_date": "2016-10-01T00:00:00Z", "xmlid": "ros_sw_v(0)"}, "ros_sw_v1": {"__spz_name__": "V t", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ros_sw_v(1)", "dataset": "tao-ros-sw", "index1": "1", "is_public": "True", "name": "V t", "parameter": "ros_sw_v", "start_date": "2014-01-01T00:00:00Z", "stop_date": "2016-10-01T00:00:00Z", "xmlid": "ros_sw_v(1)"}, "size": "2", "start_date": "2014-01-01T00:00:00Z", "stop_date": "2016-10-01T00:00:00Z", "units": "km/s", "xmlid": "ros_sw_v"}, "sampling": "1H", "simulation": "1", "spaseId": "spase://CNES/NumericalOutput/CDPP-AMDA/TAO/Rosetta/tao-ros-sw", "start_date": "2014-01-01T00:00:00Z", "stop_date": "2016-10-01T00:00:00Z", "xmlid": "tao-ros-sw"}, "xmlid": "tao_rosetta"}, "__spz_name__": "Rosetta@C-G", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "SW_Propagation_Model_Rosetta@C-G", "is_public": "True", "name": "Rosetta@C-G", "target": "Rosetta@C-G", "xmlid": "SW_Propagation_Model_Rosetta@C-G"}, "Saturn": {"Ballistic_Model": {"__spz_name__": "Ballistic Model", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "ballistic_saturn", "att": "auto/ballistic_saturn", "bls_saturn_omni": {"__spz_name__": "input OMNI", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "bls-saturn-omni", "att": "auto/bls-saturn-omni", "dataSource": "", "desc": "Ballistic delay from the Earth to Saturn
Sampling: 1H", "inputResourceID": "omni-hour-all", "is_public": "True", "lastModificationDate": "2024-09-29T22:22:28Z", "lastUpdate": "2024-09-29T22:22:28Z", "measurement_type": "ThermalPlasma", "name": "input OMNI", "processing_level": "Calibrated", "sampling": "1H", "sat_bls_da": {"__spz_name__": "angle saturn-sun-earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sat_bls_da", "dataset": "bls-saturn-omni", "is_public": "True", "name": "angle saturn-sun-earth", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2024-09-20T10:00:00Z", "units": "deg", "xmlid": "sat_bls_da"}, "sat_bls_lag": {"__spz_name__": "delay earth-saturn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sat_bls_lag", "dataset": "bls-saturn-omni", "is_public": "True", "name": "delay earth-saturn", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2024-09-20T10:00:00Z", "units": "days", "xmlid": "sat_bls_lag"}, "simulation": "1", "spaseId": "spase://CNES/NumericalOutput/CDPP-AMDA/BALLISTIC/bls-saturn-omni", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2024-09-20T10:00:00Z", "xmlid": "bls-saturn-omni"}, "desc": "", "is_public": "True", "name": "Ballistic Model", "xmlid": "ballistic_saturn"}, "Tao_Model": {"__spz_name__": "Tao Model", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "tao_saturn", "att": "auto/tao_saturn", "desc": "", "is_public": "True", "name": "Tao Model", "tao_sat_dsc": {"__spz_name__": "SW / Input DSCOVR", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "tao-sat-dsc", "att": "auto/tao-sat-dsc", "dataSource": "", "desc": "Tao SW Saturn / Input DSCOVR
Sampling: 1H", "inputResourceID": "dsc-fc-1m", "is_public": "True", "lastModificationDate": "2022-06-28T13:11:00Z", "lastUpdate": "2022-06-28T13:11:00Z", "measurement_type": "ThermalPlasma", "name": "SW / Input DSCOVR", "processing_level": "Calibrated", "sampling": "1H", "sat_dsc_b": {"__spz_name__": "b tangential", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sat_dsc_b", "dataset": "tao-sat-dsc", "is_public": "True", "name": "b tangential", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2022-06-26T23:00:00Z", "units": "nT", "xmlid": "sat_dsc_b"}, "sat_dsc_bx": {"__spz_name__": "b radial", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sat_dsc_bx", "dataset": "tao-sat-dsc", "description": "br along parker spiral computed with tao model outputs", "is_public": "True", "name": "b radial", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2022-06-26T23:00:00Z", "units": "nT", "xmlid": "sat_dsc_bx"}, "sat_dsc_da": {"__spz_name__": "angle Sat-Sun-Earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sat_dsc_da", "dataset": "tao-sat-dsc", "is_public": "True", "name": "angle Sat-Sun-Earth", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2022-06-26T23:00:00Z", "units": "deg", "xmlid": "sat_dsc_da"}, "sat_dsc_n": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sat_dsc_n", "dataset": "tao-sat-dsc", "description": "Solar Wind Proton Number Density, scalar", "is_public": "True", "name": "density", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2022-06-26T23:00:00Z", "units": "cm\u207b\u00b3", "xmlid": "sat_dsc_n"}, "sat_dsc_pdyn": {"__spz_name__": "dynamic pressure", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sat_dsc_pdyn", "dataset": "tao-sat-dsc", "is_public": "True", "name": "dynamic pressure", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2022-06-26T23:00:00Z", "units": "nPa", "xmlid": "sat_dsc_pdyn"}, "sat_dsc_t": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sat_dsc_t", "dataset": "tao-sat-dsc", "is_public": "True", "name": "temperature", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2022-06-26T23:00:00Z", "units": "eV", "xmlid": "sat_dsc_t"}, "sat_dsc_v": {"__spz_name__": "velocity", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sat_dsc_v", "dataset": "tao-sat-dsc", "description": "Solar Wind Bulk Speed", "is_public": "True", "name": "velocity", "sat_dsc_v0": {"__spz_name__": "V r", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sat_dsc_v(0)", "dataset": "tao-sat-dsc", "index1": "0", "is_public": "True", "name": "V r", "parameter": "sat_dsc_v", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2022-06-26T23:00:00Z", "xmlid": "sat_dsc_v(0)"}, "sat_dsc_v1": {"__spz_name__": "V t", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sat_dsc_v(1)", "dataset": "tao-sat-dsc", "index1": "1", "is_public": "True", "name": "V t", "parameter": "sat_dsc_v", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2022-06-26T23:00:00Z", "xmlid": "sat_dsc_v(1)"}, "size": "2", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2022-06-26T23:00:00Z", "units": "km/s", "xmlid": "sat_dsc_v"}, "simulation": "1", "spaseId": "spase://CNES/NumericalOutput/CDPP-AMDA/TAO/Saturn/tao-sat-dsc", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2022-06-26T23:00:00Z", "xmlid": "tao-sat-dsc"}, "tao_sat_sta": {"__spz_name__": "SW / Input STA", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "tao-sat-sta", "att": "auto/tao-sat-sta", "dataSource": "", "desc": "Tao SW Saturn / Input Stereo-A
Sampling: 1H", "inputResourceID": "sta-l2-pla", "is_public": "True", "lastModificationDate": "2021-12-07T17:37:02Z", "lastUpdate": "2021-12-07T17:37:02Z", "measurement_type": "ThermalPlasma", "name": "SW / Input STA", "processing_level": "Calibrated", "sampling": "1H", "sat_sta_b": {"__spz_name__": "b tangential", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sat_sta_b", "dataset": "tao-sat-sta", "is_public": "True", "name": "b tangential", "start_date": "2007-03-01T00:00:00Z", "stop_date": "2019-04-29T00:00:00Z", "units": "nT", "xmlid": "sat_sta_b"}, "sat_sta_bx": {"__spz_name__": "b radial", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sat_sta_bx", "dataset": "tao-sat-sta", "description": "br along parker spiral computed with tao model outputs", "is_public": "True", "name": "b radial", "start_date": "2007-03-01T00:00:00Z", "stop_date": "2019-04-29T00:00:00Z", "units": "nT", "xmlid": "sat_sta_bx"}, "sat_sta_da": {"__spz_name__": "angle Sat-Sun-STA", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sat_sta_da", "dataset": "tao-sat-sta", "is_public": "True", "name": "angle Sat-Sun-STA", "start_date": "2007-03-01T00:00:00Z", "stop_date": "2019-04-29T00:00:00Z", "units": "deg", "xmlid": "sat_sta_da"}, "sat_sta_n": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sat_sta_n", "dataset": "tao-sat-sta", "description": "Solar Wind Proton Number Density, scalar", "is_public": "True", "name": "density", "start_date": "2007-03-01T00:00:00Z", "stop_date": "2019-04-29T00:00:00Z", "units": "cm\u207b\u00b3", "xmlid": "sat_sta_n"}, "sat_sta_pdyn": {"__spz_name__": "dynamic pressure", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sat_sta_pdyn", "dataset": "tao-sat-sta", "is_public": "True", "name": "dynamic pressure", "start_date": "2007-03-01T00:00:00Z", "stop_date": "2019-04-29T00:00:00Z", "units": "nPa", "xmlid": "sat_sta_pdyn"}, "sat_sta_t": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sat_sta_t", "dataset": "tao-sat-sta", "is_public": "True", "name": "temperature", "start_date": "2007-03-01T00:00:00Z", "stop_date": "2019-04-29T00:00:00Z", "units": "eV", "xmlid": "sat_sta_t"}, "sat_sta_v": {"__spz_name__": "velocity", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sat_sta_v", "dataset": "tao-sat-sta", "description": "Solar Wind Bulk Speed", "is_public": "True", "name": "velocity", "sat_sta_v0": {"__spz_name__": "V r", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sat_sta_v(0)", "dataset": "tao-sat-sta", "index1": "0", "is_public": "True", "name": "V r", "parameter": "sat_sta_v", "start_date": "2007-03-01T00:00:00Z", "stop_date": "2019-04-29T00:00:00Z", "xmlid": "sat_sta_v(0)"}, "sat_sta_v1": {"__spz_name__": "V t", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sat_sta_v(1)", "dataset": "tao-sat-sta", "index1": "1", "is_public": "True", "name": "V t", "parameter": "sat_sta_v", "start_date": "2007-03-01T00:00:00Z", "stop_date": "2019-04-29T00:00:00Z", "xmlid": "sat_sta_v(1)"}, "size": "2", "start_date": "2007-03-01T00:00:00Z", "stop_date": "2019-04-29T00:00:00Z", "units": "km/s", "xmlid": "sat_sta_v"}, "simulation": "1", "spaseId": "spase://CNES/NumericalOutput/CDPP-AMDA/TAO/Saturn/tao-sat-sta", "start_date": "2007-03-01T00:00:00Z", "stop_date": "2019-04-29T00:00:00Z", "xmlid": "tao-sat-sta"}, "tao_sat_stb": {"__spz_name__": "SW / Input STB", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "tao-sat-stb", "att": "auto/tao-sat-stb", "dataSource": "", "desc": "Tao SW Saturn / Input Stereo-B
Sampling: 1H", "inputResourceID": "stb-l2-pla", "is_public": "True", "lastModificationDate": "2019-02-01T15:44:19Z", "lastUpdate": "2019-02-01T15:44:19Z", "measurement_type": "ThermalPlasma", "name": "SW / Input STB", "processing_level": "Calibrated", "sampling": "1H", "sat_stb_b": {"__spz_name__": "b tangential", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sat_stb_b", "dataset": "tao-sat-stb", "is_public": "True", "name": "b tangential", "start_date": "2008-01-01T00:00:00Z", "stop_date": "2014-11-01T00:00:00Z", "units": "nT", "xmlid": "sat_stb_b"}, "sat_stb_bx": {"__spz_name__": "b radial", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sat_stb_bx", "dataset": "tao-sat-stb", "description": "br along parker spiral computed with tao model outputs", "is_public": "True", "name": "b radial", "start_date": "2008-01-01T00:00:00Z", "stop_date": "2014-11-01T00:00:00Z", "units": "nT", "xmlid": "sat_stb_bx"}, "sat_stb_da": {"__spz_name__": "angle Sat-Sun-STB", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sat_stb_da", "dataset": "tao-sat-stb", "is_public": "True", "name": "angle Sat-Sun-STB", "start_date": "2008-01-01T00:00:00Z", "stop_date": "2014-11-01T00:00:00Z", "units": "deg", "xmlid": "sat_stb_da"}, "sat_stb_n": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sat_stb_n", "dataset": "tao-sat-stb", "description": "Solar Wind Proton Number Density, scalar", "is_public": "True", "name": "density", "start_date": "2008-01-01T00:00:00Z", "stop_date": "2014-11-01T00:00:00Z", "units": "cm\u207b\u00b3", "xmlid": "sat_stb_n"}, "sat_stb_pdyn": {"__spz_name__": "dynamic pressure", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sat_stb_pdyn", "dataset": "tao-sat-stb", "is_public": "True", "name": "dynamic pressure", "start_date": "2008-01-01T00:00:00Z", "stop_date": "2014-11-01T00:00:00Z", "units": "nPa", "xmlid": "sat_stb_pdyn"}, "sat_stb_t": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sat_stb_t", "dataset": "tao-sat-stb", "is_public": "True", "name": "temperature", "start_date": "2008-01-01T00:00:00Z", "stop_date": "2014-11-01T00:00:00Z", "units": "eV", "xmlid": "sat_stb_t"}, "sat_stb_v": {"__spz_name__": "velocity", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sat_stb_v", "dataset": "tao-sat-stb", "description": "Solar Wind Bulk Speed", "is_public": "True", "name": "velocity", "sat_stb_v0": {"__spz_name__": "V r", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sat_stb_v(0)", "dataset": "tao-sat-stb", "index1": "0", "is_public": "True", "name": "V r", "parameter": "sat_stb_v", "start_date": "2008-01-01T00:00:00Z", "stop_date": "2014-11-01T00:00:00Z", "xmlid": "sat_stb_v(0)"}, "sat_stb_v1": {"__spz_name__": "V t", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sat_stb_v(1)", "dataset": "tao-sat-stb", "index1": "1", "is_public": "True", "name": "V t", "parameter": "sat_stb_v", "start_date": "2008-01-01T00:00:00Z", "stop_date": "2014-11-01T00:00:00Z", "xmlid": "sat_stb_v(1)"}, "size": "2", "start_date": "2008-01-01T00:00:00Z", "stop_date": "2014-11-01T00:00:00Z", "units": "km/s", "xmlid": "sat_stb_v"}, "simulation": "1", "spaseId": "spase://CNES/NumericalOutput/CDPP-AMDA/TAO/Saturn/tao-sat-stb", "start_date": "2008-01-01T00:00:00Z", "stop_date": "2014-11-01T00:00:00Z", "xmlid": "tao-sat-stb"}, "tao_sat_sw": {"__spz_name__": "SW / Input OMNI", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "tao-sat-sw", "att": "auto/tao-sat-sw", "dataSource": "", "desc": "Tao SW Saturn / Input OMNI
Sampling: 1H", "inputResourceID": "omni-hour-all", "is_public": "True", "lastModificationDate": "2024-09-23T20:40:03Z", "lastUpdate": "2024-09-23T20:40:03Z", "measurement_type": "ThermalPlasma", "name": "SW / Input OMNI", "processing_level": "Calibrated", "sampling": "1H", "sat_sw_b": {"__spz_name__": "b tangential", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sat_sw_b", "dataset": "tao-sat-sw", "is_public": "True", "name": "b tangential", "start_date": "1990-01-01T01:30:00Z", "stop_date": "2024-09-04T00:00:00Z", "units": "nT", "xmlid": "sat_sw_b"}, "sat_sw_bx": {"__spz_name__": "b radial", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sat_sw_bx", "dataset": "tao-sat-sw", "description": "br along parker spiral computed with tao model outputs", "is_public": "True", "name": "b radial", "start_date": "1990-01-01T01:30:00Z", "stop_date": "2024-09-04T00:00:00Z", "units": "nT", "xmlid": "sat_sw_bx"}, "sat_sw_da": {"__spz_name__": "angle Sat-Sun-Earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sat_sw_da", "dataset": "tao-sat-sw", "is_public": "True", "name": "angle Sat-Sun-Earth", "start_date": "1990-01-01T01:30:00Z", "stop_date": "2024-09-04T00:00:00Z", "units": "deg", "xmlid": "sat_sw_da"}, "sat_sw_n": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sat_sw_n", "dataset": "tao-sat-sw", "description": "Solar Wind Proton Number Density, scalar", "is_public": "True", "name": "density", "start_date": "1990-01-01T01:30:00Z", "stop_date": "2024-09-04T00:00:00Z", "units": "cm\u207b\u00b3", "xmlid": "sat_sw_n"}, "sat_sw_pdyn": {"__spz_name__": "dynamic pressure", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sat_sw_pdyn", "dataset": "tao-sat-sw", "is_public": "True", "name": "dynamic pressure", "start_date": "1990-01-01T01:30:00Z", "stop_date": "2024-09-04T00:00:00Z", "units": "nPa", "xmlid": "sat_sw_pdyn"}, "sat_sw_t": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sat_sw_t", "dataset": "tao-sat-sw", "is_public": "True", "name": "temperature", "start_date": "1990-01-01T01:30:00Z", "stop_date": "2024-09-04T00:00:00Z", "units": "eV", "xmlid": "sat_sw_t"}, "sat_sw_v": {"__spz_name__": "velocity", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sat_sw_v", "dataset": "tao-sat-sw", "description": "Solar Wind Bulk Speed", "is_public": "True", "name": "velocity", "sat_sw_v0": {"__spz_name__": "V r", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sat_sw_v(0)", "dataset": "tao-sat-sw", "index1": "0", "is_public": "True", "name": "V r", "parameter": "sat_sw_v", "start_date": "1990-01-01T01:30:00Z", "stop_date": "2024-09-04T00:00:00Z", "xmlid": "sat_sw_v(0)"}, "sat_sw_v1": {"__spz_name__": "V t", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sat_sw_v(1)", "dataset": "tao-sat-sw", "index1": "1", "is_public": "True", "name": "V t", "parameter": "sat_sw_v", "start_date": "1990-01-01T01:30:00Z", "stop_date": "2024-09-04T00:00:00Z", "xmlid": "sat_sw_v(1)"}, "size": "2", "start_date": "1990-01-01T01:30:00Z", "stop_date": "2024-09-04T00:00:00Z", "units": "km/s", "xmlid": "sat_sw_v"}, "simulation": "1", "spaseId": "spase://CNES/NumericalOutput/CDPP-AMDA/TAO/Saturn/tao-sat-sw", "start_date": "1990-01-01T01:30:00Z", "stop_date": "2024-09-04T00:00:00Z", "xmlid": "tao-sat-sw"}, "tao_sat_swrt": {"__spz_name__": "SW / Input ACE Real Time", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "tao-sat-swrt", "att": "auto/tao-sat-swrt", "dataSource": "", "desc": "Tao SW Saturn / Input ACE Real Time
Sampling: 1H", "inputResourceID": "ace-mag-real", "is_public": "True", "lastModificationDate": "2024-08-29T02:00:31Z", "lastUpdate": "2024-08-29T02:00:30Z", "measurement_type": "ThermalPlasma", "name": "SW / Input ACE Real Time", "processing_level": "Calibrated", "sampling": "1H", "sat_swrt_b": {"__spz_name__": "b tangential", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sat_swrt_b", "dataset": "tao-sat-swrt", "is_public": "True", "name": "b tangential", "start_date": "2024-05-24T01:00:00Z", "stop_date": "2024-08-28T00:00:00Z", "units": "nT", "xmlid": "sat_swrt_b"}, "sat_swrt_bx": {"__spz_name__": "b radial", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sat_swrt_bx", "dataset": "tao-sat-swrt", "description": "br along parker spiral computed with tao model outputs", "is_public": "True", "name": "b radial", "start_date": "2024-05-24T01:00:00Z", "stop_date": "2024-08-28T00:00:00Z", "units": "nT", "xmlid": "sat_swrt_bx"}, "sat_swrt_da": {"__spz_name__": "angle Sat-Sun-Earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sat_swrt_da", "dataset": "tao-sat-swrt", "is_public": "True", "name": "angle Sat-Sun-Earth", "start_date": "2024-05-24T01:00:00Z", "stop_date": "2024-08-28T00:00:00Z", "units": "deg", "xmlid": "sat_swrt_da"}, "sat_swrt_n": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sat_swrt_n", "dataset": "tao-sat-swrt", "description": "Solar Wind Proton Number Density, scalar", "is_public": "True", "name": "density", "start_date": "2024-05-24T01:00:00Z", "stop_date": "2024-08-28T00:00:00Z", "units": "cm\u207b\u00b3", "xmlid": "sat_swrt_n"}, "sat_swrt_pdyn": {"__spz_name__": "dynamic pressure", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sat_swrt_pdyn", "dataset": "tao-sat-swrt", "is_public": "True", "name": "dynamic pressure", "start_date": "2024-05-24T01:00:00Z", "stop_date": "2024-08-28T00:00:00Z", "units": "nPa", "xmlid": "sat_swrt_pdyn"}, "sat_swrt_t": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sat_swrt_t", "dataset": "tao-sat-swrt", "is_public": "True", "name": "temperature", "start_date": "2024-05-24T01:00:00Z", "stop_date": "2024-08-28T00:00:00Z", "units": "eV", "xmlid": "sat_swrt_t"}, "sat_swrt_v": {"__spz_name__": "velocity", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "sat_swrt_v", "dataset": "tao-sat-swrt", "description": "Solar Wind Bulk Speed", "is_public": "True", "name": "velocity", "sat_swrt_v0": {"__spz_name__": "V r", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sat_swrt_v(0)", "dataset": "tao-sat-swrt", "index1": "0", "is_public": "True", "name": "V r", "parameter": "sat_swrt_v", "start_date": "2024-05-24T01:00:00Z", "stop_date": "2024-08-28T00:00:00Z", "xmlid": "sat_swrt_v(0)"}, "sat_swrt_v1": {"__spz_name__": "V t", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "sat_swrt_v(1)", "dataset": "tao-sat-swrt", "index1": "1", "is_public": "True", "name": "V t", "parameter": "sat_swrt_v", "start_date": "2024-05-24T01:00:00Z", "stop_date": "2024-08-28T00:00:00Z", "xmlid": "sat_swrt_v(1)"}, "size": "2", "start_date": "2024-05-24T01:00:00Z", "stop_date": "2024-08-28T00:00:00Z", "units": "km/s", "xmlid": "sat_swrt_v"}, "simulation": "1", "spaseId": "spase://CNES/NumericalOutput/CDPP-AMDA/TAO/Saturn/tao-sat-swrt", "start_date": "2024-05-24T01:00:00Z", "stop_date": "2024-08-28T00:00:00Z", "xmlid": "tao-sat-swrt"}, "xmlid": "tao_saturn"}, "__spz_name__": "Saturn", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "SW_Propagation_Model_Saturn", "is_public": "True", "name": "Saturn", "rank": "91", "target": "Saturn", "xmlid": "SW_Propagation_Model_Saturn"}, "SolO": {"Ballistic_Model": {"__spz_name__": "Ballistic Model", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "ballistic_solo", "att": "auto/ballistic_solo", "bls_solo_dsc": {"__spz_name__": "input DSCOVR", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "bls-solo-dsc", "att": "auto/bls-solo-dsc", "dataSource": "", "desc": "Ballistic delay from the Earth to Solar Orbiter
Sampling: 1H", "inputResourceID": "dsc-fc-1m", "is_public": "True", "lastModificationDate": "2024-10-07T04:12:49Z", "lastUpdate": "2024-10-07T04:12:49Z", "measurement_type": "ThermalPlasma", "name": "input DSCOVR", "processing_level": "Calibrated", "sampling": "1H", "simulation": "1", "solo_bls_dsc_da": {"__spz_name__": "angle solo-sun-earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_bls_dsc_da", "dataset": "bls-solo-dsc", "is_public": "True", "name": "angle solo-sun-earth", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2024-10-05T23:59:00Z", "units": "deg", "xmlid": "solo_bls_dsc_da"}, "solo_bls_dsc_lag": {"__spz_name__": "delay earth-solo", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "solo_bls_dsc_lag", "dataset": "bls-solo-dsc", "is_public": "True", "name": "delay earth-solo", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2024-10-05T23:59:00Z", "units": "days", "xmlid": "solo_bls_dsc_lag"}, "spaseId": "spase://CNES/NumericalOutput/CDPP-AMDA/BALLISTIC/bls-solo-dsc", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2024-10-05T23:59:00Z", "xmlid": "bls-solo-dsc"}, "desc": "", "is_public": "True", "name": "Ballistic Model", "xmlid": "ballistic_solo"}, "Tao_Model": {"__spz_name__": "Tao Model", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "tao_so", "att": "auto/tao_so", "desc": "", "is_public": "True", "name": "Tao Model", "tao_so_dsc": {"__spz_name__": "SW / Input DSCOVR", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "tao-so-dsc", "att": "auto/tao-so-dsc", "dataSource": "", "desc": "Tao SW SolO / Input DSCOVR
Sampling: 1H", "inputResourceID": "dsc-fc-1m", "is_public": "True", "lastModificationDate": "2022-06-27T20:11:22Z", "lastUpdate": "2022-06-27T20:11:22Z", "measurement_type": "ThermalPlasma", "name": "SW / Input DSCOVR", "processing_level": "Calibrated", "sampling": "1H", "simulation": "1", "so_dsc_b": {"__spz_name__": "b tangential", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "so_dsc_b", "dataset": "tao-so-dsc", "is_public": "True", "name": "b tangential", "start_date": "2020-03-01T00:00:00Z", "stop_date": "2022-06-25T23:00:00Z", "units": "nT", "xmlid": "so_dsc_b"}, "so_dsc_bx": {"__spz_name__": "b radial", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "so_dsc_bx", "dataset": "tao-so-dsc", "description": "br along parker spiral computed with tao model outputs", "is_public": "True", "name": "b radial", "start_date": "2020-03-01T00:00:00Z", "stop_date": "2022-06-25T23:00:00Z", "units": "nT", "xmlid": "so_dsc_bx"}, "so_dsc_da": {"__spz_name__": "angle SolO-Sun-Earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "so_dsc_da", "dataset": "tao-so-dsc", "is_public": "True", "name": "angle SolO-Sun-Earth", "start_date": "2020-03-01T00:00:00Z", "stop_date": "2022-06-25T23:00:00Z", "units": "deg", "xmlid": "so_dsc_da"}, "so_dsc_n": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "so_dsc_n", "dataset": "tao-so-dsc", "description": "Solar Wind Proton Number Density, scalar", "is_public": "True", "name": "density", "start_date": "2020-03-01T00:00:00Z", "stop_date": "2022-06-25T23:00:00Z", "units": "cm\u207b\u00b3", "xmlid": "so_dsc_n"}, "so_dsc_pdyn": {"__spz_name__": "dynamic pressure", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "so_dsc_pdyn", "dataset": "tao-so-dsc", "is_public": "True", "name": "dynamic pressure", "start_date": "2020-03-01T00:00:00Z", "stop_date": "2022-06-25T23:00:00Z", "units": "nPa", "xmlid": "so_dsc_pdyn"}, "so_dsc_t": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "so_dsc_t", "dataset": "tao-so-dsc", "is_public": "True", "name": "temperature", "start_date": "2020-03-01T00:00:00Z", "stop_date": "2022-06-25T23:00:00Z", "units": "eV", "xmlid": "so_dsc_t"}, "so_dsc_v": {"__spz_name__": "velocity", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "so_dsc_v", "dataset": "tao-so-dsc", "description": "Solar Wind Bulk Speed", "is_public": "True", "name": "velocity", "size": "2", "so_dsc_v0": {"__spz_name__": "V r", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "so_dsc_v(0)", "dataset": "tao-so-dsc", "index1": "0", "is_public": "True", "name": "V r", "parameter": "so_dsc_v", "start_date": "2020-03-01T00:00:00Z", "stop_date": "2022-06-25T23:00:00Z", "xmlid": "so_dsc_v(0)"}, "so_dsc_v1": {"__spz_name__": "V t", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "so_dsc_v(1)", "dataset": "tao-so-dsc", "index1": "1", "is_public": "True", "name": "V t", "parameter": "so_dsc_v", "start_date": "2020-03-01T00:00:00Z", "stop_date": "2022-06-25T23:00:00Z", "xmlid": "so_dsc_v(1)"}, "start_date": "2020-03-01T00:00:00Z", "stop_date": "2022-06-25T23:00:00Z", "units": "km/s", "xmlid": "so_dsc_v"}, "spaseId": "spase://CNES/NumericalOutput/CDPP-AMDA/TAO/So/tao-so-dsc", "start_date": "2020-03-01T00:00:00Z", "stop_date": "2022-06-25T23:00:00Z", "xmlid": "tao-so-dsc"}, "tao_so_sw": {"__spz_name__": "SW / Input OMNI", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "tao-so-sw", "att": "auto/tao-so-sw", "dataSource": "", "desc": "Tao SW SolO / Input OMNI
Sampling: 1H", "inputResourceID": "omni-hour-all", "is_public": "True", "lastModificationDate": "2024-03-24T20:40:08Z", "lastUpdate": "2024-03-24T20:40:08Z", "measurement_type": "ThermalPlasma", "name": "SW / Input OMNI", "processing_level": "Calibrated", "sampling": "1H", "simulation": "1", "so_sw_b": {"__spz_name__": "b tangential", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "so_sw_b", "dataset": "tao-so-sw", "is_public": "True", "name": "b tangential", "start_date": "2020-01-01T00:00:00Z", "stop_date": "2024-02-14T00:00:00Z", "units": "nT", "xmlid": "so_sw_b"}, "so_sw_bx": {"__spz_name__": "b radial", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "so_sw_bx", "dataset": "tao-so-sw", "description": "br along parker spiral compputed with tao model outputs", "is_public": "True", "name": "b radial", "start_date": "2020-01-01T00:00:00Z", "stop_date": "2024-02-14T00:00:00Z", "units": "nT", "xmlid": "so_sw_bx"}, "so_sw_da": {"__spz_name__": "angle SolO-Sun-Earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "so_sw_da", "dataset": "tao-so-sw", "is_public": "True", "name": "angle SolO-Sun-Earth", "start_date": "2020-01-01T00:00:00Z", "stop_date": "2024-02-14T00:00:00Z", "units": "deg", "xmlid": "so_sw_da"}, "so_sw_n": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "so_sw_n", "dataset": "tao-so-sw", "description": "Solar Wind Proton Number Density, scalar", "is_public": "True", "name": "density", "start_date": "2020-01-01T00:00:00Z", "stop_date": "2024-02-14T00:00:00Z", "units": "cm\u207b\u00b3", "xmlid": "so_sw_n"}, "so_sw_pdyn": {"__spz_name__": "dynamic pressure", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "so_sw_pdyn", "dataset": "tao-so-sw", "is_public": "True", "name": "dynamic pressure", "start_date": "2020-01-01T00:00:00Z", "stop_date": "2024-02-14T00:00:00Z", "units": "nPa", "xmlid": "so_sw_pdyn"}, "so_sw_t": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "so_sw_t", "dataset": "tao-so-sw", "is_public": "True", "name": "temperature", "start_date": "2020-01-01T00:00:00Z", "stop_date": "2024-02-14T00:00:00Z", "units": "eV", "xmlid": "so_sw_t"}, "so_sw_v": {"__spz_name__": "velocity", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "so_sw_v", "dataset": "tao-so-sw", "description": "Solar Wind Bulk Speed", "is_public": "True", "name": "velocity", "size": "2", "so_sw_v0": {"__spz_name__": "V r", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "so_sw_v(0)", "dataset": "tao-so-sw", "index1": "0", "is_public": "True", "name": "V r", "parameter": "so_sw_v", "start_date": "2020-01-01T00:00:00Z", "stop_date": "2024-02-14T00:00:00Z", "xmlid": "so_sw_v(0)"}, "so_sw_v1": {"__spz_name__": "V t", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "so_sw_v(1)", "dataset": "tao-so-sw", "index1": "1", "is_public": "True", "name": "V t", "parameter": "so_sw_v", "start_date": "2020-01-01T00:00:00Z", "stop_date": "2024-02-14T00:00:00Z", "xmlid": "so_sw_v(1)"}, "start_date": "2020-01-01T00:00:00Z", "stop_date": "2024-02-14T00:00:00Z", "units": "km/s", "xmlid": "so_sw_v"}, "spaseId": "spase://CNES/NumericalOutput/CDPP-AMDA/TAO/So/tao-so-sw", "start_date": "2020-01-01T00:00:00Z", "stop_date": "2024-02-14T00:00:00Z", "xmlid": "tao-so-sw"}, "xmlid": "tao_so"}, "__spz_name__": "SolO", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "SW_Propagation_Model_SolO", "is_public": "True", "name": "SolO", "target": "SolO", "xmlid": "SW_Propagation_Model_SolO"}, "Uranus": {"Ballistic_Model": {"__spz_name__": "Ballistic Model", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "ballistic_uranus", "att": "auto/ballistic_uranus", "bls_uranus_omni": {"__spz_name__": "input OMNI", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "bls-uranus-omni", "att": "auto/bls-uranus-omni", "dataSource": "", "desc": "Ballistic delay from the Earth to Uranus
Sampling: 1H", "inputResourceID": "omni-hour-all", "is_public": "True", "lastModificationDate": "2024-09-29T22:22:28Z", "lastUpdate": "2024-09-29T22:22:28Z", "measurement_type": "ThermalPlasma", "name": "input OMNI", "processing_level": "Calibrated", "sampling": "1H", "simulation": "1", "spaseId": "spase://CNES/NumericalOutput/CDPP-AMDA/BALLISTIC/bls-uranus-omni", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2024-09-20T10:00:00Z", "ura_bls_da": {"__spz_name__": "angle uranus-sun-earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ura_bls_da", "dataset": "bls-uranus-omni", "is_public": "True", "name": "angle uranus-sun-earth", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2024-09-20T10:00:00Z", "units": "deg", "xmlid": "ura_bls_da"}, "ura_bls_lag": {"__spz_name__": "delay earth-uranus", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ura_bls_lag", "dataset": "bls-uranus-omni", "is_public": "True", "name": "delay earth-uranus", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2024-09-20T10:00:00Z", "units": "days", "xmlid": "ura_bls_lag"}, "xmlid": "bls-uranus-omni"}, "desc": "", "is_public": "True", "name": "Ballistic Model", "xmlid": "ballistic_uranus"}, "Tao_Model": {"__spz_name__": "Tao Model", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "tao_uranus", "att": "auto/tao_uranus", "desc": "", "is_public": "True", "name": "Tao Model", "tao_ura_dsc": {"__spz_name__": "SW / Input DSCOVR", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "tao-ura-dsc", "att": "auto/tao-ura-dsc", "dataSource": "", "desc": "Tao SW Uranus / Input DSCOVR
Sampling: 1H", "inputResourceID": "dsc-fc-1m", "is_public": "True", "lastModificationDate": "2024-10-03T23:50:32Z", "lastUpdate": "2022-06-23T16:11:06Z", "measurement_type": "ThermalPlasma", "name": "SW / Input DSCOVR", "processing_level": "Calibrated", "sampling": "1H", "simulation": "1", "spaseId": "spase://CNES/NumericalOutput/CDPP-AMDA/TAO/Uranus/tao-ura-dsc", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2022-06-26T23:00:00Z", "ura_dsc_b": {"__spz_name__": "b tangential", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ura_dsc_b", "dataset": "tao-ura-dsc", "is_public": "True", "name": "b tangential", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2022-06-26T23:00:00Z", "units": "nT", "xmlid": "ura_dsc_b"}, "ura_dsc_bx": {"__spz_name__": "b radial", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ura_dsc_bx", "dataset": "tao-ura-dsc", "description": "br along parker spiral computed with tao model outputs", "is_public": "True", "name": "b radial", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2022-06-26T23:00:00Z", "units": "nT", "xmlid": "ura_dsc_bx"}, "ura_dsc_da": {"__spz_name__": "angle Uranus-Sun-Earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ura_dsc_da", "dataset": "tao-ura-dsc", "is_public": "True", "name": "angle Uranus-Sun-Earth", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2022-06-26T23:00:00Z", "units": "deg", "xmlid": "ura_dsc_da"}, "ura_dsc_n": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ura_dsc_n", "dataset": "tao-ura-dsc", "description": "Solar Wind Proton Number Density, scalar", "is_public": "True", "name": "density", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2022-06-26T23:00:00Z", "units": "cm\u207b\u00b3", "xmlid": "ura_dsc_n"}, "ura_dsc_pdyn": {"__spz_name__": "dynamic pressure", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ura_dsc_pdyn", "dataset": "tao-ura-dsc", "is_public": "True", "name": "dynamic pressure", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2022-06-26T23:00:00Z", "units": "nPa", "xmlid": "ura_dsc_pdyn"}, "ura_dsc_t": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ura_dsc_t", "dataset": "tao-ura-dsc", "is_public": "True", "name": "temperature", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2022-06-26T23:00:00Z", "units": "eV", "xmlid": "ura_dsc_t"}, "ura_dsc_v": {"__spz_name__": "velocity", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ura_dsc_v", "dataset": "tao-ura-dsc", "description": "Solar Wind Bulk Speed", "is_public": "True", "name": "velocity", "size": "2", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2022-06-26T23:00:00Z", "units": "km/s", "ura_dsc_v0": {"__spz_name__": "V r", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ura_dsc_v(0)", "dataset": "tao-ura-dsc", "index1": "0", "is_public": "True", "name": "V r", "parameter": "ura_dsc_v", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2022-06-26T23:00:00Z", "xmlid": "ura_dsc_v(0)"}, "ura_dsc_v1": {"__spz_name__": "V t", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ura_dsc_v(1)", "dataset": "tao-ura-dsc", "index1": "1", "is_public": "True", "name": "V t", "parameter": "ura_dsc_v", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2022-06-26T23:00:00Z", "xmlid": "ura_dsc_v(1)"}, "xmlid": "ura_dsc_v"}, "xmlid": "tao-ura-dsc"}, "tao_ura_sta": {"__spz_name__": "SW / Input STA", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "tao-ura-sta", "att": "auto/tao-ura-sta", "dataSource": "", "desc": "Tao SW Uranus / Input Stereo-A
Sampling: 1H", "inputResourceID": "sta-l2-pla", "is_public": "True", "lastModificationDate": "2020-01-10T08:02:20Z", "lastUpdate": "2020-01-10T08:02:20Z", "measurement_type": "ThermalPlasma", "name": "SW / Input STA", "processing_level": "Calibrated", "sampling": "1H", "simulation": "1", "spaseId": "spase://CNES/NumericalOutput/CDPP-AMDA/TAO/Uranus/tao-ura-sta", "start_date": "2007-03-01T00:00:00Z", "stop_date": "2019-01-01T00:00:00Z", "ura_sta_b": {"__spz_name__": "b tangential", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ura_sta_b", "dataset": "tao-ura-sta", "is_public": "True", "name": "b tangential", "start_date": "2007-03-01T00:00:00Z", "stop_date": "2019-01-01T00:00:00Z", "units": "nT", "xmlid": "ura_sta_b"}, "ura_sta_bx": {"__spz_name__": "b radial", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ura_sta_bx", "dataset": "tao-ura-sta", "description": "br along parker spiral computed with tao model outputs", "is_public": "True", "name": "b radial", "start_date": "2007-03-01T00:00:00Z", "stop_date": "2019-01-01T00:00:00Z", "units": "nT", "xmlid": "ura_sta_bx"}, "ura_sta_da": {"__spz_name__": "angle Uranus-Sun-STA", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ura_sta_da", "dataset": "tao-ura-sta", "is_public": "True", "name": "angle Uranus-Sun-STA", "start_date": "2007-03-01T00:00:00Z", "stop_date": "2019-01-01T00:00:00Z", "units": "deg", "xmlid": "ura_sta_da"}, "ura_sta_n": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ura_sta_n", "dataset": "tao-ura-sta", "description": "Solar Wind Proton Number Density, scalar", "is_public": "True", "name": "density", "start_date": "2007-03-01T00:00:00Z", "stop_date": "2019-01-01T00:00:00Z", "units": "cm\u207b\u00b3", "xmlid": "ura_sta_n"}, "ura_sta_pdyn": {"__spz_name__": "dynamic pressure", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ura_sta_pdyn", "dataset": "tao-ura-sta", "is_public": "True", "name": "dynamic pressure", "start_date": "2007-03-01T00:00:00Z", "stop_date": "2019-01-01T00:00:00Z", "units": "nPa", "xmlid": "ura_sta_pdyn"}, "ura_sta_t": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ura_sta_t", "dataset": "tao-ura-sta", "is_public": "True", "name": "temperature", "start_date": "2007-03-01T00:00:00Z", "stop_date": "2019-01-01T00:00:00Z", "units": "eV", "xmlid": "ura_sta_t"}, "ura_sta_v": {"__spz_name__": "velocity", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ura_sta_v", "dataset": "tao-ura-sta", "description": "Solar Wind Bulk Speed", "is_public": "True", "name": "velocity", "size": "2", "start_date": "2007-03-01T00:00:00Z", "stop_date": "2019-01-01T00:00:00Z", "units": "km/s", "ura_sta_v0": {"__spz_name__": "V r", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ura_sta_v(0)", "dataset": "tao-ura-sta", "index1": "0", "is_public": "True", "name": "V r", "parameter": "ura_sta_v", "start_date": "2007-03-01T00:00:00Z", "stop_date": "2019-01-01T00:00:00Z", "xmlid": "ura_sta_v(0)"}, "ura_sta_v1": {"__spz_name__": "V t", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ura_sta_v(1)", "dataset": "tao-ura-sta", "index1": "1", "is_public": "True", "name": "V t", "parameter": "ura_sta_v", "start_date": "2007-03-01T00:00:00Z", "stop_date": "2019-01-01T00:00:00Z", "xmlid": "ura_sta_v(1)"}, "xmlid": "ura_sta_v"}, "xmlid": "tao-ura-sta"}, "tao_ura_stb": {"__spz_name__": "SW / Input STB", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "tao-ura-stb", "att": "auto/tao-ura-stb", "dataSource": "", "desc": "Tao SW Uranus / Input Stereo-B
Sampling: 1H", "inputResourceID": "stb-l2-pla", "is_public": "True", "lastModificationDate": "2019-02-01T15:44:36Z", "lastUpdate": "2019-02-01T15:44:36Z", "measurement_type": "ThermalPlasma", "name": "SW / Input STB", "processing_level": "Calibrated", "sampling": "1H", "simulation": "1", "spaseId": "spase://CNES/NumericalOutput/CDPP-AMDA/TAO/Uranus/tao-ura-stb", "start_date": "2008-01-01T00:00:00Z", "stop_date": "2014-11-01T00:00:00Z", "ura_stb_b": {"__spz_name__": "b tangential", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ura_stb_b", "dataset": "tao-ura-stb", "is_public": "True", "name": "b tangential", "start_date": "2008-01-01T00:00:00Z", "stop_date": "2014-11-01T00:00:00Z", "units": "nT", "xmlid": "ura_stb_b"}, "ura_stb_bx": {"__spz_name__": "b radial", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ura_stb_bx", "dataset": "tao-ura-stb", "description": "br along parker spiral computed with tao model outputs", "is_public": "True", "name": "b radial", "start_date": "2008-01-01T00:00:00Z", "stop_date": "2014-11-01T00:00:00Z", "units": "nT", "xmlid": "ura_stb_bx"}, "ura_stb_da": {"__spz_name__": "angle Uranus-Sun-STB", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ura_stb_da", "dataset": "tao-ura-stb", "is_public": "True", "name": "angle Uranus-Sun-STB", "start_date": "2008-01-01T00:00:00Z", "stop_date": "2014-11-01T00:00:00Z", "units": "deg", "xmlid": "ura_stb_da"}, "ura_stb_n": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ura_stb_n", "dataset": "tao-ura-stb", "description": "Solar Wind Proton Number Density, scalar", "is_public": "True", "name": "density", "start_date": "2008-01-01T00:00:00Z", "stop_date": "2014-11-01T00:00:00Z", "units": "cm\u207b\u00b3", "xmlid": "ura_stb_n"}, "ura_stb_pdyn": {"__spz_name__": "dynamic pressure", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ura_stb_pdyn", "dataset": "tao-ura-stb", "is_public": "True", "name": "dynamic pressure", "start_date": "2008-01-01T00:00:00Z", "stop_date": "2014-11-01T00:00:00Z", "units": "nPa", "xmlid": "ura_stb_pdyn"}, "ura_stb_t": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ura_stb_t", "dataset": "tao-ura-stb", "is_public": "True", "name": "temperature", "start_date": "2008-01-01T00:00:00Z", "stop_date": "2014-11-01T00:00:00Z", "units": "eV", "xmlid": "ura_stb_t"}, "ura_stb_v": {"__spz_name__": "velocity", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ura_stb_v", "dataset": "tao-ura-stb", "description": "Solar Wind Bulk Speed", "is_public": "True", "name": "velocity", "size": "2", "start_date": "2008-01-01T00:00:00Z", "stop_date": "2014-11-01T00:00:00Z", "units": "km/s", "ura_stb_v0": {"__spz_name__": "V r", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ura_stb_v(0)", "dataset": "tao-ura-stb", "index1": "0", "is_public": "True", "name": "V r", "parameter": "ura_stb_v", "start_date": "2008-01-01T00:00:00Z", "stop_date": "2014-11-01T00:00:00Z", "xmlid": "ura_stb_v(0)"}, "ura_stb_v1": {"__spz_name__": "V t", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ura_stb_v(1)", "dataset": "tao-ura-stb", "index1": "1", "is_public": "True", "name": "V t", "parameter": "ura_stb_v", "start_date": "2008-01-01T00:00:00Z", "stop_date": "2014-11-01T00:00:00Z", "xmlid": "ura_stb_v(1)"}, "xmlid": "ura_stb_v"}, "xmlid": "tao-ura-stb"}, "tao_ura_sw": {"__spz_name__": "SW / Input OMNI", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "tao-ura-sw", "att": "auto/tao-ura-sw", "dataSource": "", "desc": "Tao SW Uranus / Input OMNI
Sampling: 1H", "inputResourceID": "omni-hour-all", "is_public": "True", "lastModificationDate": "2024-09-23T22:50:13Z", "lastUpdate": "2024-09-23T22:50:13Z", "measurement_type": "ThermalPlasma", "name": "SW / Input OMNI", "processing_level": "Calibrated", "sampling": "1H", "simulation": "1", "spaseId": "spase://CNES/NumericalOutput/CDPP-AMDA/TAO/Uranus/tao-ura-sw", "start_date": "2010-01-01T00:00:00Z", "stop_date": "2024-09-04T00:00:00Z", "ura_sw_b": {"__spz_name__": "b tangential", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ura_sw_b", "dataset": "tao-ura-sw", "is_public": "True", "name": "b tangential", "start_date": "2010-01-01T00:00:00Z", "stop_date": "2024-09-04T00:00:00Z", "units": "nT", "xmlid": "ura_sw_b"}, "ura_sw_bx": {"__spz_name__": "b radial", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ura_sw_bx", "dataset": "tao-ura-sw", "description": "br along parker spiral computed with tao model outputs", "is_public": "True", "name": "b radial", "start_date": "2010-01-01T00:00:00Z", "stop_date": "2024-09-04T00:00:00Z", "units": "nT", "xmlid": "ura_sw_bx"}, "ura_sw_da": {"__spz_name__": "angle Uranus-Sun-Earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ura_sw_da", "dataset": "tao-ura-sw", "is_public": "True", "name": "angle Uranus-Sun-Earth", "start_date": "2010-01-01T00:00:00Z", "stop_date": "2024-09-04T00:00:00Z", "units": "deg", "xmlid": "ura_sw_da"}, "ura_sw_n": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ura_sw_n", "dataset": "tao-ura-sw", "description": "Solar Wind Proton Number Density, scalar", "is_public": "True", "name": "density", "start_date": "2010-01-01T00:00:00Z", "stop_date": "2024-09-04T00:00:00Z", "units": "cm\u207b\u00b3", "xmlid": "ura_sw_n"}, "ura_sw_pdyn": {"__spz_name__": "dynamic pressure", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ura_sw_pdyn", "dataset": "tao-ura-sw", "is_public": "True", "name": "dynamic pressure", "start_date": "2010-01-01T00:00:00Z", "stop_date": "2024-09-04T00:00:00Z", "units": "nPa", "xmlid": "ura_sw_pdyn"}, "ura_sw_t": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ura_sw_t", "dataset": "tao-ura-sw", "is_public": "True", "name": "temperature", "start_date": "2010-01-01T00:00:00Z", "stop_date": "2024-09-04T00:00:00Z", "units": "eV", "xmlid": "ura_sw_t"}, "ura_sw_v": {"__spz_name__": "velocity", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ura_sw_v", "dataset": "tao-ura-sw", "description": "Solar Wind Bulk Speed", "is_public": "True", "name": "velocity", "size": "2", "start_date": "2010-01-01T00:00:00Z", "stop_date": "2024-09-04T00:00:00Z", "units": "km/s", "ura_sw_v0": {"__spz_name__": "V r", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ura_sw_v(0)", "dataset": "tao-ura-sw", "index1": "0", "is_public": "True", "name": "V r", "parameter": "ura_sw_v", "start_date": "2010-01-01T00:00:00Z", "stop_date": "2024-09-04T00:00:00Z", "xmlid": "ura_sw_v(0)"}, "ura_sw_v1": {"__spz_name__": "V t", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ura_sw_v(1)", "dataset": "tao-ura-sw", "index1": "1", "is_public": "True", "name": "V t", "parameter": "ura_sw_v", "start_date": "2010-01-01T00:00:00Z", "stop_date": "2024-09-04T00:00:00Z", "xmlid": "ura_sw_v(1)"}, "xmlid": "ura_sw_v"}, "xmlid": "tao-ura-sw"}, "tao_ura_swrt": {"__spz_name__": "SW / Input ACE Real Time", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "tao-ura-swrt", "att": "auto/tao-ura-swrt", "dataSource": "", "desc": "Tao SW Uranus / Input ACE Real Time
Sampling: 1H", "inputResourceID": "ace-mag-real", "is_public": "True", "lastModificationDate": "2024-08-12T02:10:32Z", "lastUpdate": "2024-08-12T02:10:32Z", "measurement_type": "ThermalPlasma", "name": "SW / Input ACE Real Time", "processing_level": "Calibrated", "sampling": "1H", "simulation": "1", "spaseId": "spase://CNES/NumericalOutput/CDPP-AMDA/TAO/Uranus/tao-ura-swrt", "start_date": "2024-05-07T01:00:00Z", "stop_date": "2024-08-11T00:00:00Z", "ura_swrt_b": {"__spz_name__": "b tangential", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ura_swrt_b", "dataset": "tao-ura-swrt", "is_public": "True", "name": "b tangential", "start_date": "2024-05-07T01:00:00Z", "stop_date": "2024-08-11T00:00:00Z", "units": "nT", "xmlid": "ura_swrt_b"}, "ura_swrt_bx": {"__spz_name__": "b radial", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ura_swrt_bx", "dataset": "tao-ura-swrt", "description": "br along parker spiral computed with tao model outputs", "is_public": "True", "name": "b radial", "start_date": "2024-05-07T01:00:00Z", "stop_date": "2024-08-11T00:00:00Z", "units": "nT", "xmlid": "ura_swrt_bx"}, "ura_swrt_da": {"__spz_name__": "angle Uranus-Sun-Earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ura_swrt_da", "dataset": "tao-ura-swrt", "is_public": "True", "name": "angle Uranus-Sun-Earth", "start_date": "2024-05-07T01:00:00Z", "stop_date": "2024-08-11T00:00:00Z", "units": "deg", "xmlid": "ura_swrt_da"}, "ura_swrt_n": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ura_swrt_n", "dataset": "tao-ura-swrt", "description": "Solar Wind Proton Number Density, scalar", "is_public": "True", "name": "density", "start_date": "2024-05-07T01:00:00Z", "stop_date": "2024-08-11T00:00:00Z", "units": "cm\u207b\u00b3", "xmlid": "ura_swrt_n"}, "ura_swrt_pdyn": {"__spz_name__": "dynamic pressure", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ura_swrt_pdyn", "dataset": "tao-ura-swrt", "is_public": "True", "name": "dynamic pressure", "start_date": "2024-05-07T01:00:00Z", "stop_date": "2024-08-11T00:00:00Z", "units": "nPa", "xmlid": "ura_swrt_pdyn"}, "ura_swrt_t": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ura_swrt_t", "dataset": "tao-ura-swrt", "is_public": "True", "name": "temperature", "start_date": "2024-05-07T01:00:00Z", "stop_date": "2024-08-11T00:00:00Z", "units": "eV", "xmlid": "ura_swrt_t"}, "ura_swrt_v": {"__spz_name__": "velocity", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ura_swrt_v", "dataset": "tao-ura-swrt", "description": "Solar Wind Bulk Speed", "is_public": "True", "name": "velocity", "size": "2", "start_date": "2024-05-07T01:00:00Z", "stop_date": "2024-08-11T00:00:00Z", "units": "km/s", "ura_swrt_v0": {"__spz_name__": "V r", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ura_swrt_v(0)", "dataset": "tao-ura-swrt", "index1": "0", "is_public": "True", "name": "V r", "parameter": "ura_swrt_v", "start_date": "2024-05-07T01:00:00Z", "stop_date": "2024-08-11T00:00:00Z", "xmlid": "ura_swrt_v(0)"}, "ura_swrt_v1": {"__spz_name__": "V t", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ura_swrt_v(1)", "dataset": "tao-ura-swrt", "index1": "1", "is_public": "True", "name": "V t", "parameter": "ura_swrt_v", "start_date": "2024-05-07T01:00:00Z", "stop_date": "2024-08-11T00:00:00Z", "xmlid": "ura_swrt_v(1)"}, "xmlid": "ura_swrt_v"}, "xmlid": "tao-ura-swrt"}, "xmlid": "tao_uranus"}, "__spz_name__": "Uranus", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "SW_Propagation_Model_Uranus", "is_public": "True", "name": "Uranus", "rank": "92", "target": "Uranus", "xmlid": "SW_Propagation_Model_Uranus"}, "Venus": {"Ballistic_Model": {"__spz_name__": "Ballistic Model", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "ballistic_venus", "att": "auto/ballistic_venus", "bls_venus_omni": {"__spz_name__": "input OMNI", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "bls-venus-omni", "att": "auto/bls-venus-omni", "dataSource": "", "desc": "Ballistic delay from the Earth to Venus
Sampling: 1H", "inputResourceID": "omni-hour-all", "is_public": "True", "lastModificationDate": "2024-09-29T22:22:28Z", "lastUpdate": "2024-09-29T22:22:28Z", "measurement_type": "ThermalPlasma", "name": "input OMNI", "processing_level": "Calibrated", "sampling": "1H", "simulation": "1", "spaseId": "spase://CNES/NumericalOutput/CDPP-AMDA/BALLISTIC/bls-venus-omni", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2024-09-20T10:00:00Z", "venus_bls_da": {"__spz_name__": "angle venus-sun-earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "venus_bls_da", "dataset": "bls-venus-omni", "is_public": "True", "name": "angle venus-sun-earth", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2024-09-20T10:00:00Z", "units": "deg", "xmlid": "venus_bls_da"}, "venus_bls_lag": {"__spz_name__": "delay earth-venus", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "venus_bls_lag", "dataset": "bls-venus-omni", "is_public": "True", "name": "delay earth-venus", "start_date": "1970-01-01T00:00:00Z", "stop_date": "2024-09-20T10:00:00Z", "units": "days", "xmlid": "venus_bls_lag"}, "xmlid": "bls-venus-omni"}, "desc": "", "is_public": "True", "name": "Ballistic Model", "xmlid": "ballistic_venus"}, "Tao_Model": {"__spz_name__": "Tao Model", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "tao_venus", "att": "auto/tao_venus", "desc": "", "is_public": "True", "name": "Tao Model", "tao_venus_dsc": {"__spz_name__": "SW / Input DSCOVR", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "tao-venus-dsc", "att": "auto/tao-venus-dsc", "dataSource": "", "desc": "Tao SW Venus / Input DSCOVR
Sampling: 1H", "inputResourceID": "dsc-fc-1m", "is_public": "True", "lastModificationDate": "2024-03-24T23:20:29Z", "lastUpdate": "2024-03-24T23:20:29Z", "measurement_type": "ThermalPlasma", "name": "SW / Input DSCOVR", "processing_level": "Calibrated", "sampling": "1H", "simulation": "1", "spaseId": "spase://CNES/NumericalOutput/CDPP-AMDA/TAO/Venus/tao-venus-dsc", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2024-03-23T00:00:00Z", "venus_dsc_b": {"__spz_name__": "b tangential", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "venus_dsc_b", "dataset": "tao-venus-dsc", "is_public": "True", "name": "b tangential", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2024-03-23T00:00:00Z", "units": "nT", "xmlid": "venus_dsc_b"}, "venus_dsc_bx": {"__spz_name__": "b radial", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "venus_dsc_bx", "dataset": "tao-venus-dsc", "description": "br along parker spiral computed with tao model outputs", "is_public": "True", "name": "b radial", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2024-03-23T00:00:00Z", "units": "nT", "xmlid": "venus_dsc_bx"}, "venus_dsc_da": {"__spz_name__": "angle Venus-Sun-Earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "venus_dsc_da", "dataset": "tao-venus-dsc", "is_public": "True", "name": "angle Venus-Sun-Earth", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2024-03-23T00:00:00Z", "units": "deg", "xmlid": "venus_dsc_da"}, "venus_dsc_n": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "venus_dsc_n", "dataset": "tao-venus-dsc", "description": "Solar Wind Proton Number Density, scalar", "is_public": "True", "name": "density", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2024-03-23T00:00:00Z", "units": "cm\u207b\u00b3", "xmlid": "venus_dsc_n"}, "venus_dsc_pdyn": {"__spz_name__": "dynamic pressure", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "venus_dsc_pdyn", "dataset": "tao-venus-dsc", "is_public": "True", "name": "dynamic pressure", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2024-03-23T00:00:00Z", "units": "nPa", "xmlid": "venus_dsc_pdyn"}, "venus_dsc_t": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "venus_dsc_t", "dataset": "tao-venus-dsc", "is_public": "True", "name": "temperature", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2024-03-23T00:00:00Z", "units": "eV", "xmlid": "venus_dsc_t"}, "venus_dsc_v": {"__spz_name__": "velocity", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "venus_dsc_v", "dataset": "tao-venus-dsc", "description": "Solar Wind Bulk Speed", "is_public": "True", "name": "velocity", "size": "2", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2024-03-23T00:00:00Z", "units": "km/s", "venus_dsc_v0": {"__spz_name__": "V r", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "venus_dsc_v(0)", "dataset": "tao-venus-dsc", "index1": "0", "is_public": "True", "name": "V r", "parameter": "venus_dsc_v", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2024-03-23T00:00:00Z", "xmlid": "venus_dsc_v(0)"}, "venus_dsc_v1": {"__spz_name__": "V t", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "venus_dsc_v(1)", "dataset": "tao-venus-dsc", "index1": "1", "is_public": "True", "name": "V t", "parameter": "venus_dsc_v", "start_date": "2016-08-01T00:00:00Z", "stop_date": "2024-03-23T00:00:00Z", "xmlid": "venus_dsc_v(1)"}, "xmlid": "venus_dsc_v"}, "xmlid": "tao-venus-dsc"}, "tao_venus_sta": {"__spz_name__": "SW / Input STA", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "tao-venus-sta", "att": "auto/tao-venus-sta", "dataSource": "", "desc": "Tao SW Venus / Input Stereo-A
Sampling: 1H", "inputResourceID": "sta-l2-pla", "is_public": "True", "lastModificationDate": "2021-12-07T16:56:57Z", "lastUpdate": "2021-12-07T16:56:57Z", "measurement_type": "ThermalPlasma", "name": "SW / Input STA", "processing_level": "Calibrated", "sampling": "1H", "simulation": "1", "spaseId": "spase://CNES/NumericalOutput/CDPP-AMDA/TAO/Venus/tao-venus-sta", "start_date": "2011-01-01T00:00:00Z", "stop_date": "2019-04-29T00:00:00Z", "venus_sta_b": {"__spz_name__": "b tangential", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "venus_sta_b", "dataset": "tao-venus-sta", "is_public": "True", "name": "b tangential", "start_date": "2011-01-01T00:00:00Z", "stop_date": "2019-04-29T00:00:00Z", "units": "nT", "xmlid": "venus_sta_b"}, "venus_sta_bx": {"__spz_name__": "b radial", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "venus_sta_bx", "dataset": "tao-venus-sta", "description": "br along parker spiral computed with tao model outputs", "is_public": "True", "name": "b radial", "start_date": "2011-01-01T00:00:00Z", "stop_date": "2019-04-29T00:00:00Z", "units": "nT", "xmlid": "venus_sta_bx"}, "venus_sta_da": {"__spz_name__": "angle Venus-Sun-STA", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "venus_sta_da", "dataset": "tao-venus-sta", "is_public": "True", "name": "angle Venus-Sun-STA", "start_date": "2011-01-01T00:00:00Z", "stop_date": "2019-04-29T00:00:00Z", "units": "deg", "xmlid": "venus_sta_da"}, "venus_sta_n": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "venus_sta_n", "dataset": "tao-venus-sta", "description": "Solar Wind Proton Number Density, scalar", "is_public": "True", "name": "density", "start_date": "2011-01-01T00:00:00Z", "stop_date": "2019-04-29T00:00:00Z", "units": "cm\u207b\u00b3", "xmlid": "venus_sta_n"}, "venus_sta_pdyn": {"__spz_name__": "dynamic pressure", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "venus_sta_pdyn", "dataset": "tao-venus-sta", "is_public": "True", "name": "dynamic pressure", "start_date": "2011-01-01T00:00:00Z", "stop_date": "2019-04-29T00:00:00Z", "units": "nPa", "xmlid": "venus_sta_pdyn"}, "venus_sta_t": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "venus_sta_t", "dataset": "tao-venus-sta", "is_public": "True", "name": "temperature", "start_date": "2011-01-01T00:00:00Z", "stop_date": "2019-04-29T00:00:00Z", "units": "eV", "xmlid": "venus_sta_t"}, "venus_sta_v": {"__spz_name__": "velocity", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "venus_sta_v", "dataset": "tao-venus-sta", "description": "Solar Wind Bulk Speed", "is_public": "True", "name": "velocity", "size": "2", "start_date": "2011-01-01T00:00:00Z", "stop_date": "2019-04-29T00:00:00Z", "units": "km/s", "venus_sta_v0": {"__spz_name__": "V r", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "venus_sta_v(0)", "dataset": "tao-venus-sta", "index1": "0", "is_public": "True", "name": "V r", "parameter": "venus_sta_v", "start_date": "2011-01-01T00:00:00Z", "stop_date": "2019-04-29T00:00:00Z", "xmlid": "venus_sta_v(0)"}, "venus_sta_v1": {"__spz_name__": "V t", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "venus_sta_v(1)", "dataset": "tao-venus-sta", "index1": "1", "is_public": "True", "name": "V t", "parameter": "venus_sta_v", "start_date": "2011-01-01T00:00:00Z", "stop_date": "2019-04-29T00:00:00Z", "xmlid": "venus_sta_v(1)"}, "xmlid": "venus_sta_v"}, "xmlid": "tao-venus-sta"}, "tao_venus_stb": {"__spz_name__": "SW / Input STB", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "tao-venus-stb", "att": "auto/tao-venus-stb", "dataSource": "", "desc": "Tao SW Venus / Input Stereo-B
Sampling: 1H", "inputResourceID": "stb-l2-pla", "is_public": "True", "lastModificationDate": "2019-02-01T15:44:55Z", "lastUpdate": "2019-02-01T15:44:55Z", "measurement_type": "ThermalPlasma", "name": "SW / Input STB", "processing_level": "Calibrated", "sampling": "1H", "simulation": "1", "spaseId": "spase://CNES/NumericalOutput/CDPP-AMDA/TAO/Venus/tao-venus-stb", "start_date": "2008-01-01T00:00:00Z", "stop_date": "2014-01-01T00:00:00Z", "venus_stb_b": {"__spz_name__": "b tangential", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "venus_stb_b", "dataset": "tao-venus-stb", "is_public": "True", "name": "b tangential", "start_date": "2008-01-01T00:00:00Z", "stop_date": "2014-01-01T00:00:00Z", "units": "nT", "xmlid": "venus_stb_b"}, "venus_stb_bx": {"__spz_name__": "b radial", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "venus_stb_bx", "dataset": "tao-venus-stb", "description": "br along parker spiral computed with tao model outputs", "is_public": "True", "name": "b radial", "start_date": "2008-01-01T00:00:00Z", "stop_date": "2014-01-01T00:00:00Z", "units": "nT", "xmlid": "venus_stb_bx"}, "venus_stb_da": {"__spz_name__": "angle Venus-Sun-STB", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "venus_stb_da", "dataset": "tao-venus-stb", "is_public": "True", "name": "angle Venus-Sun-STB", "start_date": "2008-01-01T00:00:00Z", "stop_date": "2014-01-01T00:00:00Z", "units": "deg", "xmlid": "venus_stb_da"}, "venus_stb_n": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "venus_stb_n", "dataset": "tao-venus-stb", "description": "Solar Wind Proton Number Density, scalar", "is_public": "True", "name": "density", "start_date": "2008-01-01T00:00:00Z", "stop_date": "2014-01-01T00:00:00Z", "units": "cm\u207b\u00b3", "xmlid": "venus_stb_n"}, "venus_stb_pdyn": {"__spz_name__": "dynamic pressure", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "venus_stb_pdyn", "dataset": "tao-venus-stb", "is_public": "True", "name": "dynamic pressure", "start_date": "2008-01-01T00:00:00Z", "stop_date": "2014-01-01T00:00:00Z", "units": "nPa", "xmlid": "venus_stb_pdyn"}, "venus_stb_t": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "venus_stb_t", "dataset": "tao-venus-stb", "is_public": "True", "name": "temperature", "start_date": "2008-01-01T00:00:00Z", "stop_date": "2014-01-01T00:00:00Z", "units": "eV", "xmlid": "venus_stb_t"}, "venus_stb_v": {"__spz_name__": "velocity", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "venus_stb_v", "dataset": "tao-venus-stb", "description": "Solar Wind Bulk Speed", "is_public": "True", "name": "velocity", "size": "2", "start_date": "2008-01-01T00:00:00Z", "stop_date": "2014-01-01T00:00:00Z", "units": "km/s", "venus_stb_v0": {"__spz_name__": "V r", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "venus_stb_v(0)", "dataset": "tao-venus-stb", "index1": "0", "is_public": "True", "name": "V r", "parameter": "venus_stb_v", "start_date": "2008-01-01T00:00:00Z", "stop_date": "2014-01-01T00:00:00Z", "xmlid": "venus_stb_v(0)"}, "venus_stb_v1": {"__spz_name__": "V t", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "venus_stb_v(1)", "dataset": "tao-venus-stb", "index1": "1", "is_public": "True", "name": "V t", "parameter": "venus_stb_v", "start_date": "2008-01-01T00:00:00Z", "stop_date": "2014-01-01T00:00:00Z", "xmlid": "venus_stb_v(1)"}, "xmlid": "venus_stb_v"}, "xmlid": "tao-venus-stb"}, "tao_venus_sw": {"__spz_name__": "SW / Input OMNI", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "tao-venus-sw", "att": "auto/tao-venus-sw", "dataSource": "", "desc": "Tao SW Venus / Input OMNI
Sampling: 1H", "inputResourceID": "omni-hour-all", "is_public": "True", "lastModificationDate": "2024-10-06T20:10:03Z", "lastUpdate": "2024-10-06T20:10:03Z", "measurement_type": "ThermalPlasma", "name": "SW / Input OMNI", "processing_level": "Calibrated", "sampling": "1H", "simulation": "1", "spaseId": "spase://CNES/NumericalOutput/CDPP-AMDA/TAO/Venus/tao-venus-sw", "start_date": "1990-01-01T01:00:00Z", "stop_date": "2024-09-03T00:00:00Z", "venus_sw_b": {"__spz_name__": "b tangential", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "venus_sw_b", "dataset": "tao-venus-sw", "is_public": "True", "name": "b tangential", "start_date": "1990-01-01T01:00:00Z", "stop_date": "2024-09-03T00:00:00Z", "units": "nT", "xmlid": "venus_sw_b"}, "venus_sw_bx": {"__spz_name__": "b radial", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "venus_sw_bx", "dataset": "tao-venus-sw", "description": "br along parker spiral computed with tao model outputs", "is_public": "True", "name": "b radial", "start_date": "1990-01-01T01:00:00Z", "stop_date": "2024-09-03T00:00:00Z", "units": "nT", "xmlid": "venus_sw_bx"}, "venus_sw_da": {"__spz_name__": "angle Venus-Sun-Earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "venus_sw_da", "dataset": "tao-venus-sw", "is_public": "True", "name": "angle Venus-Sun-Earth", "start_date": "1990-01-01T01:00:00Z", "stop_date": "2024-09-03T00:00:00Z", "units": "deg", "xmlid": "venus_sw_da"}, "venus_sw_n": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "venus_sw_n", "dataset": "tao-venus-sw", "description": "Solar Wind Proton Number Density, scalar", "is_public": "True", "name": "density", "start_date": "1990-01-01T01:00:00Z", "stop_date": "2024-09-03T00:00:00Z", "units": "cm\u207b\u00b3", "xmlid": "venus_sw_n"}, "venus_sw_pdyn": {"__spz_name__": "dynamic pressure", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "venus_sw_pdyn", "dataset": "tao-venus-sw", "is_public": "True", "name": "dynamic pressure", "start_date": "1990-01-01T01:00:00Z", "stop_date": "2024-09-03T00:00:00Z", "units": "nPa", "xmlid": "venus_sw_pdyn"}, "venus_sw_t": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "venus_sw_t", "dataset": "tao-venus-sw", "is_public": "True", "name": "temperature", "start_date": "1990-01-01T01:00:00Z", "stop_date": "2024-09-03T00:00:00Z", "units": "eV", "xmlid": "venus_sw_t"}, "venus_sw_v": {"__spz_name__": "velocity", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "venus_sw_v", "dataset": "tao-venus-sw", "description": "Solar Wind Bulk Speed", "is_public": "True", "name": "velocity", "size": "2", "start_date": "1990-01-01T01:00:00Z", "stop_date": "2024-09-03T00:00:00Z", "units": "km/s", "venus_sw_v0": {"__spz_name__": "V r", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "venus_sw_v(0)", "dataset": "tao-venus-sw", "index1": "0", "is_public": "True", "name": "V r", "parameter": "venus_sw_v", "start_date": "1990-01-01T01:00:00Z", "stop_date": "2024-09-03T00:00:00Z", "xmlid": "venus_sw_v(0)"}, "venus_sw_v1": {"__spz_name__": "V t", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "venus_sw_v(1)", "dataset": "tao-venus-sw", "index1": "1", "is_public": "True", "name": "V t", "parameter": "venus_sw_v", "start_date": "1990-01-01T01:00:00Z", "stop_date": "2024-09-03T00:00:00Z", "xmlid": "venus_sw_v(1)"}, "xmlid": "venus_sw_v"}, "xmlid": "tao-venus-sw"}, "tao_venus_swrt": {"__spz_name__": "SW / Input ACE Real Time", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "tao-venus-swrt", "att": "auto/tao-venus-swrt", "dataSource": "", "desc": "Tao SW Venus / / Input ACE Real Time
Sampling: 1H", "inputResourceID": "ace-mag-real", "is_public": "True", "lastModificationDate": "2024-10-01T21:20:13Z", "lastUpdate": "2024-10-01T21:20:13Z", "measurement_type": "ThermalPlasma", "name": "SW / Input ACE Real Time", "processing_level": "Calibrated", "sampling": "1H", "simulation": "1", "spaseId": "spase://CNES/NumericalOutput/CDPP-AMDA/TAO/Venus/tao-venus-swrt", "start_date": "2024-07-05T01:00:00Z", "stop_date": "2024-10-01T00:00:00Z", "venus_swrt_b": {"__spz_name__": "b tangential", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "venus_swrt_b", "dataset": "tao-venus-swrt", "is_public": "True", "name": "b tangential", "start_date": "2024-07-05T01:00:00Z", "stop_date": "2024-10-01T00:00:00Z", "units": "nT", "xmlid": "venus_swrt_b"}, "venus_swrt_bx": {"__spz_name__": "b radial", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "venus_swrt_bx", "dataset": "tao-venus-swrt", "description": "br along parker spiral computed with tao model outputs", "is_public": "True", "name": "b radial", "start_date": "2024-07-05T01:00:00Z", "stop_date": "2024-10-01T00:00:00Z", "units": "nT", "xmlid": "venus_swrt_bx"}, "venus_swrt_da": {"__spz_name__": "angle Venus-Sun-Earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "venus_swrt_da", "dataset": "tao-venus-swrt", "is_public": "True", "name": "angle Venus-Sun-Earth", "start_date": "2024-07-05T01:00:00Z", "stop_date": "2024-10-01T00:00:00Z", "units": "deg", "xmlid": "venus_swrt_da"}, "venus_swrt_n": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "venus_swrt_n", "dataset": "tao-venus-swrt", "description": "Solar Wind Proton Number Density, scalar", "is_public": "True", "name": "density", "start_date": "2024-07-05T01:00:00Z", "stop_date": "2024-10-01T00:00:00Z", "units": "cm\u207b\u00b3", "xmlid": "venus_swrt_n"}, "venus_swrt_pdyn": {"__spz_name__": "dynamic pressure", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "venus_swrt_pdyn", "dataset": "tao-venus-swrt", "is_public": "True", "name": "dynamic pressure", "start_date": "2024-07-05T01:00:00Z", "stop_date": "2024-10-01T00:00:00Z", "units": "nPa", "xmlid": "venus_swrt_pdyn"}, "venus_swrt_t": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "venus_swrt_t", "dataset": "tao-venus-swrt", "is_public": "True", "name": "temperature", "start_date": "2024-07-05T01:00:00Z", "stop_date": "2024-10-01T00:00:00Z", "units": "eV", "xmlid": "venus_swrt_t"}, "venus_swrt_v": {"__spz_name__": "velocity", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "venus_swrt_v", "dataset": "tao-venus-swrt", "description": "Solar Wind Bulk Speed", "is_public": "True", "name": "velocity", "size": "2", "start_date": "2024-07-05T01:00:00Z", "stop_date": "2024-10-01T00:00:00Z", "units": "km/s", "venus_swrt_v0": {"__spz_name__": "V r", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "venus_swrt_v(0)", "dataset": "tao-venus-swrt", "index1": "0", "is_public": "True", "name": "V r", "parameter": "venus_swrt_v", "start_date": "2024-07-05T01:00:00Z", "stop_date": "2024-10-01T00:00:00Z", "xmlid": "venus_swrt_v(0)"}, "venus_swrt_v1": {"__spz_name__": "V t", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "venus_swrt_v(1)", "dataset": "tao-venus-swrt", "index1": "1", "is_public": "True", "name": "V t", "parameter": "venus_swrt_v", "start_date": "2024-07-05T01:00:00Z", "stop_date": "2024-10-01T00:00:00Z", "xmlid": "venus_swrt_v(1)"}, "xmlid": "venus_swrt_v"}, "xmlid": "tao-venus-swrt"}, "xmlid": "tao_venus"}, "__spz_name__": "Venus", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "SW_Propagation_Model_Venus", "is_public": "True", "name": "Venus", "rank": "3", "target": "Venus", "xmlid": "SW_Propagation_Model_Venus"}, "__spz_name__": "Solar Wind Propagation Models", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "SW_Propagation_Model", "att": "auto/SW_Propagation_Model", "is_public": "True", "name": "Solar Wind Propagation Models", "rank": "999", "xmlid": "SW_Propagation_Model"}, "Swarm": {"Swarm_A": {"EFI__LP": {"__spz_name__": "EFI / LP", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "SWARM-A_lp", "att": "auto/SWARM-A_lp", "desc": "Electric Field Instrument : Langmuir Probe
LangmuirProbe", "is_public": "True", "name": "EFI / LP", "swarma_lp_all": {"__spz_name__": "lp extended dataset", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "swarma-lp-all", "att": "auto/swarma-lp-all", "dataSource": "ftp://swarm-diss.eo.esa.int", "desc": "2Hz Langmuir Probe Extended Dataset
Sampling: 0.5S
Provider: ftp://swarm-diss.eo.esa.int", "is_public": "True", "lastModificationDate": "2024-10-06T22:23:24Z", "lastUpdate": "2024-10-06T22:23:17Z", "measurement_type": "ElectricField", "name": "lp extended dataset", "processing_level": "Calibrated", "sampling": "0.5S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/SWARM-A/LP/swarma-lp-all", "start_date": "2013-12-02T10:11:13Z", "stop_date": "2024-09-21T23:59:59Z", "swa_ne": {"__spz_name__": "density e-", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swa_ne", "dataset": "swarma-lp-all", "description": "Plasma density from ion current", "display_type": "timeseries", "is_public": "True", "name": "density e-", "start_date": "2013-12-02T10:11:13Z", "stop_date": "2024-09-21T23:59:59Z", "units": "cm\u207b\u00b3", "xmlid": "swa_ne"}, "swa_pot": {"__spz_name__": "s/c pot", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swa_pot", "dataset": "swarma-lp-all", "description": "Spacecraft potential, blended value", "display_type": "timeseries", "is_public": "True", "name": "s/c pot", "start_date": "2013-12-02T10:11:13Z", "stop_date": "2024-09-21T23:59:59Z", "units": "V", "xmlid": "swa_pot"}, "swa_te": {"__spz_name__": "temperature e-", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swa_te", "dataset": "swarma-lp-all", "description": "Electron temperature, blended value", "display_type": "timeseries", "is_public": "True", "name": "temperature e-", "start_date": "2013-12-02T10:11:13Z", "stop_date": "2024-09-21T23:59:59Z", "units": "K", "xmlid": "swa_te"}, "target": "Earth.Magnetosphere", "xmlid": "swarma-lp-all"}, "xmlid": "SWARM-A_lp"}, "EFI__TII": {"__spz_name__": "EFI / TII", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "SWARM-A_tii", "att": "auto/SWARM-A_tii", "desc": "Electric Field Instrument : Thermal Ion Imager
Imager", "is_public": "True", "name": "EFI / TII", "swarma_tii_all": {"__spz_name__": "cross-track", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "swarma-tii-all", "att": "auto/swarma-tii-all", "dataSource": "ftp://swarm-diss.eo.esa.int", "desc": "2Hz TII Cross-track Ion Flow Dataset
Sampling: 0.5S
Provider: ftp://swarm-diss.eo.esa.int", "is_public": "True", "lastModificationDate": "2019-04-23T10:43:55Z", "lastUpdate": "2019-05-06T16:52:01Z", "measurement_type": "ElectricField", "name": "cross-track", "processing_level": "Calibrated", "sampling": "0.5S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/SWARM-A/TII/swarma-tii-all", "start_date": "2015-11-01T15:58:14Z", "stop_date": "2017-12-31T14:00:03Z", "swa_e": {"__spz_name__": "e field", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swa_e", "dataset": "swarma-tii-all", "description": "Electric field in co-rotating frame", "display_type": "timeseries", "is_public": "True", "name": "e field", "size": "3", "start_date": "2015-11-01T15:58:14Z", "stop_date": "2017-12-31T14:00:03Z", "swa_e0": {"__spz_name__": "ex", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "swa_e(0)", "dataset": "swarma-tii-all", "index1": "0", "is_public": "True", "name": "ex", "parameter": "swa_e", "start_date": "2015-11-01T15:58:14Z", "stop_date": "2017-12-31T14:00:03Z", "xmlid": "swa_e(0)"}, "swa_e1": {"__spz_name__": "ey", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "swa_e(1)", "dataset": "swarma-tii-all", "index1": "1", "is_public": "True", "name": "ey", "parameter": "swa_e", "start_date": "2015-11-01T15:58:14Z", "stop_date": "2017-12-31T14:00:03Z", "xmlid": "swa_e(1)"}, "swa_e2": {"__spz_name__": "ez", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "swa_e(2)", "dataset": "swarma-tii-all", "index1": "2", "is_public": "True", "name": "ez", "parameter": "swa_e", "start_date": "2015-11-01T15:58:14Z", "stop_date": "2017-12-31T14:00:03Z", "xmlid": "swa_e(2)"}, "units": "mV/m", "xmlid": "swa_e"}, "swa_e_qual": {"__spz_name__": "e quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swa_e_qual", "dataset": "swarma-tii-all", "display_type": "timeseries", "is_public": "True", "name": "e quality", "start_date": "2015-11-01T15:58:14Z", "stop_date": "2017-12-31T14:00:03Z", "xmlid": "swa_e_qual"}, "swa_v_corot": {"__spz_name__": "v corot", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swa_v_corot", "dataset": "swarma-tii-all", "description": "Co-rotation signal. Can be added to viy to get approximate horizontal cross-track component of ion velocity in inertial frame of reference", "display_type": "timeseries", "is_public": "True", "name": "v corot", "start_date": "2015-11-01T15:58:14Z", "stop_date": "2017-12-31T14:00:03Z", "units": "m/s", "xmlid": "swa_v_corot"}, "swa_v_ion": {"__spz_name__": "v ion", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swa_v_ion", "dataset": "swarma-tii-all", "display_type": "timeseries", "is_public": "True", "name": "v ion", "size": "2", "start_date": "2015-11-01T15:58:14Z", "stop_date": "2017-12-31T14:00:03Z", "swa_v_ion0": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "swa_v_ion(0)", "dataset": "swarma-tii-all", "index1": "0", "is_public": "True", "name": "vy", "parameter": "swa_v_ion", "start_date": "2015-11-01T15:58:14Z", "stop_date": "2017-12-31T14:00:03Z", "xmlid": "swa_v_ion(0)"}, "swa_v_ion1": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "swa_v_ion(1)", "dataset": "swarma-tii-all", "index1": "1", "is_public": "True", "name": "vz", "parameter": "swa_v_ion", "start_date": "2015-11-01T15:58:14Z", "stop_date": "2017-12-31T14:00:03Z", "xmlid": "swa_v_ion(1)"}, "units": "km/s", "xmlid": "swa_v_ion"}, "swa_vy_qual": {"__spz_name__": "vy quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swa_vy_qual", "dataset": "swarma-tii-all", "display_type": "timeseries", "is_public": "True", "name": "vy quality", "start_date": "2015-11-01T15:58:14Z", "stop_date": "2017-12-31T14:00:03Z", "xmlid": "swa_vy_qual"}, "swa_vz_qual": {"__spz_name__": "vz quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swa_vz_qual", "dataset": "swarma-tii-all", "display_type": "timeseries", "is_public": "True", "name": "vz quality", "start_date": "2015-11-01T15:58:14Z", "stop_date": "2017-12-31T14:00:03Z", "xmlid": "swa_vz_qual"}, "target": "Earth.Magnetosphere", "xmlid": "swarma-tii-all"}, "swarma_tii_prov": {"__spz_name__": "preliminary", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "swarma-tii-prov", "att": "auto/swarma-tii-prov", "dataSource": "ftp://swarm-diss.eo.esa.int", "desc": "Preliminary EFI TII Dataset
MinSampling: 0.5S; MaxSampling: 2S
Provider: ftp://swarm-diss.eo.esa.int", "is_public": "True", "lastModificationDate": "2019-06-13T15:32:39Z", "lastUpdate": "2019-06-13T15:22:12Z", "maxSampling": "2S", "measurement_type": "ElectricField", "name": "preliminary", "processing_level": "Calibrated", "sampling": "0.5S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/SWARM-A/TII/swarma-tii-prov", "start_date": "2013-12-13T00:00:00Z", "stop_date": "2015-03-18T23:59:59Z", "swa_pr_e": {"__spz_name__": "e field", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swa_pr_e", "dataset": "swarma-tii-prov", "description": "Electric field vector in NEC frame", "display_type": "timeseries", "is_public": "True", "name": "e field", "size": "3", "start_date": "2013-12-13T00:00:00Z", "stop_date": "2015-03-18T23:59:59Z", "swa_pr_e0": {"__spz_name__": "e north", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "swa_pr_e(0)", "dataset": "swarma-tii-prov", "index1": "0", "is_public": "True", "name": "e north", "parameter": "swa_pr_e", "start_date": "2013-12-13T00:00:00Z", "stop_date": "2015-03-18T23:59:59Z", "xmlid": "swa_pr_e(0)"}, "swa_pr_e1": {"__spz_name__": "e east", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "swa_pr_e(1)", "dataset": "swarma-tii-prov", "index1": "1", "is_public": "True", "name": "e east", "parameter": "swa_pr_e", "start_date": "2013-12-13T00:00:00Z", "stop_date": "2015-03-18T23:59:59Z", "xmlid": "swa_pr_e(1)"}, "swa_pr_e2": {"__spz_name__": "e center", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "swa_pr_e(2)", "dataset": "swarma-tii-prov", "index1": "2", "is_public": "True", "name": "e center", "parameter": "swa_pr_e", "start_date": "2013-12-13T00:00:00Z", "stop_date": "2015-03-18T23:59:59Z", "xmlid": "swa_pr_e(2)"}, "units": "mV/m", "xmlid": "swa_pr_e"}, "swa_pr_t": {"__spz_name__": "t ion", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swa_pr_t", "dataset": "swarma-tii-prov", "description": "Ion temperature", "display_type": "timeseries", "is_public": "True", "name": "t ion", "start_date": "2013-12-13T00:00:00Z", "stop_date": "2015-03-18T23:59:59Z", "units": "K", "xmlid": "swa_pr_t"}, "swa_pr_v_ion": {"__spz_name__": "v ion", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swa_pr_v_ion", "dataset": "swarma-tii-prov", "description": "Ion velocity vector in North, East, Centre (NEC) frame", "display_type": "timeseries", "is_public": "True", "name": "v ion", "size": "3", "start_date": "2013-12-13T00:00:00Z", "stop_date": "2015-03-18T23:59:59Z", "swa_pr_v_ion0": {"__spz_name__": "v north", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "swa_pr_v_ion(0)", "dataset": "swarma-tii-prov", "index1": "0", "is_public": "True", "name": "v north", "parameter": "swa_pr_v_ion", "start_date": "2013-12-13T00:00:00Z", "stop_date": "2015-03-18T23:59:59Z", "xmlid": "swa_pr_v_ion(0)"}, "swa_pr_v_ion1": {"__spz_name__": "v east", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "swa_pr_v_ion(1)", "dataset": "swarma-tii-prov", "index1": "1", "is_public": "True", "name": "v east", "parameter": "swa_pr_v_ion", "start_date": "2013-12-13T00:00:00Z", "stop_date": "2015-03-18T23:59:59Z", "xmlid": "swa_pr_v_ion(1)"}, "swa_pr_v_ion2": {"__spz_name__": "v centre", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "swa_pr_v_ion(2)", "dataset": "swarma-tii-prov", "index1": "1", "is_public": "True", "name": "v centre", "parameter": "swa_pr_v_ion", "start_date": "2013-12-13T00:00:00Z", "stop_date": "2015-03-18T23:59:59Z", "xmlid": "swa_pr_v_ion(2)"}, "units": "m/s", "xmlid": "swa_pr_v_ion"}, "swa_pr_v_sc": {"__spz_name__": "v sc", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swa_pr_v_sc", "dataset": "swarma-tii-prov", "description": "Satellite velocity vector in North, East, Centre (NEC) frame", "display_type": "timeseries", "is_public": "True", "name": "v sc", "size": "3", "start_date": "2013-12-13T00:00:00Z", "stop_date": "2015-03-18T23:59:59Z", "swa_pr_v_sc0": {"__spz_name__": "v north", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "swa_pr_v_sc(0)", "dataset": "swarma-tii-prov", "index1": "0", "is_public": "True", "name": "v north", "parameter": "swa_pr_v_sc", "start_date": "2013-12-13T00:00:00Z", "stop_date": "2015-03-18T23:59:59Z", "xmlid": "swa_pr_v_sc(0)"}, "swa_pr_v_sc1": {"__spz_name__": "v east", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "swa_pr_v_sc(1)", "dataset": "swarma-tii-prov", "index1": "1", "is_public": "True", "name": "v east", "parameter": "swa_pr_v_sc", "start_date": "2013-12-13T00:00:00Z", "stop_date": "2015-03-18T23:59:59Z", "xmlid": "swa_pr_v_sc(1)"}, "swa_pr_v_sc2": {"__spz_name__": "v centre", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "swa_pr_v_sc(2)", "dataset": "swarma-tii-prov", "index1": "1", "is_public": "True", "name": "v centre", "parameter": "swa_pr_v_sc", "start_date": "2013-12-13T00:00:00Z", "stop_date": "2015-03-18T23:59:59Z", "xmlid": "swa_pr_v_sc(2)"}, "units": "m/s", "xmlid": "swa_pr_v_sc"}, "target": "Earth.Magnetosphere", "xmlid": "swarma-tii-prov"}, "xmlid": "SWARM-A_tii"}, "Ephemeris": {"__spz_name__": "Ephemeris", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "SWARM-A_ephemeris", "att": "auto/SWARM-A_ephemeris", "desc": "", "is_public": "True", "n_0_5_s": {"__spz_name__": "0.5 s", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "swarma-orb-05", "is_public": "True", "name": "0.5 s", "swarma_orb_lp": {"__spz_name__": "lp extended dataset", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "swarma-orb-lp", "att": "auto/swarma-orb-lp", "dataSource": "ftp://swarm-diss.eo.esa.int", "desc": "Swarm-A orbital information from EFI / LP extended dataset
Sampling: 0.5S
Provider: ftp://swarm-diss.eo.esa.int", "is_public": "True", "lastModificationDate": "2024-10-06T22:23:30Z", "lastUpdate": "2024-10-06T22:23:21Z", "measurement_type": "Ephemeris", "name": "lp extended dataset", "processing_level": "Calibrated", "sampling": "0.5S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/SWARM-A/Ephemeris/swarma-orb-lp", "start_date": "2013-12-02T10:11:13Z", "stop_date": "2024-09-21T23:59:59Z", "swa_diplat": {"__spz_name__": "dip lat", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swa_diplat", "dataset": "swarma-orb-lp", "description": "Quasi-dipole latitude", "display_type": "timeseries", "is_public": "True", "name": "dip lat", "start_date": "2013-12-02T10:11:13Z", "stop_date": "2024-09-21T23:59:59Z", "units": "deg", "xmlid": "swa_diplat"}, "swa_diplon": {"__spz_name__": "dip lon", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swa_diplon", "dataset": "swarma-orb-lp", "description": "Quasi-dipole longitude", "display_type": "timeseries", "is_public": "True", "name": "dip lon", "start_date": "2013-12-02T10:11:13Z", "stop_date": "2024-09-21T23:59:59Z", "units": "deg", "xmlid": "swa_diplon"}, "swa_h_wgs84": {"__spz_name__": "h_wgs84", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swa_h_wgs84", "dataset": "swarma-orb-lp", "description": "Height above reference ellipsoid, WGS84", "display_type": "timeseries", "is_public": "True", "name": "h_wgs84", "start_date": "2013-12-02T10:11:13Z", "stop_date": "2024-09-21T23:59:59Z", "units": "km", "xmlid": "swa_h_wgs84"}, "swa_lat_wgs84": {"__spz_name__": "lat_wgs84", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swa_lat_wgs84", "dataset": "swarma-orb-lp", "description": "Geodetic latitude, WGS84", "display_type": "timeseries", "is_public": "True", "name": "lat_wgs84", "start_date": "2013-12-02T10:11:13Z", "stop_date": "2024-09-21T23:59:59Z", "units": "deg", "xmlid": "swa_lat_wgs84"}, "swa_lon_wgs84": {"__spz_name__": "lon_wgs84", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swa_lon_wgs84", "dataset": "swarma-orb-lp", "description": "Geodetic longitude, WGS84", "display_type": "timeseries", "is_public": "True", "name": "lon_wgs84", "start_date": "2013-12-02T10:11:13Z", "stop_date": "2024-09-21T23:59:59Z", "units": "deg", "xmlid": "swa_lon_wgs84"}, "swa_mlat": {"__spz_name__": "mlat", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swa_mlat", "dataset": "swarma-orb-lp", "description": "Magnetic latitude", "display_type": "timeseries", "is_public": "True", "name": "mlat", "start_date": "2013-12-02T10:11:13Z", "stop_date": "2024-09-21T23:59:59Z", "units": "deg", "xmlid": "swa_mlat"}, "swa_mlt": {"__spz_name__": "mlt", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swa_mlt", "dataset": "swarma-orb-lp", "description": "Magnetic local time based on quasi-dipole", "display_type": "timeseries", "is_public": "True", "name": "mlt", "start_date": "2013-12-02T10:11:13Z", "stop_date": "2024-09-21T23:59:59Z", "units": "hours", "xmlid": "swa_mlt"}, "swa_saz": {"__spz_name__": "solar azimuth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swa_saz", "dataset": "swarma-orb-lp", "description": "Solar Azimuth in Earth frame, north is 0 deg", "display_type": "timeseries", "is_public": "True", "name": "solar azimuth", "start_date": "2013-12-02T10:11:13Z", "stop_date": "2024-09-21T23:59:59Z", "units": "deg", "xmlid": "swa_saz"}, "swa_st": {"__spz_name__": "solar time", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swa_st", "dataset": "swarma-orb-lp", "description": "Apparent Solar Time", "display_type": "timeseries", "is_public": "True", "name": "solar time", "start_date": "2013-12-02T10:11:13Z", "stop_date": "2024-09-21T23:59:59Z", "units": "hours", "xmlid": "swa_st"}, "swa_sza": {"__spz_name__": "sza", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swa_sza", "dataset": "swarma-orb-lp", "description": "Solar Zenith Angle", "display_type": "timeseries", "is_public": "True", "name": "sza", "start_date": "2013-12-02T10:11:13Z", "stop_date": "2024-09-21T23:59:59Z", "units": "deg", "xmlid": "swa_sza"}, "target": "Earth.Magnetosphere", "xmlid": "swarma-orb-lp"}, "swarma_orb_tii": {"__spz_name__": "tii cross-track dataset", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "swarma-orb-tii", "att": "auto/swarma-orb-tii", "dataSource": "ftp://swarm-diss.eo.esa.int", "desc": "Swarm-A orbital information from EFI / TII cross-track dataset
Sampling: 0.5S
Provider: ftp://swarm-diss.eo.esa.int", "is_public": "True", "lastModificationDate": "2019-04-23T10:43:15Z", "lastUpdate": "2019-04-18T19:45:22Z", "measurement_type": "Ephemeris", "name": "tii cross-track dataset", "processing_level": "Calibrated", "sampling": "0.5S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/SWARM-A/Ephemeris/swarma-orb-tii", "start_date": "2015-11-01T15:58:14Z", "stop_date": "2017-12-31T14:00:03Z", "swa_v_sat": {"__spz_name__": "v sat", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swa_v_sat", "dataset": "swarma-orb-tii", "description": "Northward, Eastward (in inertial frame) and Center ( radially inward ) components of satellite velocity.", "display_type": "timeseries", "is_public": "True", "name": "v sat", "size": "3", "start_date": "2015-11-01T15:58:14Z", "stop_date": "2017-12-31T14:00:03Z", "swa_v_sat0": {"__spz_name__": "v_north", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "swa_v_sat(0)", "dataset": "swarma-orb-tii", "index1": "0", "is_public": "True", "name": "v_north", "parameter": "swa_v_sat", "start_date": "2015-11-01T15:58:14Z", "stop_date": "2017-12-31T14:00:03Z", "xmlid": "swa_v_sat(0)"}, "swa_v_sat1": {"__spz_name__": "v_east", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "swa_v_sat(1)", "dataset": "swarma-orb-tii", "index1": "1", "is_public": "True", "name": "v_east", "parameter": "swa_v_sat", "start_date": "2015-11-01T15:58:14Z", "stop_date": "2017-12-31T14:00:03Z", "xmlid": "swa_v_sat(1)"}, "swa_v_sat2": {"__spz_name__": "v_center", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "swa_v_sat(2)", "dataset": "swarma-orb-tii", "index1": "2", "is_public": "True", "name": "v_center", "parameter": "swa_v_sat", "start_date": "2015-11-01T15:58:14Z", "stop_date": "2017-12-31T14:00:03Z", "xmlid": "swa_v_sat(2)"}, "units": "m/s", "xmlid": "swa_v_sat"}, "target": "Earth.Magnetosphere", "xmlid": "swarma-orb-tii"}, "xmlid": "swarma-orb-05"}, "n_1_s": {"__spz_name__": "1 s", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "swarma-orb1", "is_public": "True", "name": "1 s", "swarma_orb_all": {"__spz_name__": "position in ITRF", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "swarma-orb-all", "att": "auto/swarma-orb-all", "dataSource": "ftp://swarm-diss.eo.esa.int", "desc": "Swarm-A orbital information from FAC dataset
Sampling: 1S
Provider: ftp://swarm-diss.eo.esa.int", "is_public": "True", "lastModificationDate": "2024-10-07T04:15:30Z", "lastUpdate": "2024-10-07T04:15:24Z", "measurement_type": "Ephemeris", "name": "position in ITRF", "processing_level": "Calibrated", "sampling": "1S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/SWARM-A/Ephemeris/swarma-orb-all", "start_date": "2013-11-26T00:00:00Z", "stop_date": "2024-10-01T23:59:59Z", "swa_lat": {"__spz_name__": "lat", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swa_lat", "dataset": "swarma-orb-all", "description": "Position in ITRF, Latitude", "display_type": "timeseries", "is_public": "True", "name": "lat", "start_date": "2013-11-26T00:00:00Z", "stop_date": "2024-10-01T23:59:59Z", "units": "deg", "xmlid": "swa_lat"}, "swa_lon": {"__spz_name__": "lon", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swa_lon", "dataset": "swarma-orb-all", "description": "Position in ITRF, Longitude", "display_type": "timeseries", "is_public": "True", "name": "lon", "start_date": "2013-11-26T00:00:00Z", "stop_date": "2024-10-01T23:59:59Z", "units": "deg", "xmlid": "swa_lon"}, "swa_r": {"__spz_name__": "r", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swa_r", "dataset": "swarma-orb-all", "description": "Position in ITRF, Radius", "display_type": "timeseries", "is_public": "True", "name": "r", "start_date": "2013-11-26T00:00:00Z", "stop_date": "2024-10-01T23:59:59Z", "units": "km", "xmlid": "swa_r"}, "target": "Earth.Magnetosphere", "xmlid": "swarma-orb-all"}, "xmlid": "swarma-orb1"}, "name": "Ephemeris", "xmlid": "SWARM-A_ephemeris"}, "GNSS": {"__spz_name__": "GNSS", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "SWARM-A_gnss", "att": "auto/SWARM-A_gnss", "desc": "Global Navigation Satellite System
Antenna", "is_public": "True", "name": "GNSS", "swarma_gps_all": {"__spz_name__": "tec", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "swarma-gps-all", "att": "auto/swarma-gps-all", "dataSource": "ftp://swarm-diss.eo.esa.int", "desc": "total electron content
Sampling: 1S
Provider: ftp://swarm-diss.eo.esa.int", "is_public": "True", "lastModificationDate": "2022-09-30T04:55:14Z", "lastUpdate": "2022-09-30T04:55:13Z", "measurement_type": "Waves", "name": "tec", "processing_level": "Calibrated", "sampling": "1S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/SWARM-A/GNSS/swarma-gps-all", "start_date": "2013-11-25T10:59:54Z", "stop_date": "2022-02-17T23:59:59Z", "swa_gps_elev": {"__spz_name__": "gps elevation angle", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swa_gps_elev", "dataset": "swarma-gps-all", "description": "gps elevation angle", "display_type": "timeseries", "is_public": "True", "name": "gps elevation angle", "start_date": "2013-11-25T10:59:54Z", "stop_date": "2022-02-17T23:59:59Z", "units": "deg", "xmlid": "swa_gps_elev"}, "swa_gps_number": {"__spz_name__": "gps number", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swa_gps_number", "dataset": "swarma-gps-all", "description": "gps number", "display_type": "timeseries", "is_public": "True", "name": "gps number", "start_date": "2013-11-25T10:59:54Z", "stop_date": "2022-02-17T23:59:59Z", "xmlid": "swa_gps_number"}, "swa_stec": {"__spz_name__": "stec", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swa_stec", "dataset": "swarma-gps-all", "description": "Absolute slant TEC from largest elevation GNSS satellite", "display_type": "timeseries", "is_public": "True", "name": "stec", "start_date": "2013-11-25T10:59:54Z", "stop_date": "2022-02-17T23:59:59Z", "units": "TECU", "xmlid": "swa_stec"}, "swa_stec_rel": {"__spz_name__": "relative stec", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swa_stec_rel", "dataset": "swarma-gps-all", "description": "Relative slant TEC", "display_type": "timeseries", "is_public": "True", "name": "relative stec", "start_date": "2013-11-25T10:59:54Z", "stop_date": "2022-02-17T23:59:59Z", "units": "TECU", "xmlid": "swa_stec_rel"}, "swa_vtec": {"__spz_name__": "vtec", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swa_vtec", "dataset": "swarma-gps-all", "description": "Absolute vertical TEC from largest elevation GNSS satellite", "display_type": "timeseries", "is_public": "True", "name": "vtec", "start_date": "2013-11-25T10:59:54Z", "stop_date": "2022-02-17T23:59:59Z", "units": "TECU", "xmlid": "swa_vtec"}, "target": "Earth.Magnetosphere", "xmlid": "swarma-gps-all"}, "xmlid": "SWARM-A_gnss"}, "MAG_ASMVFM": {"__spz_name__": "MAG (ASM/VFM)", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "SWARM-A_mag", "att": "auto/SWARM-A_mag", "desc": "Absolute Scalar Magnetometer / Vector Field Magnetometer
Magnetometer", "is_public": "True", "name": "MAG (ASM/VFM)", "swarma_fac_all": {"__spz_name__": "field-aligned current", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "swarma-fac-all", "att": "auto/swarma-fac-all", "dataSource": "ftp://swarm-diss.eo.esa.int", "desc": "Level2daily/Entire_mission_data/FAC dataset
Sampling: 1S
Provider: ftp://swarm-diss.eo.esa.int", "is_public": "True", "lastModificationDate": "2024-10-07T04:15:27Z", "lastUpdate": "2024-10-07T04:15:23Z", "measurement_type": "MagneticField", "name": "field-aligned current", "processing_level": "Calibrated", "sampling": "1S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/SWARM-A/MAG/swarma-fac-all", "start_date": "2013-11-25T11:02:52Z", "stop_date": "2024-10-01T23:59:59Z", "swa_fac": {"__spz_name__": "fac", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swa_fac", "dataset": "swarma-fac-all", "description": "Field-aligned current", "display_type": "timeseries", "is_public": "True", "name": "fac", "start_date": "2013-11-25T11:02:52Z", "stop_date": "2024-10-01T23:59:59Z", "units": "\u03bcA/m\u00b2", "xmlid": "swa_fac"}, "swa_fac_error": {"__spz_name__": "fac error", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swa_fac_error", "dataset": "swarma-fac-all", "description": "uncertainty of FAC", "display_type": "timeseries", "is_public": "True", "name": "fac error", "start_date": "2013-11-25T11:02:52Z", "stop_date": "2024-10-01T23:59:59Z", "units": "\u03bcA/m\u00b2", "xmlid": "swa_fac_error"}, "target": "Earth.Magnetosphere", "xmlid": "swarma-fac-all"}, "swarma_mag_all": {"__spz_name__": "magnetic field in North-East-Center frame", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "swarma-mag-all", "att": "auto/swarma-mag-all", "dataSource": "ftp://swarm-diss.eo.esa.int", "desc": "Advanced / Magnetic_Data / L1B_MAGxLR_0503 dataset
Sampling: 1S
Provider: ftp://swarm-diss.eo.esa.int", "is_public": "True", "lastModificationDate": "2024-10-06T22:27:01Z", "lastUpdate": "2019-04-05T23:01:09Z", "measurement_type": "MagneticField", "name": "magnetic field in North-East-Center frame", "processing_level": "Calibrated", "sampling": "1S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/SWARM-A/MAG/swarma-mag-all", "start_date": "2013-11-26T00:00:00Z", "stop_date": "2017-12-31T23:59:59Z", "swa_b_nec": {"__spz_name__": "b_nec", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swa_b_nec", "dataset": "swarma-mag-all", "display_type": "timeseries", "is_public": "True", "name": "b_nec", "size": "3", "start_date": "2013-11-26T00:00:00Z", "stop_date": "2017-12-31T23:59:59Z", "swa_b_nec0": {"__spz_name__": "b_north", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "swa_b_nec(0)", "dataset": "swarma-mag-all", "index1": "0", "is_public": "True", "name": "b_north", "parameter": "swa_b_nec", "start_date": "2013-11-26T00:00:00Z", "stop_date": "2017-12-31T23:59:59Z", "xmlid": "swa_b_nec(0)"}, "swa_b_nec1": {"__spz_name__": "b_east", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "swa_b_nec(1)", "dataset": "swarma-mag-all", "index1": "1", "is_public": "True", "name": "b_east", "parameter": "swa_b_nec", "start_date": "2013-11-26T00:00:00Z", "stop_date": "2017-12-31T23:59:59Z", "xmlid": "swa_b_nec(1)"}, "swa_b_nec2": {"__spz_name__": "b_center", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "swa_b_nec(2)", "dataset": "swarma-mag-all", "index1": "2", "is_public": "True", "name": "b_center", "parameter": "swa_b_nec", "start_date": "2013-11-26T00:00:00Z", "stop_date": "2017-12-31T23:59:59Z", "xmlid": "swa_b_nec(2)"}, "ucd": "phys.magField", "units": "nT", "xmlid": "swa_b_nec"}, "target": "Earth.Magnetosphere", "xmlid": "swarma-mag-all"}, "swarma_mag_tii": {"__spz_name__": "magnetic field in cross-track frame", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "swarma-mag-tii", "att": "auto/swarma-mag-tii", "dataSource": "ftp://swarm-diss.eo.esa.int", "desc": "2Hz TII Cross-track Ion Flow Dataset
Sampling: 0.5S
Provider: ftp://swarm-diss.eo.esa.int", "is_public": "True", "lastModificationDate": "2019-05-06T17:48:29Z", "lastUpdate": "2019-05-06T17:01:42Z", "measurement_type": "MagneticField", "name": "magnetic field in cross-track frame", "processing_level": "Calibrated", "sampling": "0.5S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/SWARM-A/MAG/swarma-mag-tii", "start_date": "2015-11-01T15:58:14Z", "stop_date": "2017-12-31T14:00:03Z", "swa_b": {"__spz_name__": "b field", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swa_b", "dataset": "swarma-mag-tii", "display_type": "timeseries", "is_public": "True", "name": "b field", "size": "3", "start_date": "2015-11-01T15:58:14Z", "stop_date": "2017-12-31T14:00:03Z", "swa_b0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "swa_b(0)", "dataset": "swarma-mag-tii", "index1": "0", "is_public": "True", "name": "bx", "parameter": "swa_b", "start_date": "2015-11-01T15:58:14Z", "stop_date": "2017-12-31T14:00:03Z", "xmlid": "swa_b(0)"}, "swa_b1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "swa_b(1)", "dataset": "swarma-mag-tii", "index1": "1", "is_public": "True", "name": "by", "parameter": "swa_b", "start_date": "2015-11-01T15:58:14Z", "stop_date": "2017-12-31T14:00:03Z", "xmlid": "swa_b(1)"}, "swa_b2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "swa_b(2)", "dataset": "swarma-mag-tii", "index1": "2", "is_public": "True", "name": "bz", "parameter": "swa_b", "start_date": "2015-11-01T15:58:14Z", "stop_date": "2017-12-31T14:00:03Z", "xmlid": "swa_b(2)"}, "units": "nT", "xmlid": "swa_b"}, "target": "Earth.Magnetosphere", "xmlid": "swarma-mag-tii"}, "swarmac_fac_all": {"__spz_name__": "field-aligned current (A+C)", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "swarmac-fac-all", "att": "auto/swarmac-fac-all", "dataSource": "ftp://swarm-diss.eo.esa.int", "desc": "Level2daily/Entire_mission_data/FAC dataset
Sampling: 1S
Provider: ftp://swarm-diss.eo.esa.int", "is_public": "True", "lastModificationDate": "2024-10-07T04:20:19Z", "lastUpdate": "2024-10-07T04:20:17Z", "measurement_type": "MagneticField", "name": "field-aligned current (A+C)", "processing_level": "Calibrated", "sampling": "1S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/SWARM-A/MAG/swarmac-fac-all", "start_date": "2013-11-26T00:07:47Z", "stop_date": "2024-10-01T23:59:59Z", "swac_fac": {"__spz_name__": "fac", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swac_fac", "dataset": "swarmac-fac-all", "description": "Field-aligned current", "display_type": "timeseries", "is_public": "True", "name": "fac", "start_date": "2013-11-26T00:07:47Z", "stop_date": "2024-10-01T23:59:59Z", "units": "\u03bcA/m\u00b2", "xmlid": "swac_fac"}, "swac_fac_error": {"__spz_name__": "fac error", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swac_fac_error", "dataset": "swarmac-fac-all", "description": "uncertainty of FAC", "display_type": "timeseries", "is_public": "True", "name": "fac error", "start_date": "2013-11-26T00:07:47Z", "stop_date": "2024-10-01T23:59:59Z", "units": "\u03bcA/m\u00b2", "xmlid": "swac_fac_error"}, "target": "Earth.Magnetosphere", "xmlid": "swarmac-fac-all"}, "xmlid": "SWARM-A_mag"}, "__spz_name__": "Swarm-A", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "SWARM-A", "att": "auto/SWARM-A", "desc": "Swarm Alpha
2013-11-22T00:00:00", "is_public": "True", "name": "Swarm-A", "target": "Earth.Magnetosphere", "xmlid": "SWARM-A"}, "Swarm_B": {"EFI__LP": {"__spz_name__": "EFI / LP", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "SWARM-B_lp", "att": "auto/SWARM-B_lp", "desc": "Electric Field Instrument : Langmuir Probe
LangmuirProbe", "is_public": "True", "name": "EFI / LP", "swarmb_lp_all": {"__spz_name__": "lp extended dataset", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "swarmb-lp-all", "att": "auto/swarmb-lp-all", "dataSource": "ftp://swarm-diss.eo.esa.int", "desc": "2Hz Langmuir Probe Extended Dataset
Sampling: 0.5S
Provider: ftp://swarm-diss.eo.esa.int", "is_public": "True", "lastModificationDate": "2024-10-06T22:25:12Z", "lastUpdate": "2024-10-06T22:25:05Z", "measurement_type": "ElectricField", "name": "lp extended dataset", "processing_level": "Calibrated", "sampling": "0.5S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/SWARM-B/LP/swarmb-lp-all", "start_date": "2013-12-02T11:44:45Z", "stop_date": "2024-09-21T23:59:59Z", "swb_ne": {"__spz_name__": "density e-", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swb_ne", "dataset": "swarmb-lp-all", "description": "Plasma density from ion current", "display_type": "timeseries", "is_public": "True", "name": "density e-", "start_date": "2013-12-02T11:44:45Z", "stop_date": "2024-09-21T23:59:59Z", "units": "cm\u207b\u00b3", "xmlid": "swb_ne"}, "swb_pot": {"__spz_name__": "s/c pot", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swb_pot", "dataset": "swarmb-lp-all", "description": "Spacecraft potential, blended value", "display_type": "timeseries", "is_public": "True", "name": "s/c pot", "start_date": "2013-12-02T11:44:45Z", "stop_date": "2024-09-21T23:59:59Z", "units": "V", "xmlid": "swb_pot"}, "swb_te": {"__spz_name__": "temperature e-", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swb_te", "dataset": "swarmb-lp-all", "description": "Electron temperature, blended value", "display_type": "timeseries", "is_public": "True", "name": "temperature e-", "start_date": "2013-12-02T11:44:45Z", "stop_date": "2024-09-21T23:59:59Z", "units": "K", "xmlid": "swb_te"}, "target": "Earth.Magnetosphere", "xmlid": "swarmb-lp-all"}, "xmlid": "SWARM-B_lp"}, "EFI__TII": {"__spz_name__": "EFI / TII", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "SWARM-B_tii", "att": "auto/SWARM-B_tii", "desc": "Electric Field Instrument : Thermal Ion Imager
Imager", "is_public": "True", "name": "EFI / TII", "swarmb_tii_all": {"__spz_name__": "cross-track", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "swarmb-tii-all", "att": "auto/swarmb-tii-all", "dataSource": "ftp://swarm-diss.eo.esa.int", "desc": "2Hz TII Cross-track Ion Flow Dataset
Sampling: 0.5S
Provider: ftp://swarm-diss.eo.esa.int", "is_public": "True", "lastModificationDate": "2019-04-25T10:30:38Z", "lastUpdate": "2019-05-06T16:06:08Z", "measurement_type": "ElectricField", "name": "cross-track", "processing_level": "Calibrated", "sampling": "0.5S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/SWARM-B/TII/swarmb-tii-all", "start_date": "2015-11-01T17:33:17Z", "stop_date": "2017-12-31T14:00:06Z", "swb_e": {"__spz_name__": "e field", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swb_e", "dataset": "swarmb-tii-all", "description": "Electric field in co-rotating frame", "display_type": "timeseries", "is_public": "True", "name": "e field", "size": "3", "start_date": "2015-11-01T17:33:17Z", "stop_date": "2017-12-31T14:00:06Z", "swb_e0": {"__spz_name__": "ex", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "swb_e(0)", "dataset": "swarmb-tii-all", "index1": "0", "is_public": "True", "name": "ex", "parameter": "swb_e", "start_date": "2015-11-01T17:33:17Z", "stop_date": "2017-12-31T14:00:06Z", "xmlid": "swb_e(0)"}, "swb_e1": {"__spz_name__": "ey", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "swb_e(1)", "dataset": "swarmb-tii-all", "index1": "1", "is_public": "True", "name": "ey", "parameter": "swb_e", "start_date": "2015-11-01T17:33:17Z", "stop_date": "2017-12-31T14:00:06Z", "xmlid": "swb_e(1)"}, "swb_e2": {"__spz_name__": "ez", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "swb_e(2)", "dataset": "swarmb-tii-all", "index1": "2", "is_public": "True", "name": "ez", "parameter": "swb_e", "start_date": "2015-11-01T17:33:17Z", "stop_date": "2017-12-31T14:00:06Z", "xmlid": "swb_e(2)"}, "units": "mV/m", "xmlid": "swb_e"}, "swb_e_qual": {"__spz_name__": "e quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swb_e_qual", "dataset": "swarmb-tii-all", "display_type": "timeseries", "is_public": "True", "name": "e quality", "start_date": "2015-11-01T17:33:17Z", "stop_date": "2017-12-31T14:00:06Z", "xmlid": "swb_e_qual"}, "swb_v_corot": {"__spz_name__": "v corot", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swb_v_corot", "dataset": "swarmb-tii-all", "description": "Co-rotation signal. Can be added to viy to get approximate horizontal cross-track component of ion velocity in inertial frame of reference", "display_type": "timeseries", "is_public": "True", "name": "v corot", "start_date": "2015-11-01T17:33:17Z", "stop_date": "2017-12-31T14:00:06Z", "units": "m/s", "xmlid": "swb_v_corot"}, "swb_v_ion": {"__spz_name__": "v ion", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swb_v_ion", "dataset": "swarmb-tii-all", "display_type": "timeseries", "is_public": "True", "name": "v ion", "size": "2", "start_date": "2015-11-01T17:33:17Z", "stop_date": "2017-12-31T14:00:06Z", "swb_v_ion0": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "swb_v_ion(0)", "dataset": "swarmb-tii-all", "index1": "0", "is_public": "True", "name": "vy", "parameter": "swb_v_ion", "start_date": "2015-11-01T17:33:17Z", "stop_date": "2017-12-31T14:00:06Z", "xmlid": "swb_v_ion(0)"}, "swb_v_ion1": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "swb_v_ion(1)", "dataset": "swarmb-tii-all", "index1": "1", "is_public": "True", "name": "vz", "parameter": "swb_v_ion", "start_date": "2015-11-01T17:33:17Z", "stop_date": "2017-12-31T14:00:06Z", "xmlid": "swb_v_ion(1)"}, "units": "km/s", "xmlid": "swb_v_ion"}, "swb_vy_qual": {"__spz_name__": "vy quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swb_vy_qual", "dataset": "swarmb-tii-all", "display_type": "timeseries", "is_public": "True", "name": "vy quality", "start_date": "2015-11-01T17:33:17Z", "stop_date": "2017-12-31T14:00:06Z", "xmlid": "swb_vy_qual"}, "swb_vz_qual": {"__spz_name__": "vz quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swb_vz_qual", "dataset": "swarmb-tii-all", "display_type": "timeseries", "is_public": "True", "name": "vz quality", "start_date": "2015-11-01T17:33:17Z", "stop_date": "2017-12-31T14:00:06Z", "xmlid": "swb_vz_qual"}, "target": "Earth.Magnetosphere", "xmlid": "swarmb-tii-all"}, "swarmb_tii_prov": {"__spz_name__": "preliminary", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "swarmb-tii-prov", "att": "auto/swarmb-tii-prov", "dataSource": "ftp://swarm-diss.eo.esa.int", "desc": "Preliminary EFI TII Dataset
MinSampling: 0.5S; MaxSampling: 2S
Provider: ftp://swarm-diss.eo.esa.int", "is_public": "True", "lastModificationDate": "2019-06-15T11:07:36Z", "lastUpdate": "2019-06-14T16:53:32Z", "maxSampling": "2S", "measurement_type": "ElectricField", "name": "preliminary", "processing_level": "Calibrated", "sampling": "0.5S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/SWARM-B/TII/swarmb-tii-prov", "start_date": "2013-12-13T00:00:00Z", "stop_date": "2015-03-18T23:59:59Z", "swb_pr_e": {"__spz_name__": "e field", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swb_pr_e", "dataset": "swarmb-tii-prov", "description": "Electric field vector in NEC frame", "display_type": "timeseries", "is_public": "True", "name": "e field", "size": "3", "start_date": "2013-12-13T00:00:00Z", "stop_date": "2015-03-18T23:59:59Z", "swb_pr_e0": {"__spz_name__": "e north", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "swb_pr_e(0)", "dataset": "swarmb-tii-prov", "index1": "0", "is_public": "True", "name": "e north", "parameter": "swb_pr_e", "start_date": "2013-12-13T00:00:00Z", "stop_date": "2015-03-18T23:59:59Z", "xmlid": "swb_pr_e(0)"}, "swb_pr_e1": {"__spz_name__": "e east", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "swb_pr_e(1)", "dataset": "swarmb-tii-prov", "index1": "1", "is_public": "True", "name": "e east", "parameter": "swb_pr_e", "start_date": "2013-12-13T00:00:00Z", "stop_date": "2015-03-18T23:59:59Z", "xmlid": "swb_pr_e(1)"}, "swb_pr_e2": {"__spz_name__": "e center", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "swb_pr_e(2)", "dataset": "swarmb-tii-prov", "index1": "2", "is_public": "True", "name": "e center", "parameter": "swb_pr_e", "start_date": "2013-12-13T00:00:00Z", "stop_date": "2015-03-18T23:59:59Z", "xmlid": "swb_pr_e(2)"}, "units": "mV/m", "xmlid": "swb_pr_e"}, "swb_pr_t": {"__spz_name__": "t ion", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swb_pr_t", "dataset": "swarmb-tii-prov", "description": "Ion temperature", "display_type": "timeseries", "is_public": "True", "name": "t ion", "start_date": "2013-12-13T00:00:00Z", "stop_date": "2015-03-18T23:59:59Z", "units": "K", "xmlid": "swb_pr_t"}, "swb_pr_v_ion": {"__spz_name__": "v ion", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swb_pr_v_ion", "dataset": "swarmb-tii-prov", "description": "Ion velocity vector in North, East, Centre (NEC) frame", "display_type": "timeseries", "is_public": "True", "name": "v ion", "size": "3", "start_date": "2013-12-13T00:00:00Z", "stop_date": "2015-03-18T23:59:59Z", "swb_pr_v_ion0": {"__spz_name__": "v north", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "swb_pr_v_ion(0)", "dataset": "swarmb-tii-prov", "index1": "0", "is_public": "True", "name": "v north", "parameter": "swb_pr_v_ion", "start_date": "2013-12-13T00:00:00Z", "stop_date": "2015-03-18T23:59:59Z", "xmlid": "swb_pr_v_ion(0)"}, "swb_pr_v_ion1": {"__spz_name__": "v east", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "swb_pr_v_ion(1)", "dataset": "swarmb-tii-prov", "index1": "1", "is_public": "True", "name": "v east", "parameter": "swb_pr_v_ion", "start_date": "2013-12-13T00:00:00Z", "stop_date": "2015-03-18T23:59:59Z", "xmlid": "swb_pr_v_ion(1)"}, "swb_pr_v_ion2": {"__spz_name__": "v centre", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "swb_pr_v_ion(2)", "dataset": "swarmb-tii-prov", "index1": "1", "is_public": "True", "name": "v centre", "parameter": "swb_pr_v_ion", "start_date": "2013-12-13T00:00:00Z", "stop_date": "2015-03-18T23:59:59Z", "xmlid": "swb_pr_v_ion(2)"}, "units": "m/s", "xmlid": "swb_pr_v_ion"}, "swb_pr_v_sc": {"__spz_name__": "v sc", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swb_pr_v_sc", "dataset": "swarmb-tii-prov", "description": "Satellite velocity vector in North, East, Centre (NEC) frame", "display_type": "timeseries", "is_public": "True", "name": "v sc", "size": "3", "start_date": "2013-12-13T00:00:00Z", "stop_date": "2015-03-18T23:59:59Z", "swb_pr_v_sc0": {"__spz_name__": "v north", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "swb_pr_v_sc(0)", "dataset": "swarmb-tii-prov", "index1": "0", "is_public": "True", "name": "v north", "parameter": "swb_pr_v_sc", "start_date": "2013-12-13T00:00:00Z", "stop_date": "2015-03-18T23:59:59Z", "xmlid": "swb_pr_v_sc(0)"}, "swb_pr_v_sc1": {"__spz_name__": "v east", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "swb_pr_v_sc(1)", "dataset": "swarmb-tii-prov", "index1": "1", "is_public": "True", "name": "v east", "parameter": "swb_pr_v_sc", "start_date": "2013-12-13T00:00:00Z", "stop_date": "2015-03-18T23:59:59Z", "xmlid": "swb_pr_v_sc(1)"}, "swb_pr_v_sc2": {"__spz_name__": "v centre", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "swb_pr_v_sc(2)", "dataset": "swarmb-tii-prov", "index1": "1", "is_public": "True", "name": "v centre", "parameter": "swb_pr_v_sc", "start_date": "2013-12-13T00:00:00Z", "stop_date": "2015-03-18T23:59:59Z", "xmlid": "swb_pr_v_sc(2)"}, "units": "m/s", "xmlid": "swb_pr_v_sc"}, "target": "Earth.Magnetosphere", "xmlid": "swarmb-tii-prov"}, "xmlid": "SWARM-B_tii"}, "Ephemeris": {"__spz_name__": "Ephemeris", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "SWARM-B_ephemeris", "att": "auto/SWARM-B_ephemeris", "desc": "", "is_public": "True", "n_0_5_s": {"__spz_name__": "0.5 s", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "swarmb-orb-05", "is_public": "True", "name": "0.5 s", "swarmb_orb_lp": {"__spz_name__": "lp extended dataset", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "swarmb-orb-lp", "att": "auto/swarmb-orb-lp", "dataSource": "ftp://swarm-diss.eo.esa.int", "desc": "Swarm-B orbital information from EFI / LP extended dataset
Sampling: 0.5S
Provider: ftp://swarm-diss.eo.esa.int", "is_public": "True", "lastModificationDate": "2024-10-06T22:25:18Z", "lastUpdate": "2024-10-06T22:25:09Z", "measurement_type": "Ephemeris", "name": "lp extended dataset", "processing_level": "Calibrated", "sampling": "0.5S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/SWARM-B/Ephemeris/swarmb-orb-lp", "start_date": "2013-12-02T11:44:45Z", "stop_date": "2024-09-21T23:59:59Z", "swb_diplat": {"__spz_name__": "dip lat", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swb_diplat", "dataset": "swarmb-orb-lp", "description": "Quasi-dipole latitude", "display_type": "timeseries", "is_public": "True", "name": "dip lat", "start_date": "2013-12-02T11:44:45Z", "stop_date": "2024-09-21T23:59:59Z", "units": "deg", "xmlid": "swb_diplat"}, "swb_diplon": {"__spz_name__": "dip lon", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swb_diplon", "dataset": "swarmb-orb-lp", "description": "Quasi-dipole longitude", "display_type": "timeseries", "is_public": "True", "name": "dip lon", "start_date": "2013-12-02T11:44:45Z", "stop_date": "2024-09-21T23:59:59Z", "units": "deg", "xmlid": "swb_diplon"}, "swb_h_wgs84": {"__spz_name__": "h_wgs84", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swb_h_wgs84", "dataset": "swarmb-orb-lp", "description": "Height above reference ellipsoid, WGS84", "display_type": "timeseries", "is_public": "True", "name": "h_wgs84", "start_date": "2013-12-02T11:44:45Z", "stop_date": "2024-09-21T23:59:59Z", "units": "km", "xmlid": "swb_h_wgs84"}, "swb_lat_wgs84": {"__spz_name__": "lat_wgs84", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swb_lat_wgs84", "dataset": "swarmb-orb-lp", "description": "Geodetic latitude, WGS84", "display_type": "timeseries", "is_public": "True", "name": "lat_wgs84", "start_date": "2013-12-02T11:44:45Z", "stop_date": "2024-09-21T23:59:59Z", "units": "deg", "xmlid": "swb_lat_wgs84"}, "swb_lon_wgs84": {"__spz_name__": "lon_wgs84", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swb_lon_wgs84", "dataset": "swarmb-orb-lp", "description": "Geodetic longitude, WGS84", "display_type": "timeseries", "is_public": "True", "name": "lon_wgs84", "start_date": "2013-12-02T11:44:45Z", "stop_date": "2024-09-21T23:59:59Z", "units": "deg", "xmlid": "swb_lon_wgs84"}, "swb_mlat": {"__spz_name__": "mlat", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swb_mlat", "dataset": "swarmb-orb-lp", "description": "Magnetic latitude", "display_type": "timeseries", "is_public": "True", "name": "mlat", "start_date": "2013-12-02T11:44:45Z", "stop_date": "2024-09-21T23:59:59Z", "units": "deg", "xmlid": "swb_mlat"}, "swb_mlt": {"__spz_name__": "mlt", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swb_mlt", "dataset": "swarmb-orb-lp", "description": "Magnetic local time based on quasi-dipole", "display_type": "timeseries", "is_public": "True", "name": "mlt", "start_date": "2013-12-02T11:44:45Z", "stop_date": "2024-09-21T23:59:59Z", "units": "hours", "xmlid": "swb_mlt"}, "swb_saz": {"__spz_name__": "solar azimuth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swb_saz", "dataset": "swarmb-orb-lp", "description": "Solar Azimuth in Earth frame, north is 0 deg", "display_type": "timeseries", "is_public": "True", "name": "solar azimuth", "start_date": "2013-12-02T11:44:45Z", "stop_date": "2024-09-21T23:59:59Z", "units": "deg", "xmlid": "swb_saz"}, "swb_st": {"__spz_name__": "solar time", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swb_st", "dataset": "swarmb-orb-lp", "description": "Apparent Solar Time", "display_type": "timeseries", "is_public": "True", "name": "solar time", "start_date": "2013-12-02T11:44:45Z", "stop_date": "2024-09-21T23:59:59Z", "units": "hours", "xmlid": "swb_st"}, "swb_sza": {"__spz_name__": "sza", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swb_sza", "dataset": "swarmb-orb-lp", "description": "Solar Zenith Angle", "display_type": "timeseries", "is_public": "True", "name": "sza", "start_date": "2013-12-02T11:44:45Z", "stop_date": "2024-09-21T23:59:59Z", "units": "deg", "xmlid": "swb_sza"}, "target": "Earth.Magnetosphere", "xmlid": "swarmb-orb-lp"}, "swarmb_orb_tii": {"__spz_name__": "tii cross-track dataset", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "swarmb-orb-tii", "att": "auto/swarmb-orb-tii", "dataSource": "ftp://swarm-diss.eo.esa.int", "desc": "Swarm-B orbital information from EFI / TII cross-track dataset
Sampling: 0.5S
Provider: ftp://swarm-diss.eo.esa.int", "is_public": "True", "lastModificationDate": "2019-04-25T10:30:00Z", "lastUpdate": "2019-04-23T15:55:43Z", "measurement_type": "Ephemeris", "name": "tii cross-track dataset", "processing_level": "Calibrated", "sampling": "0.5S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/SWARM-B/Ephemeris/swarmb-orb-tii", "start_date": "2015-11-01T17:33:17Z", "stop_date": "2017-12-31T14:00:06Z", "swb_v_sat": {"__spz_name__": "v sat", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swb_v_sat", "dataset": "swarmb-orb-tii", "description": "Northward, Eastward (in inertial frame) and Center ( radially inward ) components of satellite velocity.", "display_type": "timeseries", "is_public": "True", "name": "v sat", "size": "3", "start_date": "2015-11-01T17:33:17Z", "stop_date": "2017-12-31T14:00:06Z", "swb_v_sat0": {"__spz_name__": "v_north", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "swb_v_sat(0)", "dataset": "swarmb-orb-tii", "index1": "0", "is_public": "True", "name": "v_north", "parameter": "swb_v_sat", "start_date": "2015-11-01T17:33:17Z", "stop_date": "2017-12-31T14:00:06Z", "xmlid": "swb_v_sat(0)"}, "swb_v_sat1": {"__spz_name__": "v_east", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "swb_v_sat(1)", "dataset": "swarmb-orb-tii", "index1": "1", "is_public": "True", "name": "v_east", "parameter": "swb_v_sat", "start_date": "2015-11-01T17:33:17Z", "stop_date": "2017-12-31T14:00:06Z", "xmlid": "swb_v_sat(1)"}, "swb_v_sat2": {"__spz_name__": "v_center", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "swb_v_sat(2)", "dataset": "swarmb-orb-tii", "index1": "2", "is_public": "True", "name": "v_center", "parameter": "swb_v_sat", "start_date": "2015-11-01T17:33:17Z", "stop_date": "2017-12-31T14:00:06Z", "xmlid": "swb_v_sat(2)"}, "units": "m/s", "xmlid": "swb_v_sat"}, "target": "Earth.Magnetosphere", "xmlid": "swarmb-orb-tii"}, "xmlid": "swarmb-orb-05"}, "n_1_s": {"__spz_name__": "1 s", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "swarmb-orb1", "is_public": "True", "name": "1 s", "swarmb_orb_all": {"__spz_name__": "position in ITRF", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "swarmb-orb-all", "att": "auto/swarmb-orb-all", "dataSource": "ftp://swarm-diss.eo.esa.int", "desc": "Swarm-B orbital information from FAC dataset
Sampling: 1S
Provider: ftp://swarm-diss.eo.esa.int", "is_public": "True", "lastModificationDate": "2024-10-07T04:17:20Z", "lastUpdate": "2024-10-07T04:17:13Z", "measurement_type": "Ephemeris", "name": "position in ITRF", "processing_level": "Calibrated", "sampling": "1S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/SWARM-B/Ephemeris/swarmb-orb-all", "start_date": "2013-11-28T00:00:00Z", "stop_date": "2024-10-01T23:59:59Z", "swb_lat": {"__spz_name__": "lat", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swb_lat", "dataset": "swarmb-orb-all", "description": "Position in ITRF, Latitude", "display_type": "timeseries", "is_public": "True", "name": "lat", "start_date": "2013-11-28T00:00:00Z", "stop_date": "2024-10-01T23:59:59Z", "units": "deg", "xmlid": "swb_lat"}, "swb_lon": {"__spz_name__": "lon", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swb_lon", "dataset": "swarmb-orb-all", "description": "Position in ITRF, Longitude", "display_type": "timeseries", "is_public": "True", "name": "lon", "start_date": "2013-11-28T00:00:00Z", "stop_date": "2024-10-01T23:59:59Z", "units": "deg", "xmlid": "swb_lon"}, "swb_r": {"__spz_name__": "r", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swb_r", "dataset": "swarmb-orb-all", "description": "Position in ITRF, Radius", "display_type": "timeseries", "is_public": "True", "name": "r", "start_date": "2013-11-28T00:00:00Z", "stop_date": "2024-10-01T23:59:59Z", "units": "km", "xmlid": "swb_r"}, "target": "Earth.Magnetosphere", "xmlid": "swarmb-orb-all"}, "xmlid": "swarmb-orb1"}, "name": "Ephemeris", "xmlid": "SWARM-B_ephemeris"}, "GNSS": {"__spz_name__": "GNSS", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "SWARM-B_gnss", "att": "auto/SWARM-B_gnss", "desc": "Global Navigation Satellite System
Antenna", "is_public": "True", "name": "GNSS", "swarmb_gps_all": {"__spz_name__": "tec", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "swarmb-gps-all", "att": "auto/swarmb-gps-all", "dataSource": "ftp://swarm-diss.eo.esa.int", "desc": "total electron content
Sampling: 1S
Provider: ftp://swarm-diss.eo.esa.int", "is_public": "True", "lastModificationDate": "2022-09-30T05:15:50Z", "lastUpdate": "2022-09-30T05:15:49Z", "measurement_type": "Waves", "name": "tec", "processing_level": "Calibrated", "sampling": "1S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/SWARM-B/GNSS/swarmb-gps-all", "start_date": "2013-11-25T11:01:15Z", "stop_date": "2020-12-31T23:59:59Z", "swb_gps_elev": {"__spz_name__": "gps elevation angle", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swb_gps_elev", "dataset": "swarmb-gps-all", "description": "gps elevation angle", "display_type": "timeseries", "is_public": "True", "name": "gps elevation angle", "start_date": "2013-11-25T11:01:15Z", "stop_date": "2020-12-31T23:59:59Z", "units": "deg", "xmlid": "swb_gps_elev"}, "swb_gps_number": {"__spz_name__": "gps number", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swb_gps_number", "dataset": "swarmb-gps-all", "description": "gps number", "display_type": "timeseries", "is_public": "True", "name": "gps number", "start_date": "2013-11-25T11:01:15Z", "stop_date": "2020-12-31T23:59:59Z", "xmlid": "swb_gps_number"}, "swb_stec": {"__spz_name__": "stec", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swb_stec", "dataset": "swarmb-gps-all", "description": "Absolute slant TEC from largest elevation GNSS satellite", "display_type": "timeseries", "is_public": "True", "name": "stec", "start_date": "2013-11-25T11:01:15Z", "stop_date": "2020-12-31T23:59:59Z", "units": "TECU", "xmlid": "swb_stec"}, "swb_stec_rel": {"__spz_name__": "relative stec", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swb_stec_rel", "dataset": "swarmb-gps-all", "description": "Relative slant TEC", "display_type": "timeseries", "is_public": "True", "name": "relative stec", "start_date": "2013-11-25T11:01:15Z", "stop_date": "2020-12-31T23:59:59Z", "units": "TECU", "xmlid": "swb_stec_rel"}, "swb_vtec": {"__spz_name__": "vtec", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swb_vtec", "dataset": "swarmb-gps-all", "description": "Absolute vertical TEC from largest elevation GNSS satellite", "display_type": "timeseries", "is_public": "True", "name": "vtec", "start_date": "2013-11-25T11:01:15Z", "stop_date": "2020-12-31T23:59:59Z", "units": "TECU", "xmlid": "swb_vtec"}, "target": "Earth.Magnetosphere", "xmlid": "swarmb-gps-all"}, "xmlid": "SWARM-B_gnss"}, "MAG_ASMVFM": {"__spz_name__": "MAG (ASM/VFM)", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "SWARM-B_mag", "att": "auto/SWARM-B_mag", "desc": "Absolute Scalar Magnetometer / Vector Field Magnetometer
Magnetometer", "is_public": "True", "name": "MAG (ASM/VFM)", "swarmb_fac_all": {"__spz_name__": "field-aligned current", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "swarmb-fac-all", "att": "auto/swarmb-fac-all", "dataSource": "ftp://swarm-diss.eo.esa.int", "desc": "Level2daily/Entire_mission_data/FAC dataset
Sampling: 1S
Provider: ftp://swarm-diss.eo.esa.int", "is_public": "True", "lastModificationDate": "2024-10-07T04:17:16Z", "lastUpdate": "2024-10-07T04:17:12Z", "measurement_type": "MagneticField", "name": "field-aligned current", "processing_level": "Calibrated", "sampling": "1S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/SWARM-B/MAG/swarmb-fac-all", "start_date": "2013-11-25T11:01:15Z", "stop_date": "2024-10-01T23:59:59Z", "swb_fac": {"__spz_name__": "fac", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swb_fac", "dataset": "swarmb-fac-all", "description": "Field-aligned current", "display_type": "timeseries", "is_public": "True", "name": "fac", "start_date": "2013-11-25T11:01:15Z", "stop_date": "2024-10-01T23:59:59Z", "units": "\u03bcA/m\u00b2", "xmlid": "swb_fac"}, "swb_fac_error": {"__spz_name__": "fac error", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swb_fac_error", "dataset": "swarmb-fac-all", "description": "uncertainty of FAC", "display_type": "timeseries", "is_public": "True", "name": "fac error", "start_date": "2013-11-25T11:01:15Z", "stop_date": "2024-10-01T23:59:59Z", "units": "\u03bcA/m\u00b2", "xmlid": "swb_fac_error"}, "target": "Earth.Magnetosphere", "xmlid": "swarmb-fac-all"}, "swarmb_mag_all": {"__spz_name__": "magnetic field in North-East-Center frame", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "swarmb-mag-all", "att": "auto/swarmb-mag-all", "dataSource": "ftp://swarm-diss.eo.esa.int", "desc": "Advanced / Magnetic_Data / L1B_MAGxLR_0503 dataset
Sampling: 1S
Provider: ftp://swarm-diss.eo.esa.int", "is_public": "True", "lastModificationDate": "2024-10-06T22:27:05Z", "lastUpdate": "2019-04-10T16:10:02Z", "measurement_type": "MagneticField", "name": "magnetic field in North-East-Center frame", "processing_level": "Calibrated", "sampling": "1S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/SWARM-B/MAG/swarmb-mag-all", "start_date": "2013-11-28T00:00:00Z", "stop_date": "2017-12-31T23:59:59Z", "swb_b_nec": {"__spz_name__": "b_nec", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swb_b_nec", "dataset": "swarmb-mag-all", "display_type": "timeseries", "is_public": "True", "name": "b_nec", "size": "3", "start_date": "2013-11-28T00:00:00Z", "stop_date": "2017-12-31T23:59:59Z", "swb_b_nec0": {"__spz_name__": "b_north", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "swb_b_nec(0)", "dataset": "swarmb-mag-all", "index1": "0", "is_public": "True", "name": "b_north", "parameter": "swb_b_nec", "start_date": "2013-11-28T00:00:00Z", "stop_date": "2017-12-31T23:59:59Z", "xmlid": "swb_b_nec(0)"}, "swb_b_nec1": {"__spz_name__": "b_east", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "swb_b_nec(1)", "dataset": "swarmb-mag-all", "index1": "1", "is_public": "True", "name": "b_east", "parameter": "swb_b_nec", "start_date": "2013-11-28T00:00:00Z", "stop_date": "2017-12-31T23:59:59Z", "xmlid": "swb_b_nec(1)"}, "swb_b_nec2": {"__spz_name__": "b_center", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "swb_b_nec(2)", "dataset": "swarmb-mag-all", "index1": "2", "is_public": "True", "name": "b_center", "parameter": "swb_b_nec", "start_date": "2013-11-28T00:00:00Z", "stop_date": "2017-12-31T23:59:59Z", "xmlid": "swb_b_nec(2)"}, "ucd": "phys.magField", "units": "nT", "xmlid": "swb_b_nec"}, "target": "Earth.Magnetosphere", "xmlid": "swarmb-mag-all"}, "swarmb_mag_tii": {"__spz_name__": "magnetic field in cross-track frame", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "swarmb-mag-tii", "att": "auto/swarmb-mag-tii", "dataSource": "ftp://swarm-diss.eo.esa.int", "desc": "2Hz TII Cross-track Ion Flow Dataset
Sampling: 0.5S
Provider: ftp://swarm-diss.eo.esa.int", "is_public": "True", "lastModificationDate": "2019-05-06T17:48:56Z", "lastUpdate": "2019-05-06T17:16:19Z", "measurement_type": "MagneticField", "name": "magnetic field in cross-track frame", "processing_level": "Calibrated", "sampling": "0.5S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/SWARM-B/MAG/swarmb-mag-tii", "start_date": "2015-11-01T17:33:17Z", "stop_date": "2017-12-31T14:00:06Z", "swb_b": {"__spz_name__": "b field", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swb_b", "dataset": "swarmb-mag-tii", "display_type": "timeseries", "is_public": "True", "name": "b field", "size": "3", "start_date": "2015-11-01T17:33:17Z", "stop_date": "2017-12-31T14:00:06Z", "swb_b0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "swb_b(0)", "dataset": "swarmb-mag-tii", "index1": "0", "is_public": "True", "name": "bx", "parameter": "swb_b", "start_date": "2015-11-01T17:33:17Z", "stop_date": "2017-12-31T14:00:06Z", "xmlid": "swb_b(0)"}, "swb_b1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "swb_b(1)", "dataset": "swarmb-mag-tii", "index1": "1", "is_public": "True", "name": "by", "parameter": "swb_b", "start_date": "2015-11-01T17:33:17Z", "stop_date": "2017-12-31T14:00:06Z", "xmlid": "swb_b(1)"}, "swb_b2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "swb_b(2)", "dataset": "swarmb-mag-tii", "index1": "2", "is_public": "True", "name": "bz", "parameter": "swb_b", "start_date": "2015-11-01T17:33:17Z", "stop_date": "2017-12-31T14:00:06Z", "xmlid": "swb_b(2)"}, "units": "nT", "xmlid": "swb_b"}, "target": "Earth.Magnetosphere", "xmlid": "swarmb-mag-tii"}, "xmlid": "SWARM-B_mag"}, "__spz_name__": "Swarm-B", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "SWARM-B", "att": "auto/SWARM-B", "desc": "Swarm Bravo
2013-11-22T00:00:00", "is_public": "True", "name": "Swarm-B", "target": "Earth.Magnetosphere", "xmlid": "SWARM-B"}, "Swarm_C": {"EFI__LP": {"__spz_name__": "EFI / LP", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "SWARM-C_lp", "att": "auto/SWARM-C_lp", "desc": "Electric Field Instrument : Langmuir Probe
LangmuirProbe", "is_public": "True", "name": "EFI / LP", "swarmc_lp_all": {"__spz_name__": "lp extended dataset", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "swarmc-lp-all", "att": "auto/swarmc-lp-all", "dataSource": "ftp://swarm-diss.eo.esa.int", "desc": "2Hz Langmuir Probe Extended Dataset
Sampling: 0.5S
Provider: ftp://swarm-diss.eo.esa.int", "is_public": "True", "lastModificationDate": "2024-10-06T22:26:51Z", "lastUpdate": "2024-10-06T22:26:43Z", "measurement_type": "ElectricField", "name": "lp extended dataset", "processing_level": "Calibrated", "sampling": "0.5S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/SWARM-C/LP/swarmc-lp-all", "start_date": "2013-12-02T13:21:20Z", "stop_date": "2024-09-21T23:59:59Z", "swc_ne": {"__spz_name__": "density e-", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swc_ne", "dataset": "swarmc-lp-all", "description": "Plasma density from ion current", "display_type": "timeseries", "is_public": "True", "name": "density e-", "start_date": "2013-12-02T13:21:20Z", "stop_date": "2024-09-21T23:59:59Z", "units": "cm\u207b\u00b3", "xmlid": "swc_ne"}, "swc_pot": {"__spz_name__": "s/c pot", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swc_pot", "dataset": "swarmc-lp-all", "description": "Spacecraft potential, blended value", "display_type": "timeseries", "is_public": "True", "name": "s/c pot", "start_date": "2013-12-02T13:21:20Z", "stop_date": "2024-09-21T23:59:59Z", "units": "V", "xmlid": "swc_pot"}, "swc_te": {"__spz_name__": "temperature e-", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swc_te", "dataset": "swarmc-lp-all", "description": "Electron temperature, blended value", "display_type": "timeseries", "is_public": "True", "name": "temperature e-", "start_date": "2013-12-02T13:21:20Z", "stop_date": "2024-09-21T23:59:59Z", "units": "K", "xmlid": "swc_te"}, "target": "Earth.Magnetosphere", "xmlid": "swarmc-lp-all"}, "xmlid": "SWARM-C_lp"}, "EFI__TII": {"__spz_name__": "EFI / TII", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "SWARM-C_tii", "att": "auto/SWARM-C_tii", "desc": "Electric Field Instrument : Thermal Ion Imager
Imager", "is_public": "True", "name": "EFI / TII", "swarmc_tii_all": {"__spz_name__": "cross-track", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "swarmc-tii-all", "att": "auto/swarmc-tii-all", "dataSource": "ftp://swarm-diss.eo.esa.int", "desc": "2Hz TII Cross-track Dataset
Sampling: 0.5S
Provider: ftp://swarm-diss.eo.esa.int", "is_public": "True", "lastModificationDate": "2019-04-25T10:30:49Z", "lastUpdate": "2019-05-06T16:55:47Z", "measurement_type": "ElectricField", "name": "cross-track", "processing_level": "Calibrated", "sampling": "0.5S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/SWARM-C/TII/swarmc-tii-all", "start_date": "2015-11-01T17:32:18Z", "stop_date": "2017-12-31T14:00:03Z", "swc_e": {"__spz_name__": "e field", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swc_e", "dataset": "swarmc-tii-all", "description": "Electric field in co-rotating frame", "display_type": "timeseries", "is_public": "True", "name": "e field", "size": "3", "start_date": "2015-11-01T17:32:18Z", "stop_date": "2017-12-31T14:00:03Z", "swc_e0": {"__spz_name__": "ex", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "swc_e(0)", "dataset": "swarmc-tii-all", "index1": "0", "is_public": "True", "name": "ex", "parameter": "swc_e", "start_date": "2015-11-01T17:32:18Z", "stop_date": "2017-12-31T14:00:03Z", "xmlid": "swc_e(0)"}, "swc_e1": {"__spz_name__": "ey", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "swc_e(1)", "dataset": "swarmc-tii-all", "index1": "1", "is_public": "True", "name": "ey", "parameter": "swc_e", "start_date": "2015-11-01T17:32:18Z", "stop_date": "2017-12-31T14:00:03Z", "xmlid": "swc_e(1)"}, "swc_e2": {"__spz_name__": "ez", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "swc_e(2)", "dataset": "swarmc-tii-all", "index1": "2", "is_public": "True", "name": "ez", "parameter": "swc_e", "start_date": "2015-11-01T17:32:18Z", "stop_date": "2017-12-31T14:00:03Z", "xmlid": "swc_e(2)"}, "units": "mV/m", "xmlid": "swc_e"}, "swc_e_qual": {"__spz_name__": "e quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swc_e_qual", "dataset": "swarmc-tii-all", "display_type": "timeseries", "is_public": "True", "name": "e quality", "start_date": "2015-11-01T17:32:18Z", "stop_date": "2017-12-31T14:00:03Z", "xmlid": "swc_e_qual"}, "swc_v_corot": {"__spz_name__": "v corot", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swc_v_corot", "dataset": "swarmc-tii-all", "description": "Co-rotation signal. Can be added to viy to get approximate horizontal cross-track component of ion velocity in inertial frame of reference", "display_type": "timeseries", "is_public": "True", "name": "v corot", "start_date": "2015-11-01T17:32:18Z", "stop_date": "2017-12-31T14:00:03Z", "units": "m/s", "xmlid": "swc_v_corot"}, "swc_v_ion": {"__spz_name__": "v ion", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swc_v_ion", "dataset": "swarmc-tii-all", "display_type": "timeseries", "is_public": "True", "name": "v ion", "size": "2", "start_date": "2015-11-01T17:32:18Z", "stop_date": "2017-12-31T14:00:03Z", "swc_v_ion0": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "swc_v_ion(0)", "dataset": "swarmc-tii-all", "index1": "0", "is_public": "True", "name": "vy", "parameter": "swc_v_ion", "start_date": "2015-11-01T17:32:18Z", "stop_date": "2017-12-31T14:00:03Z", "xmlid": "swc_v_ion(0)"}, "swc_v_ion1": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "swc_v_ion(1)", "dataset": "swarmc-tii-all", "index1": "1", "is_public": "True", "name": "vz", "parameter": "swc_v_ion", "start_date": "2015-11-01T17:32:18Z", "stop_date": "2017-12-31T14:00:03Z", "xmlid": "swc_v_ion(1)"}, "units": "km/s", "xmlid": "swc_v_ion"}, "swc_vy_qual": {"__spz_name__": "vy quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swc_vy_qual", "dataset": "swarmc-tii-all", "display_type": "timeseries", "is_public": "True", "name": "vy quality", "start_date": "2015-11-01T17:32:18Z", "stop_date": "2017-12-31T14:00:03Z", "xmlid": "swc_vy_qual"}, "swc_vz_qual": {"__spz_name__": "vz quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swc_vz_qual", "dataset": "swarmc-tii-all", "display_type": "timeseries", "is_public": "True", "name": "vz quality", "start_date": "2015-11-01T17:32:18Z", "stop_date": "2017-12-31T14:00:03Z", "xmlid": "swc_vz_qual"}, "target": "Earth.Magnetosphere", "xmlid": "swarmc-tii-all"}, "swarmc_tii_prov": {"__spz_name__": "preliminary", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "swarmc-tii-prov", "att": "auto/swarmc-tii-prov", "dataSource": "ftp://swarm-diss.eo.esa.int", "desc": "Preliminary EFI TII Dataset
MinSampling: 0.5S; MaxSampling: 2S
Provider: ftp://swarm-diss.eo.esa.int", "is_public": "True", "lastModificationDate": "2019-06-15T11:07:41Z", "lastUpdate": "2019-06-14T11:54:25Z", "maxSampling": "2S", "measurement_type": "ElectricField", "name": "preliminary", "processing_level": "Calibrated", "sampling": "0.5S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/SWARM-C/TII/swarmc-tii-prov", "start_date": "2013-12-13T00:00:00Z", "stop_date": "2013-12-31T23:59:59Z", "swc_pr_e": {"__spz_name__": "e field", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swc_pr_e", "dataset": "swarmc-tii-prov", "description": "Electric field vector in NEC frame", "display_type": "timeseries", "is_public": "True", "name": "e field", "size": "3", "start_date": "2013-12-13T00:00:00Z", "stop_date": "2013-12-31T23:59:59Z", "swc_pr_e0": {"__spz_name__": "e north", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "swc_pr_e(0)", "dataset": "swarmc-tii-prov", "index1": "0", "is_public": "True", "name": "e north", "parameter": "swc_pr_e", "start_date": "2013-12-13T00:00:00Z", "stop_date": "2013-12-31T23:59:59Z", "xmlid": "swc_pr_e(0)"}, "swc_pr_e1": {"__spz_name__": "e east", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "swc_pr_e(1)", "dataset": "swarmc-tii-prov", "index1": "1", "is_public": "True", "name": "e east", "parameter": "swc_pr_e", "start_date": "2013-12-13T00:00:00Z", "stop_date": "2013-12-31T23:59:59Z", "xmlid": "swc_pr_e(1)"}, "swc_pr_e2": {"__spz_name__": "e center", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "swc_pr_e(2)", "dataset": "swarmc-tii-prov", "index1": "2", "is_public": "True", "name": "e center", "parameter": "swc_pr_e", "start_date": "2013-12-13T00:00:00Z", "stop_date": "2013-12-31T23:59:59Z", "xmlid": "swc_pr_e(2)"}, "units": "mV/m", "xmlid": "swc_pr_e"}, "swc_pr_t": {"__spz_name__": "t ion", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swc_pr_t", "dataset": "swarmc-tii-prov", "description": "Ion temperature", "display_type": "timeseries", "is_public": "True", "name": "t ion", "start_date": "2013-12-13T00:00:00Z", "stop_date": "2013-12-31T23:59:59Z", "units": "K", "xmlid": "swc_pr_t"}, "swc_pr_v_ion": {"__spz_name__": "v ion", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swc_pr_v_ion", "dataset": "swarmc-tii-prov", "description": "Ion velocity vector in North, East, Centre (NEC) frame", "display_type": "timeseries", "is_public": "True", "name": "v ion", "size": "3", "start_date": "2013-12-13T00:00:00Z", "stop_date": "2013-12-31T23:59:59Z", "swc_pr_v_ion0": {"__spz_name__": "v north", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "swc_pr_v_ion(0)", "dataset": "swarmc-tii-prov", "index1": "0", "is_public": "True", "name": "v north", "parameter": "swc_pr_v_ion", "start_date": "2013-12-13T00:00:00Z", "stop_date": "2013-12-31T23:59:59Z", "xmlid": "swc_pr_v_ion(0)"}, "swc_pr_v_ion1": {"__spz_name__": "v east", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "swc_pr_v_ion(1)", "dataset": "swarmc-tii-prov", "index1": "1", "is_public": "True", "name": "v east", "parameter": "swc_pr_v_ion", "start_date": "2013-12-13T00:00:00Z", "stop_date": "2013-12-31T23:59:59Z", "xmlid": "swc_pr_v_ion(1)"}, "swc_pr_v_ion2": {"__spz_name__": "v centre", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "swc_pr_v_ion(2)", "dataset": "swarmc-tii-prov", "index1": "1", "is_public": "True", "name": "v centre", "parameter": "swc_pr_v_ion", "start_date": "2013-12-13T00:00:00Z", "stop_date": "2013-12-31T23:59:59Z", "xmlid": "swc_pr_v_ion(2)"}, "units": "m/s", "xmlid": "swc_pr_v_ion"}, "swc_pr_v_sc": {"__spz_name__": "v sc", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swc_pr_v_sc", "dataset": "swarmc-tii-prov", "description": "Satellite velocity vector in North, East, Centre (NEC) frame", "display_type": "timeseries", "is_public": "True", "name": "v sc", "size": "3", "start_date": "2013-12-13T00:00:00Z", "stop_date": "2013-12-31T23:59:59Z", "swc_pr_v_sc0": {"__spz_name__": "v north", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "swc_pr_v_sc(0)", "dataset": "swarmc-tii-prov", "index1": "0", "is_public": "True", "name": "v north", "parameter": "swc_pr_v_sc", "start_date": "2013-12-13T00:00:00Z", "stop_date": "2013-12-31T23:59:59Z", "xmlid": "swc_pr_v_sc(0)"}, "swc_pr_v_sc1": {"__spz_name__": "v east", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "swc_pr_v_sc(1)", "dataset": "swarmc-tii-prov", "index1": "1", "is_public": "True", "name": "v east", "parameter": "swc_pr_v_sc", "start_date": "2013-12-13T00:00:00Z", "stop_date": "2013-12-31T23:59:59Z", "xmlid": "swc_pr_v_sc(1)"}, "swc_pr_v_sc2": {"__spz_name__": "v centre", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "swc_pr_v_sc(2)", "dataset": "swarmc-tii-prov", "index1": "1", "is_public": "True", "name": "v centre", "parameter": "swc_pr_v_sc", "start_date": "2013-12-13T00:00:00Z", "stop_date": "2013-12-31T23:59:59Z", "xmlid": "swc_pr_v_sc(2)"}, "units": "m/s", "xmlid": "swc_pr_v_sc"}, "target": "Earth.Magnetosphere", "xmlid": "swarmc-tii-prov"}, "xmlid": "SWARM-C_tii"}, "Ephemeris": {"__spz_name__": "Ephemeris", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "SWARM-C_ephemeris", "att": "auto/SWARM-C_ephemeris", "desc": "", "is_public": "True", "n_0_5_s": {"__spz_name__": "0.5 s", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "swarmc-orb-05", "is_public": "True", "name": "0.5 s", "swarmc_orb_lp": {"__spz_name__": "lp extended dataset", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "swarmc-orb-lp", "att": "auto/swarmc-orb-lp", "dataSource": "ftp://swarm-diss.eo.esa.int", "desc": "Swarm-C orbital information from EFI / LP extended dataset
Sampling: 0.5S
Provider: ftp://swarm-diss.eo.esa.int", "is_public": "True", "lastModificationDate": "2024-10-06T22:26:56Z", "lastUpdate": "2024-10-06T22:26:47Z", "measurement_type": "Ephemeris", "name": "lp extended dataset", "processing_level": "Calibrated", "sampling": "0.5S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/SWARM-C/Ephemeris/swarmc-orb-lp", "start_date": "2013-12-02T13:21:20Z", "stop_date": "2024-09-21T23:59:59Z", "swc_diplat": {"__spz_name__": "dip lat", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swc_diplat", "dataset": "swarmc-orb-lp", "description": "Quasi-dipole latitude", "display_type": "timeseries", "is_public": "True", "name": "dip lat", "start_date": "2013-12-02T13:21:20Z", "stop_date": "2024-09-21T23:59:59Z", "units": "deg", "xmlid": "swc_diplat"}, "swc_diplon": {"__spz_name__": "dip lon", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swc_diplon", "dataset": "swarmc-orb-lp", "description": "Quasi-dipole longitude", "display_type": "timeseries", "is_public": "True", "name": "dip lon", "start_date": "2013-12-02T13:21:20Z", "stop_date": "2024-09-21T23:59:59Z", "units": "deg", "xmlid": "swc_diplon"}, "swc_h_wgs84": {"__spz_name__": "h_wgs84", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swc_h_wgs84", "dataset": "swarmc-orb-lp", "description": "Height above reference ellipsoid, WGS84", "display_type": "timeseries", "is_public": "True", "name": "h_wgs84", "start_date": "2013-12-02T13:21:20Z", "stop_date": "2024-09-21T23:59:59Z", "units": "km", "xmlid": "swc_h_wgs84"}, "swc_lat_wgs84": {"__spz_name__": "lat_wgs84", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swc_lat_wgs84", "dataset": "swarmc-orb-lp", "description": "Geodetic latitude, WGS84", "display_type": "timeseries", "is_public": "True", "name": "lat_wgs84", "start_date": "2013-12-02T13:21:20Z", "stop_date": "2024-09-21T23:59:59Z", "units": "deg", "xmlid": "swc_lat_wgs84"}, "swc_lon_wgs84": {"__spz_name__": "lon_wgs84", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swc_lon_wgs84", "dataset": "swarmc-orb-lp", "description": "Geodetic longitude, WGS84", "display_type": "timeseries", "is_public": "True", "name": "lon_wgs84", "start_date": "2013-12-02T13:21:20Z", "stop_date": "2024-09-21T23:59:59Z", "units": "deg", "xmlid": "swc_lon_wgs84"}, "swc_mlat": {"__spz_name__": "mlat", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swc_mlat", "dataset": "swarmc-orb-lp", "description": "Magnetic latitude", "display_type": "timeseries", "is_public": "True", "name": "mlat", "start_date": "2013-12-02T13:21:20Z", "stop_date": "2024-09-21T23:59:59Z", "units": "deg", "xmlid": "swc_mlat"}, "swc_mlt": {"__spz_name__": "mlt", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swc_mlt", "dataset": "swarmc-orb-lp", "description": "Magnetic local time based on quasi-dipole", "display_type": "timeseries", "is_public": "True", "name": "mlt", "start_date": "2013-12-02T13:21:20Z", "stop_date": "2024-09-21T23:59:59Z", "units": "hours", "xmlid": "swc_mlt"}, "swc_saz": {"__spz_name__": "solar azimuth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swc_saz", "dataset": "swarmc-orb-lp", "description": "Solar Azimuth in Earth frame, north is 0 deg", "display_type": "timeseries", "is_public": "True", "name": "solar azimuth", "start_date": "2013-12-02T13:21:20Z", "stop_date": "2024-09-21T23:59:59Z", "units": "deg", "xmlid": "swc_saz"}, "swc_st": {"__spz_name__": "solar time", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swc_st", "dataset": "swarmc-orb-lp", "description": "Apparent Solar Time", "display_type": "timeseries", "is_public": "True", "name": "solar time", "start_date": "2013-12-02T13:21:20Z", "stop_date": "2024-09-21T23:59:59Z", "units": "hours", "xmlid": "swc_st"}, "swc_sza": {"__spz_name__": "sza", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swc_sza", "dataset": "swarmc-orb-lp", "description": "Solar Zenith Angle", "display_type": "timeseries", "is_public": "True", "name": "sza", "start_date": "2013-12-02T13:21:20Z", "stop_date": "2024-09-21T23:59:59Z", "units": "deg", "xmlid": "swc_sza"}, "target": "Earth.Magnetosphere", "xmlid": "swarmc-orb-lp"}, "swarmc_orb_tii": {"__spz_name__": "tii cross-track dataset", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "swarmc-orb-tii", "att": "auto/swarmc-orb-tii", "dataSource": "ftp://swarm-diss.eo.esa.int", "desc": "Swarm-C orbital information from EFI / TII cross-track dataset
Sampling: 0.5S
Provider: ftp://swarm-diss.eo.esa.int", "is_public": "True", "lastModificationDate": "2019-04-25T10:30:08Z", "lastUpdate": "2019-04-23T17:19:24Z", "measurement_type": "Ephemeris", "name": "tii cross-track dataset", "processing_level": "Calibrated", "sampling": "0.5S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/SWARM-C/Ephemeris/swarmc-orb-tii", "start_date": "2015-11-01T17:32:18Z", "stop_date": "2017-12-31T14:00:03Z", "swc_v_sat": {"__spz_name__": "v sat", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swc_v_sat", "dataset": "swarmc-orb-tii", "description": "Northward, Eastward (in inertial frame) and Center ( radially inward ) components of satellite velocity.", "display_type": "timeseries", "is_public": "True", "name": "v sat", "size": "3", "start_date": "2015-11-01T17:32:18Z", "stop_date": "2017-12-31T14:00:03Z", "swc_v_sat0": {"__spz_name__": "v_north", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "swc_v_sat(0)", "dataset": "swarmc-orb-tii", "index1": "0", "is_public": "True", "name": "v_north", "parameter": "swc_v_sat", "start_date": "2015-11-01T17:32:18Z", "stop_date": "2017-12-31T14:00:03Z", "xmlid": "swc_v_sat(0)"}, "swc_v_sat1": {"__spz_name__": "v_east", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "swc_v_sat(1)", "dataset": "swarmc-orb-tii", "index1": "1", "is_public": "True", "name": "v_east", "parameter": "swc_v_sat", "start_date": "2015-11-01T17:32:18Z", "stop_date": "2017-12-31T14:00:03Z", "xmlid": "swc_v_sat(1)"}, "swc_v_sat2": {"__spz_name__": "v_center", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "swc_v_sat(2)", "dataset": "swarmc-orb-tii", "index1": "2", "is_public": "True", "name": "v_center", "parameter": "swc_v_sat", "start_date": "2015-11-01T17:32:18Z", "stop_date": "2017-12-31T14:00:03Z", "xmlid": "swc_v_sat(2)"}, "units": "m/s", "xmlid": "swc_v_sat"}, "target": "Earth.Magnetosphere", "xmlid": "swarmc-orb-tii"}, "xmlid": "swarmc-orb-05"}, "n_1_s": {"__spz_name__": "1 s", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "swarmc-orb1", "is_public": "True", "name": "1 s", "swarmc_orb_all": {"__spz_name__": "position in ITRF", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "swarmc-orb-all", "att": "auto/swarmc-orb-all", "dataSource": "ftp://swarm-diss.eo.esa.int", "desc": "Swarm-C orbital information from FAC dataset
Sampling: 1S
Provider: ftp://swarm-diss.eo.esa.int", "is_public": "True", "lastModificationDate": "2024-10-07T04:19:09Z", "lastUpdate": "2024-10-07T04:19:03Z", "measurement_type": "Ephemeris", "name": "position in ITRF", "processing_level": "Calibrated", "sampling": "1S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/SWARM-C/Ephemeris/swarmc-orb-all", "start_date": "2013-12-04T00:00:00Z", "stop_date": "2024-10-01T23:59:59Z", "swc_lat": {"__spz_name__": "lat", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swc_lat", "dataset": "swarmc-orb-all", "description": "Position in ITRF, Latitude", "display_type": "timeseries", "is_public": "True", "name": "lat", "start_date": "2013-12-04T00:00:00Z", "stop_date": "2024-10-01T23:59:59Z", "units": "deg", "xmlid": "swc_lat"}, "swc_lon": {"__spz_name__": "lon", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swc_lon", "dataset": "swarmc-orb-all", "description": "Position in ITRF, Longitude", "display_type": "timeseries", "is_public": "True", "name": "lon", "start_date": "2013-12-04T00:00:00Z", "stop_date": "2024-10-01T23:59:59Z", "units": "deg", "xmlid": "swc_lon"}, "swc_r": {"__spz_name__": "r", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swc_r", "dataset": "swarmc-orb-all", "description": "Position in ITRF, Radius", "display_type": "timeseries", "is_public": "True", "name": "r", "start_date": "2013-12-04T00:00:00Z", "stop_date": "2024-10-01T23:59:59Z", "units": "km", "xmlid": "swc_r"}, "target": "Earth.Magnetosphere", "xmlid": "swarmc-orb-all"}, "xmlid": "swarmc-orb1"}, "name": "Ephemeris", "xmlid": "SWARM-C_ephemeris"}, "GNSS": {"__spz_name__": "GNSS", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "SWARM-C_gnss", "att": "auto/SWARM-C_gnss", "desc": "Global Navigation Satellite System
Antenna", "is_public": "True", "name": "GNSS", "swarmc_gps_all": {"__spz_name__": "tec", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "swarmc-gps-all", "att": "auto/swarmc-gps-all", "dataSource": "ftp://swarm-diss.eo.esa.int", "desc": "total electron content
Sampling: 1S
Provider: ftp://swarm-diss.eo.esa.int", "is_public": "True", "lastModificationDate": "2024-10-04T04:20:08Z", "lastUpdate": "2024-04-12T10:59:38Z", "measurement_type": "Waves", "name": "tec", "processing_level": "Calibrated", "sampling": "1S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/SWARM-C/GNSS/swarmc-gps-all", "start_date": "2013-11-25T11:02:17Z", "stop_date": "2020-12-31T23:59:59Z", "swc_gps_elev": {"__spz_name__": "gps elevation angle", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swc_gps_elev", "dataset": "swarmc-gps-all", "description": "gps elevation angle", "display_type": "timeseries", "is_public": "True", "name": "gps elevation angle", "start_date": "2013-11-25T11:02:17Z", "stop_date": "2020-12-31T23:59:59Z", "units": "deg", "xmlid": "swc_gps_elev"}, "swc_gps_number": {"__spz_name__": "gps number", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swc_gps_number", "dataset": "swarmc-gps-all", "description": "gps number", "display_type": "timeseries", "is_public": "True", "name": "gps number", "start_date": "2013-11-25T11:02:17Z", "stop_date": "2020-12-31T23:59:59Z", "xmlid": "swc_gps_number"}, "swc_stec": {"__spz_name__": "stec", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swc_stec", "dataset": "swarmc-gps-all", "description": "Absolute slant TEC from largest elevation GNSS satellite", "display_type": "timeseries", "is_public": "True", "name": "stec", "start_date": "2013-11-25T11:02:17Z", "stop_date": "2020-12-31T23:59:59Z", "units": "TECU", "xmlid": "swc_stec"}, "swc_stec_rel": {"__spz_name__": "relative stec", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swc_stec_rel", "dataset": "swarmc-gps-all", "description": "Relative slant TEC", "display_type": "timeseries", "is_public": "True", "name": "relative stec", "start_date": "2013-11-25T11:02:17Z", "stop_date": "2020-12-31T23:59:59Z", "units": "TECU", "xmlid": "swc_stec_rel"}, "swc_vtec": {"__spz_name__": "vtec", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swc_vtec", "dataset": "swarmc-gps-all", "description": "Absolute vertical TEC from largest elevation GNSS satellite", "display_type": "timeseries", "is_public": "True", "name": "vtec", "start_date": "2013-11-25T11:02:17Z", "stop_date": "2020-12-31T23:59:59Z", "units": "TECU", "xmlid": "swc_vtec"}, "target": "Earth.Magnetosphere", "xmlid": "swarmc-gps-all"}, "xmlid": "SWARM-C_gnss"}, "MAG_ASMVFM": {"__spz_name__": "MAG (ASM/VFM)", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "SWARM-C_mag", "att": "auto/SWARM-C_mag", "desc": "Absolute Scalar Magnetometer / Vector Field Magnetometer
Magnetometer", "is_public": "True", "name": "MAG (ASM/VFM)", "swarmc_fac_all": {"__spz_name__": "field-aligned current", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "swarmc-fac-all", "att": "auto/swarmc-fac-all", "dataSource": "ftp://swarm-diss.eo.esa.int", "desc": "
Sampling: 1S
Provider: ftp://swarm-diss.eo.esa.int", "is_public": "True", "lastModificationDate": "2024-10-07T04:19:05Z", "lastUpdate": "2024-10-07T04:19:02Z", "measurement_type": "MagneticField", "name": "field-aligned current", "processing_level": "Calibrated", "sampling": "1S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/SWARM-C/MAG/swarmc-fac-all", "start_date": "2013-11-26T00:00:00Z", "stop_date": "2024-10-01T23:59:59Z", "swc_fac": {"__spz_name__": "fac", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swc_fac", "dataset": "swarmc-fac-all", "description": "Field-aligned current", "display_type": "timeseries", "is_public": "True", "name": "fac", "start_date": "2013-11-26T00:00:00Z", "stop_date": "2024-10-01T23:59:59Z", "units": "\u03bcA/m\u00b2", "xmlid": "swc_fac"}, "swc_fac_error": {"__spz_name__": "fac error", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swc_fac_error", "dataset": "swarmc-fac-all", "description": "uncertainty of FAC", "display_type": "timeseries", "is_public": "True", "name": "fac error", "start_date": "2013-11-26T00:00:00Z", "stop_date": "2024-10-01T23:59:59Z", "units": "\u03bcA/m\u00b2", "xmlid": "swc_fac_error"}, "target": "Earth.Magnetosphere", "xmlid": "swarmc-fac-all"}, "swarmc_mag_all": {"__spz_name__": "magnetic field in North-East-Center frame", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "swarmc-mag-all", "att": "auto/swarmc-mag-all", "dataSource": "ftp://swarm-diss.eo.esa.int", "desc": "Advanced / Magnetic_Data / L1B_MAGxLR_0503 dataset
Sampling: 1S
Provider: ftp://swarm-diss.eo.esa.int", "is_public": "True", "lastModificationDate": "2024-10-06T22:27:09Z", "lastUpdate": "2019-04-10T20:22:37Z", "measurement_type": "MagneticField", "name": "magnetic field in North-East-Center frame", "processing_level": "Calibrated", "sampling": "1S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/SWARM-C/MAG/swarmc-mag-all", "start_date": "2013-12-04T00:00:00Z", "stop_date": "2017-12-31T23:59:59Z", "swc_b_nec": {"__spz_name__": "b_nec", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swc_b_nec", "dataset": "swarmc-mag-all", "display_type": "timeseries", "is_public": "True", "name": "b_nec", "size": "3", "start_date": "2013-12-04T00:00:00Z", "stop_date": "2017-12-31T23:59:59Z", "swc_b_nec0": {"__spz_name__": "b_north", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "swc_b_nec(0)", "dataset": "swarmc-mag-all", "index1": "0", "is_public": "True", "name": "b_north", "parameter": "swc_b_nec", "start_date": "2013-12-04T00:00:00Z", "stop_date": "2017-12-31T23:59:59Z", "xmlid": "swc_b_nec(0)"}, "swc_b_nec1": {"__spz_name__": "b_east", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "swc_b_nec(1)", "dataset": "swarmc-mag-all", "index1": "1", "is_public": "True", "name": "b_east", "parameter": "swc_b_nec", "start_date": "2013-12-04T00:00:00Z", "stop_date": "2017-12-31T23:59:59Z", "xmlid": "swc_b_nec(1)"}, "swc_b_nec2": {"__spz_name__": "b_center", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "swc_b_nec(2)", "dataset": "swarmc-mag-all", "index1": "2", "is_public": "True", "name": "b_center", "parameter": "swc_b_nec", "start_date": "2013-12-04T00:00:00Z", "stop_date": "2017-12-31T23:59:59Z", "xmlid": "swc_b_nec(2)"}, "ucd": "phys.magField", "units": "nT", "xmlid": "swc_b_nec"}, "target": "Earth.Magnetosphere", "xmlid": "swarmc-mag-all"}, "swarmc_mag_tii": {"__spz_name__": "magnetic field in cross-track frame", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "swarmc-mag-tii", "att": "auto/swarmc-mag-tii", "dataSource": "ftp://swarm-diss.eo.esa.int", "desc": "2Hz TII Cross-track Ion Flow Dataset
Sampling: 0.5S
Provider: ftp://swarm-diss.eo.esa.int", "is_public": "True", "lastModificationDate": "2019-05-06T17:49:03Z", "lastUpdate": "2019-05-06T17:45:33Z", "measurement_type": "MagneticField", "name": "magnetic field in cross-track frame", "processing_level": "Calibrated", "sampling": "0.5S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/SWARM-C/MAG/swarmc-mag-tii", "start_date": "2015-11-01T17:32:18Z", "stop_date": "2017-12-31T14:00:03Z", "swc_b": {"__spz_name__": "b field", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "swc_b", "dataset": "swarmc-mag-tii", "display_type": "timeseries", "is_public": "True", "name": "b field", "size": "3", "start_date": "2015-11-01T17:32:18Z", "stop_date": "2017-12-31T14:00:03Z", "swc_b0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "swc_b(0)", "dataset": "swarmc-mag-tii", "index1": "0", "is_public": "True", "name": "bx", "parameter": "swc_b", "start_date": "2015-11-01T17:32:18Z", "stop_date": "2017-12-31T14:00:03Z", "xmlid": "swc_b(0)"}, "swc_b1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "swc_b(1)", "dataset": "swarmc-mag-tii", "index1": "1", "is_public": "True", "name": "by", "parameter": "swc_b", "start_date": "2015-11-01T17:32:18Z", "stop_date": "2017-12-31T14:00:03Z", "xmlid": "swc_b(1)"}, "swc_b2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "swc_b(2)", "dataset": "swarmc-mag-tii", "index1": "2", "is_public": "True", "name": "bz", "parameter": "swc_b", "start_date": "2015-11-01T17:32:18Z", "stop_date": "2017-12-31T14:00:03Z", "xmlid": "swc_b(2)"}, "units": "nT", "xmlid": "swc_b"}, "target": "Earth.Magnetosphere", "xmlid": "swarmc-mag-tii"}, "xmlid": "SWARM-C_mag"}, "__spz_name__": "Swarm-C", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "SWARM-C", "att": "auto/SWARM-C", "desc": "Swarm Charlie
2013-11-22T00:00:00", "is_public": "True", "name": "Swarm-C", "target": "Earth.Magnetosphere", "xmlid": "SWARM-C"}, "__spz_name__": "Swarm", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "SWARM", "att": "auto/SWARM", "desc": "Swarm : ESA mission
2013-11-22T00:00:00", "is_public": "True", "name": "Swarm", "rank": "6", "target": "Earth.Magnetosphere", "xmlid": "SWARM"}, "THEMIS": {"THEMIS_A": {"Analytical_Models": {"__spz_name__": "Analytical Models", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "ThemisA_models", "att": "auto/ThemisA_models", "desc": "", "is_public": "True", "name": "Analytical Models", "tha_msph_models": {"PriorID": "tha-orb-all", "__spz_name__": "distance to neutral sheet", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "tha-msph-models", "att": "auto/tha-msph-models", "dataSource": "IRAP", "desc": "Distance to model neutral sheet
Sampling: 1M
Provider: IRAP", "dz_fairfield70_tha_xyz": {"__spz_name__": "dZ Fairfield70", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "dz_fairfield70_tha_xyz", "dataset": "tha-msph-models", "description": "Distance (Re) from s/c location to Fairfield1970 neutral sheet position. Depends on spacecraft location in SM coordinates and dipole tilt angle. Valid for Ysm less than 15 Re.", "is_public": "True", "name": "dZ Fairfield70", "predefined": "1", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-09-27T23:59:00Z", "template": "dz_fairfield70_##ORBIT##", "units": "Re", "xmlid": "dz_fairfield70_tha_xyz"}, "dz_fairfield80_tha_xyz": {"__spz_name__": "dZ Fairfield80", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "dz_fairfield80_tha_xyz", "dataset": "tha-msph-models", "description": "Distance (Re) from s/c location to Fairfield1980 neutral sheet position. Depends on spacecraft location in SM coordinates and dipole tilt angle.", "is_public": "True", "name": "dZ Fairfield80", "predefined": "1", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-09-27T23:59:00Z", "template": "dz_fairfield80_##ORBIT##", "units": "Re", "xmlid": "dz_fairfield80_tha_xyz"}, "is_public": "True", "lastModificationDate": "2024-09-29T04:02:00Z", "lastUpdate": "2024-09-29T04:02:00Z", "measurement_type": "Ephemeris", "name": "distance to neutral sheet", "processing_level": "Calibrated", "sampling": "1M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/THEMIS/A/Models/tha-msph-models", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-09-27T23:59:00Z", "target": "Earth", "xmlid": "tha-msph-models"}, "tha_t96_model": {"PriorID": "tha-orb-all", "__spz_name__": "T96 field model", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "tha-t96-model", "att": "auto/tha-t96-model", "b_t96gse_tha_xyz": {"__spz_name__": "b_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_t96gse_tha_xyz", "b_t96gse_tha_xyz0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gse_tha_xyz(0)", "dataset": "tha-t96-model", "index1": "0", "is_public": "True", "name": "bx", "parameter": "b_t96gse_tha_xyz", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-09-27T23:59:00Z", "xmlid": "b_t96gse_tha_xyz(0)"}, "b_t96gse_tha_xyz1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gse_tha_xyz(1)", "dataset": "tha-t96-model", "index1": "1", "is_public": "True", "name": "by", "parameter": "b_t96gse_tha_xyz", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-09-27T23:59:00Z", "xmlid": "b_t96gse_tha_xyz(1)"}, "b_t96gse_tha_xyz2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gse_tha_xyz(2)", "dataset": "tha-t96-model", "index1": "2", "is_public": "True", "name": "bz", "parameter": "b_t96gse_tha_xyz", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-09-27T23:59:00Z", "xmlid": "b_t96gse_tha_xyz(2)"}, "dataset": "tha-t96-model", "is_public": "True", "name": "b_gse", "predefined": "1", "size": "3", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-09-27T23:59:00Z", "template": "b_t96gse_##ORBIT##", "units": "nT", "xmlid": "b_t96gse_tha_xyz"}, "b_t96gsm_tha_xyz": {"__spz_name__": "b_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_t96gsm_tha_xyz", "b_t96gsm_tha_xyz0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gsm_tha_xyz(0)", "dataset": "tha-t96-model", "index1": "0", "is_public": "True", "name": "bx", "parameter": "b_t96gsm_tha_xyz", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-09-27T23:59:00Z", "xmlid": "b_t96gsm_tha_xyz(0)"}, "b_t96gsm_tha_xyz1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gsm_tha_xyz(1)", "dataset": "tha-t96-model", "index1": "1", "is_public": "True", "name": "by", "parameter": "b_t96gsm_tha_xyz", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-09-27T23:59:00Z", "xmlid": "b_t96gsm_tha_xyz(1)"}, "b_t96gsm_tha_xyz2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gsm_tha_xyz(2)", "dataset": "tha-t96-model", "index1": "2", "is_public": "True", "name": "bz", "parameter": "b_t96gsm_tha_xyz", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-09-27T23:59:00Z", "xmlid": "b_t96gsm_tha_xyz(2)"}, "dataset": "tha-t96-model", "is_public": "True", "name": "b_gsm", "predefined": "1", "size": "3", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-09-27T23:59:00Z", "template": "b_t96gsm_##ORBIT##", "units": "nT", "xmlid": "b_t96gsm_tha_xyz"}, "b_t96tot_tha_xyz": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_t96tot_tha_xyz", "dataset": "tha-t96-model", "is_public": "True", "name": "|b|", "predefined": "1", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-09-27T23:59:00Z", "template": "b_t96tot_##ORBIT##", "units": "nT", "xmlid": "b_t96tot_tha_xyz"}, "dataSource": "IRAP", "desc": "Tsyganenko96 geomagnetospheric magnetic field model
Sampling: 1M
Provider: IRAP", "is_public": "True", "lastModificationDate": "2024-09-29T04:02:00Z", "lastUpdate": "2024-09-29T04:02:00Z", "measurement_type": "MagneticField", "name": "T96 field model", "processing_level": "Calibrated", "sampling": "1M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/THEMIS/A/Models/tha-t96-model", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-09-27T23:59:00Z", "target": "Earth", "xmlid": "tha-t96-model"}, "xmlid": "ThemisA_models"}, "ESA": {"__spz_name__": "ESA", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "ThemisA_esa", "att": "auto/ThemisA_esa", "desc": "ElectrostaticAnalyser", "is_public": "True", "name": "ESA", "tha_esa_l2e": {"__spz_name__": "electron full mode", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "tha-esa-l2e", "att": "auto/tha-esa-l2e", "dataSource": "IRAP_THEMIS", "desc": "
MinSampling: 96.27S; MaxSampling: 551.0S
Provider: IRAP_THEMIS", "is_public": "True", "lastModificationDate": "2024-10-07T04:00:17Z", "lastUpdate": "2024-10-07T04:00:16Z", "maxSampling": "551.0S", "measurement_type": "ThermalPlasma", "name": "electron full mode", "processing_level": "Calibrated", "sampling": "96.27S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/THEMIS/A/ESA/tha-esa-l2e", "start_date": "2007-03-07T18:53:59Z", "stop_date": "2024-10-05T03:27:52Z", "target": "Earth.Magnetosphere", "tha_el_sp": {"__spz_name__": "el omni eflux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "tha_el_sp", "dataset": "tha-esa-l2e", "display_type": "spectrogram", "is_public": "True", "name": "el omni eflux", "start_date": "2007-03-07T18:53:59Z", "stop_date": "2024-10-05T03:27:52Z", "ucd": "phys.flux;phys.energy;phys.electron", "units": "eV/cm\u00b2-s-sr-eV", "xmlid": "tha_el_sp"}, "tha_n_e": {"__spz_name__": "el density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "tha_n_e", "dataset": "tha-esa-l2e", "description": "Electron Density", "display_type": "timeseries", "is_public": "True", "name": "el density", "start_date": "2007-03-07T18:53:59Z", "stop_date": "2024-10-05T03:27:52Z", "ucd": "phys.density;phys.electron", "units": "cm-3", "xmlid": "tha_n_e"}, "tha_t_e": {"__spz_name__": "el temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "tha_t_e", "dataset": "tha-esa-l2e", "description": "Temperature", "display_type": "timeseries", "is_public": "True", "name": "el temperature", "size": "3", "start_date": "2007-03-07T18:53:59Z", "stop_date": "2024-10-05T03:27:52Z", "tha_t_e0": {"__spz_name__": "t_perp1", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "tha_t_e(0)", "dataset": "tha-esa-l2e", "index1": "1", "is_public": "True", "name": "t_perp1", "parameter": "tha_t_e", "start_date": "2007-03-07T18:53:59Z", "stop_date": "2024-10-05T03:27:52Z", "xmlid": "tha_t_e(0)"}, "tha_t_e1": {"__spz_name__": "t_perp2", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "tha_t_e(1)", "dataset": "tha-esa-l2e", "index1": "2", "is_public": "True", "name": "t_perp2", "parameter": "tha_t_e", "start_date": "2007-03-07T18:53:59Z", "stop_date": "2024-10-05T03:27:52Z", "xmlid": "tha_t_e(1)"}, "tha_t_e2": {"__spz_name__": "t_para", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "tha_t_e(2)", "dataset": "tha-esa-l2e", "index1": "0", "is_public": "True", "name": "t_para", "parameter": "tha_t_e", "start_date": "2007-03-07T18:53:59Z", "stop_date": "2024-10-05T03:27:52Z", "xmlid": "tha_t_e(2)"}, "ucd": "phys.temperature;phys.electron", "units": "eV", "xmlid": "tha_t_e"}, "tha_v_e": {"__spz_name__": "el v_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "tha_v_e", "dataset": "tha-esa-l2e", "display_type": "timeseries", "is_public": "True", "name": "el v_gse", "size": "3", "start_date": "2007-03-07T18:53:59Z", "stop_date": "2024-10-05T03:27:52Z", "tha_v_e0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "tha_v_e(0)", "dataset": "tha-esa-l2e", "index1": "0", "is_public": "True", "name": "vx", "parameter": "tha_v_e", "start_date": "2007-03-07T18:53:59Z", "stop_date": "2024-10-05T03:27:52Z", "xmlid": "tha_v_e(0)"}, "tha_v_e1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "tha_v_e(1)", "dataset": "tha-esa-l2e", "index1": "1", "is_public": "True", "name": "vy", "parameter": "tha_v_e", "start_date": "2007-03-07T18:53:59Z", "stop_date": "2024-10-05T03:27:52Z", "xmlid": "tha_v_e(1)"}, "tha_v_e2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "tha_v_e(2)", "dataset": "tha-esa-l2e", "index1": "2", "is_public": "True", "name": "vz", "parameter": "tha_v_e", "start_date": "2007-03-07T18:53:59Z", "stop_date": "2024-10-05T03:27:52Z", "xmlid": "tha_v_e(2)"}, "ucd": "phys.veloc;phys.electron", "units": "km/s", "xmlid": "tha_v_e"}, "xmlid": "tha-esa-l2e"}, "tha_esa_l2i": {"__spz_name__": "ion full mode", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "tha-esa-l2i", "att": "auto/tha-esa-l2i", "dataSource": "IRAP_THEMIS", "desc": "
MinSampling: 96.27S; MaxSampling: 551.0S
Provider: IRAP_THEMIS", "is_public": "True", "lastModificationDate": "2024-10-07T04:00:17Z", "lastUpdate": "2024-10-07T04:00:16Z", "maxSampling": "551.0S", "measurement_type": "ThermalPlasma", "name": "ion full mode", "processing_level": "Calibrated", "sampling": "96.27S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/THEMIS/A/ESA/tha-esa-l2i", "start_date": "2007-03-07T18:53:59Z", "stop_date": "2024-10-05T03:28:28Z", "target": "Earth.Magnetosphere", "tha_ion_sp": {"__spz_name__": "ion eflux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "tha_ion_sp", "dataset": "tha-esa-l2i", "display_type": "spectrogram", "is_public": "True", "name": "ion eflux", "start_date": "2007-03-07T18:53:59Z", "stop_date": "2024-10-05T03:28:28Z", "ucd": "phys.flux;phys.energy;phys.atmol.ionStage", "units": "eV/cm\u00b2-s-sr-eV", "xmlid": "tha_ion_sp"}, "tha_n_i": {"__spz_name__": "ion density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "tha_n_i", "dataset": "tha-esa-l2i", "description": "Ion Density", "display_type": "timeseries", "is_public": "True", "name": "ion density", "start_date": "2007-03-07T18:53:59Z", "stop_date": "2024-10-05T03:28:28Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm-3", "xmlid": "tha_n_i"}, "tha_t_i": {"__spz_name__": "ion temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "tha_t_i", "dataset": "tha-esa-l2i", "description": "Temperature", "display_type": "timeseries", "is_public": "True", "name": "ion temperature", "size": "3", "start_date": "2007-03-07T18:53:59Z", "stop_date": "2024-10-05T03:28:28Z", "tha_t_i0": {"__spz_name__": "t_perp1", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "tha_t_i(0)", "dataset": "tha-esa-l2i", "index1": "1", "is_public": "True", "name": "t_perp1", "parameter": "tha_t_i", "start_date": "2007-03-07T18:53:59Z", "stop_date": "2024-10-05T03:28:28Z", "xmlid": "tha_t_i(0)"}, "tha_t_i1": {"__spz_name__": "t_perp2", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "tha_t_i(1)", "dataset": "tha-esa-l2i", "index1": "2", "is_public": "True", "name": "t_perp2", "parameter": "tha_t_i", "start_date": "2007-03-07T18:53:59Z", "stop_date": "2024-10-05T03:28:28Z", "xmlid": "tha_t_i(1)"}, "tha_t_i2": {"__spz_name__": "t_para", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "tha_t_i(2)", "dataset": "tha-esa-l2i", "index1": "0", "is_public": "True", "name": "t_para", "parameter": "tha_t_i", "start_date": "2007-03-07T18:53:59Z", "stop_date": "2024-10-05T03:28:28Z", "xmlid": "tha_t_i(2)"}, "ucd": "phys.temperature;phys.atmol.ionStage", "units": "eV", "xmlid": "tha_t_i"}, "tha_v_i": {"__spz_name__": "ion v_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "tha_v_i", "dataset": "tha-esa-l2i", "display_type": "timeseries", "is_public": "True", "name": "ion v_gse", "size": "3", "start_date": "2007-03-07T18:53:59Z", "stop_date": "2024-10-05T03:28:28Z", "tha_v_i0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "tha_v_i(0)", "dataset": "tha-esa-l2i", "index1": "0", "is_public": "True", "name": "vx", "parameter": "tha_v_i", "start_date": "2007-03-07T18:53:59Z", "stop_date": "2024-10-05T03:28:28Z", "xmlid": "tha_v_i(0)"}, "tha_v_i1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "tha_v_i(1)", "dataset": "tha-esa-l2i", "index1": "1", "is_public": "True", "name": "vy", "parameter": "tha_v_i", "start_date": "2007-03-07T18:53:59Z", "stop_date": "2024-10-05T03:28:28Z", "xmlid": "tha_v_i(1)"}, "tha_v_i2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "tha_v_i(2)", "dataset": "tha-esa-l2i", "index1": "2", "is_public": "True", "name": "vz", "parameter": "tha_v_i", "start_date": "2007-03-07T18:53:59Z", "stop_date": "2024-10-05T03:28:28Z", "xmlid": "tha_v_i(2)"}, "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "tha_v_i"}, "tha_v_i_tot": {"__spz_name__": "ion |v|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "tha_v_i_tot", "dataset": "tha-esa-l2i", "description": "Module of Velocity", "display_type": "timeseries", "is_public": "True", "name": "ion |v|", "start_date": "2007-03-07T18:53:59Z", "stop_date": "2024-10-05T03:28:28Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "tha_v_i_tot"}, "xmlid": "tha-esa-l2i"}, "tha_peem_all": {"__spz_name__": "electron onboard moments", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "tha-peem-all", "att": "auto/tha-peem-all", "dataSource": "IRAP_THEMIS", "desc": "
Sampling: 3S
Provider: IRAP_THEMIS", "is_public": "True", "lastModificationDate": "2024-10-07T04:01:17Z", "lastUpdate": "2024-10-07T04:01:16Z", "measurement_type": "ThermalPlasma", "name": "electron onboard moments", "processing_level": "Calibrated", "sampling": "3S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/THEMIS/A/ESA/tha-peem-all", "start_date": "2007-08-02T00:00:30Z", "stop_date": "2024-10-05T03:28:33Z", "target": "Earth.Magnetosphere", "tha_n_peem": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "tha_n_peem", "dataset": "tha-peem-all", "description": "Electron Density", "display_type": "timeseries", "is_public": "True", "name": "density", "start_date": "2007-08-02T00:00:30Z", "stop_date": "2024-10-05T03:28:33Z", "ucd": "phys.density;phys.electron", "units": "cm-3", "xmlid": "tha_n_peem"}, "tha_t_peem": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "tha_t_peem", "dataset": "tha-peem-all", "description": "Temperature", "display_type": "timeseries", "is_public": "True", "name": "temperature", "size": "3", "start_date": "2007-08-02T00:00:30Z", "stop_date": "2024-10-05T03:28:33Z", "tha_t_peem0": {"__spz_name__": "t_perp1", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "tha_t_peem(0)", "dataset": "tha-peem-all", "index1": "1", "is_public": "True", "name": "t_perp1", "parameter": "tha_t_peem", "start_date": "2007-08-02T00:00:30Z", "stop_date": "2024-10-05T03:28:33Z", "xmlid": "tha_t_peem(0)"}, "tha_t_peem1": {"__spz_name__": "t_perp2", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "tha_t_peem(1)", "dataset": "tha-peem-all", "index1": "2", "is_public": "True", "name": "t_perp2", "parameter": "tha_t_peem", "start_date": "2007-08-02T00:00:30Z", "stop_date": "2024-10-05T03:28:33Z", "xmlid": "tha_t_peem(1)"}, "tha_t_peem2": {"__spz_name__": "t_para", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "tha_t_peem(2)", "dataset": "tha-peem-all", "index1": "0", "is_public": "True", "name": "t_para", "parameter": "tha_t_peem", "start_date": "2007-08-02T00:00:30Z", "stop_date": "2024-10-05T03:28:33Z", "xmlid": "tha_t_peem(2)"}, "ucd": "phys.temperature;phys.electron", "units": "eV", "xmlid": "tha_t_peem"}, "xmlid": "tha-peem-all"}, "tha_peim_all": {"__spz_name__": "ion onboard moments", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "tha-peim-all", "att": "auto/tha-peim-all", "dataSource": "IRAP_THEMIS", "desc": "
Sampling: 3S
Provider: IRAP_THEMIS", "is_public": "True", "lastModificationDate": "2024-10-07T04:01:17Z", "lastUpdate": "2024-10-07T04:01:16Z", "measurement_type": "ThermalPlasma", "name": "ion onboard moments", "processing_level": "Calibrated", "sampling": "3S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/THEMIS/A/ESA/tha-peim-all", "start_date": "2007-08-02T00:00:30Z", "stop_date": "2024-10-05T03:28:33Z", "target": "Earth.Magnetosphere", "tha_n_peim": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "tha_n_peim", "dataset": "tha-peim-all", "description": "Ion Density", "display_type": "timeseries", "is_public": "True", "name": "density", "start_date": "2007-08-02T00:00:30Z", "stop_date": "2024-10-05T03:28:33Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm-3", "xmlid": "tha_n_peim"}, "tha_t_peim": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "tha_t_peim", "dataset": "tha-peim-all", "description": "Temperature", "display_type": "timeseries", "is_public": "True", "name": "temperature", "size": "3", "start_date": "2007-08-02T00:00:30Z", "stop_date": "2024-10-05T03:28:33Z", "tha_t_peim0": {"__spz_name__": "t_perp1", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "tha_t_peim(0)", "dataset": "tha-peim-all", "index1": "1", "is_public": "True", "name": "t_perp1", "parameter": "tha_t_peim", "start_date": "2007-08-02T00:00:30Z", "stop_date": "2024-10-05T03:28:33Z", "xmlid": "tha_t_peim(0)"}, "tha_t_peim1": {"__spz_name__": "t_perp2", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "tha_t_peim(1)", "dataset": "tha-peim-all", "index1": "2", "is_public": "True", "name": "t_perp2", "parameter": "tha_t_peim", "start_date": "2007-08-02T00:00:30Z", "stop_date": "2024-10-05T03:28:33Z", "xmlid": "tha_t_peim(1)"}, "tha_t_peim2": {"__spz_name__": "t_para", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "tha_t_peim(2)", "dataset": "tha-peim-all", "index1": "0", "is_public": "True", "name": "t_para", "parameter": "tha_t_peim", "start_date": "2007-08-02T00:00:30Z", "stop_date": "2024-10-05T03:28:33Z", "xmlid": "tha_t_peim(2)"}, "ucd": "phys.temperature;phys.atmol.ionStage", "units": "eV", "xmlid": "tha_t_peim"}, "tha_v_peim": {"__spz_name__": "v_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "tha_v_peim", "dataset": "tha-peim-all", "display_type": "timeseries", "is_public": "True", "name": "v_gse", "size": "3", "start_date": "2007-08-02T00:00:30Z", "stop_date": "2024-10-05T03:28:33Z", "tha_v_peim0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "tha_v_peim(0)", "dataset": "tha-peim-all", "index1": "0", "is_public": "True", "name": "vx", "parameter": "tha_v_peim", "start_date": "2007-08-02T00:00:30Z", "stop_date": "2024-10-05T03:28:33Z", "xmlid": "tha_v_peim(0)"}, "tha_v_peim1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "tha_v_peim(1)", "dataset": "tha-peim-all", "index1": "1", "is_public": "True", "name": "vy", "parameter": "tha_v_peim", "start_date": "2007-08-02T00:00:30Z", "stop_date": "2024-10-05T03:28:33Z", "xmlid": "tha_v_peim(1)"}, "tha_v_peim2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "tha_v_peim(2)", "dataset": "tha-peim-all", "index1": "2", "is_public": "True", "name": "vz", "parameter": "tha_v_peim", "start_date": "2007-08-02T00:00:30Z", "stop_date": "2024-10-05T03:28:33Z", "xmlid": "tha_v_peim(2)"}, "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "tha_v_peim"}, "tha_v_peim_tot": {"__spz_name__": "|v|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "tha_v_peim_tot", "dataset": "tha-peim-all", "description": "Module of Velocity", "display_type": "timeseries", "is_public": "True", "name": "|v|", "start_date": "2007-08-02T00:00:30Z", "stop_date": "2024-10-05T03:28:33Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "tha_v_peim_tot"}, "xmlid": "tha-peim-all"}, "tha_pot_mom": {"__spz_name__": "onboard moments : potential", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "tha-pot-mom", "att": "auto/tha-pot-mom", "dataSource": "IRAP_THEMIS", "desc": "S/c potential from onboard moments
Sampling: 3S
Provider: IRAP_THEMIS", "is_public": "True", "lastModificationDate": "2024-10-07T04:01:17Z", "lastUpdate": "2024-10-07T04:01:16Z", "measurement_type": "ThermalPlasma", "name": "onboard moments : potential", "processing_level": "Calibrated", "sampling": "3S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/THEMIS/A/ESA/tha-pot-mom", "start_date": "2007-08-02T00:00:30Z", "stop_date": "2024-10-05T03:28:33Z", "target": "Earth.Magnetosphere", "tha_pot": {"__spz_name__": "s/c pot", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "tha_pot", "dataset": "tha-pot-mom", "description": "S/C potential", "display_type": "timeseries", "is_public": "True", "name": "s/c pot", "start_date": "2007-08-02T00:00:30Z", "stop_date": "2024-10-05T03:28:33Z", "ucd": "phys.potential;phys.electField;instr.obsty", "units": "V", "xmlid": "tha_pot"}, "xmlid": "tha-pot-mom"}, "xmlid": "ThemisA_esa"}, "Ephemeris": {"__spz_name__": "Ephemeris", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "ThemisA_ephemeris", "att": "auto/ThemisA_ephemeris", "desc": "", "is_public": "True", "name": "Ephemeris", "tha_orb_all": {"__spz_name__": "orbit", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "tha-orb-all", "att": "auto/tha-orb-all", "dataSource": "IRAP_THEMIS", "desc": "
Sampling: 60S
Provider: IRAP_THEMIS", "is_public": "True", "lastModificationDate": "2024-09-29T04:02:00Z", "lastUpdate": "2024-09-29T04:02:00Z", "measurement_type": "Ephemeris", "name": "orbit", "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/THEMIS/A/Ephemeris/tha-orb-all", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-09-27T23:59:00Z", "target": "Earth.Magnetosphere", "tha_r": {"__spz_name__": "distance tha-earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "tha_r", "dataset": "tha-orb-all", "display_type": "timeseries", "is_public": "True", "name": "distance tha-earth", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-09-27T23:59:00Z", "ucd": "pos.distance", "units": "Re", "xmlid": "tha_r"}, "tha_xyz": {"__spz_name__": "xyz_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "tha_xyz", "dataset": "tha-orb-all", "description": "position in GSE coordinates", "display_type": "timeseries", "is_public": "True", "name": "xyz_gse", "size": "3", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-09-27T23:59:00Z", "tha_xyz0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "tha_xyz(0)", "dataset": "tha-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "tha_xyz", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-09-27T23:59:00Z", "xmlid": "tha_xyz(0)"}, "tha_xyz1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "tha_xyz(1)", "dataset": "tha-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "tha_xyz", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-09-27T23:59:00Z", "xmlid": "tha_xyz(1)"}, "tha_xyz2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "tha_xyz(2)", "dataset": "tha-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "tha_xyz", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-09-27T23:59:00Z", "xmlid": "tha_xyz(2)"}, "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "Re", "xmlid": "tha_xyz"}, "tha_xyz_gsm": {"__spz_name__": "xyz_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "tha_xyz_gsm", "dataset": "tha-orb-all", "description": "position in GSM coordinates", "display_type": "timeseries", "is_public": "True", "name": "xyz_gsm", "size": "3", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-09-27T23:59:00Z", "tha_xyz_gsm0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "tha_xyz_gsm(0)", "dataset": "tha-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "tha_xyz_gsm", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-09-27T23:59:00Z", "xmlid": "tha_xyz_gsm(0)"}, "tha_xyz_gsm1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "tha_xyz_gsm(1)", "dataset": "tha-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "tha_xyz_gsm", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-09-27T23:59:00Z", "xmlid": "tha_xyz_gsm(1)"}, "tha_xyz_gsm2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "tha_xyz_gsm(2)", "dataset": "tha-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "tha_xyz_gsm", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-09-27T23:59:00Z", "xmlid": "tha_xyz_gsm(2)"}, "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "Re", "xmlid": "tha_xyz_gsm"}, "xmlid": "tha-orb-all"}, "xmlid": "ThemisA_ephemeris"}, "FGM": {"__spz_name__": "FGM", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "ThemisA_fgm", "att": "auto/ThemisA_fgm", "desc": "Tri-axial Fluxgate Magnetometer
Magnetometer", "is_public": "True", "name": "FGM", "tha_fgm_l": {"__spz_name__": "0.25 sec (low)", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "tha-fgm-l", "att": "auto/tha-fgm-l", "dataSource": "IRAP_THEMIS", "desc": "
Sampling: 0.25S
Provider: IRAP_THEMIS", "is_public": "True", "lastModificationDate": "2024-10-07T04:03:30Z", "lastUpdate": "2024-10-07T04:03:30Z", "measurement_type": "MagneticField", "name": "0.25 sec (low)", "processing_level": "Calibrated", "sampling": "0.25S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/THEMIS/A/FGM/tha-fgm-l", "start_date": "2007-02-23T03:29:29Z", "stop_date": "2024-10-05T03:28:45Z", "target": "Earth.Magnetosphere", "tha_bl": {"__spz_name__": "b_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "tha_bl", "dataset": "tha-fgm-l", "description": "Magnetic Field", "display_type": "timeseries", "is_public": "True", "name": "b_gse", "size": "3", "start_date": "2007-02-23T03:29:29Z", "stop_date": "2024-10-05T03:28:45Z", "tha_bl0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "tha_bl(0)", "dataset": "tha-fgm-l", "index1": "0", "is_public": "True", "name": "bx", "parameter": "tha_bl", "start_date": "2007-02-23T03:29:29Z", "stop_date": "2024-10-05T03:28:45Z", "xmlid": "tha_bl(0)"}, "tha_bl1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "tha_bl(1)", "dataset": "tha-fgm-l", "index1": "1", "is_public": "True", "name": "by", "parameter": "tha_bl", "start_date": "2007-02-23T03:29:29Z", "stop_date": "2024-10-05T03:28:45Z", "xmlid": "tha_bl(1)"}, "tha_bl2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "tha_bl(2)", "dataset": "tha-fgm-l", "index1": "2", "is_public": "True", "name": "bz", "parameter": "tha_bl", "start_date": "2007-02-23T03:29:29Z", "stop_date": "2024-10-05T03:28:45Z", "xmlid": "tha_bl(2)"}, "ucd": "phys.magField", "units": "nT", "xmlid": "tha_bl"}, "tha_bl_gsm": {"__spz_name__": "b_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "tha_bl_gsm", "dataset": "tha-fgm-l", "description": "Magnetic Field", "display_type": "timeseries", "is_public": "True", "name": "b_gsm", "size": "3", "start_date": "2007-02-23T03:29:29Z", "stop_date": "2024-10-05T03:28:45Z", "tha_bl_gsm0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "tha_bl_gsm(0)", "dataset": "tha-fgm-l", "index1": "0", "is_public": "True", "name": "bx", "parameter": "tha_bl_gsm", "start_date": "2007-02-23T03:29:29Z", "stop_date": "2024-10-05T03:28:45Z", "xmlid": "tha_bl_gsm(0)"}, "tha_bl_gsm1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "tha_bl_gsm(1)", "dataset": "tha-fgm-l", "index1": "1", "is_public": "True", "name": "by", "parameter": "tha_bl_gsm", "start_date": "2007-02-23T03:29:29Z", "stop_date": "2024-10-05T03:28:45Z", "xmlid": "tha_bl_gsm(1)"}, "tha_bl_gsm2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "tha_bl_gsm(2)", "dataset": "tha-fgm-l", "index1": "2", "is_public": "True", "name": "bz", "parameter": "tha_bl_gsm", "start_date": "2007-02-23T03:29:29Z", "stop_date": "2024-10-05T03:28:45Z", "xmlid": "tha_bl_gsm(2)"}, "ucd": "phys.magField", "units": "nT", "xmlid": "tha_bl_gsm"}, "tha_bl_tot": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "tha_bl_tot", "dataset": "tha-fgm-l", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "2007-02-23T03:29:29Z", "stop_date": "2024-10-05T03:28:45Z", "ucd": "phys.magField", "units": "nT", "xmlid": "tha_bl_tot"}, "xmlid": "tha-fgm-l"}, "tha_fgm_s": {"__spz_name__": "3 sec (spin)", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "tha-fgm-s", "att": "auto/tha-fgm-s", "dataSource": "IRAP_THEMIS", "desc": "
Sampling: 3S
Provider: IRAP_THEMIS", "is_public": "True", "lastModificationDate": "2024-10-07T04:03:32Z", "lastUpdate": "2024-10-07T04:03:32Z", "measurement_type": "MagneticField", "name": "3 sec (spin)", "processing_level": "Calibrated", "sampling": "3S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/THEMIS/A/FGM/tha-fgm-s", "start_date": "2007-02-26T23:00:35Z", "stop_date": "2024-10-05T03:15:05Z", "target": "Earth.Magnetosphere", "tha_bs": {"__spz_name__": "b_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "tha_bs", "dataset": "tha-fgm-s", "description": "Magnetic Field", "display_type": "timeseries", "is_public": "True", "name": "b_gse", "size": "3", "start_date": "2007-02-26T23:00:35Z", "stop_date": "2024-10-05T03:15:05Z", "tha_bs0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "tha_bs(0)", "dataset": "tha-fgm-s", "index1": "0", "is_public": "True", "name": "bx", "parameter": "tha_bs", "start_date": "2007-02-26T23:00:35Z", "stop_date": "2024-10-05T03:15:05Z", "xmlid": "tha_bs(0)"}, "tha_bs1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "tha_bs(1)", "dataset": "tha-fgm-s", "index1": "1", "is_public": "True", "name": "by", "parameter": "tha_bs", "start_date": "2007-02-26T23:00:35Z", "stop_date": "2024-10-05T03:15:05Z", "xmlid": "tha_bs(1)"}, "tha_bs2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "tha_bs(2)", "dataset": "tha-fgm-s", "index1": "2", "is_public": "True", "name": "bz", "parameter": "tha_bs", "start_date": "2007-02-26T23:00:35Z", "stop_date": "2024-10-05T03:15:05Z", "xmlid": "tha_bs(2)"}, "ucd": "phys.magField", "units": "nT", "xmlid": "tha_bs"}, "tha_bs_gsm": {"__spz_name__": "b_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "tha_bs_gsm", "dataset": "tha-fgm-s", "description": "Magnetic Field", "display_type": "timeseries", "is_public": "True", "name": "b_gsm", "size": "3", "start_date": "2007-02-26T23:00:35Z", "stop_date": "2024-10-05T03:15:05Z", "tha_bs_gsm0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "tha_bs_gsm(0)", "dataset": "tha-fgm-s", "index1": "0", "is_public": "True", "name": "bx", "parameter": "tha_bs_gsm", "start_date": "2007-02-26T23:00:35Z", "stop_date": "2024-10-05T03:15:05Z", "xmlid": "tha_bs_gsm(0)"}, "tha_bs_gsm1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "tha_bs_gsm(1)", "dataset": "tha-fgm-s", "index1": "1", "is_public": "True", "name": "by", "parameter": "tha_bs_gsm", "start_date": "2007-02-26T23:00:35Z", "stop_date": "2024-10-05T03:15:05Z", "xmlid": "tha_bs_gsm(1)"}, "tha_bs_gsm2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "tha_bs_gsm(2)", "dataset": "tha-fgm-s", "index1": "2", "is_public": "True", "name": "bz", "parameter": "tha_bs_gsm", "start_date": "2007-02-26T23:00:35Z", "stop_date": "2024-10-05T03:15:05Z", "xmlid": "tha_bs_gsm(2)"}, "ucd": "phys.magField", "units": "nT", "xmlid": "tha_bs_gsm"}, "tha_bs_tot": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "tha_bs_tot", "dataset": "tha-fgm-s", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "2007-02-26T23:00:35Z", "stop_date": "2024-10-05T03:15:05Z", "ucd": "phys.magField", "units": "nT", "xmlid": "tha_bs_tot"}, "xmlid": "tha-fgm-s"}, "xmlid": "ThemisA_fgm"}, "__spz_name__": "THEMIS-A", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "ThemisA", "att": "auto/ThemisA", "desc": "Explorer 85
2007-02-15T00:00:00
Initial phase : apogee 15.4Re : 2007-02-15 - 2007-09-15
Orbit Placement Phase: 2007-09-15 - 2007-12-15
Full constellation phase: 1.5 x 10Re : 2007-12-15 - 2009-09-30
THEMIS : apogee 13Re : 2009-10-01 - present", "is_public": "True", "name": "THEMIS-A", "target": "Earth.Magnetosphere", "xmlid": "ThemisA"}, "THEMIS_B": {"Analytical_Models": {"__spz_name__": "Analytical Models", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "ThemisB_models", "att": "auto/ThemisB_models", "desc": "", "is_public": "True", "name": "Analytical Models", "thb_msph_models": {"PriorID": "thb-orb-all", "__spz_name__": "distance to neutral sheet", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "thb-msph-models", "att": "auto/thb-msph-models", "dataSource": "IRAP", "desc": "Distance to model neutral sheet
Sampling: 1M
Provider: IRAP", "dz_fairfield70_thb_xyz": {"__spz_name__": "dZ Fairfield70", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "dz_fairfield70_thb_xyz", "dataset": "thb-msph-models", "description": "Distance (Re) from s/c location to Fairfield1970 neutral sheet position. Depends on spacecraft location in SM coordinates and dipole tilt angle. Valid for Ysm less than 15 Re.", "is_public": "True", "name": "dZ Fairfield70", "predefined": "1", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-10-05T23:59:00Z", "template": "dz_fairfield70_##ORBIT##", "units": "Re", "xmlid": "dz_fairfield70_thb_xyz"}, "dz_fairfield80_thb_xyz": {"__spz_name__": "dZ Fairfield80", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "dz_fairfield80_thb_xyz", "dataset": "thb-msph-models", "description": "Distance (Re) from s/c location to Fairfield1980 neutral sheet position. Depends on spacecraft location in SM coordinates and dipole tilt angle.", "is_public": "True", "name": "dZ Fairfield80", "predefined": "1", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-10-05T23:59:00Z", "template": "dz_fairfield80_##ORBIT##", "units": "Re", "xmlid": "dz_fairfield80_thb_xyz"}, "is_public": "True", "lastModificationDate": "2024-10-06T04:02:22Z", "lastUpdate": "2024-10-06T04:02:22Z", "measurement_type": "Ephemeris", "name": "distance to neutral sheet", "processing_level": "Calibrated", "sampling": "1M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/THEMIS/B/Models/thb-msph-models", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-10-05T23:59:00Z", "target": "Earth", "xmlid": "thb-msph-models"}, "thb_t96_model": {"PriorID": "thb-orb-all", "__spz_name__": "T96 field model", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "thb-t96-model", "att": "auto/thb-t96-model", "b_t96gse_thb_xyz": {"__spz_name__": "b_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_t96gse_thb_xyz", "b_t96gse_thb_xyz0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gse_thb_xyz(0)", "dataset": "thb-t96-model", "index1": "0", "is_public": "True", "name": "bx", "parameter": "b_t96gse_thb_xyz", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-10-05T23:59:00Z", "xmlid": "b_t96gse_thb_xyz(0)"}, "b_t96gse_thb_xyz1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gse_thb_xyz(1)", "dataset": "thb-t96-model", "index1": "1", "is_public": "True", "name": "by", "parameter": "b_t96gse_thb_xyz", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-10-05T23:59:00Z", "xmlid": "b_t96gse_thb_xyz(1)"}, "b_t96gse_thb_xyz2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gse_thb_xyz(2)", "dataset": "thb-t96-model", "index1": "2", "is_public": "True", "name": "bz", "parameter": "b_t96gse_thb_xyz", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-10-05T23:59:00Z", "xmlid": "b_t96gse_thb_xyz(2)"}, "dataset": "thb-t96-model", "is_public": "True", "name": "b_gse", "predefined": "1", "size": "3", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-10-05T23:59:00Z", "template": "b_t96gse_##ORBIT##", "units": "nT", "xmlid": "b_t96gse_thb_xyz"}, "b_t96gsm_thb_xyz": {"__spz_name__": "b_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_t96gsm_thb_xyz", "b_t96gsm_thb_xyz0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gsm_thb_xyz(0)", "dataset": "thb-t96-model", "index1": "0", "is_public": "True", "name": "bx", "parameter": "b_t96gsm_thb_xyz", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-10-05T23:59:00Z", "xmlid": "b_t96gsm_thb_xyz(0)"}, "b_t96gsm_thb_xyz1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gsm_thb_xyz(1)", "dataset": "thb-t96-model", "index1": "1", "is_public": "True", "name": "by", "parameter": "b_t96gsm_thb_xyz", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-10-05T23:59:00Z", "xmlid": "b_t96gsm_thb_xyz(1)"}, "b_t96gsm_thb_xyz2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gsm_thb_xyz(2)", "dataset": "thb-t96-model", "index1": "2", "is_public": "True", "name": "bz", "parameter": "b_t96gsm_thb_xyz", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-10-05T23:59:00Z", "xmlid": "b_t96gsm_thb_xyz(2)"}, "dataset": "thb-t96-model", "is_public": "True", "name": "b_gsm", "predefined": "1", "size": "3", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-10-05T23:59:00Z", "template": "b_t96gsm_##ORBIT##", "units": "nT", "xmlid": "b_t96gsm_thb_xyz"}, "b_t96tot_thb_xyz": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_t96tot_thb_xyz", "dataset": "thb-t96-model", "is_public": "True", "name": "|b|", "predefined": "1", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-10-05T23:59:00Z", "template": "b_t96tot_##ORBIT##", "units": "nT", "xmlid": "b_t96tot_thb_xyz"}, "dataSource": "IRAP", "desc": "Tsyganenko96 geomagnetospheric magnetic field model
Sampling: 1M
Provider: IRAP", "is_public": "True", "lastModificationDate": "2024-10-06T04:02:22Z", "lastUpdate": "2024-10-06T04:02:22Z", "measurement_type": "MagneticField", "name": "T96 field model", "processing_level": "Calibrated", "sampling": "1M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/THEMIS/B/Models/thb-t96-model", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-10-05T23:59:00Z", "target": "Earth", "xmlid": "thb-t96-model"}, "xmlid": "ThemisB_models"}, "ESA": {"__spz_name__": "ESA", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "ThemisB_esa", "att": "auto/ThemisB_esa", "desc": "ElectrostaticAnalyser", "is_public": "True", "name": "ESA", "thb_esa_l2e": {"__spz_name__": "electron full mode", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "thb-esa-l2e", "att": "auto/thb-esa-l2e", "dataSource": "IRAP_THEMIS", "desc": "
MinSampling: 96.27S; MaxSampling: 551.0S
Provider: IRAP_THEMIS", "is_public": "True", "lastModificationDate": "2024-10-07T04:00:24Z", "lastUpdate": "2024-10-07T04:00:23Z", "maxSampling": "551.0S", "measurement_type": "ThermalPlasma", "name": "electron full mode", "processing_level": "Calibrated", "sampling": "96.27S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/THEMIS/B/ESA/thb-esa-l2e", "start_date": "2007-03-07T17:55:08Z", "stop_date": "2024-10-03T19:11:08Z", "target": "Earth.Magnetosphere", "thb_el_sp": {"__spz_name__": "el omni eflux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "thb_el_sp", "dataset": "thb-esa-l2e", "display_type": "spectrogram", "is_public": "True", "name": "el omni eflux", "start_date": "2007-03-07T17:55:08Z", "stop_date": "2024-10-03T19:11:08Z", "ucd": "phys.flux;phys.energy;phys.electron", "units": "eV/cm\u00b2-s-sr-eV", "xmlid": "thb_el_sp"}, "thb_n_e": {"__spz_name__": "el density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "thb_n_e", "dataset": "thb-esa-l2e", "description": "Ion Density", "display_type": "timeseries", "is_public": "True", "name": "el density", "start_date": "2007-03-07T17:55:08Z", "stop_date": "2024-10-03T19:11:08Z", "ucd": "phys.density;phys.electron", "units": "cm-3", "xmlid": "thb_n_e"}, "thb_t_e": {"__spz_name__": "el temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "thb_t_e", "dataset": "thb-esa-l2e", "description": "Temperature", "display_type": "timeseries", "is_public": "True", "name": "el temperature", "size": "3", "start_date": "2007-03-07T17:55:08Z", "stop_date": "2024-10-03T19:11:08Z", "thb_t_e0": {"__spz_name__": "t_perp1", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thb_t_e(0)", "dataset": "thb-esa-l2e", "index1": "1", "is_public": "True", "name": "t_perp1", "parameter": "thb_t_e", "start_date": "2007-03-07T17:55:08Z", "stop_date": "2024-10-03T19:11:08Z", "xmlid": "thb_t_e(0)"}, "thb_t_e1": {"__spz_name__": "t_perp2", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thb_t_e(1)", "dataset": "thb-esa-l2e", "index1": "2", "is_public": "True", "name": "t_perp2", "parameter": "thb_t_e", "start_date": "2007-03-07T17:55:08Z", "stop_date": "2024-10-03T19:11:08Z", "xmlid": "thb_t_e(1)"}, "thb_t_e2": {"__spz_name__": "t_para", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thb_t_e(2)", "dataset": "thb-esa-l2e", "index1": "0", "is_public": "True", "name": "t_para", "parameter": "thb_t_e", "start_date": "2007-03-07T17:55:08Z", "stop_date": "2024-10-03T19:11:08Z", "xmlid": "thb_t_e(2)"}, "ucd": "phys.temperature;phys.electron", "units": "eV", "xmlid": "thb_t_e"}, "thb_v_e": {"__spz_name__": "el v_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "thb_v_e", "dataset": "thb-esa-l2e", "display_type": "timeseries", "is_public": "True", "name": "el v_gse", "size": "3", "start_date": "2007-03-07T17:55:08Z", "stop_date": "2024-10-03T19:11:08Z", "thb_v_e0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thb_v_e(0)", "dataset": "thb-esa-l2e", "index1": "0", "is_public": "True", "name": "vx", "parameter": "thb_v_e", "start_date": "2007-03-07T17:55:08Z", "stop_date": "2024-10-03T19:11:08Z", "xmlid": "thb_v_e(0)"}, "thb_v_e1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thb_v_e(1)", "dataset": "thb-esa-l2e", "index1": "1", "is_public": "True", "name": "vy", "parameter": "thb_v_e", "start_date": "2007-03-07T17:55:08Z", "stop_date": "2024-10-03T19:11:08Z", "xmlid": "thb_v_e(1)"}, "thb_v_e2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thb_v_e(2)", "dataset": "thb-esa-l2e", "index1": "2", "is_public": "True", "name": "vz", "parameter": "thb_v_e", "start_date": "2007-03-07T17:55:08Z", "stop_date": "2024-10-03T19:11:08Z", "xmlid": "thb_v_e(2)"}, "ucd": "phys.veloc;phys.electron", "units": "km/s", "xmlid": "thb_v_e"}, "xmlid": "thb-esa-l2e"}, "thb_esa_l2i": {"__spz_name__": "ion full mode", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "thb-esa-l2i", "att": "auto/thb-esa-l2i", "dataSource": "IRAP_THEMIS", "desc": "
MinSampling: 96.27S; MaxSampling: 551.0S
Provider: IRAP_THEMIS", "is_public": "True", "lastModificationDate": "2024-10-07T04:00:24Z", "lastUpdate": "2024-10-07T04:00:23Z", "maxSampling": "551.0S", "measurement_type": "ThermalPlasma", "name": "ion full mode", "processing_level": "Calibrated", "sampling": "96.27S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/THEMIS/B/ESA/thb-esa-l2i", "start_date": "2007-03-07T17:55:08Z", "stop_date": "2024-10-03T19:11:04Z", "target": "Earth.Magnetosphere", "thb_ion_sp": {"__spz_name__": "ion eflux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "thb_ion_sp", "dataset": "thb-esa-l2i", "display_type": "spectrogram", "is_public": "True", "name": "ion eflux", "start_date": "2007-03-07T17:55:08Z", "stop_date": "2024-10-03T19:11:04Z", "ucd": "phys.flux;phys.energy;phys.atmol.ionStage", "units": "eV/cm\u00b2-s-sr-eV", "xmlid": "thb_ion_sp"}, "thb_n_i": {"__spz_name__": "ion density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "thb_n_i", "dataset": "thb-esa-l2i", "description": "Ion Density", "display_type": "timeseries", "is_public": "True", "name": "ion density", "start_date": "2007-03-07T17:55:08Z", "stop_date": "2024-10-03T19:11:04Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm-3", "xmlid": "thb_n_i"}, "thb_t_i": {"__spz_name__": "ion temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "thb_t_i", "dataset": "thb-esa-l2i", "description": "Temperature", "display_type": "timeseries", "is_public": "True", "name": "ion temperature", "size": "3", "start_date": "2007-03-07T17:55:08Z", "stop_date": "2024-10-03T19:11:04Z", "thb_t_i0": {"__spz_name__": "t_perp1", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thb_t_i(0)", "dataset": "thb-esa-l2i", "index1": "1", "is_public": "True", "name": "t_perp1", "parameter": "thb_t_i", "start_date": "2007-03-07T17:55:08Z", "stop_date": "2024-10-03T19:11:04Z", "xmlid": "thb_t_i(0)"}, "thb_t_i1": {"__spz_name__": "t_perp2", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thb_t_i(1)", "dataset": "thb-esa-l2i", "index1": "2", "is_public": "True", "name": "t_perp2", "parameter": "thb_t_i", "start_date": "2007-03-07T17:55:08Z", "stop_date": "2024-10-03T19:11:04Z", "xmlid": "thb_t_i(1)"}, "thb_t_i2": {"__spz_name__": "t_para", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thb_t_i(2)", "dataset": "thb-esa-l2i", "index1": "0", "is_public": "True", "name": "t_para", "parameter": "thb_t_i", "start_date": "2007-03-07T17:55:08Z", "stop_date": "2024-10-03T19:11:04Z", "xmlid": "thb_t_i(2)"}, "ucd": "phys.temperature;phys.atmol.ionStage", "units": "eV", "xmlid": "thb_t_i"}, "thb_v_i": {"__spz_name__": "ion v_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "thb_v_i", "dataset": "thb-esa-l2i", "display_type": "timeseries", "is_public": "True", "name": "ion v_gse", "size": "3", "start_date": "2007-03-07T17:55:08Z", "stop_date": "2024-10-03T19:11:04Z", "thb_v_i0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thb_v_i(0)", "dataset": "thb-esa-l2i", "index1": "0", "is_public": "True", "name": "vx", "parameter": "thb_v_i", "start_date": "2007-03-07T17:55:08Z", "stop_date": "2024-10-03T19:11:04Z", "xmlid": "thb_v_i(0)"}, "thb_v_i1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thb_v_i(1)", "dataset": "thb-esa-l2i", "index1": "1", "is_public": "True", "name": "vy", "parameter": "thb_v_i", "start_date": "2007-03-07T17:55:08Z", "stop_date": "2024-10-03T19:11:04Z", "xmlid": "thb_v_i(1)"}, "thb_v_i2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thb_v_i(2)", "dataset": "thb-esa-l2i", "index1": "2", "is_public": "True", "name": "vz", "parameter": "thb_v_i", "start_date": "2007-03-07T17:55:08Z", "stop_date": "2024-10-03T19:11:04Z", "xmlid": "thb_v_i(2)"}, "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "thb_v_i"}, "thb_v_i_tot": {"__spz_name__": "ion |v|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "thb_v_i_tot", "dataset": "thb-esa-l2i", "description": "Module of Velocity", "display_type": "timeseries", "is_public": "True", "name": "ion |v|", "start_date": "2007-03-07T17:55:08Z", "stop_date": "2024-10-03T19:11:04Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "thb_v_i_tot"}, "xmlid": "thb-esa-l2i"}, "thb_peem_all": {"__spz_name__": "electron onboard moments", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "thb-peem-all", "att": "auto/thb-peem-all", "dataSource": "IRAP_THEMIS", "desc": "
Sampling: 3S
Provider: IRAP_THEMIS", "is_public": "True", "lastModificationDate": "2024-10-07T04:01:28Z", "lastUpdate": "2024-10-07T04:01:27Z", "measurement_type": "ThermalPlasma", "name": "electron onboard moments", "processing_level": "Calibrated", "sampling": "3S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/THEMIS/B/ESA/thb-peem-all", "start_date": "2007-08-10T00:02:05Z", "stop_date": "2024-10-03T19:12:26Z", "target": "Earth.Magnetosphere", "thb_n_peem": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "thb_n_peem", "dataset": "thb-peem-all", "description": "Electron Density", "display_type": "timeseries", "is_public": "True", "name": "density", "start_date": "2007-08-10T00:02:05Z", "stop_date": "2024-10-03T19:12:26Z", "ucd": "phys.density;phys.electron", "units": "cm-3", "xmlid": "thb_n_peem"}, "thb_t_peem": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "thb_t_peem", "dataset": "thb-peem-all", "description": "Temperature", "display_type": "timeseries", "is_public": "True", "name": "temperature", "size": "3", "start_date": "2007-08-10T00:02:05Z", "stop_date": "2024-10-03T19:12:26Z", "thb_t_peem0": {"__spz_name__": "t_perp1", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thb_t_peem(0)", "dataset": "thb-peem-all", "index1": "1", "is_public": "True", "name": "t_perp1", "parameter": "thb_t_peem", "start_date": "2007-08-10T00:02:05Z", "stop_date": "2024-10-03T19:12:26Z", "xmlid": "thb_t_peem(0)"}, "thb_t_peem1": {"__spz_name__": "t_perp2", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thb_t_peem(1)", "dataset": "thb-peem-all", "index1": "2", "is_public": "True", "name": "t_perp2", "parameter": "thb_t_peem", "start_date": "2007-08-10T00:02:05Z", "stop_date": "2024-10-03T19:12:26Z", "xmlid": "thb_t_peem(1)"}, "thb_t_peem2": {"__spz_name__": "t_para", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thb_t_peem(2)", "dataset": "thb-peem-all", "index1": "0", "is_public": "True", "name": "t_para", "parameter": "thb_t_peem", "start_date": "2007-08-10T00:02:05Z", "stop_date": "2024-10-03T19:12:26Z", "xmlid": "thb_t_peem(2)"}, "ucd": "phys.temperature;phys.electron", "units": "eV", "xmlid": "thb_t_peem"}, "xmlid": "thb-peem-all"}, "thb_peim_all": {"__spz_name__": "ion onboard moments", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "thb-peim-all", "att": "auto/thb-peim-all", "dataSource": "IRAP_THEMIS", "desc": "
Sampling: 3S
Provider: IRAP_THEMIS", "is_public": "True", "lastModificationDate": "2024-10-07T04:01:28Z", "lastUpdate": "2024-10-07T04:01:26Z", "measurement_type": "ThermalPlasma", "name": "ion onboard moments", "processing_level": "Calibrated", "sampling": "3S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/THEMIS/B/ESA/thb-peim-all", "start_date": "2007-08-10T00:02:05Z", "stop_date": "2024-10-03T19:12:26Z", "target": "Earth.Magnetosphere", "thb_n_peim": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "thb_n_peim", "dataset": "thb-peim-all", "description": "Ion Density", "display_type": "timeseries", "is_public": "True", "name": "density", "start_date": "2007-08-10T00:02:05Z", "stop_date": "2024-10-03T19:12:26Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm-3", "xmlid": "thb_n_peim"}, "thb_t_peim": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "thb_t_peim", "dataset": "thb-peim-all", "description": "Temperature", "display_type": "timeseries", "is_public": "True", "name": "temperature", "size": "3", "start_date": "2007-08-10T00:02:05Z", "stop_date": "2024-10-03T19:12:26Z", "thb_t_peim0": {"__spz_name__": "t_perp1", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thb_t_peim(0)", "dataset": "thb-peim-all", "index1": "1", "is_public": "True", "name": "t_perp1", "parameter": "thb_t_peim", "start_date": "2007-08-10T00:02:05Z", "stop_date": "2024-10-03T19:12:26Z", "xmlid": "thb_t_peim(0)"}, "thb_t_peim1": {"__spz_name__": "t_perp2", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thb_t_peim(1)", "dataset": "thb-peim-all", "index1": "2", "is_public": "True", "name": "t_perp2", "parameter": "thb_t_peim", "start_date": "2007-08-10T00:02:05Z", "stop_date": "2024-10-03T19:12:26Z", "xmlid": "thb_t_peim(1)"}, "thb_t_peim2": {"__spz_name__": "t_para", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thb_t_peim(2)", "dataset": "thb-peim-all", "index1": "0", "is_public": "True", "name": "t_para", "parameter": "thb_t_peim", "start_date": "2007-08-10T00:02:05Z", "stop_date": "2024-10-03T19:12:26Z", "xmlid": "thb_t_peim(2)"}, "ucd": "phys.temperature;phys.atmol.ionStage", "units": "eV", "xmlid": "thb_t_peim"}, "thb_v_peim": {"__spz_name__": "v_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "thb_v_peim", "dataset": "thb-peim-all", "display_type": "timeseries", "is_public": "True", "name": "v_gse", "size": "3", "start_date": "2007-08-10T00:02:05Z", "stop_date": "2024-10-03T19:12:26Z", "thb_v_peim0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thb_v_peim(0)", "dataset": "thb-peim-all", "index1": "0", "is_public": "True", "name": "vx", "parameter": "thb_v_peim", "start_date": "2007-08-10T00:02:05Z", "stop_date": "2024-10-03T19:12:26Z", "xmlid": "thb_v_peim(0)"}, "thb_v_peim1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thb_v_peim(1)", "dataset": "thb-peim-all", "index1": "1", "is_public": "True", "name": "vy", "parameter": "thb_v_peim", "start_date": "2007-08-10T00:02:05Z", "stop_date": "2024-10-03T19:12:26Z", "xmlid": "thb_v_peim(1)"}, "thb_v_peim2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thb_v_peim(2)", "dataset": "thb-peim-all", "index1": "2", "is_public": "True", "name": "vz", "parameter": "thb_v_peim", "start_date": "2007-08-10T00:02:05Z", "stop_date": "2024-10-03T19:12:26Z", "xmlid": "thb_v_peim(2)"}, "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "thb_v_peim"}, "thb_v_peim_tot": {"__spz_name__": "|v|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "thb_v_peim_tot", "dataset": "thb-peim-all", "description": "Module of Velocity", "display_type": "timeseries", "is_public": "True", "name": "|v|", "start_date": "2007-08-10T00:02:05Z", "stop_date": "2024-10-03T19:12:26Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "thb_v_peim_tot"}, "xmlid": "thb-peim-all"}, "thb_pot_mom": {"__spz_name__": "onboard moments : potential", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "thb-pot-mom", "att": "auto/thb-pot-mom", "dataSource": "IRAP_THEMIS", "desc": "S/c potential from onboard moments
Sampling: 3S
Provider: IRAP_THEMIS", "is_public": "True", "lastModificationDate": "2024-10-07T04:01:28Z", "lastUpdate": "2024-10-07T04:01:26Z", "measurement_type": "ThermalPlasma", "name": "onboard moments : potential", "processing_level": "Calibrated", "sampling": "3S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/THEMIS/B/ESA/thb-pot-mom", "start_date": "2007-08-10T00:02:05Z", "stop_date": "2024-10-03T19:12:26Z", "target": "Earth.Magnetosphere", "thb_pot": {"__spz_name__": "s/c pot", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "thb_pot", "dataset": "thb-pot-mom", "description": "S/C potential", "display_type": "timeseries", "is_public": "True", "name": "s/c pot", "start_date": "2007-08-10T00:02:05Z", "stop_date": "2024-10-03T19:12:26Z", "ucd": "phys.potential;phys.electField;instr.obsty", "units": "V", "xmlid": "thb_pot"}, "xmlid": "thb-pot-mom"}, "xmlid": "ThemisB_esa"}, "Ephemeris": {"__spz_name__": "Ephemeris", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "ThemisB_ephemeris", "att": "auto/ThemisB_ephemeris", "desc": "", "is_public": "True", "name": "Ephemeris", "thb_orb_all": {"__spz_name__": "orbit", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "thb-orb-all", "att": "auto/thb-orb-all", "dataSource": "IRAP_THEMIS", "desc": "
Sampling: 60S
Provider: IRAP_THEMIS", "is_public": "True", "lastModificationDate": "2024-10-06T04:02:22Z", "lastUpdate": "2024-10-06T04:02:22Z", "measurement_type": "Ephemeris", "name": "orbit", "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/THEMIS/B/Ephemeris/thb-orb-all", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-10-05T23:59:00Z", "target": "Earth.Magnetosphere", "thb_r": {"__spz_name__": "distance thb-earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "thb_r", "dataset": "thb-orb-all", "display_type": "timeseries", "is_public": "True", "name": "distance thb-earth", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-10-05T23:59:00Z", "ucd": "pos.distance", "units": "Re", "xmlid": "thb_r"}, "thb_xyz": {"__spz_name__": "xyz_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "thb_xyz", "dataset": "thb-orb-all", "description": "position in GSE coordinates", "display_type": "timeseries", "is_public": "True", "name": "xyz_gse", "size": "3", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-10-05T23:59:00Z", "thb_xyz0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thb_xyz(0)", "dataset": "thb-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "thb_xyz", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-10-05T23:59:00Z", "xmlid": "thb_xyz(0)"}, "thb_xyz1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thb_xyz(1)", "dataset": "thb-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "thb_xyz", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-10-05T23:59:00Z", "xmlid": "thb_xyz(1)"}, "thb_xyz2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thb_xyz(2)", "dataset": "thb-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "thb_xyz", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-10-05T23:59:00Z", "xmlid": "thb_xyz(2)"}, "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "Re", "xmlid": "thb_xyz"}, "thb_xyz_gsm": {"__spz_name__": "xyz_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "thb_xyz_gsm", "dataset": "thb-orb-all", "description": "position in GSM coordinates", "is_public": "True", "name": "xyz_gsm", "size": "3", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-10-05T23:59:00Z", "thb_xyz_gsm0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thb_xyz_gsm(0)", "dataset": "thb-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "thb_xyz_gsm", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-10-05T23:59:00Z", "xmlid": "thb_xyz_gsm(0)"}, "thb_xyz_gsm1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thb_xyz_gsm(1)", "dataset": "thb-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "thb_xyz_gsm", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-10-05T23:59:00Z", "xmlid": "thb_xyz_gsm(1)"}, "thb_xyz_gsm2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thb_xyz_gsm(2)", "dataset": "thb-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "thb_xyz_gsm", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-10-05T23:59:00Z", "xmlid": "thb_xyz_gsm(2)"}, "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "Re", "xmlid": "thb_xyz_gsm"}, "xmlid": "thb-orb-all"}, "xmlid": "ThemisB_ephemeris"}, "FGM": {"__spz_name__": "FGM", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "ThemisB_fgm", "att": "auto/ThemisB_fgm", "desc": "Tri-axial Fluxgate Magnetometer
Magnetometer", "is_public": "True", "name": "FGM", "thb_fgm_l": {"__spz_name__": "0.25 sec (low)", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "thb-fgm-l", "att": "auto/thb-fgm-l", "dataSource": "IRAP_THEMIS", "desc": "
Sampling: 0.25S
Provider: IRAP_THEMIS", "is_public": "True", "lastModificationDate": "2024-10-07T04:03:54Z", "lastUpdate": "2024-10-07T04:03:53Z", "measurement_type": "MagneticField", "name": "0.25 sec (low)", "processing_level": "Calibrated", "sampling": "0.25S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/THEMIS/B/FGM/thb-fgm-l", "start_date": "2007-02-24T04:42:44Z", "stop_date": "2024-10-03T19:11:54Z", "target": "Earth.Magnetosphere", "thb_bl": {"__spz_name__": "b_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "thb_bl", "dataset": "thb-fgm-l", "description": "Magnetic Field", "is_public": "True", "name": "b_gse", "size": "3", "start_date": "2007-02-24T04:42:44Z", "stop_date": "2024-10-03T19:11:54Z", "thb_bl0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thb_bl(0)", "dataset": "thb-fgm-l", "index1": "0", "is_public": "True", "name": "bx", "parameter": "thb_bl", "start_date": "2007-02-24T04:42:44Z", "stop_date": "2024-10-03T19:11:54Z", "xmlid": "thb_bl(0)"}, "thb_bl1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thb_bl(1)", "dataset": "thb-fgm-l", "index1": "1", "is_public": "True", "name": "by", "parameter": "thb_bl", "start_date": "2007-02-24T04:42:44Z", "stop_date": "2024-10-03T19:11:54Z", "xmlid": "thb_bl(1)"}, "thb_bl2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thb_bl(2)", "dataset": "thb-fgm-l", "index1": "2", "is_public": "True", "name": "bz", "parameter": "thb_bl", "start_date": "2007-02-24T04:42:44Z", "stop_date": "2024-10-03T19:11:54Z", "xmlid": "thb_bl(2)"}, "units": "nT", "xmlid": "thb_bl"}, "thb_bl_gsm": {"__spz_name__": "b_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "thb_bl_gsm", "dataset": "thb-fgm-l", "description": "Magnetic Field", "display_type": "timeseries", "is_public": "True", "name": "b_gsm", "size": "3", "start_date": "2007-02-24T04:42:44Z", "stop_date": "2024-10-03T19:11:54Z", "thb_bl_gsm0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thb_bl_gsm(0)", "dataset": "thb-fgm-l", "index1": "0", "is_public": "True", "name": "bx", "parameter": "thb_bl_gsm", "start_date": "2007-02-24T04:42:44Z", "stop_date": "2024-10-03T19:11:54Z", "xmlid": "thb_bl_gsm(0)"}, "thb_bl_gsm1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thb_bl_gsm(1)", "dataset": "thb-fgm-l", "index1": "1", "is_public": "True", "name": "by", "parameter": "thb_bl_gsm", "start_date": "2007-02-24T04:42:44Z", "stop_date": "2024-10-03T19:11:54Z", "xmlid": "thb_bl_gsm(1)"}, "thb_bl_gsm2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thb_bl_gsm(2)", "dataset": "thb-fgm-l", "index1": "2", "is_public": "True", "name": "bz", "parameter": "thb_bl_gsm", "start_date": "2007-02-24T04:42:44Z", "stop_date": "2024-10-03T19:11:54Z", "xmlid": "thb_bl_gsm(2)"}, "ucd": "phys.magField", "units": "nT", "xmlid": "thb_bl_gsm"}, "thb_bl_tot": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "thb_bl_tot", "dataset": "thb-fgm-l", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "2007-02-24T04:42:44Z", "stop_date": "2024-10-03T19:11:54Z", "ucd": "phys.magField", "units": "nT", "xmlid": "thb_bl_tot"}, "xmlid": "thb-fgm-l"}, "thb_fgm_s": {"__spz_name__": "3 sec (spin)", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "thb-fgm-s", "att": "auto/thb-fgm-s", "dataSource": "IRAP_THEMIS", "desc": "
Sampling: 3S
Provider: IRAP_THEMIS", "is_public": "True", "lastModificationDate": "2024-10-07T04:03:55Z", "lastUpdate": "2024-10-07T04:03:55Z", "measurement_type": "MagneticField", "name": "3 sec (spin)", "processing_level": "Calibrated", "sampling": "3S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/THEMIS/B/FGM/thb-fgm-s", "start_date": "2007-02-26T23:26:57Z", "stop_date": "2024-10-04T00:06:50Z", "target": "Earth.Magnetosphere", "thb_bs": {"__spz_name__": "b_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "thb_bs", "dataset": "thb-fgm-s", "description": "Magnetic Field", "display_type": "timeseries", "is_public": "True", "name": "b_gse", "size": "3", "start_date": "2007-02-26T23:26:57Z", "stop_date": "2024-10-04T00:06:50Z", "thb_bs0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thb_bs(0)", "dataset": "thb-fgm-s", "index1": "0", "is_public": "True", "name": "bx", "parameter": "thb_bs", "start_date": "2007-02-26T23:26:57Z", "stop_date": "2024-10-04T00:06:50Z", "xmlid": "thb_bs(0)"}, "thb_bs1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thb_bs(1)", "dataset": "thb-fgm-s", "index1": "1", "is_public": "True", "name": "by", "parameter": "thb_bs", "start_date": "2007-02-26T23:26:57Z", "stop_date": "2024-10-04T00:06:50Z", "xmlid": "thb_bs(1)"}, "thb_bs2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thb_bs(2)", "dataset": "thb-fgm-s", "index1": "2", "is_public": "True", "name": "bz", "parameter": "thb_bs", "start_date": "2007-02-26T23:26:57Z", "stop_date": "2024-10-04T00:06:50Z", "xmlid": "thb_bs(2)"}, "ucd": "phys.magField", "units": "nT", "xmlid": "thb_bs"}, "thb_bs_gsm": {"__spz_name__": "b_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "thb_bs_gsm", "dataset": "thb-fgm-s", "description": "Magnetic Field", "display_type": "timeseries", "is_public": "True", "name": "b_gsm", "size": "3", "start_date": "2007-02-26T23:26:57Z", "stop_date": "2024-10-04T00:06:50Z", "thb_bs_gsm0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thb_bs_gsm(0)", "dataset": "thb-fgm-s", "index1": "0", "is_public": "True", "name": "bx", "parameter": "thb_bs_gsm", "start_date": "2007-02-26T23:26:57Z", "stop_date": "2024-10-04T00:06:50Z", "xmlid": "thb_bs_gsm(0)"}, "thb_bs_gsm1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thb_bs_gsm(1)", "dataset": "thb-fgm-s", "index1": "1", "is_public": "True", "name": "by", "parameter": "thb_bs_gsm", "start_date": "2007-02-26T23:26:57Z", "stop_date": "2024-10-04T00:06:50Z", "xmlid": "thb_bs_gsm(1)"}, "thb_bs_gsm2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thb_bs_gsm(2)", "dataset": "thb-fgm-s", "index1": "2", "is_public": "True", "name": "bz", "parameter": "thb_bs_gsm", "start_date": "2007-02-26T23:26:57Z", "stop_date": "2024-10-04T00:06:50Z", "xmlid": "thb_bs_gsm(2)"}, "ucd": "phys.magField", "units": "nT", "xmlid": "thb_bs_gsm"}, "thb_bs_tot": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "thb_bs_tot", "dataset": "thb-fgm-s", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "2007-02-26T23:26:57Z", "stop_date": "2024-10-04T00:06:50Z", "ucd": "phys.magField", "units": "nT", "xmlid": "thb_bs_tot"}, "xmlid": "thb-fgm-s"}, "xmlid": "ThemisB_fgm"}, "__spz_name__": "THEMIS-B", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "ThemisB", "att": "auto/ThemisB", "desc": "Explorer 86
2007-02-15T00:00:00
Initial phase : apogee 15.4Re : 2007-02-15 - 2007-09-15
Orbit Placement Phase: 2007-09-15 - 2007-12-15
Full constellation phase: 1.3 x 30 Re : 2007-12-15 - 2009-09-30
ARTEMIS: Translunar Injection Phase: complex orbits, deep tail and solar wind : 2009-10-01 \u2013 2010-10-01
ARTEMIS: Lunar Lissajous: orbiting around lunar L1 and L2 Lagrangian points : 2010-10-01 \u2013 2011-04-01
ARTEMIS: Lunar Orbit Phase: Equatorial orbit; 100 km x 19,000 km altitude, 26 hours period, 500 km - 5 Re probe separation : 2011-07-01 \u2013 present", "is_public": "True", "name": "THEMIS-B", "target": "Earth.Magnetosphere", "xmlid": "ThemisB"}, "THEMIS_C": {"Analytical_Models": {"__spz_name__": "Analytical Models", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "ThemisC_models", "att": "auto/ThemisC_models", "desc": "", "is_public": "True", "name": "Analytical Models", "thc_msph_models": {"PriorID": "thc-orb-all", "__spz_name__": "distance to neutral sheet", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "thc-msph-models", "att": "auto/thc-msph-models", "dataSource": "IRAP", "desc": "Distance to model neutral sheet
Sampling: 1M
Provider: IRAP", "dz_fairfield70_thc_xyz": {"__spz_name__": "dZ Fairfield70", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "dz_fairfield70_thc_xyz", "dataset": "thc-msph-models", "description": "Distance (Re) from s/c location to Fairfield1970 neutral sheet position. Depends on spacecraft location in SM coordinates and dipole tilt angle. Valid for Ysm less than 15 Re.", "is_public": "True", "name": "dZ Fairfield70", "predefined": "1", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-10-06T23:59:00Z", "template": "dz_fairfield70_##ORBIT##", "units": "Re", "xmlid": "dz_fairfield70_thc_xyz"}, "dz_fairfield80_thc_xyz": {"__spz_name__": "dZ Fairfield80", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "dz_fairfield80_thc_xyz", "dataset": "thc-msph-models", "description": "Distance (Re) from s/c location to Fairfield1980 neutral sheet position. Depends on spacecraft location in SM coordinates and dipole tilt angle.", "is_public": "True", "name": "dZ Fairfield80", "predefined": "1", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-10-06T23:59:00Z", "template": "dz_fairfield80_##ORBIT##", "units": "Re", "xmlid": "dz_fairfield80_thc_xyz"}, "is_public": "True", "lastModificationDate": "2024-10-07T04:02:33Z", "lastUpdate": "2024-10-07T04:02:33Z", "measurement_type": "Ephemeris", "name": "distance to neutral sheet", "processing_level": "Calibrated", "sampling": "1M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/THEMIS/C/Models/thc-msph-models", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-10-06T23:59:00Z", "target": "Earth", "xmlid": "thc-msph-models"}, "thc_t96_model": {"PriorID": "thc-orb-all", "__spz_name__": "T96 field model", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "thc-t96-model", "att": "auto/thc-t96-model", "b_t96gse_thc_xyz": {"__spz_name__": "b_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_t96gse_thc_xyz", "b_t96gse_thc_xyz0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gse_thc_xyz(0)", "dataset": "thc-t96-model", "index1": "0", "is_public": "True", "name": "bx", "parameter": "b_t96gse_thc_xyz", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-10-06T23:59:00Z", "xmlid": "b_t96gse_thc_xyz(0)"}, "b_t96gse_thc_xyz1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gse_thc_xyz(1)", "dataset": "thc-t96-model", "index1": "1", "is_public": "True", "name": "by", "parameter": "b_t96gse_thc_xyz", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-10-06T23:59:00Z", "xmlid": "b_t96gse_thc_xyz(1)"}, "b_t96gse_thc_xyz2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gse_thc_xyz(2)", "dataset": "thc-t96-model", "index1": "2", "is_public": "True", "name": "bz", "parameter": "b_t96gse_thc_xyz", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-10-06T23:59:00Z", "xmlid": "b_t96gse_thc_xyz(2)"}, "dataset": "thc-t96-model", "is_public": "True", "name": "b_gse", "predefined": "1", "size": "3", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-10-06T23:59:00Z", "template": "b_t96gse_##ORBIT##", "units": "nT", "xmlid": "b_t96gse_thc_xyz"}, "b_t96gsm_thc_xyz": {"__spz_name__": "b_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_t96gsm_thc_xyz", "b_t96gsm_thc_xyz0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gsm_thc_xyz(0)", "dataset": "thc-t96-model", "index1": "0", "is_public": "True", "name": "bx", "parameter": "b_t96gsm_thc_xyz", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-10-06T23:59:00Z", "xmlid": "b_t96gsm_thc_xyz(0)"}, "b_t96gsm_thc_xyz1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gsm_thc_xyz(1)", "dataset": "thc-t96-model", "index1": "1", "is_public": "True", "name": "by", "parameter": "b_t96gsm_thc_xyz", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-10-06T23:59:00Z", "xmlid": "b_t96gsm_thc_xyz(1)"}, "b_t96gsm_thc_xyz2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gsm_thc_xyz(2)", "dataset": "thc-t96-model", "index1": "2", "is_public": "True", "name": "bz", "parameter": "b_t96gsm_thc_xyz", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-10-06T23:59:00Z", "xmlid": "b_t96gsm_thc_xyz(2)"}, "dataset": "thc-t96-model", "is_public": "True", "name": "b_gsm", "predefined": "1", "size": "3", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-10-06T23:59:00Z", "template": "b_t96gsm_##ORBIT##", "units": "nT", "xmlid": "b_t96gsm_thc_xyz"}, "b_t96tot_thc_xyz": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_t96tot_thc_xyz", "dataset": "thc-t96-model", "is_public": "True", "name": "|b|", "predefined": "1", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-10-06T23:59:00Z", "template": "b_t96tot_##ORBIT##", "units": "nT", "xmlid": "b_t96tot_thc_xyz"}, "dataSource": "IRAP", "desc": "Tsyganenko96 geomagnetospheric magnetic field model
Sampling: 1M
Provider: IRAP", "is_public": "True", "lastModificationDate": "2024-10-07T04:02:33Z", "lastUpdate": "2024-10-07T04:02:33Z", "measurement_type": "MagneticField", "name": "T96 field model", "processing_level": "Calibrated", "sampling": "1M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/THEMIS/C/Models/thc-t96-model", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-10-06T23:59:00Z", "target": "Earth", "xmlid": "thc-t96-model"}, "xmlid": "ThemisC_models"}, "ESA": {"__spz_name__": "ESA", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "ThemisC_esa", "att": "auto/ThemisC_esa", "desc": "ElectrostaticAnalyser", "is_public": "True", "name": "ESA", "thc_esa_l2e": {"__spz_name__": "electron full mode", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "thc-esa-l2e", "att": "auto/thc-esa-l2e", "dataSource": "IRAP_THEMIS", "desc": "
MinSampling: 96.27S; MaxSampling: 551.0S
Provider: IRAP_THEMIS", "is_public": "True", "lastModificationDate": "2024-10-07T04:00:30Z", "lastUpdate": "2024-10-07T04:00:29Z", "maxSampling": "551.0S", "measurement_type": "ThermalPlasma", "name": "electron full mode", "processing_level": "Calibrated", "sampling": "96.27S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/THEMIS/C/ESA/thc-esa-l2e", "start_date": "2007-03-07T15:58:39Z", "stop_date": "2024-10-04T16:33:35Z", "target": "Earth.Magnetosphere", "thc_el_sp": {"__spz_name__": "el omni eflux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "thc_el_sp", "dataset": "thc-esa-l2e", "display_type": "spectrogram", "is_public": "True", "name": "el omni eflux", "start_date": "2007-03-07T15:58:39Z", "stop_date": "2024-10-04T16:33:35Z", "ucd": "phys.flux;phys.energy;phys.electron", "units": "eV/cm\u00b2-s-sr-eV", "xmlid": "thc_el_sp"}, "thc_n_e": {"__spz_name__": "el density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "thc_n_e", "dataset": "thc-esa-l2e", "description": "Ion Density", "display_type": "timeseries", "is_public": "True", "name": "el density", "start_date": "2007-03-07T15:58:39Z", "stop_date": "2024-10-04T16:33:35Z", "ucd": "phys.density;phys.electron", "units": "cm-3", "xmlid": "thc_n_e"}, "thc_t_e": {"__spz_name__": "e temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "thc_t_e", "dataset": "thc-esa-l2e", "description": "Temperature", "display_type": "timeseries", "is_public": "True", "name": "e temperature", "size": "3", "start_date": "2007-03-07T15:58:39Z", "stop_date": "2024-10-04T16:33:35Z", "thc_t_e0": {"__spz_name__": "t_perp1", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thc_t_e(0)", "dataset": "thc-esa-l2e", "index1": "1", "is_public": "True", "name": "t_perp1", "parameter": "thc_t_e", "start_date": "2007-03-07T15:58:39Z", "stop_date": "2024-10-04T16:33:35Z", "xmlid": "thc_t_e(0)"}, "thc_t_e1": {"__spz_name__": "t_perp2", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thc_t_e(1)", "dataset": "thc-esa-l2e", "index1": "2", "is_public": "True", "name": "t_perp2", "parameter": "thc_t_e", "start_date": "2007-03-07T15:58:39Z", "stop_date": "2024-10-04T16:33:35Z", "xmlid": "thc_t_e(1)"}, "thc_t_e2": {"__spz_name__": "t_para", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thc_t_e(2)", "dataset": "thc-esa-l2e", "index1": "0", "is_public": "True", "name": "t_para", "parameter": "thc_t_e", "start_date": "2007-03-07T15:58:39Z", "stop_date": "2024-10-04T16:33:35Z", "xmlid": "thc_t_e(2)"}, "ucd": "phys.temperature;phys.electron", "units": "eV", "xmlid": "thc_t_e"}, "thc_v_e": {"__spz_name__": "el v_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "thc_v_e", "dataset": "thc-esa-l2e", "display_type": "timeseries", "is_public": "True", "name": "el v_gse", "size": "3", "start_date": "2007-03-07T15:58:39Z", "stop_date": "2024-10-04T16:33:35Z", "thc_v_e0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thc_v_e(0)", "dataset": "thc-esa-l2e", "index1": "0", "is_public": "True", "name": "vx", "parameter": "thc_v_e", "start_date": "2007-03-07T15:58:39Z", "stop_date": "2024-10-04T16:33:35Z", "xmlid": "thc_v_e(0)"}, "thc_v_e1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thc_v_e(1)", "dataset": "thc-esa-l2e", "index1": "1", "is_public": "True", "name": "vy", "parameter": "thc_v_e", "start_date": "2007-03-07T15:58:39Z", "stop_date": "2024-10-04T16:33:35Z", "xmlid": "thc_v_e(1)"}, "thc_v_e2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thc_v_e(2)", "dataset": "thc-esa-l2e", "index1": "2", "is_public": "True", "name": "vz", "parameter": "thc_v_e", "start_date": "2007-03-07T15:58:39Z", "stop_date": "2024-10-04T16:33:35Z", "xmlid": "thc_v_e(2)"}, "ucd": "phys.veloc;phys.electron", "units": "km/s", "xmlid": "thc_v_e"}, "xmlid": "thc-esa-l2e"}, "thc_esa_l2i": {"__spz_name__": "ion full mode", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "thc-esa-l2i", "att": "auto/thc-esa-l2i", "dataSource": "IRAP_THEMIS", "desc": "
MinSampling: 96.27S; MaxSampling: 551.0S
Provider: IRAP_THEMIS", "is_public": "True", "lastModificationDate": "2024-10-07T04:00:30Z", "lastUpdate": "2024-10-07T04:00:29Z", "maxSampling": "551.0S", "measurement_type": "ThermalPlasma", "name": "ion full mode", "processing_level": "Calibrated", "sampling": "96.27S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/THEMIS/C/ESA/thc-esa-l2i", "start_date": "2007-03-07T15:58:39Z", "stop_date": "2024-10-04T16:33:27Z", "target": "Earth.Magnetosphere", "thc_ion_sp": {"__spz_name__": "ion eflux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "thc_ion_sp", "dataset": "thc-esa-l2i", "display_type": "spectrogram", "is_public": "True", "name": "ion eflux", "start_date": "2007-03-07T15:58:39Z", "stop_date": "2024-10-04T16:33:27Z", "ucd": "phys.flux;phys.energy;phys.atmol.ionStage", "units": "eV/cm\u00b2-s-sr-eV", "xmlid": "thc_ion_sp"}, "thc_n_i": {"__spz_name__": "ion density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "thc_n_i", "dataset": "thc-esa-l2i", "description": "Ion Density", "display_type": "timeseries", "is_public": "True", "name": "ion density", "start_date": "2007-03-07T15:58:39Z", "stop_date": "2024-10-04T16:33:27Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm-3", "xmlid": "thc_n_i"}, "thc_t_i": {"__spz_name__": "ion temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "thc_t_i", "dataset": "thc-esa-l2i", "description": "Temperature", "display_type": "timeseries", "is_public": "True", "name": "ion temperature", "size": "3", "start_date": "2007-03-07T15:58:39Z", "stop_date": "2024-10-04T16:33:27Z", "thc_t_i0": {"__spz_name__": "t_perp1", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thc_t_i(0)", "dataset": "thc-esa-l2i", "index1": "1", "is_public": "True", "name": "t_perp1", "parameter": "thc_t_i", "start_date": "2007-03-07T15:58:39Z", "stop_date": "2024-10-04T16:33:27Z", "xmlid": "thc_t_i(0)"}, "thc_t_i1": {"__spz_name__": "t_perp2", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thc_t_i(1)", "dataset": "thc-esa-l2i", "index1": "2", "is_public": "True", "name": "t_perp2", "parameter": "thc_t_i", "start_date": "2007-03-07T15:58:39Z", "stop_date": "2024-10-04T16:33:27Z", "xmlid": "thc_t_i(1)"}, "thc_t_i2": {"__spz_name__": "t_para", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thc_t_i(2)", "dataset": "thc-esa-l2i", "index1": "0", "is_public": "True", "name": "t_para", "parameter": "thc_t_i", "start_date": "2007-03-07T15:58:39Z", "stop_date": "2024-10-04T16:33:27Z", "xmlid": "thc_t_i(2)"}, "ucd": "phys.temperature;phys.atmol.ionStage", "units": "eV", "xmlid": "thc_t_i"}, "thc_v_i": {"__spz_name__": "ion v_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "thc_v_i", "dataset": "thc-esa-l2i", "display_type": "timeseries", "is_public": "True", "name": "ion v_gse", "size": "3", "start_date": "2007-03-07T15:58:39Z", "stop_date": "2024-10-04T16:33:27Z", "thc_v_i0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thc_v_i(0)", "dataset": "thc-esa-l2i", "index1": "0", "is_public": "True", "name": "vx", "parameter": "thc_v_i", "start_date": "2007-03-07T15:58:39Z", "stop_date": "2024-10-04T16:33:27Z", "xmlid": "thc_v_i(0)"}, "thc_v_i1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thc_v_i(1)", "dataset": "thc-esa-l2i", "index1": "1", "is_public": "True", "name": "vy", "parameter": "thc_v_i", "start_date": "2007-03-07T15:58:39Z", "stop_date": "2024-10-04T16:33:27Z", "xmlid": "thc_v_i(1)"}, "thc_v_i2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thc_v_i(2)", "dataset": "thc-esa-l2i", "index1": "2", "is_public": "True", "name": "vz", "parameter": "thc_v_i", "start_date": "2007-03-07T15:58:39Z", "stop_date": "2024-10-04T16:33:27Z", "xmlid": "thc_v_i(2)"}, "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "thc_v_i"}, "thc_v_i_tot": {"__spz_name__": "ion |v|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "thc_v_i_tot", "dataset": "thc-esa-l2i", "description": "Module of Velocity", "display_type": "timeseries", "is_public": "True", "name": "ion |v|", "start_date": "2007-03-07T15:58:39Z", "stop_date": "2024-10-04T16:33:27Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "thc_v_i_tot"}, "xmlid": "thc-esa-l2i"}, "thc_peem_all": {"__spz_name__": "electron onboard moments", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "thc-peem-all", "att": "auto/thc-peem-all", "dataSource": "IRAP_THEMIS", "desc": "
Sampling: 3S
Provider: IRAP_THEMIS", "is_public": "True", "lastModificationDate": "2024-10-07T04:01:40Z", "lastUpdate": "2024-10-07T04:01:39Z", "measurement_type": "ThermalPlasma", "name": "electron onboard moments", "processing_level": "Calibrated", "sampling": "3S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/THEMIS/C/ESA/thc-peem-all", "start_date": "2007-08-10T00:00:32Z", "stop_date": "2024-10-04T16:34:49Z", "target": "Earth.Magnetosphere", "thc_n_peem": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "thc_n_peem", "dataset": "thc-peem-all", "description": "Electron Density", "display_type": "timeseries", "is_public": "True", "name": "density", "start_date": "2007-08-10T00:00:32Z", "stop_date": "2024-10-04T16:34:49Z", "ucd": "phys.density;phys.electron", "units": "cm-3", "xmlid": "thc_n_peem"}, "thc_t_peem": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "thc_t_peem", "dataset": "thc-peem-all", "description": "Temperature", "display_type": "timeseries", "is_public": "True", "name": "temperature", "size": "3", "start_date": "2007-08-10T00:00:32Z", "stop_date": "2024-10-04T16:34:49Z", "thc_t_peem0": {"__spz_name__": "t_perp1", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thc_t_peem(0)", "dataset": "thc-peem-all", "index1": "1", "is_public": "True", "name": "t_perp1", "parameter": "thc_t_peem", "start_date": "2007-08-10T00:00:32Z", "stop_date": "2024-10-04T16:34:49Z", "xmlid": "thc_t_peem(0)"}, "thc_t_peem1": {"__spz_name__": "t_perp2", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thc_t_peem(1)", "dataset": "thc-peem-all", "index1": "2", "is_public": "True", "name": "t_perp2", "parameter": "thc_t_peem", "start_date": "2007-08-10T00:00:32Z", "stop_date": "2024-10-04T16:34:49Z", "xmlid": "thc_t_peem(1)"}, "thc_t_peem2": {"__spz_name__": "t_para", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thc_t_peem(2)", "dataset": "thc-peem-all", "index1": "0", "is_public": "True", "name": "t_para", "parameter": "thc_t_peem", "start_date": "2007-08-10T00:00:32Z", "stop_date": "2024-10-04T16:34:49Z", "xmlid": "thc_t_peem(2)"}, "ucd": "phys.temperature;phys.electron", "units": "eV", "xmlid": "thc_t_peem"}, "xmlid": "thc-peem-all"}, "thc_peim_all": {"__spz_name__": "ion onboard moments", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "thc-peim-all", "att": "auto/thc-peim-all", "dataSource": "IRAP_THEMIS", "desc": "
Sampling: 3S
Provider: IRAP_THEMIS", "is_public": "True", "lastModificationDate": "2024-10-07T04:01:40Z", "lastUpdate": "2024-10-07T04:01:39Z", "measurement_type": "ThermalPlasma", "name": "ion onboard moments", "processing_level": "Calibrated", "sampling": "3S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/THEMIS/C/ESA/thc-peim-all", "start_date": "2007-08-10T00:00:32Z", "stop_date": "2024-10-04T16:34:49Z", "target": "Earth.Magnetosphere", "thc_n_peim": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "thc_n_peim", "dataset": "thc-peim-all", "description": "Ion Density", "display_type": "timeseries", "is_public": "True", "name": "density", "start_date": "2007-08-10T00:00:32Z", "stop_date": "2024-10-04T16:34:49Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm-3", "xmlid": "thc_n_peim"}, "thc_t_peim": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "thc_t_peim", "dataset": "thc-peim-all", "description": "Temperature", "display_type": "timeseries", "is_public": "True", "name": "temperature", "size": "3", "start_date": "2007-08-10T00:00:32Z", "stop_date": "2024-10-04T16:34:49Z", "thc_t_peim0": {"__spz_name__": "t_perp1", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thc_t_peim(0)", "dataset": "thc-peim-all", "index1": "1", "is_public": "True", "name": "t_perp1", "parameter": "thc_t_peim", "start_date": "2007-08-10T00:00:32Z", "stop_date": "2024-10-04T16:34:49Z", "xmlid": "thc_t_peim(0)"}, "thc_t_peim1": {"__spz_name__": "t_perp2", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thc_t_peim(1)", "dataset": "thc-peim-all", "index1": "2", "is_public": "True", "name": "t_perp2", "parameter": "thc_t_peim", "start_date": "2007-08-10T00:00:32Z", "stop_date": "2024-10-04T16:34:49Z", "xmlid": "thc_t_peim(1)"}, "thc_t_peim2": {"__spz_name__": "t_para", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thc_t_peim(2)", "dataset": "thc-peim-all", "index1": "0", "is_public": "True", "name": "t_para", "parameter": "thc_t_peim", "start_date": "2007-08-10T00:00:32Z", "stop_date": "2024-10-04T16:34:49Z", "xmlid": "thc_t_peim(2)"}, "ucd": "phys.temperature;phys.atmol.ionStage", "units": "eV", "xmlid": "thc_t_peim"}, "thc_v_peim": {"__spz_name__": "v_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "thc_v_peim", "dataset": "thc-peim-all", "display_type": "timeseries", "is_public": "True", "name": "v_gse", "size": "3", "start_date": "2007-08-10T00:00:32Z", "stop_date": "2024-10-04T16:34:49Z", "thc_v_peim0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thc_v_peim(0)", "dataset": "thc-peim-all", "index1": "0", "is_public": "True", "name": "vx", "parameter": "thc_v_peim", "start_date": "2007-08-10T00:00:32Z", "stop_date": "2024-10-04T16:34:49Z", "xmlid": "thc_v_peim(0)"}, "thc_v_peim1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thc_v_peim(1)", "dataset": "thc-peim-all", "index1": "1", "is_public": "True", "name": "vy", "parameter": "thc_v_peim", "start_date": "2007-08-10T00:00:32Z", "stop_date": "2024-10-04T16:34:49Z", "xmlid": "thc_v_peim(1)"}, "thc_v_peim2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thc_v_peim(2)", "dataset": "thc-peim-all", "index1": "2", "is_public": "True", "name": "vz", "parameter": "thc_v_peim", "start_date": "2007-08-10T00:00:32Z", "stop_date": "2024-10-04T16:34:49Z", "xmlid": "thc_v_peim(2)"}, "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "thc_v_peim"}, "thc_v_peim_tot": {"__spz_name__": "|v|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "thc_v_peim_tot", "dataset": "thc-peim-all", "description": "Module of Velocity", "display_type": "timeseries", "is_public": "True", "name": "|v|", "start_date": "2007-08-10T00:00:32Z", "stop_date": "2024-10-04T16:34:49Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "thc_v_peim_tot"}, "xmlid": "thc-peim-all"}, "thc_pot_mom": {"__spz_name__": "onboard moments : potential", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "thc-pot-mom", "att": "auto/thc-pot-mom", "dataSource": "IRAP_THEMIS", "desc": "S/c potential from onboard moments
Sampling: 3S
Provider: IRAP_THEMIS", "is_public": "True", "lastModificationDate": "2024-10-07T04:01:40Z", "lastUpdate": "2024-10-07T04:01:39Z", "measurement_type": "ThermalPlasma", "name": "onboard moments : potential", "processing_level": "Calibrated", "sampling": "3S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/THEMIS/C/ESA/thc-pot-mom", "start_date": "2007-08-10T00:00:32Z", "stop_date": "2024-10-04T16:34:49Z", "target": "Earth.Magnetosphere", "thc_pot": {"__spz_name__": "s/c pot", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "thc_pot", "dataset": "thc-pot-mom", "description": "S/C potential", "display_type": "timeseries", "is_public": "True", "name": "s/c pot", "start_date": "2007-08-10T00:00:32Z", "stop_date": "2024-10-04T16:34:49Z", "ucd": "phys.potential;phys.electField;instr.obsty", "units": "V", "xmlid": "thc_pot"}, "xmlid": "thc-pot-mom"}, "xmlid": "ThemisC_esa"}, "Ephemeris": {"__spz_name__": "Ephemeris", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "ThemisC_ephemeris", "att": "auto/ThemisC_ephemeris", "desc": "", "is_public": "True", "name": "Ephemeris", "thc_orb_all": {"__spz_name__": "orbit", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "thc-orb-all", "att": "auto/thc-orb-all", "dataSource": "IRAP_THEMIS", "desc": "
Sampling: 60S
Provider: IRAP_THEMIS", "is_public": "True", "lastModificationDate": "2024-10-07T04:02:33Z", "lastUpdate": "2024-10-07T04:02:33Z", "measurement_type": "Ephemeris", "name": "orbit", "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/THEMIS/C/Ephemeris/thc-orb-all", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-10-06T23:59:00Z", "target": "Earth.Magnetosphere", "thc_r": {"__spz_name__": "distance thc-earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "thc_r", "dataset": "thc-orb-all", "display_type": "timeseries", "is_public": "True", "name": "distance thc-earth", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-10-06T23:59:00Z", "ucd": "pos.distance", "units": "Re", "xmlid": "thc_r"}, "thc_xyz": {"__spz_name__": "xyz_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "thc_xyz", "dataset": "thc-orb-all", "description": "position in GSE coordinates", "display_type": "timeseries", "is_public": "True", "name": "xyz_gse", "size": "3", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-10-06T23:59:00Z", "thc_xyz0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thc_xyz(0)", "dataset": "thc-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "thc_xyz", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-10-06T23:59:00Z", "xmlid": "thc_xyz(0)"}, "thc_xyz1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thc_xyz(1)", "dataset": "thc-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "thc_xyz", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-10-06T23:59:00Z", "xmlid": "thc_xyz(1)"}, "thc_xyz2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thc_xyz(2)", "dataset": "thc-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "thc_xyz", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-10-06T23:59:00Z", "xmlid": "thc_xyz(2)"}, "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "Re", "xmlid": "thc_xyz"}, "thc_xyz_gsm": {"__spz_name__": "xyz_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "thc_xyz_gsm", "dataset": "thc-orb-all", "description": "position in GSM coordinates", "display_type": "timeseries", "is_public": "True", "name": "xyz_gsm", "size": "3", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-10-06T23:59:00Z", "thc_xyz_gsm0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thc_xyz_gsm(0)", "dataset": "thc-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "thc_xyz_gsm", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-10-06T23:59:00Z", "xmlid": "thc_xyz_gsm(0)"}, "thc_xyz_gsm1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thc_xyz_gsm(1)", "dataset": "thc-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "thc_xyz_gsm", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-10-06T23:59:00Z", "xmlid": "thc_xyz_gsm(1)"}, "thc_xyz_gsm2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thc_xyz_gsm(2)", "dataset": "thc-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "thc_xyz_gsm", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-10-06T23:59:00Z", "xmlid": "thc_xyz_gsm(2)"}, "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "Re", "xmlid": "thc_xyz_gsm"}, "xmlid": "thc-orb-all"}, "xmlid": "ThemisC_ephemeris"}, "FGM": {"__spz_name__": "FGM", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "ThemisC_fgm", "att": "auto/ThemisC_fgm", "desc": "Tri-axial Fluxgate Magnetometer
Magnetometer", "is_public": "True", "name": "FGM", "thc_fgm_l": {"__spz_name__": "0.25 sec (low)", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "thc-fgm-l", "att": "auto/thc-fgm-l", "dataSource": "", "desc": "
Sampling: 0.25S", "is_public": "True", "lastModificationDate": "2024-10-07T04:04:07Z", "lastUpdate": "2024-10-07T04:04:06Z", "measurement_type": "MagneticField", "name": "0.25 sec (low)", "processing_level": "Calibrated", "sampling": "0.25S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/THEMIS/C/FGM/thc-fgm-l", "start_date": "2007-02-22T23:17:57Z", "stop_date": "2024-10-02T21:15:59Z", "target": "Earth.Magnetosphere", "thc_bl": {"__spz_name__": "b_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "thc_bl", "dataset": "thc-fgm-l", "description": "Magnetic Field", "display_type": "timeseries", "is_public": "True", "name": "b_gse", "size": "3", "start_date": "2007-02-22T23:17:57Z", "stop_date": "2024-10-02T21:15:59Z", "thc_bl0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thc_bl(0)", "dataset": "thc-fgm-l", "index1": "0", "is_public": "True", "name": "bx", "parameter": "thc_bl", "start_date": "2007-02-22T23:17:57Z", "stop_date": "2024-10-02T21:15:59Z", "xmlid": "thc_bl(0)"}, "thc_bl1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thc_bl(1)", "dataset": "thc-fgm-l", "index1": "1", "is_public": "True", "name": "by", "parameter": "thc_bl", "start_date": "2007-02-22T23:17:57Z", "stop_date": "2024-10-02T21:15:59Z", "xmlid": "thc_bl(1)"}, "thc_bl2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thc_bl(2)", "dataset": "thc-fgm-l", "index1": "2", "is_public": "True", "name": "bz", "parameter": "thc_bl", "start_date": "2007-02-22T23:17:57Z", "stop_date": "2024-10-02T21:15:59Z", "xmlid": "thc_bl(2)"}, "ucd": "phys.magField", "units": "nT", "xmlid": "thc_bl"}, "thc_bl_gsm": {"__spz_name__": "b_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "thc_bl_gsm", "dataset": "thc-fgm-l", "description": "Magnetic Field", "display_type": "timeseries", "is_public": "True", "name": "b_gsm", "size": "3", "start_date": "2007-02-22T23:17:57Z", "stop_date": "2024-10-02T21:15:59Z", "thc_bl_gsm0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thc_bl_gsm(0)", "dataset": "thc-fgm-l", "index1": "0", "is_public": "True", "name": "bx", "parameter": "thc_bl_gsm", "start_date": "2007-02-22T23:17:57Z", "stop_date": "2024-10-02T21:15:59Z", "xmlid": "thc_bl_gsm(0)"}, "thc_bl_gsm1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thc_bl_gsm(1)", "dataset": "thc-fgm-l", "index1": "1", "is_public": "True", "name": "by", "parameter": "thc_bl_gsm", "start_date": "2007-02-22T23:17:57Z", "stop_date": "2024-10-02T21:15:59Z", "xmlid": "thc_bl_gsm(1)"}, "thc_bl_gsm2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thc_bl_gsm(2)", "dataset": "thc-fgm-l", "index1": "2", "is_public": "True", "name": "bz", "parameter": "thc_bl_gsm", "start_date": "2007-02-22T23:17:57Z", "stop_date": "2024-10-02T21:15:59Z", "xmlid": "thc_bl_gsm(2)"}, "ucd": "phys.magField", "units": "nT", "xmlid": "thc_bl_gsm"}, "thc_bl_tot": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "thc_bl_tot", "dataset": "thc-fgm-l", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "2007-02-22T23:17:57Z", "stop_date": "2024-10-02T21:15:59Z", "ucd": "phys.magField", "units": "nT", "xmlid": "thc_bl_tot"}, "xmlid": "thc-fgm-l"}, "thc_fgm_s": {"__spz_name__": "3 sec (spin)", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "thc-fgm-s", "att": "auto/thc-fgm-s", "dataSource": "", "desc": "
Sampling: 4S", "is_public": "True", "lastModificationDate": "2024-10-07T04:04:09Z", "lastUpdate": "2024-10-07T04:04:09Z", "measurement_type": "MagneticField", "name": "3 sec (spin)", "processing_level": "Calibrated", "sampling": "4S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/THEMIS/C/FGM/thc-fgm-s", "start_date": "2007-02-26T22:17:50Z", "stop_date": "2024-10-03T00:00:47Z", "target": "Earth.Magnetosphere", "thc_bs": {"__spz_name__": "b_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "thc_bs", "dataset": "thc-fgm-s", "description": "Magnetic Field", "display_type": "timeseries", "is_public": "True", "name": "b_gse", "size": "3", "start_date": "2007-02-26T22:17:50Z", "stop_date": "2024-10-03T00:00:47Z", "thc_bs0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thc_bs(0)", "dataset": "thc-fgm-s", "index1": "0", "is_public": "True", "name": "bx", "parameter": "thc_bs", "start_date": "2007-02-26T22:17:50Z", "stop_date": "2024-10-03T00:00:47Z", "xmlid": "thc_bs(0)"}, "thc_bs1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thc_bs(1)", "dataset": "thc-fgm-s", "index1": "1", "is_public": "True", "name": "by", "parameter": "thc_bs", "start_date": "2007-02-26T22:17:50Z", "stop_date": "2024-10-03T00:00:47Z", "xmlid": "thc_bs(1)"}, "thc_bs2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thc_bs(2)", "dataset": "thc-fgm-s", "index1": "2", "is_public": "True", "name": "bz", "parameter": "thc_bs", "start_date": "2007-02-26T22:17:50Z", "stop_date": "2024-10-03T00:00:47Z", "xmlid": "thc_bs(2)"}, "ucd": "phys.magField", "units": "nT", "xmlid": "thc_bs"}, "thc_bs_gsm": {"__spz_name__": "b_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "thc_bs_gsm", "dataset": "thc-fgm-s", "description": "Magnetic Field", "display_type": "timeseries", "is_public": "True", "name": "b_gsm", "size": "3", "start_date": "2007-02-26T22:17:50Z", "stop_date": "2024-10-03T00:00:47Z", "thc_bs_gsm0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thc_bs_gsm(0)", "dataset": "thc-fgm-s", "index1": "0", "is_public": "True", "name": "bx", "parameter": "thc_bs_gsm", "start_date": "2007-02-26T22:17:50Z", "stop_date": "2024-10-03T00:00:47Z", "xmlid": "thc_bs_gsm(0)"}, "thc_bs_gsm1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thc_bs_gsm(1)", "dataset": "thc-fgm-s", "index1": "1", "is_public": "True", "name": "by", "parameter": "thc_bs_gsm", "start_date": "2007-02-26T22:17:50Z", "stop_date": "2024-10-03T00:00:47Z", "xmlid": "thc_bs_gsm(1)"}, "thc_bs_gsm2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thc_bs_gsm(2)", "dataset": "thc-fgm-s", "index1": "2", "is_public": "True", "name": "bz", "parameter": "thc_bs_gsm", "start_date": "2007-02-26T22:17:50Z", "stop_date": "2024-10-03T00:00:47Z", "xmlid": "thc_bs_gsm(2)"}, "ucd": "phys.magField", "units": "nT", "xmlid": "thc_bs_gsm"}, "thc_bs_tot": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "thc_bs_tot", "dataset": "thc-fgm-s", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "2007-02-26T22:17:50Z", "stop_date": "2024-10-03T00:00:47Z", "ucd": "phys.magField", "units": "nT", "xmlid": "thc_bs_tot"}, "xmlid": "thc-fgm-s"}, "xmlid": "ThemisC_fgm"}, "__spz_name__": "THEMIS-C", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "ThemisC", "att": "auto/ThemisC", "desc": "Explorer 87
2007-02-15T00:00:00
Initial phase : apogee 15.4Re : 2007-02-15 - 2007-09-15
Orbit Placement Phase: 2007-09-15 - 2007-12-15
Full constellation phase: 1.2 x 20 Re : 2007-12-15 - 2009-09-30
ARTEMIS: Translunar Injection Phase: complex orbits, deep tail and solar wind : 2009-10-01 \u2013 2010-10-01
ARTEMIS: Lunar Lissajous: orbiting around lunar L1 and L2 Lagrangian points : 2010-10-01 \u2013 2011-04-01
ARTEMIS: Lunar Orbit Phase: Equatorial orbit; 100 km x 19,000 km altitude, 26 hours period, 500 km - 5 Re probe separation : 2011-07-01 \u2013 present", "is_public": "True", "name": "THEMIS-C", "target": "Earth.Magnetosphere", "xmlid": "ThemisC"}, "THEMIS_D": {"Analytical_Models": {"__spz_name__": "Analytical Models", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "ThemisD_models", "att": "auto/ThemisD_models", "desc": "", "is_public": "True", "name": "Analytical Models", "thd_msph_models": {"PriorID": "thd-orb-all", "__spz_name__": "distance to neutral sheet", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "thd-msph-models", "att": "auto/thd-msph-models", "dataSource": "IRAP", "desc": "Distance to model neutral sheet
Sampling: 1M
Provider: IRAP", "dz_fairfield70_thd_xyz": {"__spz_name__": "dZ Fairfield70", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "dz_fairfield70_thd_xyz", "dataset": "thd-msph-models", "description": "Distance (Re) from s/c location to Fairfield1970 neutral sheet position. Depends on spacecraft location in SM coordinates and dipole tilt angle. Valid for Ysm less than 15 Re.", "is_public": "True", "name": "dZ Fairfield70", "predefined": "1", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-10-05T23:59:00Z", "template": "dz_fairfield70_##ORBIT##", "units": "Re", "xmlid": "dz_fairfield70_thd_xyz"}, "dz_fairfield80_thd_xyz": {"__spz_name__": "dZ Fairfield80", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "dz_fairfield80_thd_xyz", "dataset": "thd-msph-models", "description": "Distance (Re) from s/c location to Fairfield1980 neutral sheet position. Depends on spacecraft location in SM coordinates and dipole tilt angle.", "is_public": "True", "name": "dZ Fairfield80", "predefined": "1", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-10-05T23:59:00Z", "template": "dz_fairfield80_##ORBIT##", "units": "Re", "xmlid": "dz_fairfield80_thd_xyz"}, "is_public": "True", "lastModificationDate": "2024-10-07T04:02:38Z", "lastUpdate": "2024-10-07T04:02:39Z", "measurement_type": "Ephemeris", "name": "distance to neutral sheet", "processing_level": "Calibrated", "sampling": "1M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/THEMIS/D/Models/thd-msph-models", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-10-05T23:59:00Z", "target": "Earth", "xmlid": "thd-msph-models"}, "thd_t96_model": {"PriorID": "thd-orb-all", "__spz_name__": "T96 field model", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "thd-t96-model", "att": "auto/thd-t96-model", "b_t96gse_thd_xyz": {"__spz_name__": "b_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_t96gse_thd_xyz", "b_t96gse_thd_xyz0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gse_thd_xyz(0)", "dataset": "thd-t96-model", "index1": "0", "is_public": "True", "name": "bx", "parameter": "b_t96gse_thd_xyz", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-10-05T23:59:00Z", "xmlid": "b_t96gse_thd_xyz(0)"}, "b_t96gse_thd_xyz1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gse_thd_xyz(1)", "dataset": "thd-t96-model", "index1": "1", "is_public": "True", "name": "by", "parameter": "b_t96gse_thd_xyz", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-10-05T23:59:00Z", "xmlid": "b_t96gse_thd_xyz(1)"}, "b_t96gse_thd_xyz2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gse_thd_xyz(2)", "dataset": "thd-t96-model", "index1": "2", "is_public": "True", "name": "bz", "parameter": "b_t96gse_thd_xyz", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-10-05T23:59:00Z", "xmlid": "b_t96gse_thd_xyz(2)"}, "dataset": "thd-t96-model", "is_public": "True", "name": "b_gse", "predefined": "1", "size": "3", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-10-05T23:59:00Z", "template": "b_t96gse_##ORBIT##", "units": "nT", "xmlid": "b_t96gse_thd_xyz"}, "b_t96gsm_thd_xyz": {"__spz_name__": "b_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_t96gsm_thd_xyz", "b_t96gsm_thd_xyz0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gsm_thd_xyz(0)", "dataset": "thd-t96-model", "index1": "0", "is_public": "True", "name": "bx", "parameter": "b_t96gsm_thd_xyz", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-10-05T23:59:00Z", "xmlid": "b_t96gsm_thd_xyz(0)"}, "b_t96gsm_thd_xyz1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gsm_thd_xyz(1)", "dataset": "thd-t96-model", "index1": "1", "is_public": "True", "name": "by", "parameter": "b_t96gsm_thd_xyz", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-10-05T23:59:00Z", "xmlid": "b_t96gsm_thd_xyz(1)"}, "b_t96gsm_thd_xyz2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gsm_thd_xyz(2)", "dataset": "thd-t96-model", "index1": "2", "is_public": "True", "name": "bz", "parameter": "b_t96gsm_thd_xyz", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-10-05T23:59:00Z", "xmlid": "b_t96gsm_thd_xyz(2)"}, "dataset": "thd-t96-model", "is_public": "True", "name": "b_gsm", "predefined": "1", "size": "3", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-10-05T23:59:00Z", "template": "b_t96gsm_##ORBIT##", "units": "nT", "xmlid": "b_t96gsm_thd_xyz"}, "b_t96tot_thd_xyz": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_t96tot_thd_xyz", "dataset": "thd-t96-model", "is_public": "True", "name": "|b|", "predefined": "1", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-10-05T23:59:00Z", "template": "b_t96tot_##ORBIT##", "units": "nT", "xmlid": "b_t96tot_thd_xyz"}, "dataSource": "IRAP", "desc": "Tsyganenko96 geomagnetospheric magnetic field model
Sampling: 1M
Provider: IRAP", "is_public": "True", "lastModificationDate": "2024-10-07T04:02:38Z", "lastUpdate": "2024-10-07T04:02:39Z", "measurement_type": "MagneticField", "name": "T96 field model", "processing_level": "Calibrated", "sampling": "1M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/THEMIS/D/Models/thd-t96-model", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-10-05T23:59:00Z", "target": "Earth", "xmlid": "thd-t96-model"}, "xmlid": "ThemisD_models"}, "ESA": {"__spz_name__": "ESA", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "ThemisD_esa", "att": "auto/ThemisD_esa", "desc": "ElectrostaticAnalyser", "is_public": "True", "name": "ESA", "thd_esa_l2e": {"__spz_name__": "electron full mode", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "thd-esa-l2e", "att": "auto/thd-esa-l2e", "dataSource": "IRAP_THEMIS", "desc": "
MinSampling: 96.27S; MaxSampling: 551.0S
Provider: IRAP_THEMIS", "is_public": "True", "lastModificationDate": "2024-10-07T04:00:36Z", "lastUpdate": "2024-10-07T04:00:36Z", "maxSampling": "551.0S", "measurement_type": "ThermalPlasma", "name": "electron full mode", "processing_level": "Calibrated", "sampling": "96.27S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/THEMIS/D/ESA/thd-esa-l2e", "start_date": "2007-03-07T16:54:49Z", "stop_date": "2024-10-05T01:33:15Z", "target": "Earth.Magnetosphere", "thd_el_sp": {"__spz_name__": "el omni eflux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "thd_el_sp", "dataset": "thd-esa-l2e", "display_type": "spectrogram", "is_public": "True", "name": "el omni eflux", "start_date": "2007-03-07T16:54:49Z", "stop_date": "2024-10-05T01:33:15Z", "ucd": "phys.flux;phys.energy;phys.electron", "units": "eV/cm\u00b2-s-sr-eV", "xmlid": "thd_el_sp"}, "thd_n_e": {"__spz_name__": "el density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "thd_n_e", "dataset": "thd-esa-l2e", "description": "Ion Density", "display_type": "timeseries", "is_public": "True", "name": "el density", "start_date": "2007-03-07T16:54:49Z", "stop_date": "2024-10-05T01:33:15Z", "ucd": "phys.density;phys.electron", "units": "cm-3", "xmlid": "thd_n_e"}, "thd_t_e": {"__spz_name__": "el temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "thd_t_e", "dataset": "thd-esa-l2e", "description": "Temperature", "display_type": "timeseries", "is_public": "True", "name": "el temperature", "size": "3", "start_date": "2007-03-07T16:54:49Z", "stop_date": "2024-10-05T01:33:15Z", "thd_t_e0": {"__spz_name__": "t_perp1", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thd_t_e(0)", "dataset": "thd-esa-l2e", "index1": "1", "is_public": "True", "name": "t_perp1", "parameter": "thd_t_e", "start_date": "2007-03-07T16:54:49Z", "stop_date": "2024-10-05T01:33:15Z", "xmlid": "thd_t_e(0)"}, "thd_t_e1": {"__spz_name__": "t_perp2", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thd_t_e(1)", "dataset": "thd-esa-l2e", "index1": "2", "is_public": "True", "name": "t_perp2", "parameter": "thd_t_e", "start_date": "2007-03-07T16:54:49Z", "stop_date": "2024-10-05T01:33:15Z", "xmlid": "thd_t_e(1)"}, "thd_t_e2": {"__spz_name__": "t_para", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thd_t_e(2)", "dataset": "thd-esa-l2e", "index1": "0", "is_public": "True", "name": "t_para", "parameter": "thd_t_e", "start_date": "2007-03-07T16:54:49Z", "stop_date": "2024-10-05T01:33:15Z", "xmlid": "thd_t_e(2)"}, "ucd": "phys.temperature;phys.electron", "units": "eV", "xmlid": "thd_t_e"}, "thd_v_e": {"__spz_name__": "el v_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "thd_v_e", "dataset": "thd-esa-l2e", "display_type": "timeseries", "is_public": "True", "name": "el v_gse", "size": "3", "start_date": "2007-03-07T16:54:49Z", "stop_date": "2024-10-05T01:33:15Z", "thd_v_e0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thd_v_e(0)", "dataset": "thd-esa-l2e", "index1": "0", "is_public": "True", "name": "vx", "parameter": "thd_v_e", "start_date": "2007-03-07T16:54:49Z", "stop_date": "2024-10-05T01:33:15Z", "xmlid": "thd_v_e(0)"}, "thd_v_e1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thd_v_e(1)", "dataset": "thd-esa-l2e", "index1": "1", "is_public": "True", "name": "vy", "parameter": "thd_v_e", "start_date": "2007-03-07T16:54:49Z", "stop_date": "2024-10-05T01:33:15Z", "xmlid": "thd_v_e(1)"}, "thd_v_e2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thd_v_e(2)", "dataset": "thd-esa-l2e", "index1": "2", "is_public": "True", "name": "vz", "parameter": "thd_v_e", "start_date": "2007-03-07T16:54:49Z", "stop_date": "2024-10-05T01:33:15Z", "xmlid": "thd_v_e(2)"}, "ucd": "phys.veloc;phys.electron", "units": "km/s", "xmlid": "thd_v_e"}, "xmlid": "thd-esa-l2e"}, "thd_esa_l2i": {"__spz_name__": "ion full mode", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "thd-esa-l2i", "att": "auto/thd-esa-l2i", "dataSource": "IRAP_THEMIS", "desc": "
MinSampling: 96.27S; MaxSampling: 551.0S
Provider: IRAP_THEMIS", "is_public": "True", "lastModificationDate": "2024-10-07T04:00:36Z", "lastUpdate": "2024-10-07T04:00:35Z", "maxSampling": "551.0S", "measurement_type": "ThermalPlasma", "name": "ion full mode", "processing_level": "Calibrated", "sampling": "96.27S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/THEMIS/D/ESA/thd-esa-l2i", "start_date": "2007-03-07T16:54:49Z", "stop_date": "2024-10-05T01:33:49Z", "target": "Earth.Magnetosphere", "thd_ion_sp": {"__spz_name__": "ion eflux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "thd_ion_sp", "dataset": "thd-esa-l2i", "display_type": "spectrogram", "is_public": "True", "name": "ion eflux", "start_date": "2007-03-07T16:54:49Z", "stop_date": "2024-10-05T01:33:49Z", "ucd": "phys.flux;phys.energy;phys.atmol.ionStage", "units": "eV/cm\u00b2-s-sr-eV", "xmlid": "thd_ion_sp"}, "thd_n_i": {"__spz_name__": "ion density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "thd_n_i", "dataset": "thd-esa-l2i", "description": "Ion Density", "display_type": "timeseries", "is_public": "True", "name": "ion density", "start_date": "2007-03-07T16:54:49Z", "stop_date": "2024-10-05T01:33:49Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm-3", "xmlid": "thd_n_i"}, "thd_t_i": {"__spz_name__": "ion temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "thd_t_i", "dataset": "thd-esa-l2i", "description": "Temperature", "display_type": "timeseries", "is_public": "True", "name": "ion temperature", "size": "3", "start_date": "2007-03-07T16:54:49Z", "stop_date": "2024-10-05T01:33:49Z", "thd_t_i0": {"__spz_name__": "t_perp1", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thd_t_i(0)", "dataset": "thd-esa-l2i", "index1": "1", "is_public": "True", "name": "t_perp1", "parameter": "thd_t_i", "start_date": "2007-03-07T16:54:49Z", "stop_date": "2024-10-05T01:33:49Z", "xmlid": "thd_t_i(0)"}, "thd_t_i1": {"__spz_name__": "t_perp2", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thd_t_i(1)", "dataset": "thd-esa-l2i", "index1": "2", "is_public": "True", "name": "t_perp2", "parameter": "thd_t_i", "start_date": "2007-03-07T16:54:49Z", "stop_date": "2024-10-05T01:33:49Z", "xmlid": "thd_t_i(1)"}, "thd_t_i2": {"__spz_name__": "t_para", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thd_t_i(2)", "dataset": "thd-esa-l2i", "index1": "0", "is_public": "True", "name": "t_para", "parameter": "thd_t_i", "start_date": "2007-03-07T16:54:49Z", "stop_date": "2024-10-05T01:33:49Z", "xmlid": "thd_t_i(2)"}, "ucd": "phys.temperature;phys.atmol.ionStage", "units": "eV", "xmlid": "thd_t_i"}, "thd_v_i": {"__spz_name__": "ion v_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "thd_v_i", "dataset": "thd-esa-l2i", "display_type": "timeseries", "is_public": "True", "name": "ion v_gse", "size": "3", "start_date": "2007-03-07T16:54:49Z", "stop_date": "2024-10-05T01:33:49Z", "thd_v_i0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thd_v_i(0)", "dataset": "thd-esa-l2i", "index1": "0", "is_public": "True", "name": "vx", "parameter": "thd_v_i", "start_date": "2007-03-07T16:54:49Z", "stop_date": "2024-10-05T01:33:49Z", "xmlid": "thd_v_i(0)"}, "thd_v_i1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thd_v_i(1)", "dataset": "thd-esa-l2i", "index1": "1", "is_public": "True", "name": "vy", "parameter": "thd_v_i", "start_date": "2007-03-07T16:54:49Z", "stop_date": "2024-10-05T01:33:49Z", "xmlid": "thd_v_i(1)"}, "thd_v_i2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thd_v_i(2)", "dataset": "thd-esa-l2i", "index1": "2", "is_public": "True", "name": "vz", "parameter": "thd_v_i", "start_date": "2007-03-07T16:54:49Z", "stop_date": "2024-10-05T01:33:49Z", "xmlid": "thd_v_i(2)"}, "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "thd_v_i"}, "thd_v_i_tot": {"__spz_name__": "ion |v|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "thd_v_i_tot", "dataset": "thd-esa-l2i", "description": "Module of Velocity", "display_type": "timeseries", "is_public": "True", "name": "ion |v|", "start_date": "2007-03-07T16:54:49Z", "stop_date": "2024-10-05T01:33:49Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "thd_v_i_tot"}, "xmlid": "thd-esa-l2i"}, "thd_peem_all": {"__spz_name__": "electron onboard moments", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "thd-peem-all", "att": "auto/thd-peem-all", "dataSource": "IRAP_THEMIS", "desc": "
Sampling: 3S
Provider: IRAP_THEMIS", "is_public": "True", "lastModificationDate": "2024-10-07T04:01:48Z", "lastUpdate": "2024-10-07T04:01:48Z", "measurement_type": "ThermalPlasma", "name": "electron onboard moments", "processing_level": "Calibrated", "sampling": "3S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/THEMIS/D/ESA/thd-peem-all", "start_date": "2007-08-09T23:59:56Z", "stop_date": "2024-10-05T01:34:09Z", "target": "Earth.Magnetosphere", "thd_n_peem": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "thd_n_peem", "dataset": "thd-peem-all", "description": "Electron Density", "display_type": "timeseries", "is_public": "True", "name": "density", "start_date": "2007-08-09T23:59:56Z", "stop_date": "2024-10-05T01:34:09Z", "ucd": "phys.density;phys.electron", "units": "cm-3", "xmlid": "thd_n_peem"}, "thd_t_peem": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "thd_t_peem", "dataset": "thd-peem-all", "description": "Temperature", "display_type": "timeseries", "is_public": "True", "name": "temperature", "size": "3", "start_date": "2007-08-09T23:59:56Z", "stop_date": "2024-10-05T01:34:09Z", "thd_t_peem0": {"__spz_name__": "t_perp1", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thd_t_peem(0)", "dataset": "thd-peem-all", "index1": "1", "is_public": "True", "name": "t_perp1", "parameter": "thd_t_peem", "start_date": "2007-08-09T23:59:56Z", "stop_date": "2024-10-05T01:34:09Z", "xmlid": "thd_t_peem(0)"}, "thd_t_peem1": {"__spz_name__": "t_perp2", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thd_t_peem(1)", "dataset": "thd-peem-all", "index1": "2", "is_public": "True", "name": "t_perp2", "parameter": "thd_t_peem", "start_date": "2007-08-09T23:59:56Z", "stop_date": "2024-10-05T01:34:09Z", "xmlid": "thd_t_peem(1)"}, "thd_t_peem2": {"__spz_name__": "t_para", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thd_t_peem(2)", "dataset": "thd-peem-all", "index1": "0", "is_public": "True", "name": "t_para", "parameter": "thd_t_peem", "start_date": "2007-08-09T23:59:56Z", "stop_date": "2024-10-05T01:34:09Z", "xmlid": "thd_t_peem(2)"}, "ucd": "phys.temperature;phys.electron", "units": "eV", "xmlid": "thd_t_peem"}, "xmlid": "thd-peem-all"}, "thd_peim_all": {"__spz_name__": "ion onboard moments", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "thd-peim-all", "att": "auto/thd-peim-all", "dataSource": "IRAP_THEMIS", "desc": "
Sampling: 3S
Provider: IRAP_THEMIS", "is_public": "True", "lastModificationDate": "2024-10-07T04:01:48Z", "lastUpdate": "2024-10-07T04:01:48Z", "measurement_type": "ThermalPlasma", "name": "ion onboard moments", "processing_level": "Calibrated", "sampling": "3S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/THEMIS/D/ESA/thd-peim-all", "start_date": "2007-08-09T23:59:56Z", "stop_date": "2024-10-05T01:34:09Z", "target": "Earth.Magnetosphere", "thd_n_peim": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "thd_n_peim", "dataset": "thd-peim-all", "description": "Ion Density", "display_type": "timeseries", "is_public": "True", "name": "density", "start_date": "2007-08-09T23:59:56Z", "stop_date": "2024-10-05T01:34:09Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm-3", "xmlid": "thd_n_peim"}, "thd_t_peim": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "thd_t_peim", "dataset": "thd-peim-all", "description": "Temperature", "display_type": "timeseries", "is_public": "True", "name": "temperature", "size": "3", "start_date": "2007-08-09T23:59:56Z", "stop_date": "2024-10-05T01:34:09Z", "thd_t_peim0": {"__spz_name__": "t_perp1", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thd_t_peim(0)", "dataset": "thd-peim-all", "index1": "1", "is_public": "True", "name": "t_perp1", "parameter": "thd_t_peim", "start_date": "2007-08-09T23:59:56Z", "stop_date": "2024-10-05T01:34:09Z", "xmlid": "thd_t_peim(0)"}, "thd_t_peim1": {"__spz_name__": "t_perp2", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thd_t_peim(1)", "dataset": "thd-peim-all", "index1": "2", "is_public": "True", "name": "t_perp2", "parameter": "thd_t_peim", "start_date": "2007-08-09T23:59:56Z", "stop_date": "2024-10-05T01:34:09Z", "xmlid": "thd_t_peim(1)"}, "thd_t_peim2": {"__spz_name__": "t_para", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thd_t_peim(2)", "dataset": "thd-peim-all", "index1": "0", "is_public": "True", "name": "t_para", "parameter": "thd_t_peim", "start_date": "2007-08-09T23:59:56Z", "stop_date": "2024-10-05T01:34:09Z", "xmlid": "thd_t_peim(2)"}, "ucd": "phys.temperature;phys.atmol.ionStage", "units": "eV", "xmlid": "thd_t_peim"}, "thd_v_peim": {"__spz_name__": "v_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "thd_v_peim", "dataset": "thd-peim-all", "display_type": "timeseries", "is_public": "True", "name": "v_gse", "size": "3", "start_date": "2007-08-09T23:59:56Z", "stop_date": "2024-10-05T01:34:09Z", "thd_v_peim0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thd_v_peim(0)", "dataset": "thd-peim-all", "index1": "0", "is_public": "True", "name": "vx", "parameter": "thd_v_peim", "start_date": "2007-08-09T23:59:56Z", "stop_date": "2024-10-05T01:34:09Z", "xmlid": "thd_v_peim(0)"}, "thd_v_peim1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thd_v_peim(1)", "dataset": "thd-peim-all", "index1": "1", "is_public": "True", "name": "vy", "parameter": "thd_v_peim", "start_date": "2007-08-09T23:59:56Z", "stop_date": "2024-10-05T01:34:09Z", "xmlid": "thd_v_peim(1)"}, "thd_v_peim2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thd_v_peim(2)", "dataset": "thd-peim-all", "index1": "2", "is_public": "True", "name": "vz", "parameter": "thd_v_peim", "start_date": "2007-08-09T23:59:56Z", "stop_date": "2024-10-05T01:34:09Z", "xmlid": "thd_v_peim(2)"}, "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "thd_v_peim"}, "thd_v_peim_tot": {"__spz_name__": "|v|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "thd_v_peim_tot", "dataset": "thd-peim-all", "description": "Module of Velocity", "display_type": "timeseries", "is_public": "True", "name": "|v|", "start_date": "2007-08-09T23:59:56Z", "stop_date": "2024-10-05T01:34:09Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "thd_v_peim_tot"}, "xmlid": "thd-peim-all"}, "thd_pot_mom": {"__spz_name__": "onboard moments : potential", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "thd-pot-mom", "att": "auto/thd-pot-mom", "dataSource": "IRAP_THEMIS", "desc": "S/c potential from onboard moments
Sampling: 3S
Provider: IRAP_THEMIS", "is_public": "True", "lastModificationDate": "2024-10-07T04:01:48Z", "lastUpdate": "2024-10-07T04:01:48Z", "measurement_type": "ThermalPlasma", "name": "onboard moments : potential", "processing_level": "Calibrated", "sampling": "3S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/THEMIS/D/ESA/thd-pot-mom", "start_date": "2007-08-09T23:59:56Z", "stop_date": "2024-10-05T01:34:09Z", "target": "Earth.Magnetosphere", "thd_pot": {"__spz_name__": "s/c pot", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "thd_pot", "dataset": "thd-pot-mom", "description": "S/C potential", "display_type": "timeseries", "is_public": "True", "name": "s/c pot", "start_date": "2007-08-09T23:59:56Z", "stop_date": "2024-10-05T01:34:09Z", "ucd": "phys.potential;phys.electField;instr.obsty", "units": "V", "xmlid": "thd_pot"}, "xmlid": "thd-pot-mom"}, "xmlid": "ThemisD_esa"}, "Ephemeris": {"__spz_name__": "Ephemeris", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "ThemisD_ephemeris", "att": "auto/ThemisD_ephemeris", "desc": "", "is_public": "True", "name": "Ephemeris", "thd_orb_all": {"__spz_name__": "orbit", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "thd-orb-all", "att": "auto/thd-orb-all", "dataSource": "IRAP_THEMIS", "desc": "
Sampling: 60S
Provider: IRAP_THEMIS", "is_public": "True", "lastModificationDate": "2024-10-07T04:02:38Z", "lastUpdate": "2024-10-07T04:02:39Z", "measurement_type": "Ephemeris", "name": "orbit", "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/THEMIS/D/Ephemeris/thd-orb-all", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-10-05T23:59:00Z", "target": "Earth.Magnetosphere", "thd_r": {"__spz_name__": "distance thd-earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "thd_r", "dataset": "thd-orb-all", "display_type": "timeseries", "is_public": "True", "name": "distance thd-earth", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-10-05T23:59:00Z", "ucd": "pos.distance", "units": "Re", "xmlid": "thd_r"}, "thd_xyz": {"__spz_name__": "xyz_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "thd_xyz", "dataset": "thd-orb-all", "description": "position in GSE coordinates", "display_type": "timeseries", "is_public": "True", "name": "xyz_gse", "size": "3", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-10-05T23:59:00Z", "thd_xyz0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thd_xyz(0)", "dataset": "thd-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "thd_xyz", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-10-05T23:59:00Z", "xmlid": "thd_xyz(0)"}, "thd_xyz1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thd_xyz(1)", "dataset": "thd-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "thd_xyz", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-10-05T23:59:00Z", "xmlid": "thd_xyz(1)"}, "thd_xyz2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thd_xyz(2)", "dataset": "thd-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "thd_xyz", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-10-05T23:59:00Z", "xmlid": "thd_xyz(2)"}, "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "Re", "xmlid": "thd_xyz"}, "thd_xyz_gsm": {"__spz_name__": "xyz_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "thd_xyz_gsm", "dataset": "thd-orb-all", "description": "position in GSM coordinates", "display_type": "timeseries", "is_public": "True", "name": "xyz_gsm", "size": "3", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-10-05T23:59:00Z", "thd_xyz_gsm0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thd_xyz_gsm(0)", "dataset": "thd-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "thd_xyz_gsm", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-10-05T23:59:00Z", "xmlid": "thd_xyz_gsm(0)"}, "thd_xyz_gsm1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thd_xyz_gsm(1)", "dataset": "thd-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "thd_xyz_gsm", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-10-05T23:59:00Z", "xmlid": "thd_xyz_gsm(1)"}, "thd_xyz_gsm2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thd_xyz_gsm(2)", "dataset": "thd-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "thd_xyz_gsm", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-10-05T23:59:00Z", "xmlid": "thd_xyz_gsm(2)"}, "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "Re", "xmlid": "thd_xyz_gsm"}, "xmlid": "thd-orb-all"}, "xmlid": "ThemisD_ephemeris"}, "FGM": {"__spz_name__": "FGM", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "ThemisD_fgm", "att": "auto/ThemisD_fgm", "desc": "Tri-axial Fluxgate Magnetometer
Magnetometer", "is_public": "True", "name": "FGM", "thd_fgm_l": {"__spz_name__": "0.25 sec (low)", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "thd-fgm-l", "att": "auto/thd-fgm-l", "dataSource": "IRAP_THEMIS", "desc": "
Sampling: 0.25S
Provider: IRAP_THEMIS", "is_public": "True", "lastModificationDate": "2024-10-07T04:04:24Z", "lastUpdate": "2024-10-07T04:04:24Z", "measurement_type": "MagneticField", "name": "0.25 sec (low)", "processing_level": "Calibrated", "sampling": "0.25S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/THEMIS/D/FGM/thd-fgm-l", "start_date": "2007-02-23T01:31:22Z", "stop_date": "2024-10-05T01:33:47Z", "target": "Earth.Magnetosphere", "thd_bl": {"__spz_name__": "b_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "thd_bl", "dataset": "thd-fgm-l", "description": "Magnetic Field", "display_type": "timeseries", "is_public": "True", "name": "b_gse", "size": "3", "start_date": "2007-02-23T01:31:22Z", "stop_date": "2024-10-05T01:33:47Z", "thd_bl0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thd_bl(0)", "dataset": "thd-fgm-l", "index1": "0", "is_public": "True", "name": "bx", "parameter": "thd_bl", "start_date": "2007-02-23T01:31:22Z", "stop_date": "2024-10-05T01:33:47Z", "xmlid": "thd_bl(0)"}, "thd_bl1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thd_bl(1)", "dataset": "thd-fgm-l", "index1": "1", "is_public": "True", "name": "by", "parameter": "thd_bl", "start_date": "2007-02-23T01:31:22Z", "stop_date": "2024-10-05T01:33:47Z", "xmlid": "thd_bl(1)"}, "thd_bl2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thd_bl(2)", "dataset": "thd-fgm-l", "index1": "2", "is_public": "True", "name": "bz", "parameter": "thd_bl", "start_date": "2007-02-23T01:31:22Z", "stop_date": "2024-10-05T01:33:47Z", "xmlid": "thd_bl(2)"}, "ucd": "phys.magField", "units": "nT", "xmlid": "thd_bl"}, "thd_bl_gsm": {"__spz_name__": "b_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "thd_bl_gsm", "dataset": "thd-fgm-l", "description": "Magnetic Field", "display_type": "timeseries", "is_public": "True", "name": "b_gsm", "size": "3", "start_date": "2007-02-23T01:31:22Z", "stop_date": "2024-10-05T01:33:47Z", "thd_bl_gsm0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thd_bl_gsm(0)", "dataset": "thd-fgm-l", "index1": "0", "is_public": "True", "name": "bx", "parameter": "thd_bl_gsm", "start_date": "2007-02-23T01:31:22Z", "stop_date": "2024-10-05T01:33:47Z", "xmlid": "thd_bl_gsm(0)"}, "thd_bl_gsm1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thd_bl_gsm(1)", "dataset": "thd-fgm-l", "index1": "1", "is_public": "True", "name": "by", "parameter": "thd_bl_gsm", "start_date": "2007-02-23T01:31:22Z", "stop_date": "2024-10-05T01:33:47Z", "xmlid": "thd_bl_gsm(1)"}, "thd_bl_gsm2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thd_bl_gsm(2)", "dataset": "thd-fgm-l", "index1": "2", "is_public": "True", "name": "bz", "parameter": "thd_bl_gsm", "start_date": "2007-02-23T01:31:22Z", "stop_date": "2024-10-05T01:33:47Z", "xmlid": "thd_bl_gsm(2)"}, "ucd": "phys.magField", "units": "nT", "xmlid": "thd_bl_gsm"}, "thd_bl_tot": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "thd_bl_tot", "dataset": "thd-fgm-l", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "2007-02-23T01:31:22Z", "stop_date": "2024-10-05T01:33:47Z", "ucd": "phys.magField", "units": "nT", "xmlid": "thd_bl_tot"}, "xmlid": "thd-fgm-l"}, "thd_fgm_s": {"__spz_name__": "3 sec (spin)", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "thd-fgm-s", "att": "auto/thd-fgm-s", "dataSource": "IRAP_THEMIS", "desc": "
Sampling: 3S
Provider: IRAP_THEMIS", "is_public": "True", "lastModificationDate": "2024-10-07T04:04:26Z", "lastUpdate": "2024-10-07T04:04:26Z", "measurement_type": "MagneticField", "name": "3 sec (spin)", "processing_level": "Calibrated", "sampling": "3S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/THEMIS/D/FGM/thd-fgm-s", "start_date": "2007-02-28T02:55:28Z", "stop_date": "2024-10-05T04:05:17Z", "target": "Earth.Magnetosphere", "thd_bs": {"__spz_name__": "b_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "thd_bs", "dataset": "thd-fgm-s", "description": "Magnetic Field", "display_type": "timeseries", "is_public": "True", "name": "b_gse", "size": "3", "start_date": "2007-02-28T02:55:28Z", "stop_date": "2024-10-05T04:05:17Z", "thd_bs0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thd_bs(0)", "dataset": "thd-fgm-s", "index1": "0", "is_public": "True", "name": "bx", "parameter": "thd_bs", "start_date": "2007-02-28T02:55:28Z", "stop_date": "2024-10-05T04:05:17Z", "xmlid": "thd_bs(0)"}, "thd_bs1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thd_bs(1)", "dataset": "thd-fgm-s", "index1": "1", "is_public": "True", "name": "by", "parameter": "thd_bs", "start_date": "2007-02-28T02:55:28Z", "stop_date": "2024-10-05T04:05:17Z", "xmlid": "thd_bs(1)"}, "thd_bs2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thd_bs(2)", "dataset": "thd-fgm-s", "index1": "2", "is_public": "True", "name": "bz", "parameter": "thd_bs", "start_date": "2007-02-28T02:55:28Z", "stop_date": "2024-10-05T04:05:17Z", "xmlid": "thd_bs(2)"}, "ucd": "phys.magField", "units": "nT", "xmlid": "thd_bs"}, "thd_bs_gsm": {"__spz_name__": "b_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "thd_bs_gsm", "dataset": "thd-fgm-s", "description": "Magnetic Field", "display_type": "timeseries", "is_public": "True", "name": "b_gsm", "size": "3", "start_date": "2007-02-28T02:55:28Z", "stop_date": "2024-10-05T04:05:17Z", "thd_bs_gsm0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thd_bs_gsm(0)", "dataset": "thd-fgm-s", "index1": "0", "is_public": "True", "name": "bx", "parameter": "thd_bs_gsm", "start_date": "2007-02-28T02:55:28Z", "stop_date": "2024-10-05T04:05:17Z", "xmlid": "thd_bs_gsm(0)"}, "thd_bs_gsm1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thd_bs_gsm(1)", "dataset": "thd-fgm-s", "index1": "1", "is_public": "True", "name": "by", "parameter": "thd_bs_gsm", "start_date": "2007-02-28T02:55:28Z", "stop_date": "2024-10-05T04:05:17Z", "xmlid": "thd_bs_gsm(1)"}, "thd_bs_gsm2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "thd_bs_gsm(2)", "dataset": "thd-fgm-s", "index1": "2", "is_public": "True", "name": "bz", "parameter": "thd_bs_gsm", "start_date": "2007-02-28T02:55:28Z", "stop_date": "2024-10-05T04:05:17Z", "xmlid": "thd_bs_gsm(2)"}, "ucd": "phys.magField", "units": "nT", "xmlid": "thd_bs_gsm"}, "thd_bs_tot": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "thd_bs_tot", "dataset": "thd-fgm-s", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "2007-02-28T02:55:28Z", "stop_date": "2024-10-05T04:05:17Z", "ucd": "phys.magField", "units": "nT", "xmlid": "thd_bs_tot"}, "xmlid": "thd-fgm-s"}, "xmlid": "ThemisD_fgm"}, "__spz_name__": "THEMIS-D", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "ThemisD", "att": "auto/ThemisD", "desc": "Explorer 88
2007-02-15T00:00:00
Initial phase : apogee 15.4Re : 2007-02-15 - 2007-09-15
Orbit Placement Phase: 2007-09-15 - 2007-12-15
Full constellation phase: 1.5 x 12 Re : 2007-12-15 - 2009-09-30
THEMIS : apogee 12 Re : 2009-10-01 - present", "is_public": "True", "name": "THEMIS-D", "target": "Earth.Magnetosphere", "xmlid": "ThemisD"}, "THEMIS_E": {"Analytical_Models": {"__spz_name__": "Analytical Models", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "ThemisE_models", "att": "auto/ThemisE_models", "desc": "", "is_public": "True", "name": "Analytical Models", "the_msph_models": {"PriorID": "the-orb-all", "__spz_name__": "distance to neutral sheet", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "the-msph-models", "att": "auto/the-msph-models", "dataSource": "IRAP", "desc": "Distance to model neutral sheet
Sampling: 1M
Provider: IRAP", "dz_fairfield70_the_xyz": {"__spz_name__": "dZ Fairfield70", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "dz_fairfield70_the_xyz", "dataset": "the-msph-models", "description": "Distance (Re) from s/c location to Fairfield1970 neutral sheet position. Depends on spacecraft location in SM coordinates and dipole tilt angle. Valid for Ysm less than 15 Re.", "is_public": "True", "name": "dZ Fairfield70", "predefined": "1", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-09-27T23:59:00Z", "template": "dz_fairfield70_##ORBIT##", "units": "Re", "xmlid": "dz_fairfield70_the_xyz"}, "dz_fairfield80_the_xyz": {"__spz_name__": "dZ Fairfield80", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "dz_fairfield80_the_xyz", "dataset": "the-msph-models", "description": "Distance (Re) from s/c location to Fairfield1980 neutral sheet position. Depends on spacecraft location in SM coordinates and dipole tilt angle.", "is_public": "True", "name": "dZ Fairfield80", "predefined": "1", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-09-27T23:59:00Z", "template": "dz_fairfield80_##ORBIT##", "units": "Re", "xmlid": "dz_fairfield80_the_xyz"}, "is_public": "True", "lastModificationDate": "2024-09-30T04:02:54Z", "lastUpdate": "2024-09-30T04:02:54Z", "measurement_type": "Ephemeris", "name": "distance to neutral sheet", "processing_level": "Calibrated", "sampling": "1M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/THEMIS/E/Models/the-msph-models", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-09-27T23:59:00Z", "target": "Earth", "xmlid": "the-msph-models"}, "the_t96_model": {"PriorID": "the-orb-all", "__spz_name__": "T96 field model", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "the-t96-model", "att": "auto/the-t96-model", "b_t96gse_the_xyz": {"__spz_name__": "b_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_t96gse_the_xyz", "b_t96gse_the_xyz0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gse_the_xyz(0)", "dataset": "the-t96-model", "index1": "0", "is_public": "True", "name": "bx", "parameter": "b_t96gse_the_xyz", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-09-27T23:59:00Z", "xmlid": "b_t96gse_the_xyz(0)"}, "b_t96gse_the_xyz1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gse_the_xyz(1)", "dataset": "the-t96-model", "index1": "1", "is_public": "True", "name": "by", "parameter": "b_t96gse_the_xyz", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-09-27T23:59:00Z", "xmlid": "b_t96gse_the_xyz(1)"}, "b_t96gse_the_xyz2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gse_the_xyz(2)", "dataset": "the-t96-model", "index1": "2", "is_public": "True", "name": "bz", "parameter": "b_t96gse_the_xyz", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-09-27T23:59:00Z", "xmlid": "b_t96gse_the_xyz(2)"}, "dataset": "the-t96-model", "is_public": "True", "name": "b_gse", "predefined": "1", "size": "3", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-09-27T23:59:00Z", "template": "b_t96gse_##ORBIT##", "units": "nT", "xmlid": "b_t96gse_the_xyz"}, "b_t96gsm_the_xyz": {"__spz_name__": "b_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_t96gsm_the_xyz", "b_t96gsm_the_xyz0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gsm_the_xyz(0)", "dataset": "the-t96-model", "index1": "0", "is_public": "True", "name": "bx", "parameter": "b_t96gsm_the_xyz", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-09-27T23:59:00Z", "xmlid": "b_t96gsm_the_xyz(0)"}, "b_t96gsm_the_xyz1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gsm_the_xyz(1)", "dataset": "the-t96-model", "index1": "1", "is_public": "True", "name": "by", "parameter": "b_t96gsm_the_xyz", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-09-27T23:59:00Z", "xmlid": "b_t96gsm_the_xyz(1)"}, "b_t96gsm_the_xyz2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_t96gsm_the_xyz(2)", "dataset": "the-t96-model", "index1": "2", "is_public": "True", "name": "bz", "parameter": "b_t96gsm_the_xyz", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-09-27T23:59:00Z", "xmlid": "b_t96gsm_the_xyz(2)"}, "dataset": "the-t96-model", "is_public": "True", "name": "b_gsm", "predefined": "1", "size": "3", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-09-27T23:59:00Z", "template": "b_t96gsm_##ORBIT##", "units": "nT", "xmlid": "b_t96gsm_the_xyz"}, "b_t96tot_the_xyz": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_t96tot_the_xyz", "dataset": "the-t96-model", "is_public": "True", "name": "|b|", "predefined": "1", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-09-27T23:59:00Z", "template": "b_t96tot_##ORBIT##", "units": "nT", "xmlid": "b_t96tot_the_xyz"}, "dataSource": "IRAP", "desc": "Tsyganenko96 geomagnetospheric magnetic field model
Sampling: 1M
Provider: IRAP", "is_public": "True", "lastModificationDate": "2024-09-30T04:02:54Z", "lastUpdate": "2024-09-30T04:02:54Z", "measurement_type": "MagneticField", "name": "T96 field model", "processing_level": "Calibrated", "sampling": "1M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/THEMIS/E/Models/the-t96-model", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-09-27T23:59:00Z", "target": "Earth", "xmlid": "the-t96-model"}, "xmlid": "ThemisE_models"}, "ESA": {"__spz_name__": "ESA", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "ThemisE_esa", "att": "auto/ThemisE_esa", "desc": "ElectrostaticAnalyser", "is_public": "True", "name": "ESA", "the_esa_l2e": {"__spz_name__": "electron full mode", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "the-esa-l2e", "att": "auto/the-esa-l2e", "dataSource": "IRAP_THEMIS", "desc": "
MinSampling: 96.27S; MaxSampling: 551.0S
Provider: IRAP_THEMIS", "is_public": "True", "lastModificationDate": "2024-10-07T04:00:53Z", "lastUpdate": "2024-10-07T04:00:53Z", "maxSampling": "551.0S", "measurement_type": "ThermalPlasma", "name": "electron full mode", "processing_level": "Calibrated", "sampling": "96.27S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/THEMIS/E/ESA/the-esa-l2e", "start_date": "2007-03-07T19:54:48Z", "stop_date": "2024-10-05T02:49:26Z", "target": "Earth.Magnetosphere", "the_el_sp": {"__spz_name__": "el omni eflux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "the_el_sp", "dataset": "the-esa-l2e", "display_type": "spectrogram", "is_public": "True", "name": "el omni eflux", "start_date": "2007-03-07T19:54:48Z", "stop_date": "2024-10-05T02:49:26Z", "ucd": "phys.flux;phys.energy;phys.electron", "units": "eV/cm\u00b2-s-sr-eV", "xmlid": "the_el_sp"}, "the_n_e": {"__spz_name__": "el density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "the_n_e", "dataset": "the-esa-l2e", "description": "Ion Density", "display_type": "timeseries", "is_public": "True", "name": "el density", "start_date": "2007-03-07T19:54:48Z", "stop_date": "2024-10-05T02:49:26Z", "ucd": "phys.density;phys.electron", "units": "cm-3", "xmlid": "the_n_e"}, "the_t_e": {"__spz_name__": "el temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "the_t_e", "dataset": "the-esa-l2e", "description": "Temperature", "display_type": "timeseries", "is_public": "True", "name": "el temperature", "size": "3", "start_date": "2007-03-07T19:54:48Z", "stop_date": "2024-10-05T02:49:26Z", "the_t_e0": {"__spz_name__": "t_perp1", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "the_t_e(0)", "dataset": "the-esa-l2e", "index1": "1", "is_public": "True", "name": "t_perp1", "parameter": "the_t_e", "start_date": "2007-03-07T19:54:48Z", "stop_date": "2024-10-05T02:49:26Z", "xmlid": "the_t_e(0)"}, "the_t_e1": {"__spz_name__": "t_perp2", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "the_t_e(1)", "dataset": "the-esa-l2e", "index1": "2", "is_public": "True", "name": "t_perp2", "parameter": "the_t_e", "start_date": "2007-03-07T19:54:48Z", "stop_date": "2024-10-05T02:49:26Z", "xmlid": "the_t_e(1)"}, "the_t_e2": {"__spz_name__": "t_para", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "the_t_e(2)", "dataset": "the-esa-l2e", "index1": "0", "is_public": "True", "name": "t_para", "parameter": "the_t_e", "start_date": "2007-03-07T19:54:48Z", "stop_date": "2024-10-05T02:49:26Z", "xmlid": "the_t_e(2)"}, "ucd": "phys.temperature;phys.electron", "units": "eV", "xmlid": "the_t_e"}, "the_v_e": {"__spz_name__": "el v_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "the_v_e", "dataset": "the-esa-l2e", "display_type": "timeseries", "is_public": "True", "name": "el v_gse", "size": "3", "start_date": "2007-03-07T19:54:48Z", "stop_date": "2024-10-05T02:49:26Z", "the_v_e0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "the_v_e(0)", "dataset": "the-esa-l2e", "index1": "0", "is_public": "True", "name": "vx", "parameter": "the_v_e", "start_date": "2007-03-07T19:54:48Z", "stop_date": "2024-10-05T02:49:26Z", "xmlid": "the_v_e(0)"}, "the_v_e1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "the_v_e(1)", "dataset": "the-esa-l2e", "index1": "1", "is_public": "True", "name": "vy", "parameter": "the_v_e", "start_date": "2007-03-07T19:54:48Z", "stop_date": "2024-10-05T02:49:26Z", "xmlid": "the_v_e(1)"}, "the_v_e2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "the_v_e(2)", "dataset": "the-esa-l2e", "index1": "2", "is_public": "True", "name": "vz", "parameter": "the_v_e", "start_date": "2007-03-07T19:54:48Z", "stop_date": "2024-10-05T02:49:26Z", "xmlid": "the_v_e(2)"}, "ucd": "phys.veloc;phys.electron", "units": "km/s", "xmlid": "the_v_e"}, "xmlid": "the-esa-l2e"}, "the_esa_l2i": {"__spz_name__": "ion full mode", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "the-esa-l2i", "att": "auto/the-esa-l2i", "dataSource": "IRAP_THEMIS", "desc": "
MinSampling: 96.27S; MaxSampling: 551.0S
Provider: IRAP_THEMIS", "is_public": "True", "lastModificationDate": "2024-10-07T04:00:53Z", "lastUpdate": "2024-10-07T04:00:53Z", "maxSampling": "551.0S", "measurement_type": "ThermalPlasma", "name": "ion full mode", "processing_level": "Calibrated", "sampling": "96.27S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/THEMIS/E/ESA/the-esa-l2i", "start_date": "2007-03-07T19:54:48Z", "stop_date": "2024-10-05T02:49:26Z", "target": "Earth.Magnetosphere", "the_ion_sp": {"__spz_name__": "ion eflux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "the_ion_sp", "dataset": "the-esa-l2i", "display_type": "spectrogram", "is_public": "True", "name": "ion eflux", "start_date": "2007-03-07T19:54:48Z", "stop_date": "2024-10-05T02:49:26Z", "ucd": "phys.flux;phys.energy;phys.atmol.ionStage", "units": "eV/cm\u00b2-s-sr-eV", "xmlid": "the_ion_sp"}, "the_n_i": {"__spz_name__": "ion density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "the_n_i", "dataset": "the-esa-l2i", "description": "Ion Density", "display_type": "timeseries", "is_public": "True", "name": "ion density", "start_date": "2007-03-07T19:54:48Z", "stop_date": "2024-10-05T02:49:26Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm-3", "xmlid": "the_n_i"}, "the_t_i": {"__spz_name__": "ion temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "the_t_i", "dataset": "the-esa-l2i", "description": "Temperature", "display_type": "timeseries", "is_public": "True", "name": "ion temperature", "size": "3", "start_date": "2007-03-07T19:54:48Z", "stop_date": "2024-10-05T02:49:26Z", "the_t_i0": {"__spz_name__": "t_perp1", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "the_t_i(0)", "dataset": "the-esa-l2i", "index1": "1", "is_public": "True", "name": "t_perp1", "parameter": "the_t_i", "start_date": "2007-03-07T19:54:48Z", "stop_date": "2024-10-05T02:49:26Z", "xmlid": "the_t_i(0)"}, "the_t_i1": {"__spz_name__": "t_perp2", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "the_t_i(1)", "dataset": "the-esa-l2i", "index1": "2", "is_public": "True", "name": "t_perp2", "parameter": "the_t_i", "start_date": "2007-03-07T19:54:48Z", "stop_date": "2024-10-05T02:49:26Z", "xmlid": "the_t_i(1)"}, "the_t_i2": {"__spz_name__": "t_para", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "the_t_i(2)", "dataset": "the-esa-l2i", "index1": "0", "is_public": "True", "name": "t_para", "parameter": "the_t_i", "start_date": "2007-03-07T19:54:48Z", "stop_date": "2024-10-05T02:49:26Z", "xmlid": "the_t_i(2)"}, "ucd": "phys.temperature;phys.atmol.ionStage", "units": "eV", "xmlid": "the_t_i"}, "the_v_i": {"__spz_name__": "ion v_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "the_v_i", "dataset": "the-esa-l2i", "display_type": "timeseries", "is_public": "True", "name": "ion v_gse", "size": "3", "start_date": "2007-03-07T19:54:48Z", "stop_date": "2024-10-05T02:49:26Z", "the_v_i0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "the_v_i(0)", "dataset": "the-esa-l2i", "index1": "0", "is_public": "True", "name": "vx", "parameter": "the_v_i", "start_date": "2007-03-07T19:54:48Z", "stop_date": "2024-10-05T02:49:26Z", "xmlid": "the_v_i(0)"}, "the_v_i1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "the_v_i(1)", "dataset": "the-esa-l2i", "index1": "1", "is_public": "True", "name": "vy", "parameter": "the_v_i", "start_date": "2007-03-07T19:54:48Z", "stop_date": "2024-10-05T02:49:26Z", "xmlid": "the_v_i(1)"}, "the_v_i2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "the_v_i(2)", "dataset": "the-esa-l2i", "index1": "2", "is_public": "True", "name": "vz", "parameter": "the_v_i", "start_date": "2007-03-07T19:54:48Z", "stop_date": "2024-10-05T02:49:26Z", "xmlid": "the_v_i(2)"}, "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "the_v_i"}, "the_v_i_tot": {"__spz_name__": "ion |v|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "the_v_i_tot", "dataset": "the-esa-l2i", "description": "Module of Velocity", "display_type": "timeseries", "is_public": "True", "name": "ion |v|", "start_date": "2007-03-07T19:54:48Z", "stop_date": "2024-10-05T02:49:26Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "the_v_i_tot"}, "xmlid": "the-esa-l2i"}, "the_peem_all": {"__spz_name__": "electron onboard moments", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "the-peem-all", "att": "auto/the-peem-all", "dataSource": "IRAP_THEMIS", "desc": "
Sampling: 3S
Provider: IRAP_THEMIS", "is_public": "True", "lastModificationDate": "2024-10-07T04:02:05Z", "lastUpdate": "2024-10-07T04:02:04Z", "measurement_type": "ThermalPlasma", "name": "electron onboard moments", "processing_level": "Calibrated", "sampling": "3S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/THEMIS/E/ESA/the-peem-all", "start_date": "2007-08-10T00:00:17Z", "stop_date": "2024-10-05T02:50:30Z", "target": "Earth.Magnetosphere", "the_n_peem": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "the_n_peem", "dataset": "the-peem-all", "description": "electron Density", "display_type": "timeseries", "is_public": "True", "name": "density", "start_date": "2007-08-10T00:00:17Z", "stop_date": "2024-10-05T02:50:30Z", "ucd": "phys.density;phys.electron", "units": "cm-3", "xmlid": "the_n_peem"}, "the_t_peem": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "the_t_peem", "dataset": "the-peem-all", "description": "Temperature", "display_type": "timeseries", "is_public": "True", "name": "temperature", "size": "3", "start_date": "2007-08-10T00:00:17Z", "stop_date": "2024-10-05T02:50:30Z", "the_t_peem0": {"__spz_name__": "t_perp1", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "the_t_peem(0)", "dataset": "the-peem-all", "index1": "1", "is_public": "True", "name": "t_perp1", "parameter": "the_t_peem", "start_date": "2007-08-10T00:00:17Z", "stop_date": "2024-10-05T02:50:30Z", "xmlid": "the_t_peem(0)"}, "the_t_peem1": {"__spz_name__": "t_perp2", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "the_t_peem(1)", "dataset": "the-peem-all", "index1": "2", "is_public": "True", "name": "t_perp2", "parameter": "the_t_peem", "start_date": "2007-08-10T00:00:17Z", "stop_date": "2024-10-05T02:50:30Z", "xmlid": "the_t_peem(1)"}, "the_t_peem2": {"__spz_name__": "t_para", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "the_t_peem(2)", "dataset": "the-peem-all", "index1": "0", "is_public": "True", "name": "t_para", "parameter": "the_t_peem", "start_date": "2007-08-10T00:00:17Z", "stop_date": "2024-10-05T02:50:30Z", "xmlid": "the_t_peem(2)"}, "ucd": "phys.temperature;phys.electron", "units": "eV", "xmlid": "the_t_peem"}, "xmlid": "the-peem-all"}, "the_peim_all": {"__spz_name__": "ion onboard moments", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "the-peim-all", "att": "auto/the-peim-all", "dataSource": "IRAP_THEMIS", "desc": "
Sampling: 3S
Provider: IRAP_THEMIS", "is_public": "True", "lastModificationDate": "2024-10-07T04:02:05Z", "lastUpdate": "2024-10-07T04:02:04Z", "measurement_type": "ThermalPlasma", "name": "ion onboard moments", "processing_level": "Calibrated", "sampling": "3S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/THEMIS/E/ESA/the-peim-all", "start_date": "2007-08-10T00:00:17Z", "stop_date": "2024-10-05T02:50:30Z", "target": "Earth.Magnetosphere", "the_n_peim": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "the_n_peim", "dataset": "the-peim-all", "description": "Ion Density", "display_type": "timeseries", "is_public": "True", "name": "density", "start_date": "2007-08-10T00:00:17Z", "stop_date": "2024-10-05T02:50:30Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm-3", "xmlid": "the_n_peim"}, "the_t_peim": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "the_t_peim", "dataset": "the-peim-all", "description": "Temperature", "display_type": "timeseries", "is_public": "True", "name": "temperature", "size": "3", "start_date": "2007-08-10T00:00:17Z", "stop_date": "2024-10-05T02:50:30Z", "the_t_peim0": {"__spz_name__": "t_perp1", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "the_t_peim(0)", "dataset": "the-peim-all", "index1": "1", "is_public": "True", "name": "t_perp1", "parameter": "the_t_peim", "start_date": "2007-08-10T00:00:17Z", "stop_date": "2024-10-05T02:50:30Z", "xmlid": "the_t_peim(0)"}, "the_t_peim1": {"__spz_name__": "t_perp2", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "the_t_peim(1)", "dataset": "the-peim-all", "index1": "2", "is_public": "True", "name": "t_perp2", "parameter": "the_t_peim", "start_date": "2007-08-10T00:00:17Z", "stop_date": "2024-10-05T02:50:30Z", "xmlid": "the_t_peim(1)"}, "the_t_peim2": {"__spz_name__": "t_para", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "the_t_peim(2)", "dataset": "the-peim-all", "index1": "0", "is_public": "True", "name": "t_para", "parameter": "the_t_peim", "start_date": "2007-08-10T00:00:17Z", "stop_date": "2024-10-05T02:50:30Z", "xmlid": "the_t_peim(2)"}, "ucd": "phys.temperature;phys.atmol.ionStage", "units": "eV", "xmlid": "the_t_peim"}, "the_v_peim": {"__spz_name__": "v_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "the_v_peim", "dataset": "the-peim-all", "display_type": "timeseries", "is_public": "True", "name": "v_gse", "size": "3", "start_date": "2007-08-10T00:00:17Z", "stop_date": "2024-10-05T02:50:30Z", "the_v_peim0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "the_v_peim(0)", "dataset": "the-peim-all", "index1": "0", "is_public": "True", "name": "vx", "parameter": "the_v_peim", "start_date": "2007-08-10T00:00:17Z", "stop_date": "2024-10-05T02:50:30Z", "xmlid": "the_v_peim(0)"}, "the_v_peim1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "the_v_peim(1)", "dataset": "the-peim-all", "index1": "1", "is_public": "True", "name": "vy", "parameter": "the_v_peim", "start_date": "2007-08-10T00:00:17Z", "stop_date": "2024-10-05T02:50:30Z", "xmlid": "the_v_peim(1)"}, "the_v_peim2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "the_v_peim(2)", "dataset": "the-peim-all", "index1": "2", "is_public": "True", "name": "vz", "parameter": "the_v_peim", "start_date": "2007-08-10T00:00:17Z", "stop_date": "2024-10-05T02:50:30Z", "xmlid": "the_v_peim(2)"}, "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "the_v_peim"}, "the_v_peim_tot": {"__spz_name__": "|v|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "the_v_peim_tot", "dataset": "the-peim-all", "description": "Module of Velocity", "display_type": "timeseries", "is_public": "True", "name": "|v|", "start_date": "2007-08-10T00:00:17Z", "stop_date": "2024-10-05T02:50:30Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "the_v_peim_tot"}, "xmlid": "the-peim-all"}, "the_pot_mom": {"__spz_name__": "onboard moments : potential", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "the-pot-mom", "att": "auto/the-pot-mom", "dataSource": "IRAP_THEMIS", "desc": "S/c potential from onboard moments
Sampling: 3S
Provider: IRAP_THEMIS", "is_public": "True", "lastModificationDate": "2024-10-07T04:02:05Z", "lastUpdate": "2024-10-07T04:02:04Z", "measurement_type": "ThermalPlasma", "name": "onboard moments : potential", "processing_level": "Calibrated", "sampling": "3S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/THEMIS/E/ESA/the-pot-mom", "start_date": "2007-08-10T00:00:17Z", "stop_date": "2024-10-05T02:50:30Z", "target": "Earth.Magnetosphere", "the_pot": {"__spz_name__": "s/c pot", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "the_pot", "dataset": "the-pot-mom", "description": "S/C potential", "is_public": "True", "name": "s/c pot", "start_date": "2007-08-10T00:00:17Z", "stop_date": "2024-10-05T02:50:30Z", "ucd": "phys.potential;phys.electField;instr.obsty", "units": "V", "xmlid": "the_pot"}, "xmlid": "the-pot-mom"}, "xmlid": "ThemisE_esa"}, "Ephemeris": {"__spz_name__": "Ephemeris", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "ThemisE_ephemeris", "att": "auto/ThemisE_ephemeris", "desc": "", "is_public": "True", "name": "Ephemeris", "the_orb_all": {"__spz_name__": "orbit", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "the-orb-all", "att": "auto/the-orb-all", "dataSource": "IRAP_THEMIS", "desc": "
Sampling: 60S
Provider: IRAP_THEMIS", "is_public": "True", "lastModificationDate": "2024-09-30T04:02:54Z", "lastUpdate": "2024-09-30T04:02:54Z", "measurement_type": "Ephemeris", "name": "orbit", "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/THEMIS/E/Ephemeris/the-orb-all", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-09-27T23:59:00Z", "target": "Earth.Magnetosphere", "the_r": {"__spz_name__": "distance the-earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "the_r", "dataset": "the-orb-all", "display_type": "timeseries", "is_public": "True", "name": "distance the-earth", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-09-27T23:59:00Z", "ucd": "pos.distance", "units": "Re", "xmlid": "the_r"}, "the_xyz": {"__spz_name__": "xyz_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "the_xyz", "dataset": "the-orb-all", "description": "position in GSE coordinates", "display_type": "timeseries", "is_public": "True", "name": "xyz_gse", "size": "3", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-09-27T23:59:00Z", "the_xyz0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "the_xyz(0)", "dataset": "the-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "the_xyz", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-09-27T23:59:00Z", "xmlid": "the_xyz(0)"}, "the_xyz1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "the_xyz(1)", "dataset": "the-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "the_xyz", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-09-27T23:59:00Z", "xmlid": "the_xyz(1)"}, "the_xyz2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "the_xyz(2)", "dataset": "the-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "the_xyz", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-09-27T23:59:00Z", "xmlid": "the_xyz(2)"}, "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "Re", "xmlid": "the_xyz"}, "the_xyz_gsm": {"__spz_name__": "xyz_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "the_xyz_gsm", "dataset": "the-orb-all", "description": "position in GSM coordinates", "display_type": "timeseries", "is_public": "True", "name": "xyz_gsm", "size": "3", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-09-27T23:59:00Z", "the_xyz_gsm0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "the_xyz_gsm(0)", "dataset": "the-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "the_xyz_gsm", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-09-27T23:59:00Z", "xmlid": "the_xyz_gsm(0)"}, "the_xyz_gsm1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "the_xyz_gsm(1)", "dataset": "the-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "the_xyz_gsm", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-09-27T23:59:00Z", "xmlid": "the_xyz_gsm(1)"}, "the_xyz_gsm2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "the_xyz_gsm(2)", "dataset": "the-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "the_xyz_gsm", "start_date": "2007-02-17T23:36:00Z", "stop_date": "2024-09-27T23:59:00Z", "xmlid": "the_xyz_gsm(2)"}, "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "Re", "xmlid": "the_xyz_gsm"}, "xmlid": "the-orb-all"}, "xmlid": "ThemisE_ephemeris"}, "FGM": {"__spz_name__": "FGM", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "ThemisE_fgm", "att": "auto/ThemisE_fgm", "desc": "Tri-axial Fluxgate Magnetometer
Magnetometer", "is_public": "True", "name": "FGM", "the_fgm_l": {"__spz_name__": "0.25 sec (low)", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "the-fgm-l", "att": "auto/the-fgm-l", "dataSource": "", "desc": "
Sampling: 0.25S", "is_public": "True", "lastModificationDate": "2024-10-07T04:07:43Z", "lastUpdate": "2024-10-07T04:07:41Z", "measurement_type": "MagneticField", "name": "0.25 sec (low)", "processing_level": "Calibrated", "sampling": "0.25S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/THEMIS/E/FGM/the-fgm-l", "start_date": "2007-02-23T02:29:39Z", "stop_date": "2024-05-23T09:25:26Z", "target": "Earth.Magnetosphere", "the_bl": {"__spz_name__": "b_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "the_bl", "dataset": "the-fgm-l", "description": "Magnetic Field", "display_type": "timeseries", "is_public": "True", "name": "b_gse", "size": "3", "start_date": "2007-02-23T02:29:39Z", "stop_date": "2024-05-23T09:25:26Z", "the_bl0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "the_bl(0)", "dataset": "the-fgm-l", "index1": "0", "is_public": "True", "name": "bx", "parameter": "the_bl", "start_date": "2007-02-23T02:29:39Z", "stop_date": "2024-05-23T09:25:26Z", "xmlid": "the_bl(0)"}, "the_bl1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "the_bl(1)", "dataset": "the-fgm-l", "index1": "1", "is_public": "True", "name": "by", "parameter": "the_bl", "start_date": "2007-02-23T02:29:39Z", "stop_date": "2024-05-23T09:25:26Z", "xmlid": "the_bl(1)"}, "the_bl2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "the_bl(2)", "dataset": "the-fgm-l", "index1": "2", "is_public": "True", "name": "bz", "parameter": "the_bl", "start_date": "2007-02-23T02:29:39Z", "stop_date": "2024-05-23T09:25:26Z", "xmlid": "the_bl(2)"}, "ucd": "phys.magField", "units": "nT", "xmlid": "the_bl"}, "the_bl_gsm": {"__spz_name__": "b_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "the_bl_gsm", "dataset": "the-fgm-l", "description": "Magnetic Field", "display_type": "timeseries", "is_public": "True", "name": "b_gsm", "size": "3", "start_date": "2007-02-23T02:29:39Z", "stop_date": "2024-05-23T09:25:26Z", "the_bl_gsm0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "the_bl_gsm(0)", "dataset": "the-fgm-l", "index1": "0", "is_public": "True", "name": "bx", "parameter": "the_bl_gsm", "start_date": "2007-02-23T02:29:39Z", "stop_date": "2024-05-23T09:25:26Z", "xmlid": "the_bl_gsm(0)"}, "the_bl_gsm1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "the_bl_gsm(1)", "dataset": "the-fgm-l", "index1": "1", "is_public": "True", "name": "by", "parameter": "the_bl_gsm", "start_date": "2007-02-23T02:29:39Z", "stop_date": "2024-05-23T09:25:26Z", "xmlid": "the_bl_gsm(1)"}, "the_bl_gsm2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "the_bl_gsm(2)", "dataset": "the-fgm-l", "index1": "2", "is_public": "True", "name": "bz", "parameter": "the_bl_gsm", "start_date": "2007-02-23T02:29:39Z", "stop_date": "2024-05-23T09:25:26Z", "xmlid": "the_bl_gsm(2)"}, "ucd": "phys.magField", "units": "nT", "xmlid": "the_bl_gsm"}, "the_bl_tot": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "the_bl_tot", "dataset": "the-fgm-l", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "2007-02-23T02:29:39Z", "stop_date": "2024-05-23T09:25:26Z", "ucd": "phys.magField", "units": "nT", "xmlid": "the_bl_tot"}, "xmlid": "the-fgm-l"}, "the_fgm_s": {"__spz_name__": "3 sec (spin)", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "the-fgm-s", "att": "auto/the-fgm-s", "dataSource": "IRAP_THEMIS", "desc": "
Sampling: 3S
Provider: IRAP_THEMIS", "is_public": "True", "lastModificationDate": "2024-10-07T04:07:50Z", "lastUpdate": "2024-10-07T04:07:50Z", "measurement_type": "MagneticField", "name": "3 sec (spin)", "processing_level": "Calibrated", "sampling": "3S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/THEMIS/E/FGM/the-fgm-s", "start_date": "2007-02-28T05:17:46Z", "stop_date": "2024-05-23T06:07:20Z", "target": "Earth.Magnetosphere", "the_bs": {"__spz_name__": "b_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "the_bs", "dataset": "the-fgm-s", "description": "Magnetic Field", "display_type": "timeseries", "is_public": "True", "name": "b_gse", "size": "3", "start_date": "2007-02-28T05:17:46Z", "stop_date": "2024-05-23T06:07:20Z", "the_bs0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "the_bs(0)", "dataset": "the-fgm-s", "index1": "0", "is_public": "True", "name": "bx", "parameter": "the_bs", "start_date": "2007-02-28T05:17:46Z", "stop_date": "2024-05-23T06:07:20Z", "xmlid": "the_bs(0)"}, "the_bs1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "the_bs(1)", "dataset": "the-fgm-s", "index1": "1", "is_public": "True", "name": "by", "parameter": "the_bs", "start_date": "2007-02-28T05:17:46Z", "stop_date": "2024-05-23T06:07:20Z", "xmlid": "the_bs(1)"}, "the_bs2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "the_bs(2)", "dataset": "the-fgm-s", "index1": "2", "is_public": "True", "name": "bz", "parameter": "the_bs", "start_date": "2007-02-28T05:17:46Z", "stop_date": "2024-05-23T06:07:20Z", "xmlid": "the_bs(2)"}, "ucd": "phys.magField", "units": "nT", "xmlid": "the_bs"}, "the_bs_gsm": {"__spz_name__": "b_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "the_bs_gsm", "dataset": "the-fgm-s", "description": "Magnetic Field", "display_type": "timeseries", "is_public": "True", "name": "b_gsm", "size": "3", "start_date": "2007-02-28T05:17:46Z", "stop_date": "2024-05-23T06:07:20Z", "the_bs_gsm0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "the_bs_gsm(0)", "dataset": "the-fgm-s", "index1": "0", "is_public": "True", "name": "bx", "parameter": "the_bs_gsm", "start_date": "2007-02-28T05:17:46Z", "stop_date": "2024-05-23T06:07:20Z", "xmlid": "the_bs_gsm(0)"}, "the_bs_gsm1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "the_bs_gsm(1)", "dataset": "the-fgm-s", "index1": "1", "is_public": "True", "name": "by", "parameter": "the_bs_gsm", "start_date": "2007-02-28T05:17:46Z", "stop_date": "2024-05-23T06:07:20Z", "xmlid": "the_bs_gsm(1)"}, "the_bs_gsm2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "the_bs_gsm(2)", "dataset": "the-fgm-s", "index1": "2", "is_public": "True", "name": "bz", "parameter": "the_bs_gsm", "start_date": "2007-02-28T05:17:46Z", "stop_date": "2024-05-23T06:07:20Z", "xmlid": "the_bs_gsm(2)"}, "ucd": "phys.magField", "units": "nT", "xmlid": "the_bs_gsm"}, "the_bs_tot": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "the_bs_tot", "dataset": "the-fgm-s", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "2007-02-28T05:17:46Z", "stop_date": "2024-05-23T06:07:20Z", "ucd": "phys.magField", "units": "nT", "xmlid": "the_bs_tot"}, "xmlid": "the-fgm-s"}, "xmlid": "ThemisE_fgm"}, "__spz_name__": "THEMIS-E", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "ThemisE", "att": "auto/ThemisE", "desc": "Explorer 89
2007-02-15T00:00:00
Initial phase : apogee 15.4Re : 2007-02-15 - 2007-09-15
Orbit Placement Phase: 2007-09-15 - 2007-12-15
Full constellation phase: 1.5 x 12 Re : 2007-12-15 - 2009-09-30
THEMIS : apogee 12 Re : 2009-10-01 - present", "is_public": "True", "name": "THEMIS-E", "target": "Earth.Magnetosphere", "xmlid": "ThemisE"}, "__spz_name__": "THEMIS", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Themis", "att": "auto/Themis", "desc": "Time History of Events and Macroscale Interactions during Substorms; NASA Magnetospheric Mission
2007-02-17T00:00:00
Initial phase: 2007-02-15 - 2007-09-15
Orbit Placement Phase: 2007-09-15 - 2007-12-15
Full constellation phase: 2007-12-15 - 2009-09-30
THEMIS and ARTEMIS: 2009-10-01 - present", "is_public": "True", "name": "THEMIS", "rank": "6", "target": "Earth.Magnetosphere", "xmlid": "Themis"}, "Ulysses": {"Ephemeris": {"__spz_name__": "Ephemeris", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Ulysses_ephemeris", "att": "auto/Ulysses_ephemeris", "desc": "", "is_public": "True", "name": "Ephemeris", "ulys_orb_all": {"__spz_name__": "orbit sun", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ulys-orb-all", "att": "auto/ulys-orb-all", "dataSource": "PDS", "desc": "
Sampling: 1H
Provider: PDS", "is_public": "True", "lastModificationDate": "2012-03-06T22:15:50Z", "lastUpdate": "2019-03-29T12:14:25Z", "measurement_type": "Ephemeris", "name": "orbit sun", "processing_level": "Calibrated", "sampling": "1H", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/ULYSSES/Ephemeris/ulys-orb-all", "start_date": "1990-10-07T00:00:00Z", "stop_date": "2009-12-31T00:00:00Z", "target": "Heliosphere", "ulys_carr_lat": {"__spz_name__": "lat iau_sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ulys_carr_lat", "dataset": "ulys-orb-all", "is_public": "True", "name": "lat iau_sun", "start_date": "1990-10-07T00:00:00Z", "stop_date": "2009-12-31T00:00:00Z", "ucd": "pos.ephem;pos.heliocentric", "units": "deg", "xmlid": "ulys_carr_lat"}, "ulys_carr_lon": {"__spz_name__": "lon iau_sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ulys_carr_lon", "dataset": "ulys-orb-all", "is_public": "True", "name": "lon iau_sun", "start_date": "1990-10-07T00:00:00Z", "stop_date": "2009-12-31T00:00:00Z", "ucd": "pos.ephem;pos.heliocentric", "units": "deg", "xmlid": "ulys_carr_lon"}, "ulys_carr_r": {"__spz_name__": "distance ulys-sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ulys_carr_r", "dataset": "ulys-orb-all", "is_public": "True", "name": "distance ulys-sun", "start_date": "1990-10-07T00:00:00Z", "stop_date": "2009-12-31T00:00:00Z", "ucd": "pos.ephem;pos.heliocentric;pos.distance", "units": "AU", "xmlid": "ulys_carr_r"}, "ulys_lat_hee": {"__spz_name__": "lat hee", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ulys_lat_hee", "dataset": "ulys-orb-all", "is_public": "True", "name": "lat hee", "start_date": "1990-10-07T00:00:00Z", "stop_date": "2009-12-31T00:00:00Z", "units": "deg", "xmlid": "ulys_lat_hee"}, "ulys_lon_hee": {"__spz_name__": "lon hee", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ulys_lon_hee", "dataset": "ulys-orb-all", "is_public": "True", "name": "lon hee", "start_date": "1990-10-07T00:00:00Z", "stop_date": "2009-12-31T00:00:00Z", "ucd": "pos.ephem;pos.heliocentric", "units": "deg", "xmlid": "ulys_lon_hee"}, "xmlid": "ulys-orb-all", "xyz_ulys_hae": {"__spz_name__": "xyz_hae", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "xyz_ulys_hae", "dataset": "ulys-orb-all", "display_type": "timeseries", "is_public": "True", "name": "xyz_hae", "size": "3", "start_date": "1990-10-07T00:00:00Z", "stop_date": "2009-12-31T00:00:00Z", "ucd": "pos.ephem;pos.heliocentric;instr.obsty", "units": "AU", "xmlid": "xyz_ulys_hae", "xyz_ulys_hae0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_ulys_hae(0)", "dataset": "ulys-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "xyz_ulys_hae", "start_date": "1990-10-07T00:00:00Z", "stop_date": "2009-12-31T00:00:00Z", "xmlid": "xyz_ulys_hae(0)"}, "xyz_ulys_hae1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_ulys_hae(1)", "dataset": "ulys-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "xyz_ulys_hae", "start_date": "1990-10-07T00:00:00Z", "stop_date": "2009-12-31T00:00:00Z", "xmlid": "xyz_ulys_hae(1)"}, "xyz_ulys_hae2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_ulys_hae(2)", "dataset": "ulys-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "xyz_ulys_hae", "start_date": "1990-10-07T00:00:00Z", "stop_date": "2009-12-31T00:00:00Z", "xmlid": "xyz_ulys_hae(2)"}}, "xyz_ulys_hee": {"__spz_name__": "xyz_hee", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "xyz_ulys_hee", "dataset": "ulys-orb-all", "display_type": "timeseries", "is_public": "True", "name": "xyz_hee", "size": "3", "start_date": "1990-10-07T00:00:00Z", "stop_date": "2009-12-31T00:00:00Z", "ucd": "pos.ephem;pos.heliocentric;instr.obsty", "units": "AU", "xmlid": "xyz_ulys_hee", "xyz_ulys_hee0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_ulys_hee(0)", "dataset": "ulys-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "xyz_ulys_hee", "start_date": "1990-10-07T00:00:00Z", "stop_date": "2009-12-31T00:00:00Z", "xmlid": "xyz_ulys_hee(0)"}, "xyz_ulys_hee1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_ulys_hee(1)", "dataset": "ulys-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "xyz_ulys_hee", "start_date": "1990-10-07T00:00:00Z", "stop_date": "2009-12-31T00:00:00Z", "xmlid": "xyz_ulys_hee(1)"}, "xyz_ulys_hee2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_ulys_hee(2)", "dataset": "ulys-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "xyz_ulys_hee", "start_date": "1990-10-07T00:00:00Z", "stop_date": "2009-12-31T00:00:00Z", "xmlid": "xyz_ulys_hee(2)"}}, "xyz_ulys_iausun": {"__spz_name__": "xyz_iau_sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "xyz_ulys_iausun", "dataset": "ulys-orb-all", "display_type": "timeseries", "is_public": "True", "name": "xyz_iau_sun", "size": "3", "start_date": "1990-10-07T00:00:00Z", "stop_date": "2009-12-31T00:00:00Z", "ucd": "pos.ephem;pos.heliocentric;instr.obsty", "units": "AU", "xmlid": "xyz_ulys_iausun", "xyz_ulys_iausun0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_ulys_iausun(0)", "dataset": "ulys-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "xyz_ulys_iausun", "start_date": "1990-10-07T00:00:00Z", "stop_date": "2009-12-31T00:00:00Z", "xmlid": "xyz_ulys_iausun(0)"}, "xyz_ulys_iausun1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_ulys_iausun(1)", "dataset": "ulys-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "xyz_ulys_iausun", "start_date": "1990-10-07T00:00:00Z", "stop_date": "2009-12-31T00:00:00Z", "xmlid": "xyz_ulys_iausun(1)"}, "xyz_ulys_iausun2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_ulys_iausun(2)", "dataset": "ulys-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "xyz_ulys_iausun", "start_date": "1990-10-07T00:00:00Z", "stop_date": "2009-12-31T00:00:00Z", "xmlid": "xyz_ulys_iausun(2)"}}}, "ulys_orb_jup": {"__spz_name__": "flyby jupiter", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ulys-orb-jup", "att": "auto/ulys-orb-jup", "dataSource": "PDS", "desc": "
MinSampling: 140S; MaxSampling: 356S
Provider: PDS", "is_public": "True", "lastModificationDate": "2012-03-06T22:18:14Z", "lastUpdate": "2012-03-06T22:18:14Z", "maxSampling": "356S", "measurement_type": "Ephemeris", "name": "flyby jupiter", "processing_level": "Calibrated", "sampling": "140S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/ULYSSES/Ephemeris/ulys-orb-jup", "start_date": "1992-01-25T00:07:16Z", "stop_date": "1992-02-17T23:56:31Z", "target": "Jupiter", "ulys_jup_lat": {"__spz_name__": "lat", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ulys_jup_lat", "dataset": "ulys-orb-jup", "display_type": "timeseries", "is_public": "True", "name": "lat", "start_date": "1992-01-25T00:07:16Z", "stop_date": "1992-02-17T23:56:31Z", "ucd": "pos.bodyrc.lat", "units": "deg", "xmlid": "ulys_jup_lat"}, "ulys_jup_lt": {"__spz_name__": "local time", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ulys_jup_lt", "dataset": "ulys-orb-jup", "display_type": "timeseries", "is_public": "True", "name": "local time", "start_date": "1992-01-25T00:07:16Z", "stop_date": "1992-02-17T23:56:31Z", "ucd": "pos.bodyrc.lon;instr.obsty", "units": "HHMM", "xmlid": "ulys_jup_lt"}, "ulys_jup_mlat": {"__spz_name__": "mlat", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ulys_jup_mlat", "dataset": "ulys-orb-jup", "display_type": "timeseries", "is_public": "True", "name": "mlat", "start_date": "1992-01-25T00:07:16Z", "stop_date": "1992-02-17T23:56:31Z", "ucd": "pos.bodyrc.lat;phys.magField;instr.obsty", "units": "deg", "xmlid": "ulys_jup_mlat"}, "ulys_jup_r": {"__spz_name__": "distance ulys-jup", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ulys_jup_r", "dataset": "ulys-orb-jup", "is_public": "True", "name": "distance ulys-jup", "start_date": "1992-01-25T00:07:16Z", "stop_date": "1992-02-17T23:56:31Z", "ucd": "pos.distance;instr.obsty", "units": "Rj", "xmlid": "ulys_jup_r"}, "xmlid": "ulys-orb-jup"}, "xmlid": "Ulysses_ephemeris"}, "SWICS": {"__spz_name__": "SWICS", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Ulysses_swics", "att": "auto/Ulysses_swics", "desc": "Solar Wind Ion Composition Spectrometer
EnergeticParticleInstrument", "is_public": "True", "name": "SWICS", "ulys_swi_ion": {"__spz_name__": "heavy ions main charge states", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ulys-swi-ion", "att": "auto/ulys-swi-ion", "dataSource": "ESA", "desc": "
Sampling: 3H
Provider: ESA", "is_public": "True", "lastModificationDate": "2020-06-24T15:55:42Z", "lastUpdate": "2020-06-24T16:45:16Z", "measurement_type": "ThermalPlasma", "name": "heavy ions main charge states", "processing_level": "Calibrated", "sampling": "3H", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/ULYSSES/SWICS/ulys-swi-ion", "start_date": "1990-12-07T20:02:48Z", "stop_date": "2009-06-29T06:15:49Z", "target": "Heliosphere", "ulys_swi_Cn": {"__spz_name__": "density ratio C6+/O6+", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ulys_swi_Cn", "dataset": "ulys-swi-ion", "display_type": "timeseries", "is_public": "True", "name": "density ratio C6+/O6+", "start_date": "1990-12-07T20:02:48Z", "stop_date": "2009-06-29T06:15:49Z", "xmlid": "ulys_swi_Cn"}, "ulys_swi_Ct": {"__spz_name__": "C6+ temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ulys_swi_Ct", "dataset": "ulys-swi-ion", "display_type": "timeseries", "is_public": "True", "name": "C6+ temperature", "start_date": "1990-12-07T20:02:48Z", "stop_date": "2009-06-29T06:15:49Z", "units": "eV", "xmlid": "ulys_swi_Ct"}, "ulys_swi_Cv": {"__spz_name__": "C6+ velocity", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ulys_swi_Cv", "dataset": "ulys-swi-ion", "display_type": "timeseries", "is_public": "True", "name": "C6+ velocity", "start_date": "1990-12-07T20:02:48Z", "stop_date": "2009-06-29T06:15:49Z", "units": "km/s", "xmlid": "ulys_swi_Cv"}, "ulys_swi_Fen": {"__spz_name__": "density ratio Fe11+/O6+", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ulys_swi_Fen", "dataset": "ulys-swi-ion", "display_type": "timeseries", "is_public": "True", "name": "density ratio Fe11+/O6+", "start_date": "1990-12-07T20:02:48Z", "stop_date": "2009-06-29T06:15:49Z", "xmlid": "ulys_swi_Fen"}, "ulys_swi_Fet": {"__spz_name__": "Fe11+ temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ulys_swi_Fet", "dataset": "ulys-swi-ion", "display_type": "timeseries", "is_public": "True", "name": "Fe11+ temperature", "start_date": "1990-12-07T20:02:48Z", "stop_date": "2009-06-29T06:15:49Z", "units": "eV", "xmlid": "ulys_swi_Fet"}, "ulys_swi_Fev": {"__spz_name__": "Fe11+ velocity", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ulys_swi_Fev", "dataset": "ulys-swi-ion", "display_type": "timeseries", "is_public": "True", "name": "Fe11+ velocity", "start_date": "1990-12-07T20:02:48Z", "stop_date": "2009-06-29T06:15:49Z", "units": "km/s", "xmlid": "ulys_swi_Fev"}, "ulys_swi_Hen": {"__spz_name__": "density ratio alpha/O6+", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ulys_swi_Hen", "dataset": "ulys-swi-ion", "display_type": "timeseries", "is_public": "True", "name": "density ratio alpha/O6+", "start_date": "1990-12-07T20:02:48Z", "stop_date": "2009-06-29T06:15:49Z", "xmlid": "ulys_swi_Hen"}, "ulys_swi_Het": {"__spz_name__": "alpha temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ulys_swi_Het", "dataset": "ulys-swi-ion", "display_type": "timeseries", "is_public": "True", "name": "alpha temperature", "start_date": "1990-12-07T20:02:48Z", "stop_date": "2009-06-29T06:15:49Z", "units": "eV", "xmlid": "ulys_swi_Het"}, "ulys_swi_Hev": {"__spz_name__": "alpha velocity", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ulys_swi_Hev", "dataset": "ulys-swi-ion", "display_type": "timeseries", "is_public": "True", "name": "alpha velocity", "start_date": "1990-12-07T20:02:48Z", "stop_date": "2009-06-29T06:15:49Z", "units": "km/s", "xmlid": "ulys_swi_Hev"}, "ulys_swi_Mgn": {"__spz_name__": "density ratio Mg10+/O6+", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ulys_swi_Mgn", "dataset": "ulys-swi-ion", "display_type": "timeseries", "is_public": "True", "name": "density ratio Mg10+/O6+", "start_date": "1990-12-07T20:02:48Z", "stop_date": "2009-06-29T06:15:49Z", "xmlid": "ulys_swi_Mgn"}, "ulys_swi_Mgt": {"__spz_name__": "Mg10+ temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ulys_swi_Mgt", "dataset": "ulys-swi-ion", "display_type": "timeseries", "is_public": "True", "name": "Mg10+ temperature", "start_date": "1990-12-07T20:02:48Z", "stop_date": "2009-06-29T06:15:49Z", "units": "eV", "xmlid": "ulys_swi_Mgt"}, "ulys_swi_Mgv": {"__spz_name__": "Mg10+ velocity", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ulys_swi_Mgv", "dataset": "ulys-swi-ion", "display_type": "timeseries", "is_public": "True", "name": "Mg10+ velocity", "start_date": "1990-12-07T20:02:48Z", "stop_date": "2009-06-29T06:15:49Z", "units": "km/s", "xmlid": "ulys_swi_Mgv"}, "ulys_swi_Nen": {"__spz_name__": "density ratio Ne8+/O6+", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ulys_swi_Nen", "dataset": "ulys-swi-ion", "display_type": "timeseries", "is_public": "True", "name": "density ratio Ne8+/O6+", "start_date": "1990-12-07T20:02:48Z", "stop_date": "2009-06-29T06:15:49Z", "xmlid": "ulys_swi_Nen"}, "ulys_swi_Net": {"__spz_name__": "Ne8+ temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ulys_swi_Net", "dataset": "ulys-swi-ion", "display_type": "timeseries", "is_public": "True", "name": "Ne8+ temperature", "start_date": "1990-12-07T20:02:48Z", "stop_date": "2009-06-29T06:15:49Z", "units": "eV", "xmlid": "ulys_swi_Net"}, "ulys_swi_Nev": {"__spz_name__": "Ne8+ velocity", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ulys_swi_Nev", "dataset": "ulys-swi-ion", "display_type": "timeseries", "is_public": "True", "name": "Ne8+ velocity", "start_date": "1990-12-07T20:02:48Z", "stop_date": "2009-06-29T06:15:49Z", "units": "km/s", "xmlid": "ulys_swi_Nev"}, "ulys_swi_On": {"__spz_name__": "density O6+", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ulys_swi_On", "dataset": "ulys-swi-ion", "display_type": "timeseries", "is_public": "True", "name": "density O6+", "start_date": "1990-12-07T20:02:48Z", "stop_date": "2009-06-29T06:15:49Z", "units": "cm-3", "xmlid": "ulys_swi_On"}, "ulys_swi_Ot": {"__spz_name__": "O6+ temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ulys_swi_Ot", "dataset": "ulys-swi-ion", "display_type": "timeseries", "is_public": "True", "name": "O6+ temperature", "start_date": "1990-12-07T20:02:48Z", "stop_date": "2009-06-29T06:15:49Z", "units": "eV", "xmlid": "ulys_swi_Ot"}, "ulys_swi_Ov": {"__spz_name__": "O6+ velocity", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ulys_swi_Ov", "dataset": "ulys-swi-ion", "display_type": "timeseries", "is_public": "True", "name": "O6+ velocity", "start_date": "1990-12-07T20:02:48Z", "stop_date": "2009-06-29T06:15:49Z", "units": "km/s", "xmlid": "ulys_swi_Ov"}, "ulys_swi_Sin": {"__spz_name__": "density ratio Si9+/O6+", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ulys_swi_Sin", "dataset": "ulys-swi-ion", "display_type": "timeseries", "is_public": "True", "name": "density ratio Si9+/O6+", "start_date": "1990-12-07T20:02:48Z", "stop_date": "2009-06-29T06:15:49Z", "xmlid": "ulys_swi_Sin"}, "ulys_swi_Sit": {"__spz_name__": "Si9+ temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ulys_swi_Sit", "dataset": "ulys-swi-ion", "display_type": "timeseries", "is_public": "True", "name": "Si9+ temperature", "start_date": "1990-12-07T20:02:48Z", "stop_date": "2009-06-29T06:15:49Z", "units": "eV", "xmlid": "ulys_swi_Sit"}, "ulys_swi_Siv": {"__spz_name__": "Si9+ velocity", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ulys_swi_Siv", "dataset": "ulys-swi-ion", "display_type": "timeseries", "is_public": "True", "name": "Si9+ velocity", "start_date": "1990-12-07T20:02:48Z", "stop_date": "2009-06-29T06:15:49Z", "units": "km/s", "xmlid": "ulys_swi_Siv"}, "ulys_swi_Sn": {"__spz_name__": "density ratio S10+/O6+", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ulys_swi_Sn", "dataset": "ulys-swi-ion", "display_type": "timeseries", "is_public": "True", "name": "density ratio S10+/O6+", "start_date": "1990-12-07T20:02:48Z", "stop_date": "2009-06-29T06:15:49Z", "xmlid": "ulys_swi_Sn"}, "ulys_swi_St": {"__spz_name__": "S10+ temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ulys_swi_St", "dataset": "ulys-swi-ion", "display_type": "timeseries", "is_public": "True", "name": "S10+ temperature", "start_date": "1990-12-07T20:02:48Z", "stop_date": "2009-06-29T06:15:49Z", "units": "eV", "xmlid": "ulys_swi_St"}, "ulys_swi_Sv": {"__spz_name__": "S10+ velocity", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ulys_swi_Sv", "dataset": "ulys-swi-ion", "display_type": "timeseries", "is_public": "True", "name": "S10+ velocity", "start_date": "1990-12-07T20:02:48Z", "stop_date": "2009-06-29T06:15:49Z", "units": "km/s", "xmlid": "ulys_swi_Sv"}, "xmlid": "ulys-swi-ion"}, "ulys_swi_rat": {"__spz_name__": "abundance ratios", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ulys-swi-rat", "att": "auto/ulys-swi-rat", "dataSource": "ESA", "desc": "
Sampling: 3H
Provider: ESA", "is_public": "True", "lastModificationDate": "2020-06-24T16:10:59Z", "lastUpdate": "2020-06-24T16:09:54Z", "measurement_type": "ThermalPlasma", "name": "abundance ratios", "processing_level": "Calibrated", "sampling": "3H", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/ULYSSES/SWICS/ulys-swi-rat", "start_date": "1990-12-07T20:02:48Z", "stop_date": "2009-06-29T06:15:49Z", "target": "Heliosphere", "ulys_swi_crat": {"__spz_name__": "C6+/C5+ ratio", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ulys_swi_crat", "dataset": "ulys-swi-rat", "description": "ratio of carbon 6+ to 5+", "display_type": "timeseries", "is_public": "True", "name": "C6+/C5+ ratio", "start_date": "1990-12-07T20:02:48Z", "stop_date": "2009-06-29T06:15:49Z", "xmlid": "ulys_swi_crat"}, "ulys_swi_fech": {"__spz_name__": "Fe charge", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ulys_swi_fech", "dataset": "ulys-swi-rat", "description": "average charge state of iron in e- = 1.6022e-19 C", "display_type": "timeseries", "is_public": "True", "name": "Fe charge", "start_date": "1990-12-07T20:02:48Z", "stop_date": "2009-06-29T06:15:49Z", "units": "e-", "xmlid": "ulys_swi_fech"}, "ulys_swi_ferat": {"__spz_name__": "Fe/O ratio", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ulys_swi_ferat", "dataset": "ulys-swi-rat", "description": "abundance ratio of iron to oxygen", "display_type": "timeseries", "is_public": "True", "name": "Fe/O ratio", "start_date": "1990-12-07T20:02:48Z", "stop_date": "2009-06-29T06:15:49Z", "xmlid": "ulys_swi_ferat"}, "ulys_swi_orat": {"__spz_name__": "O7+/O6+ ratio", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ulys_swi_orat", "dataset": "ulys-swi-rat", "description": "ratio of oxygen 7+ to 6+", "display_type": "timeseries", "is_public": "True", "name": "O7+/O6+ ratio", "start_date": "1990-12-07T20:02:48Z", "stop_date": "2009-06-29T06:15:49Z", "xmlid": "ulys_swi_orat"}, "xmlid": "ulys-swi-rat"}, "xmlid": "Ulysses_swics"}, "SWOOPS": {"__spz_name__": "SWOOPS", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Ulysses_swoops", "att": "auto/Ulysses_swoops", "desc": "Solar Wind Observations Over Poles of Sun
ElectrostaticAnalyser", "is_public": "True", "name": "SWOOPS", "ulys_bae_mom": {"__spz_name__": "sw electrons", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ulys-bae-mom", "att": "auto/ulys-bae-mom", "dataSource": "CDAWeb", "desc": "
MinSampling: 3M; MaxSampling: 22M
Provider: CDAWeb", "is_public": "True", "lastModificationDate": "2012-03-06T22:16:17Z", "lastUpdate": "2012-03-06T22:16:53Z", "maxSampling": "22M", "measurement_type": "ThermalPlasma", "name": "sw electrons", "ne_ulys": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ne_ulys", "dataset": "ulys-bae-mom", "description": "Solar wind electron plasma density", "display_type": "timeseries", "is_public": "True", "name": "density", "ne_ulys0": {"__spz_name__": "n_total", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ne_ulys(0)", "dataset": "ulys-bae-mom", "index1": "0", "is_public": "True", "name": "n_total", "parameter": "ne_ulys", "start_date": "1990-11-18T00:55:16Z", "stop_date": "2004-12-31T00:00:00Z", "xmlid": "ne_ulys(0)"}, "ne_ulys1": {"__spz_name__": "n_core", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ne_ulys(1)", "dataset": "ulys-bae-mom", "index1": "1", "is_public": "True", "name": "n_core", "parameter": "ne_ulys", "start_date": "1990-11-18T00:55:16Z", "stop_date": "2004-12-31T00:00:00Z", "xmlid": "ne_ulys(1)"}, "ne_ulys2": {"__spz_name__": "n_halo", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ne_ulys(2)", "dataset": "ulys-bae-mom", "index1": "2", "is_public": "True", "name": "n_halo", "parameter": "ne_ulys", "start_date": "1990-11-18T00:55:16Z", "stop_date": "2004-12-31T00:00:00Z", "xmlid": "ne_ulys(2)"}, "size": "3", "start_date": "1990-11-18T00:55:16Z", "stop_date": "2004-12-31T00:00:00Z", "ucd": "phys.density;phys.electron", "units": "cm-3", "xmlid": "ne_ulys"}, "processing_level": "Calibrated", "sampling": "3M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/ULYSSES/SWOOPS/ulys-bae-mom", "start_date": "1990-11-18T00:55:16Z", "stop_date": "2004-12-31T00:00:00Z", "target": "Heliosphere", "te_ulys": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "te_ulys", "dataset": "ulys-bae-mom", "description": "solar wind plasma temperature", "display_type": "timeseries", "is_public": "True", "name": "temperature", "size": "3", "start_date": "1990-11-18T00:55:16Z", "stop_date": "2004-12-31T00:00:00Z", "te_ulys0": {"__spz_name__": "t_total", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "te_ulys(0)", "dataset": "ulys-bae-mom", "index1": "0", "is_public": "True", "name": "t_total", "parameter": "te_ulys", "start_date": "1990-11-18T00:55:16Z", "stop_date": "2004-12-31T00:00:00Z", "xmlid": "te_ulys(0)"}, "te_ulys1": {"__spz_name__": "t_core", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "te_ulys(1)", "dataset": "ulys-bae-mom", "index1": "1", "is_public": "True", "name": "t_core", "parameter": "te_ulys", "start_date": "1990-11-18T00:55:16Z", "stop_date": "2004-12-31T00:00:00Z", "xmlid": "te_ulys(1)"}, "te_ulys2": {"__spz_name__": "t_halo", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "te_ulys(2)", "dataset": "ulys-bae-mom", "index1": "2", "is_public": "True", "name": "t_halo", "parameter": "te_ulys", "start_date": "1990-11-18T00:55:16Z", "stop_date": "2004-12-31T00:00:00Z", "xmlid": "te_ulys(2)"}, "ucd": "phys.temperature;phys.electron", "units": "eV", "xmlid": "te_ulys"}, "xmlid": "ulys-bae-mom"}, "ulys_bai_mom": {"__spz_name__": "sw ions", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ulys-bai-mom", "att": "auto/ulys-bai-mom", "dataSource": "CDAWeb", "desc": "
MinSampling: 4M; MaxSampling: 8M
Provider: CDAWeb", "is_public": "True", "lastModificationDate": "2024-04-18T17:20:45Z", "lastUpdate": "2012-03-06T22:18:14Z", "maxSampling": "8M", "measurement_type": "ThermalPlasma", "n_a_ulys": {"__spz_name__": "density he++", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "n_a_ulys", "dataset": "ulys-bai-mom", "description": "Solar wind alpha particle plasma density", "display_type": "timeseries", "is_public": "True", "name": "density he++", "start_date": "1990-11-18T00:33:48Z", "stop_date": "2009-06-30T15:54:12Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm-3", "xmlid": "n_a_ulys"}, "n_p_ulys": {"__spz_name__": "density h+", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "n_p_ulys", "dataset": "ulys-bai-mom", "description": "Solar wind proton plasma density", "display_type": "timeseries", "is_public": "True", "name": "density h+", "start_date": "1990-11-18T00:33:48Z", "stop_date": "2009-06-30T15:54:12Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm-3", "xmlid": "n_p_ulys"}, "name": "sw ions", "processing_level": "Calibrated", "sampling": "4M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/ULYSSES/SWOOPS/ulys-bai-mom", "start_date": "1990-11-18T00:33:48Z", "stop_date": "2009-06-30T15:54:12Z", "target": "Heliosphere", "tp_ulys": {"__spz_name__": "temperature h+", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "tp_ulys", "dataset": "ulys-bai-mom", "description": "solar wind plasma temperature", "display_type": "timeseries", "is_public": "True", "name": "temperature h+", "size": "2", "start_date": "1990-11-18T00:33:48Z", "stop_date": "2009-06-30T15:54:12Z", "tp_ulys0": {"__spz_name__": "t_large", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "tp_ulys(0)", "dataset": "ulys-bai-mom", "index1": "0", "is_public": "True", "name": "t_large", "parameter": "tp_ulys", "start_date": "1990-11-18T00:33:48Z", "stop_date": "2009-06-30T15:54:12Z", "xmlid": "tp_ulys(0)"}, "tp_ulys1": {"__spz_name__": "t_small", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "tp_ulys(1)", "dataset": "ulys-bai-mom", "index1": "1", "is_public": "True", "name": "t_small", "parameter": "tp_ulys", "start_date": "1990-11-18T00:33:48Z", "stop_date": "2009-06-30T15:54:12Z", "xmlid": "tp_ulys(1)"}, "ucd": "phys.temperature;phys.atmol.ionStage", "units": "eV", "xmlid": "tp_ulys"}, "v_ulys_rtn": {"__spz_name__": "v_rtn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "v_ulys_rtn", "dataset": "ulys-bai-mom", "description": "Hourly averaged solar wind plasma flow speed", "display_type": "timeseries", "is_public": "True", "name": "v_rtn", "size": "3", "start_date": "1990-11-18T00:33:48Z", "stop_date": "2009-06-30T15:54:12Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "v_ulys_rtn0": {"__spz_name__": "vr", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "v_ulys_rtn(0)", "dataset": "ulys-bai-mom", "index1": "0", "is_public": "True", "name": "vr", "parameter": "v_ulys_rtn", "start_date": "1990-11-18T00:33:48Z", "stop_date": "2009-06-30T15:54:12Z", "xmlid": "v_ulys_rtn(0)"}, "v_ulys_rtn1": {"__spz_name__": "vt", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "v_ulys_rtn(1)", "dataset": "ulys-bai-mom", "index1": "1", "is_public": "True", "name": "vt", "parameter": "v_ulys_rtn", "start_date": "1990-11-18T00:33:48Z", "stop_date": "2009-06-30T15:54:12Z", "xmlid": "v_ulys_rtn(1)"}, "v_ulys_rtn2": {"__spz_name__": "vn", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "v_ulys_rtn(2)", "dataset": "ulys-bai-mom", "index1": "2", "is_public": "True", "name": "vn", "parameter": "v_ulys_rtn", "start_date": "1990-11-18T00:33:48Z", "stop_date": "2009-06-30T15:54:12Z", "xmlid": "v_ulys_rtn(2)"}, "xmlid": "v_ulys_rtn"}, "xmlid": "ulys-bai-mom"}, "ulys_e_pa": {"__spz_name__": "electron pitch-angle/energy distribution", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ulys-e-pa", "att": "auto/ulys-e-pa", "dataSource": "ESA", "desc": "
Sampling: 1080S
Provider: ESA", "is_public": "True", "lastModificationDate": "2020-06-24T14:06:17Z", "lastUpdate": "2020-06-30T16:55:34Z", "measurement_type": "ThermalPlasma", "name": "electron pitch-angle/energy distribution", "processing_level": "Calibrated", "sampling": "1080S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/ULYSSES/SWOOPS/ulys-e-pa", "start_date": "1990-11-16T17:53:24Z", "stop_date": "2008-01-14T15:19:08Z", "target": "Heliosphere", "ulys_el_2d": {"__spz_name__": "e- psd : en/pa : 2D", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ulys_el_2d", "dataset": "ulys-e-pa", "display_type": "spectrogram", "is_public": "True", "name": "e- psd : en/pa : 2D", "start_date": "1990-11-16T17:53:24Z", "stop_date": "2008-01-14T15:19:08Z", "ucd": "phys.electron", "units": "s\u00b3 cm\u207b\u2076", "xmlid": "ulys_el_2d"}, "xmlid": "ulys-e-pa"}, "ulys_swoops_jup": {"__spz_name__": "flyby jupiter", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ulys-swoops-jup", "att": "auto/ulys-swoops-jup", "dataSource": "PDS", "desc": "
MinSampling: 140S; MaxSampling: 356S
Provider: PDS", "is_public": "True", "lastModificationDate": "2012-03-06T22:18:14Z", "lastUpdate": "2012-03-06T22:18:14Z", "maxSampling": "356S", "measurement_type": "ThermalPlasma", "name": "flyby jupiter", "processing_level": "Calibrated", "sampling": "140S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/ULYSSES/SWOOPS/ulys-swoops-jup", "start_date": "1992-01-25T00:07:16Z", "stop_date": "1992-02-17T23:56:31Z", "target": "Jupiter", "ulys_swoopsjup_dens": {"__spz_name__": "density e-", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ulys_swoopsjup_dens", "dataset": "ulys-swoops-jup", "display_type": "timeseries", "is_public": "True", "name": "density e-", "start_date": "1992-01-25T00:07:16Z", "stop_date": "1992-02-17T23:56:31Z", "ucd": "phys.density;phys.electron", "units": "cm-3", "xmlid": "ulys_swoopsjup_dens"}, "ulys_swoopsjup_temp": {"__spz_name__": "temperature e-", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ulys_swoopsjup_temp", "dataset": "ulys-swoops-jup", "display_type": "timeseries", "is_public": "True", "name": "temperature e-", "start_date": "1992-01-25T00:07:16Z", "stop_date": "1992-02-17T23:56:31Z", "ucd": "phys.temperature;phys.electron", "units": "K", "xmlid": "ulys_swoopsjup_temp"}, "ulys_swoopsjup_vxyz": {"__spz_name__": "v_xyz", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ulys_swoopsjup_vxyz", "dataset": "ulys-swoops-jup", "display_type": "timeseries", "is_public": "True", "name": "v_xyz", "size": "3", "start_date": "1992-01-25T00:07:16Z", "stop_date": "1992-02-17T23:56:31Z", "ucd": "phys.veloc;phys.atmol.ionStage", "ulys_swoopsjup_vxyz0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ulys_swoopsjup_vxyz(0)", "dataset": "ulys-swoops-jup", "index1": "0", "is_public": "True", "name": "vx", "parameter": "ulys_swoopsjup_vxyz", "start_date": "1992-01-25T00:07:16Z", "stop_date": "1992-02-17T23:56:31Z", "xmlid": "ulys_swoopsjup_vxyz(0)"}, "ulys_swoopsjup_vxyz1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ulys_swoopsjup_vxyz(1)", "dataset": "ulys-swoops-jup", "index1": "1", "is_public": "True", "name": "vy", "parameter": "ulys_swoopsjup_vxyz", "start_date": "1992-01-25T00:07:16Z", "stop_date": "1992-02-17T23:56:31Z", "xmlid": "ulys_swoopsjup_vxyz(1)"}, "ulys_swoopsjup_vxyz2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ulys_swoopsjup_vxyz(2)", "dataset": "ulys-swoops-jup", "index1": "2", "is_public": "True", "name": "vz", "parameter": "ulys_swoopsjup_vxyz", "start_date": "1992-01-25T00:07:16Z", "stop_date": "1992-02-17T23:56:31Z", "xmlid": "ulys_swoopsjup_vxyz(2)"}, "units": "km/s", "xmlid": "ulys_swoopsjup_vxyz"}, "xmlid": "ulys-swoops-jup"}, "xmlid": "Ulysses_swoops"}, "URAP": {"__spz_name__": "URAP", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Ulysses_urap", "att": "auto/Ulysses_urap", "desc": "Unified Radio and Plasma Waves
Antenna", "io_torus_QTN": {"__spz_name__": "io torus QTN", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "uly-urap-lesia", "is_public": "True", "name": "io torus QTN", "ulys_urap_dens": {"__spz_name__": "electron density", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ulys-urap-dens", "att": "auto/ulys-urap-dens", "dataSource": "LESIA", "desc": "
MinSampling: 38S; MaxSampling: 576S
Provider: LESIA", "is_public": "True", "lastModificationDate": "2012-03-06T22:15:53Z", "lastUpdate": "2012-03-06T22:15:53Z", "maxSampling": "576S", "measurement_type": "MagneticField", "name": "electron density", "processing_level": "Calibrated", "sampling": "38S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/ULYSSES/URAP/ulys-urap-dens", "start_date": "1992-02-08T15:00:28Z", "stop_date": "1992-02-08T22:57:28Z", "target": "Jupiter", "ulys_urap_method": {"__spz_name__": "method", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ulys_urap_method", "dataset": "ulys-urap-dens", "display_type": "timeseries", "is_public": "True", "name": "method", "start_date": "1992-02-08T15:00:28Z", "stop_date": "1992-02-08T22:57:28Z", "ucd": "meta.code", "xmlid": "ulys_urap_method"}, "ulys_urap_ne": {"__spz_name__": "density e-", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ulys_urap_ne", "dataset": "ulys-urap-dens", "display_type": "timeseries", "is_public": "True", "name": "density e-", "start_date": "1992-02-08T15:00:28Z", "stop_date": "1992-02-08T22:57:28Z", "ucd": "phys.density;phys.electron", "units": "cm-3", "xmlid": "ulys_urap_ne"}, "ulys_urap_nemax": {"__spz_name__": "density e- max", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ulys_urap_nemax", "dataset": "ulys-urap-dens", "display_type": "timeseries", "is_public": "True", "name": "density e- max", "start_date": "1992-02-08T15:00:28Z", "stop_date": "1992-02-08T22:57:28Z", "ucd": "phys.density;phys.electron", "units": "cm-3", "xmlid": "ulys_urap_nemax"}, "ulys_urap_nemin": {"__spz_name__": "density e- min", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ulys_urap_nemin", "dataset": "ulys-urap-dens", "display_type": "timeseries", "is_public": "True", "name": "density e- min", "start_date": "1992-02-08T15:00:28Z", "stop_date": "1992-02-08T22:57:28Z", "ucd": "phys.density;phys.electron", "units": "cm-3", "xmlid": "ulys_urap_nemin"}, "xmlid": "ulys-urap-dens"}, "ulys_urap_mag": {"__spz_name__": "magnetic field", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ulys-urap-mag", "att": "auto/ulys-urap-mag", "dataSource": "LESIA", "desc": "
MinSampling: 104S; MaxSampling: 324S
Provider: LESIA", "is_public": "True", "lastModificationDate": "2012-03-06T22:15:53Z", "lastUpdate": "2012-03-06T22:15:53Z", "maxSampling": "324S", "measurement_type": "MagneticField", "name": "magnetic field", "processing_level": "Calibrated", "sampling": "104S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/ULYSSES/URAP/ulys-urap-mag", "start_date": "1992-02-08T15:44:21Z", "stop_date": "1992-02-08T22:42:01Z", "target": "Jupiter", "ulys_urap_bmag": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ulys_urap_bmag", "dataset": "ulys-urap-mag", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "1992-02-08T15:44:21Z", "stop_date": "1992-02-08T22:42:01Z", "ucd": "phys.magField", "units": "nT", "xmlid": "ulys_urap_bmag"}, "xmlid": "ulys-urap-mag"}, "ulys_urap_temp": {"__spz_name__": "electron core temperature", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ulys-urap-temp", "att": "auto/ulys-urap-temp", "dataSource": "LESIA", "desc": "
MinSampling: 105S; MaxSampling: 619S
Provider: LESIA", "is_public": "True", "lastModificationDate": "2012-03-06T22:15:53Z", "lastUpdate": "2012-03-06T22:15:53Z", "maxSampling": "619S", "measurement_type": "ThermalPlasma", "name": "electron core temperature", "processing_level": "Calibrated", "sampling": "105S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/ULYSSES/URAP/ulys-urap-temp", "start_date": "1992-02-08T15:02:30Z", "stop_date": "1992-02-08T17:50:37Z", "target": "Jupiter", "ulys_urap_t": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ulys_urap_t", "dataset": "ulys-urap-temp", "display_type": "timeseries", "is_public": "True", "name": "temperature", "start_date": "1992-02-08T15:02:30Z", "stop_date": "1992-02-08T17:50:37Z", "ucd": "phys.temperature;phys.electron", "units": "K", "xmlid": "ulys_urap_t"}, "ulys_urap_tmax": {"__spz_name__": "temperature max", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ulys_urap_tmax", "dataset": "ulys-urap-temp", "display_type": "timeseries", "is_public": "True", "name": "temperature max", "start_date": "1992-02-08T15:02:30Z", "stop_date": "1992-02-08T17:50:37Z", "ucd": "phys.temperature;phys.electron", "units": "K", "xmlid": "ulys_urap_tmax"}, "ulys_urap_tmin": {"__spz_name__": "temperature min", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ulys_urap_tmin", "dataset": "ulys-urap-temp", "display_type": "timeseries", "is_public": "True", "name": "temperature min", "start_date": "1992-02-08T15:02:30Z", "stop_date": "1992-02-08T17:50:37Z", "ucd": "phys.temperature;phys.electron", "units": "K", "xmlid": "ulys_urap_tmin"}, "xmlid": "ulys-urap-temp"}, "xmlid": "uly-urap-lesia"}, "is_public": "True", "name": "URAP", "xmlid": "Ulysses_urap"}, "VHMFGM": {"__spz_name__": "VHM/FGM", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Ulysses_fgm", "att": "auto/Ulysses_fgm", "desc": "FGM
Magnetometer", "is_public": "True", "name": "VHM/FGM", "ulys_fgm_rtn": {"__spz_name__": "all mission", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ulys-fgm-rtn", "att": "auto/ulys-fgm-rtn", "b_ulys_mag": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_ulys_mag", "dataset": "ulys-fgm-rtn", "description": "Scalar magnitude of the magnetic field in nT", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "1990-10-25T16:50:45Z", "stop_date": "2009-06-27T23:59:34Z", "ucd": "phys.magField", "units": "nT", "xmlid": "b_ulys_mag"}, "b_ulys_rtn": {"__spz_name__": "b_rtn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_ulys_rtn", "b_ulys_rtn0": {"__spz_name__": "br", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_ulys_rtn(0)", "dataset": "ulys-fgm-rtn", "index1": "0", "is_public": "True", "name": "br", "parameter": "b_ulys_rtn", "start_date": "1990-10-25T16:50:45Z", "stop_date": "2009-06-27T23:59:34Z", "xmlid": "b_ulys_rtn(0)"}, "b_ulys_rtn1": {"__spz_name__": "bt", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_ulys_rtn(1)", "dataset": "ulys-fgm-rtn", "index1": "1", "is_public": "True", "name": "bt", "parameter": "b_ulys_rtn", "start_date": "1990-10-25T16:50:45Z", "stop_date": "2009-06-27T23:59:34Z", "xmlid": "b_ulys_rtn(1)"}, "b_ulys_rtn2": {"__spz_name__": "bn", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "b_ulys_rtn(2)", "dataset": "ulys-fgm-rtn", "index1": "2", "is_public": "True", "name": "bn", "parameter": "b_ulys_rtn", "start_date": "1990-10-25T16:50:45Z", "stop_date": "2009-06-27T23:59:34Z", "xmlid": "b_ulys_rtn(2)"}, "dataset": "ulys-fgm-rtn", "display_type": "timeseries", "is_public": "True", "name": "b_rtn", "size": "3", "start_date": "1990-10-25T16:50:45Z", "stop_date": "2009-06-27T23:59:34Z", "ucd": "phys.magField", "units": "nT", "xmlid": "b_ulys_rtn"}, "b_ulys_rtn_phi": {"__spz_name__": "phi", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_ulys_rtn_phi", "dataset": "ulys-fgm-rtn", "description": "Magnetic field phi angle", "display_type": "timeseries", "is_public": "True", "name": "phi", "start_date": "1990-10-25T16:50:45Z", "stop_date": "2009-06-27T23:59:34Z", "ucd": "phys.magField", "units": "degrees", "xmlid": "b_ulys_rtn_phi"}, "b_ulys_rtn_theta": {"__spz_name__": "theta", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "b_ulys_rtn_theta", "dataset": "ulys-fgm-rtn", "description": "Magnetic field theta angle", "display_type": "timeseries", "is_public": "True", "name": "theta", "start_date": "1990-10-25T16:50:45Z", "stop_date": "2009-06-27T23:59:34Z", "ucd": "phys.magField", "units": "degrees", "xmlid": "b_ulys_rtn_theta"}, "dataSource": "CDAWeb", "desc": "
Sampling: 1S
Provider: CDAWeb", "is_public": "True", "lastModificationDate": "2012-03-06T22:18:43Z", "lastUpdate": "2012-03-06T22:23:03Z", "measurement_type": "MagneticField", "name": "all mission", "processing_level": "Calibrated", "sampling": "1S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/ULYSSES/FGM/ulys-fgm-rtn", "start_date": "1990-10-25T16:50:45Z", "stop_date": "2009-06-27T23:59:34Z", "target": "Heliosphere.Inner", "xmlid": "ulys-fgm-rtn"}, "ulys_mag_jupjg": {"__spz_name__": "flyby jupiter", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "ulys-mag-jupjg", "att": "auto/ulys-mag-jupjg", "dataSource": "PDS", "desc": "
Sampling: 60S
Provider: PDS", "is_public": "True", "lastModificationDate": "2012-03-06T22:15:53Z", "lastUpdate": "2012-03-06T22:15:53Z", "measurement_type": "MagneticField", "name": "flyby jupiter", "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/ULYSSES/FGM/ulys-mag-jupjg", "start_date": "1992-01-25T00:00:30Z", "stop_date": "1992-02-17T23:59:30Z", "target": "Jupiter", "ulys_b_jupjg": {"__spz_name__": "b_jg", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ulys_b_jupjg", "dataset": "ulys-mag-jupjg", "display_type": "timeseries", "is_public": "True", "name": "b_jg", "size": "3", "start_date": "1992-01-25T00:00:30Z", "stop_date": "1992-02-17T23:59:30Z", "ucd": "phys.magField", "ulys_b_jupjg0": {"__spz_name__": "br", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ulys_b_jupjg(0)", "dataset": "ulys-mag-jupjg", "index1": "0", "is_public": "True", "name": "br", "parameter": "ulys_b_jupjg", "start_date": "1992-01-25T00:00:30Z", "stop_date": "1992-02-17T23:59:30Z", "xmlid": "ulys_b_jupjg(0)"}, "ulys_b_jupjg1": {"__spz_name__": "btheta", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ulys_b_jupjg(1)", "dataset": "ulys-mag-jupjg", "index1": "1", "is_public": "True", "name": "btheta", "parameter": "ulys_b_jupjg", "start_date": "1992-01-25T00:00:30Z", "stop_date": "1992-02-17T23:59:30Z", "xmlid": "ulys_b_jupjg(1)"}, "ulys_b_jupjg2": {"__spz_name__": "bphi", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "ulys_b_jupjg(2)", "dataset": "ulys-mag-jupjg", "index1": "2", "is_public": "True", "name": "bphi", "parameter": "ulys_b_jupjg", "start_date": "1992-01-25T00:00:30Z", "stop_date": "1992-02-17T23:59:30Z", "xmlid": "ulys_b_jupjg(2)"}, "units": "nT", "xmlid": "ulys_b_jupjg"}, "ulys_bmag_jupjg": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "ulys_bmag_jupjg", "dataset": "ulys-mag-jupjg", "description": "Scalar magnitude of the magnetic field in nT", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "1992-01-25T00:00:30Z", "stop_date": "1992-02-17T23:59:30Z", "ucd": "phys.magField", "units": "nT", "xmlid": "ulys_bmag_jupjg"}, "xmlid": "ulys-mag-jupjg"}, "xmlid": "Ulysses_fgm"}, "__spz_name__": "Ulysses", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Ulysses", "att": "auto/Ulysses", "desc": "Solar Polar Mission
1990-10-06T00:00:00 - 2009-06-30T00:00:00", "is_public": "True", "name": "Ulysses", "rank": "999", "target": "Heliosphere.Inner", "xmlid": "Ulysses"}, "VEX": {"ELS": {"__spz_name__": "ELS", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "VEX_els", "att": "auto/VEX_els", "desc": "Electron Spectrometer
ElectrostaticAnalyser", "is_public": "True", "name": "ELS", "vex_els_all": {"__spz_name__": "electron energy spectra : 16 anodes", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "vex-els-all", "att": "auto/vex-els-all", "dataSource": "IRAP", "desc": "
MinSampling: 1S; MaxSampling: 64S
Provider: IRAP", "is_public": "True", "lastModificationDate": "2017-06-30T11:12:17Z", "lastUpdate": "2017-06-30T00:43:44Z", "maxSampling": "64S", "measurement_type": "ThermalPlasma", "name": "electron energy spectra : 16 anodes", "processing_level": "Calibrated", "sampling": "1S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/VEX/ELS/vex-els-all", "start_date": "2005-03-03T01:48:33Z", "stop_date": "2014-05-26T11:44:31Z", "target": "Venus", "vex_els_spec": {"__spz_name__": "counts : per anode ", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vex_els_spec", "dataset": "vex-els-all", "description": "Averaged energy-time spectrogram of electron counts", "display_type": "spectrogram", "is_public": "True", "name": "counts : per anode ", "start_date": "2005-03-03T01:48:33Z", "stop_date": "2014-05-26T11:44:31Z", "template": "vex_els_spec_##anode##", "ucd": "phys.flux;phys.electron", "units": "cnts", "xmlid": "vex_els_spec"}, "vex_els_spec_sum": {"__spz_name__": "counts : sum over anodes", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vex_els_spec_sum", "dataset": "vex-els-all", "description": "energy spectrogram of electron counts", "display_type": "spectrogram", "is_public": "True", "name": "counts : sum over anodes", "start_date": "2005-03-03T01:48:33Z", "stop_date": "2014-05-26T11:44:31Z", "ucd": "phys.flux;phys.electron", "units": "cnts", "xmlid": "vex_els_spec_sum"}, "xmlid": "vex-els-all"}, "xmlid": "VEX_els"}, "Ephemeris": {"__spz_name__": "Ephemeris", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "VEX_ephemeris", "att": "auto/VEX_ephemeris", "desc": "", "is_public": "True", "name": "Ephemeris", "vex_orb_all": {"__spz_name__": "orbit venus", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "vex-orb-all", "att": "auto/vex-orb-all", "dataSource": "IRAP", "desc": "
Sampling: 60S
Provider: IRAP", "is_public": "True", "lastModificationDate": "2018-07-31T09:42:41Z", "lastUpdate": "2016-01-06T03:21:57Z", "measurement_type": "Ephemeris", "name": "orbit venus", "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/VEX/ephemeris/vex-orb-all", "start_date": "2006-04-30T12:55:01Z", "stop_date": "2015-12-04T22:57:05Z", "vex_orb_num": {"__spz_name__": "vex_orbit_num", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vex_orb_num", "dataset": "vex-orb-all", "display_type": "timeseries", "is_public": "True", "name": "vex_orbit_num", "start_date": "2006-04-30T12:55:01Z", "stop_date": "2015-12-04T22:57:05Z", "xmlid": "vex_orb_num"}, "vex_venus_r": {"__spz_name__": "distance vex-venus", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vex_venus_r", "dataset": "vex-orb-all", "is_public": "True", "name": "distance vex-venus", "start_date": "2006-04-30T12:55:01Z", "stop_date": "2015-12-04T22:57:05Z", "ucd": "pos.ephem;instr.obsty", "units": "Rv", "xmlid": "vex_venus_r"}, "vex_xyz_vso": {"__spz_name__": "xyz_vso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vex_xyz_vso", "dataset": "vex-orb-all", "description": "Venus Express trajectory in VSO coordinates", "display_type": "timeseries", "is_public": "True", "name": "xyz_vso", "size": "3", "start_date": "2006-04-30T12:55:01Z", "stop_date": "2015-12-04T22:57:05Z", "ucd": "pos.ephem;instr.obsty", "units": "Rv", "vex_xyz_vso0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vex_xyz_vso(0)", "dataset": "vex-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "vex_xyz_vso", "start_date": "2006-04-30T12:55:01Z", "stop_date": "2015-12-04T22:57:05Z", "xmlid": "vex_xyz_vso(0)"}, "vex_xyz_vso1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vex_xyz_vso(1)", "dataset": "vex-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "vex_xyz_vso", "start_date": "2006-04-30T12:55:01Z", "stop_date": "2015-12-04T22:57:05Z", "xmlid": "vex_xyz_vso(1)"}, "vex_xyz_vso2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vex_xyz_vso(2)", "dataset": "vex-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "vex_xyz_vso", "start_date": "2006-04-30T12:55:01Z", "stop_date": "2015-12-04T22:57:05Z", "xmlid": "vex_xyz_vso(2)"}, "xmlid": "vex_xyz_vso"}, "xmlid": "vex-orb-all"}, "xmlid": "VEX_ephemeris"}, "IMA": {"__spz_name__": "IMA", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "VEX_ima", "att": "auto/VEX_ima", "desc": "Ion Mass Analyzer
MassSpectrometer", "is_public": "True", "name": "IMA", "vex_ima_bg": {"__spz_name__": "background", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "vex-ima-bg", "att": "auto/vex-ima-bg", "dataSource": "IRF", "desc": "
Sampling: 192S
Provider: IRF", "is_public": "True", "lastModificationDate": "2020-10-06T09:51:59Z", "lastUpdate": "2020-09-28T11:15:55Z", "measurement_type": "ThermalPlasma", "name": "background", "processing_level": "Calibrated", "sampling": "192S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/VEX/IMA/vex-ima-bg", "start_date": "2005-12-09T13:01:57Z", "stop_date": "2014-11-27T09:18:42Z", "target": "Venus", "vex_ima_bg": {"__spz_name__": "bkgrd counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vex_ima_bg", "dataset": "vex-ima-bg", "display_type": "timeseries", "is_public": "True", "name": "bkgrd counts", "start_date": "2005-12-09T13:01:57Z", "stop_date": "2014-11-27T09:18:42Z", "ucd": "meta.code.qual;phys.atmol.ionStage", "units": "cnts", "xmlid": "vex_ima_bg"}, "vex_ima_totct": {"__spz_name__": "total counts", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vex_ima_totct", "dataset": "vex-ima-bg", "display_type": "timeseries", "is_public": "True", "name": "total counts", "start_date": "2005-12-09T13:01:57Z", "stop_date": "2014-11-27T09:18:42Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cnts", "xmlid": "vex_ima_totct"}, "xmlid": "vex-ima-bg"}, "vex_ima_extra": {"__spz_name__": "imaextra spectra", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "vex-ima-extra", "att": "auto/vex-ima-extra", "dataSource": "IRAP", "desc": "
Sampling: 192S
Provider: IRAP", "is_public": "True", "lastModificationDate": "2021-05-11T19:12:09Z", "lastUpdate": "2021-05-11T17:19:21Z", "measurement_type": "ThermalPlasma", "name": "imaextra spectra", "processing_level": "Calibrated", "sampling": "192S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/VEX/IMA/vex-ima-extra", "start_date": "2006-01-08T10:09:39Z", "stop_date": "2014-11-27T09:21:53Z", "target": "Venus", "vex_h_spec": {"__spz_name__": "protons : cnts per anode ", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vex_h_spec", "dataset": "vex-ima-extra", "description": "energy-time spectrogram of proton counts", "display_type": "spectrogram", "is_public": "True", "name": "protons : cnts per anode ", "start_date": "2006-01-08T10:09:39Z", "stop_date": "2014-11-27T09:21:53Z", "template": "vex_h_spec_##anode##", "ucd": "phys.flux;phys.atmol.ionStage", "units": "cnts", "xmlid": "vex_h_spec"}, "vex_h_spec_sum": {"__spz_name__": "protons : cnts sum", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vex_h_spec_sum", "dataset": "vex-ima-extra", "description": "energy-time spectrogram of proton counts", "display_type": "spectrogram", "is_public": "True", "name": "protons : cnts sum", "start_date": "2006-01-08T10:09:39Z", "stop_date": "2014-11-27T09:21:53Z", "ucd": "phys.flux;phys.atmol.ionStage", "units": "cnts", "xmlid": "vex_h_spec_sum"}, "vex_o_spec": {"__spz_name__": "heavy : cnts per anode ", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vex_o_spec", "dataset": "vex-ima-extra", "description": "energy-time spectrogram of heavy ion counts", "display_type": "spectrogram", "is_public": "True", "name": "heavy : cnts per anode ", "start_date": "2006-01-08T10:09:39Z", "stop_date": "2014-11-27T09:21:53Z", "template": "vex_o_spec_##anode##", "ucd": "phys.flux;phys.atmol.ionStage", "units": "cnts", "xmlid": "vex_o_spec"}, "vex_o_spec_sum": {"__spz_name__": "heavy : cnts sum", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vex_o_spec_sum", "dataset": "vex-ima-extra", "description": "energy-time spectrogram of heavy ion counts", "display_type": "spectrogram", "is_public": "True", "name": "heavy : cnts sum", "start_date": "2006-01-08T10:09:39Z", "stop_date": "2014-11-27T09:21:53Z", "ucd": "phys.flux;phys.atmol.ionStage", "units": "cnts", "xmlid": "vex_o_spec_sum"}, "xmlid": "vex-ima-extra"}, "vex_ima_param": {"__spz_name__": "imaextra moments", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "vex-ima-param", "att": "auto/vex-ima-param", "dataSource": "IRAP", "desc": "
Sampling: 192S
Provider: IRAP", "is_public": "True", "lastModificationDate": "2021-05-11T19:06:55Z", "lastUpdate": "2021-05-11T19:05:59Z", "measurement_type": "IonComposition", "name": "imaextra moments", "processing_level": "Calibrated", "sampling": "192S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/VEX/IMA/vex-ima-param", "start_date": "2006-02-05T08:06:27Z", "stop_date": "2014-11-27T09:21:53Z", "target": "Venus", "vex_h_dens": {"__spz_name__": "protons: density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vex_h_dens", "dataset": "vex-ima-param", "description": "Proton density", "display_type": "timeseries", "is_public": "True", "name": "protons: density", "start_date": "2006-02-05T08:06:27Z", "stop_date": "2014-11-27T09:21:53Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm-3", "xmlid": "vex_h_dens"}, "vex_h_qual": {"__spz_name__": "protons: moments quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vex_h_qual", "dataset": "vex-ima-param", "description": "Proton moments quality flag", "display_type": "timeseries", "is_public": "True", "name": "protons: moments quality", "start_date": "2006-02-05T08:06:27Z", "stop_date": "2014-11-27T09:21:53Z", "ucd": "meta.code.qual;phys.atmol.ionStage", "units": "0-1", "xmlid": "vex_h_qual"}, "vex_h_temp": {"__spz_name__": "protons: temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vex_h_temp", "dataset": "vex-ima-param", "description": "Proton temperature", "display_type": "timeseries", "is_public": "True", "name": "protons: temperature", "start_date": "2006-02-05T08:06:27Z", "stop_date": "2014-11-27T09:21:53Z", "ucd": "phys.temperature;phys.atmol.ionStage", "units": "eV", "xmlid": "vex_h_temp"}, "vex_h_vel": {"__spz_name__": "protons: v_vso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vex_h_vel", "dataset": "vex-ima-param", "description": "Proton bulk velocity components in VSO coordinates", "display_type": "timeseries", "is_public": "True", "name": "protons: v_vso", "size": "3", "start_date": "2006-02-05T08:06:27Z", "stop_date": "2014-11-27T09:21:53Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "vex_h_vel0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vex_h_vel(0)", "dataset": "vex-ima-param", "index1": "0", "is_public": "True", "name": "vx", "parameter": "vex_h_vel", "start_date": "2006-02-05T08:06:27Z", "stop_date": "2014-11-27T09:21:53Z", "xmlid": "vex_h_vel(0)"}, "vex_h_vel1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vex_h_vel(1)", "dataset": "vex-ima-param", "index1": "1", "is_public": "True", "name": "vy", "parameter": "vex_h_vel", "start_date": "2006-02-05T08:06:27Z", "stop_date": "2014-11-27T09:21:53Z", "xmlid": "vex_h_vel(1)"}, "vex_h_vel2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vex_h_vel(2)", "dataset": "vex-ima-param", "index1": "2", "is_public": "True", "name": "vz", "parameter": "vex_h_vel", "start_date": "2006-02-05T08:06:27Z", "stop_date": "2014-11-27T09:21:53Z", "xmlid": "vex_h_vel(2)"}, "xmlid": "vex_h_vel"}, "vex_o_dens": {"__spz_name__": "heavy: density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vex_o_dens", "dataset": "vex-ima-param", "description": "Heavy ion density", "display_type": "timeseries", "is_public": "True", "name": "heavy: density", "start_date": "2006-02-05T08:06:27Z", "stop_date": "2014-11-27T09:21:53Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm-3", "xmlid": "vex_o_dens"}, "vex_o_qual": {"__spz_name__": "heavy: moments quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vex_o_qual", "dataset": "vex-ima-param", "description": "Heavy ion moments quality flag", "display_type": "timeseries", "is_public": "True", "name": "heavy: moments quality", "start_date": "2006-02-05T08:06:27Z", "stop_date": "2014-11-27T09:21:53Z", "ucd": "meta.code.qual;phys.atmol.ionStage", "units": "0-1", "xmlid": "vex_o_qual"}, "vex_o_temp": {"__spz_name__": "heavy: temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vex_o_temp", "dataset": "vex-ima-param", "description": "Heavy ion temperature", "display_type": "timeseries", "is_public": "True", "name": "heavy: temperature", "start_date": "2006-02-05T08:06:27Z", "stop_date": "2014-11-27T09:21:53Z", "ucd": "phys.temperature;phys.atmol.ionStage", "units": "eV", "xmlid": "vex_o_temp"}, "vex_o_vel": {"__spz_name__": "heavy: v_vso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vex_o_vel", "dataset": "vex-ima-param", "description": "Heavy ion bulk velocity components in VSO coordinates", "display_type": "timeseries", "is_public": "True", "name": "heavy: v_vso", "size": "3", "start_date": "2006-02-05T08:06:27Z", "stop_date": "2014-11-27T09:21:53Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "vex_o_vel0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vex_o_vel(0)", "dataset": "vex-ima-param", "index1": "0", "is_public": "True", "name": "vx", "parameter": "vex_o_vel", "start_date": "2006-02-05T08:06:27Z", "stop_date": "2014-11-27T09:21:53Z", "xmlid": "vex_o_vel(0)"}, "vex_o_vel1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vex_o_vel(1)", "dataset": "vex-ima-param", "index1": "1", "is_public": "True", "name": "vy", "parameter": "vex_o_vel", "start_date": "2006-02-05T08:06:27Z", "stop_date": "2014-11-27T09:21:53Z", "xmlid": "vex_o_vel(1)"}, "vex_o_vel2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vex_o_vel(2)", "dataset": "vex-ima-param", "index1": "2", "is_public": "True", "name": "vz", "parameter": "vex_o_vel", "start_date": "2006-02-05T08:06:27Z", "stop_date": "2014-11-27T09:21:53Z", "xmlid": "vex_o_vel(2)"}, "xmlid": "vex_o_vel"}, "vex_scan": {"__spz_name__": "scan flag", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vex_scan", "dataset": "vex-ima-param", "description": "Scan flag : 0 - no scanning; 1 - scanning", "is_public": "True", "name": "scan flag", "start_date": "2006-02-05T08:06:27Z", "stop_date": "2014-11-27T09:21:53Z", "ucd": "meta.code.qual", "xmlid": "vex_scan"}, "xmlid": "vex-ima-param"}, "vex_ima_sw": {"__spz_name__": "proton moments in SW", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "vex-ima-sw", "att": "auto/vex-ima-sw", "dataSource": "IRAP", "desc": "VEX IMA Solar Wind Proxy
Sampling: 192S
Provider: IRAP", "is_public": "True", "lastModificationDate": "2017-05-30T17:31:38Z", "lastUpdate": "2017-05-30T17:23:41Z", "measurement_type": "ThermalPlasma", "name": "proton moments in SW", "processing_level": "Calibrated", "sampling": "192S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/VEX/IMA/vex-ima-sw", "start_date": "2006-05-15T00:56:40Z", "stop_date": "2014-11-27T06:48:16Z", "target": "Venus", "vex_flag_sw": {"__spz_name__": "density quality", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vex_flag_sw", "dataset": "vex-ima-sw", "description": "Proton moment quality flag", "display_type": "timeseries", "is_public": "True", "name": "density quality", "start_date": "2006-05-15T00:56:40Z", "stop_date": "2014-11-27T06:48:16Z", "ucd": "meta.code.qual;phys.atmol.ionStage", "units": "0-1", "xmlid": "vex_flag_sw"}, "vex_n_sw": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vex_n_sw", "dataset": "vex-ima-sw", "description": "Proton density", "display_type": "timeseries", "is_public": "True", "name": "density", "start_date": "2006-05-15T00:56:40Z", "stop_date": "2014-11-27T06:48:16Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm-3", "xmlid": "vex_n_sw"}, "vex_v_sw": {"__spz_name__": "|v|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vex_v_sw", "dataset": "vex-ima-sw", "description": "Proton bulk velocity", "display_type": "timeseries", "is_public": "True", "name": "|v|", "start_date": "2006-05-15T00:56:40Z", "stop_date": "2014-11-27T06:48:16Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "vex_v_sw"}, "xmlid": "vex-ima-sw"}, "xmlid": "VEX_ima"}, "MAG": {"__spz_name__": "MAG", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "VEX_mag", "att": "auto/VEX_mag", "desc": "Fluxgate Magnetometer
Magnetometer", "is_public": "True", "name": "MAG", "vex_mag_all": {"__spz_name__": "4 sec", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "vex-mag-all", "att": "auto/vex-mag-all", "dataSource": "PSA", "desc": "magnetic field : 4 sec resolution
Sampling: 4S
Provider: PSA", "is_public": "True", "lastModificationDate": "2018-07-31T09:42:40Z", "lastUpdate": "2015-09-07T17:34:27Z", "measurement_type": "MagneticField", "name": "4 sec", "processing_level": "Calibrated", "sampling": "4S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/VEX/MAG/vex-mag-all", "start_date": "2006-04-24T00:00:00Z", "stop_date": "2014-11-25T23:59:56Z", "vex_mag_4s": {"__spz_name__": "b_vso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vex_mag_4s", "dataset": "vex-mag-all", "display_type": "timeseries", "is_public": "True", "name": "b_vso", "size": "3", "start_date": "2006-04-24T00:00:00Z", "stop_date": "2014-11-25T23:59:56Z", "ucd": "Phys.magField", "units": "nT", "vex_mag_4s0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vex_mag_4s(0)", "dataset": "vex-mag-all", "index1": "0", "is_public": "True", "name": "bx", "parameter": "vex_mag_4s", "start_date": "2006-04-24T00:00:00Z", "stop_date": "2014-11-25T23:59:56Z", "xmlid": "vex_mag_4s(0)"}, "vex_mag_4s1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vex_mag_4s(1)", "dataset": "vex-mag-all", "index1": "1", "is_public": "True", "name": "by", "parameter": "vex_mag_4s", "start_date": "2006-04-24T00:00:00Z", "stop_date": "2014-11-25T23:59:56Z", "xmlid": "vex_mag_4s(1)"}, "vex_mag_4s2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vex_mag_4s(2)", "dataset": "vex-mag-all", "index1": "2", "is_public": "True", "name": "bz", "parameter": "vex_mag_4s", "start_date": "2006-04-24T00:00:00Z", "stop_date": "2014-11-25T23:59:56Z", "xmlid": "vex_mag_4s(2)"}, "xmlid": "vex_mag_4s"}, "vex_mag_4s_tot": {"__spz_name__": "\u239cb\u239c", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vex_mag_4s_tot", "dataset": "vex-mag-all", "description": "Scalar magnitude of the magnetic field in nT", "display_type": "timeseries", "is_public": "True", "name": "\u239cb\u239c", "start_date": "2006-04-24T00:00:00Z", "stop_date": "2014-11-25T23:59:56Z", "ucd": "Phys.magField", "units": "nT", "xmlid": "vex_mag_4s_tot"}, "xmlid": "vex-mag-all"}, "vex_mag_hz": {"__spz_name__": "1 sec", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "vex-mag-hz", "att": "auto/vex-mag-hz", "dataSource": "PSA", "desc": "magnetic field : 1 sec resolution
Sampling: 1S
Provider: PSA", "is_public": "True", "lastModificationDate": "2018-07-31T09:42:38Z", "lastUpdate": "2015-09-07T17:23:22Z", "measurement_type": "MagneticField", "name": "1 sec", "processing_level": "Calibrated", "sampling": "1S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/VEX/MAG/vex-mag-hz", "start_date": "2006-04-24T00:00:00Z", "stop_date": "2014-11-25T23:59:59Z", "vex_mag_1s": {"__spz_name__": "b_vso", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vex_mag_1s", "dataset": "vex-mag-hz", "display_type": "timeseries", "is_public": "True", "name": "b_vso", "size": "3", "start_date": "2006-04-24T00:00:00Z", "stop_date": "2014-11-25T23:59:59Z", "ucd": "Phys.magField", "units": "nT", "vex_mag_1s0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vex_mag_1s(0)", "dataset": "vex-mag-hz", "index1": "0", "is_public": "True", "name": "bx", "parameter": "vex_mag_1s", "start_date": "2006-04-24T00:00:00Z", "stop_date": "2014-11-25T23:59:59Z", "xmlid": "vex_mag_1s(0)"}, "vex_mag_1s1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vex_mag_1s(1)", "dataset": "vex-mag-hz", "index1": "1", "is_public": "True", "name": "by", "parameter": "vex_mag_1s", "start_date": "2006-04-24T00:00:00Z", "stop_date": "2014-11-25T23:59:59Z", "xmlid": "vex_mag_1s(1)"}, "vex_mag_1s2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vex_mag_1s(2)", "dataset": "vex-mag-hz", "index1": "2", "is_public": "True", "name": "bz", "parameter": "vex_mag_1s", "start_date": "2006-04-24T00:00:00Z", "stop_date": "2014-11-25T23:59:59Z", "xmlid": "vex_mag_1s(2)"}, "xmlid": "vex_mag_1s"}, "vex_mag_1s_tot": {"__spz_name__": "\u239cb\u239c", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vex_mag_1s_tot", "dataset": "vex-mag-hz", "description": "Scalar magnitude of the magnetic field in nT", "display_type": "timeseries", "is_public": "True", "name": "\u239cb\u239c", "start_date": "2006-04-24T00:00:00Z", "stop_date": "2014-11-25T23:59:59Z", "ucd": "Phys.magField", "units": "nT", "xmlid": "vex_mag_1s_tot"}, "xmlid": "vex-mag-hz"}, "xmlid": "VEX_mag"}, "__spz_name__": "VEX", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "VEX", "att": "auto/VEX", "desc": "Venus-Express
2005-11-09T03:33:00 - 2014-12-16T00:00:00
Venus arrival : 2006-04-11T00:00:00", "is_public": "True", "name": "VEX", "rank": "3", "target": "Venus", "xmlid": "VEX"}, "Voyager": {"Voyager_1": {"CRS": {"__spz_name__": "CRS", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Voyager1_crs", "att": "auto/Voyager1_crs", "desc": "Cosmic Ray System
Spectrometer", "flyby_jupiter": {"__spz_name__": "flyby jupiter", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "vo1-crs-jup", "is_public": "True", "name": "flyby jupiter", "vo1_crs_ele": {"__spz_name__": "electron flux", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "vo1-crs-ele", "att": "auto/vo1-crs-ele", "dataSource": "ONERA", "desc": "
Sampling: 900S
Provider: ONERA", "is_public": "True", "lastModificationDate": "2012-09-13T10:26:30Z", "lastUpdate": "2012-09-13T10:22:15Z", "measurement_type": "ThermalPlasma", "name": "electron flux", "processing_level": "Calibrated", "sampling": "900S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Voyager1/CRS/vo1-crs-ele", "start_date": "1979-02-28T00:07:30Z", "stop_date": "1979-03-16T23:52:30Z", "target": "Jupiter", "vo1_crs_fedo": {"__spz_name__": "diff flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo1_crs_fedo", "dataset": "vo1-crs-ele", "description": "Differential Electrons Flux", "display_type": "stackplot", "is_public": "True", "name": "diff flux", "size": "3", "start_date": "1979-02-28T00:07:30Z", "stop_date": "1979-03-16T23:52:30Z", "ucd": "phys.flux;phys.electron", "units": "cm-2.s-1.sr-1.MeV-1", "vo1_crs_fedo0": {"__spz_name__": "2.6-5.1 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo1_crs_fedo(0)", "dataset": "vo1-crs-ele", "index1": "0", "is_public": "True", "name": "2.6-5.1 MeV", "parameter": "vo1_crs_fedo", "start_date": "1979-02-28T00:07:30Z", "stop_date": "1979-03-16T23:52:30Z", "xmlid": "vo1_crs_fedo(0)"}, "vo1_crs_fedo1": {"__spz_name__": "5.1-8.0 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo1_crs_fedo(1)", "dataset": "vo1-crs-ele", "index1": "1", "is_public": "True", "name": "5.1-8.0 MeV", "parameter": "vo1_crs_fedo", "start_date": "1979-02-28T00:07:30Z", "stop_date": "1979-03-16T23:52:30Z", "xmlid": "vo1_crs_fedo(1)"}, "vo1_crs_fedo2": {"__spz_name__": "8.0-12.0 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo1_crs_fedo(2)", "dataset": "vo1-crs-ele", "index1": "2", "is_public": "True", "name": "8.0-12.0 MeV", "parameter": "vo1_crs_fedo", "start_date": "1979-02-28T00:07:30Z", "stop_date": "1979-03-16T23:52:30Z", "xmlid": "vo1_crs_fedo(2)"}, "xmlid": "vo1_crs_fedo"}, "xmlid": "vo1-crs-ele"}, "vo1_crs_ion": {"__spz_name__": "proton flux", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "vo1-crs-ion", "att": "auto/vo1-crs-ion", "dataSource": "ONERA", "desc": "
Sampling: 900S
Provider: ONERA", "is_public": "True", "lastModificationDate": "2012-09-13T10:46:26Z", "lastUpdate": "2012-09-13T10:46:13Z", "measurement_type": "ThermalPlasma", "name": "proton flux", "processing_level": "Calibrated", "sampling": "900S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Voyager1/CRS/vo1-crs-ion", "start_date": "1979-02-28T00:07:30Z", "stop_date": "1979-03-16T23:52:30Z", "target": "Jupiter", "vo1_crs_fpio": {"__spz_name__": "flux integral", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo1_crs_fpio", "dataset": "vo1-crs-ion", "description": "Integrated Proton Flux", "display_type": "stackplot", "is_public": "True", "name": "flux integral", "size": "3", "start_date": "1979-02-28T00:07:30Z", "stop_date": "1979-03-16T23:52:30Z", "ucd": "phys.flux;phys.atmol.ionStage", "units": "cm-2.s-1.sr-1.MeV-1", "vo1_crs_fpio0": {"__spz_name__": "> 0.43 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo1_crs_fpio(0)", "dataset": "vo1-crs-ion", "index1": "0", "is_public": "True", "name": "> 0.43 MeV", "parameter": "vo1_crs_fpio", "start_date": "1979-02-28T00:07:30Z", "stop_date": "1979-03-16T23:52:30Z", "xmlid": "vo1_crs_fpio(0)"}, "vo1_crs_fpio1": {"__spz_name__": "> 1.8 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo1_crs_fpio(1)", "dataset": "vo1-crs-ion", "index1": "1", "is_public": "True", "name": "> 1.8 MeV", "parameter": "vo1_crs_fpio", "start_date": "1979-02-28T00:07:30Z", "stop_date": "1979-03-16T23:52:30Z", "xmlid": "vo1_crs_fpio(1)"}, "vo1_crs_fpio2": {"__spz_name__": "> 3.0 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo1_crs_fpio(2)", "dataset": "vo1-crs-ion", "index1": "2", "is_public": "True", "name": "> 3.0 MeV", "parameter": "vo1_crs_fpio", "start_date": "1979-02-28T00:07:30Z", "stop_date": "1979-03-16T23:52:30Z", "xmlid": "vo1_crs_fpio(2)"}, "xmlid": "vo1_crs_fpio"}, "xmlid": "vo1-crs-ion"}, "xmlid": "vo1-crs-jup"}, "is_public": "True", "name": "CRS", "vo1_crs_full": {"__spz_name__": "cruise", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "vo1-crs-full", "att": "auto/vo1-crs-full", "dataSource": "CDAWeb", "desc": "
Sampling: 1H
Provider: CDAWeb", "is_public": "True", "lastModificationDate": "2023-01-12T16:05:14Z", "lastUpdate": "2023-01-12T16:05:14Z", "measurement_type": "EnergeticParticles", "name": "cruise", "processing_level": "Calibrated", "sampling": "1H", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Voyager1/CRS/vo1-crs-full", "start_date": "1977-01-01T00:00:00Z", "stop_date": "2021-12-31T18:00:00Z", "target": "Heliosphere", "vo1_crs_flux": {"__spz_name__": "proton flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo1_crs_flux", "dataset": "vo1-crs-full", "description": "Proton flux", "display_type": "spectrogram", "is_public": "True", "name": "proton flux", "start_date": "1977-01-01T00:00:00Z", "stop_date": "2021-12-31T18:00:00Z", "units": "cnts/cm\u00b2*s*st*MeV", "xmlid": "vo1_crs_flux"}, "xmlid": "vo1-crs-full"}, "xmlid": "Voyager1_crs"}, "Ephemeris": {"__spz_name__": "Ephemeris", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Voyager1_ephemeris", "att": "auto/Voyager1_ephemeris", "desc": "", "is_public": "True", "name": "Ephemeris", "vo1_ephem_all": {"__spz_name__": "cruise", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "vo1-ephem-all", "att": "auto/vo1-ephem-all", "dataSource": "NAIF", "desc": "Voyager 1 cruise phase
Sampling: 10H
Provider: NAIF", "is_public": "True", "lastModificationDate": "2019-01-29T12:39:22Z", "lastUpdate": "2019-01-28T17:39:47Z", "measurement_type": "Ephemeris", "name": "cruise", "processing_level": "Calibrated", "r_vo1": {"__spz_name__": "distance vo1-sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "r_vo1", "dataset": "vo1-ephem-all", "is_public": "True", "name": "distance vo1-sun", "start_date": "1977-09-06T00:00:00Z", "stop_date": "2030-12-31T13:59:38Z", "units": "AU", "xmlid": "r_vo1"}, "sampling": "10H", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Voyager1/Ephemeris/vo1-ephem-all", "start_date": "1977-09-06T00:00:00Z", "stop_date": "2030-12-31T13:59:38Z", "target": "Heliosphere", "vo1_sol_lat": {"__spz_name__": "latitude IAU_sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo1_sol_lat", "dataset": "vo1-ephem-all", "is_public": "True", "name": "latitude IAU_sun", "start_date": "1977-09-06T00:00:00Z", "stop_date": "2030-12-31T13:59:38Z", "units": "rad", "xmlid": "vo1_sol_lat"}, "vo1_sol_lon": {"__spz_name__": "longitude IAU_sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo1_sol_lon", "dataset": "vo1-ephem-all", "is_public": "True", "name": "longitude IAU_sun", "start_date": "1977-09-06T00:00:00Z", "stop_date": "2030-12-31T13:59:38Z", "units": "rad", "xmlid": "vo1_sol_lon"}, "xmlid": "vo1-ephem-all", "xyz_vo1_hci": {"__spz_name__": "xyz_hci", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "xyz_vo1_hci", "dataset": "vo1-ephem-all", "display_type": "timeseries", "is_public": "True", "name": "xyz_hci", "size": "3", "start_date": "1977-09-06T00:00:00Z", "stop_date": "2030-12-31T13:59:38Z", "units": "AU", "xmlid": "xyz_vo1_hci", "xyz_vo1_hci0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_vo1_hci(0)", "dataset": "vo1-ephem-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "xyz_vo1_hci", "start_date": "1977-09-06T00:00:00Z", "stop_date": "2030-12-31T13:59:38Z", "xmlid": "xyz_vo1_hci(0)"}, "xyz_vo1_hci1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_vo1_hci(1)", "dataset": "vo1-ephem-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "xyz_vo1_hci", "start_date": "1977-09-06T00:00:00Z", "stop_date": "2030-12-31T13:59:38Z", "xmlid": "xyz_vo1_hci(1)"}, "xyz_vo1_hci2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_vo1_hci(2)", "dataset": "vo1-ephem-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "xyz_vo1_hci", "start_date": "1977-09-06T00:00:00Z", "stop_date": "2030-12-31T13:59:38Z", "xmlid": "xyz_vo1_hci(2)"}}, "xyz_vo1_hee": {"__spz_name__": "xyz_hee", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "xyz_vo1_hee", "dataset": "vo1-ephem-all", "display_type": "timeseries", "is_public": "True", "name": "xyz_hee", "size": "3", "start_date": "1977-09-06T00:00:00Z", "stop_date": "2030-12-31T13:59:38Z", "units": "AU", "xmlid": "xyz_vo1_hee", "xyz_vo1_hee0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_vo1_hee(0)", "dataset": "vo1-ephem-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "xyz_vo1_hee", "start_date": "1977-09-06T00:00:00Z", "stop_date": "2030-12-31T13:59:38Z", "xmlid": "xyz_vo1_hee(0)"}, "xyz_vo1_hee1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_vo1_hee(1)", "dataset": "vo1-ephem-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "xyz_vo1_hee", "start_date": "1977-09-06T00:00:00Z", "stop_date": "2030-12-31T13:59:38Z", "xmlid": "xyz_vo1_hee(1)"}, "xyz_vo1_hee2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_vo1_hee(2)", "dataset": "vo1-ephem-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "xyz_vo1_hee", "start_date": "1977-09-06T00:00:00Z", "stop_date": "2030-12-31T13:59:38Z", "xmlid": "xyz_vo1_hee(2)"}}}, "vo1_ephem_jup": {"__spz_name__": "orbit jupiter", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "vo1-ephem-jup", "att": "auto/vo1-ephem-jup", "dataSource": "http://www-pw.physics.uiowa.edu/~jbg/cas.html", "desc": "
Sampling: 60S
Provider: http://www-pw.physics.uiowa.edu/~jbg/cas.html", "is_public": "True", "lastModificationDate": "2012-03-06T21:54:52Z", "lastUpdate": "2012-03-06T21:54:53Z", "measurement_type": "Ephemeris", "name": "orbit jupiter", "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Voyager1/Ephemeris/vo1-ephem-jup", "start_date": "1979-01-01T00:00:00Z", "stop_date": "1979-04-29T23:59:00Z", "target": "Jupiter", "vo1_jup_iophase": {"__spz_name__": "io phase", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo1_jup_iophase", "dataset": "vo1-ephem-jup", "description": "Io Phase", "display_type": "timeseries", "is_public": "True", "name": "io phase", "start_date": "1979-01-01T00:00:00Z", "stop_date": "1979-04-29T23:59:00Z", "ucd": "pos.angDistance;pos.bodyrc.lon", "units": "deg", "xmlid": "vo1_jup_iophase"}, "vo1_jup_lat": {"__spz_name__": "lat_iau_jup", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo1_jup_lat", "dataset": "vo1-ephem-jup", "description": "Latitude", "display_type": "timeseries", "is_public": "True", "name": "lat_iau_jup", "start_date": "1979-01-01T00:00:00Z", "stop_date": "1979-04-29T23:59:00Z", "ucd": "pos.bodyrc.lat;instr.obsty", "units": "deg", "xmlid": "vo1_jup_lat"}, "vo1_jup_lon": {"__spz_name__": "lon_iau_jup", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo1_jup_lon", "dataset": "vo1-ephem-jup", "description": "Longitude", "display_type": "timeseries", "is_public": "True", "name": "lon_iau_jup", "start_date": "1979-01-01T00:00:00Z", "stop_date": "1979-04-29T23:59:00Z", "ucd": "pos.bodyrc.lon;instr.obsty", "units": "deg", "xmlid": "vo1_jup_lon"}, "vo1_jup_lt": {"__spz_name__": "local time", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo1_jup_lt", "dataset": "vo1-ephem-jup", "description": "Local Time", "display_type": "timeseries", "is_public": "True", "name": "local time", "start_date": "1979-01-01T00:00:00Z", "stop_date": "1979-04-29T23:59:00Z", "ucd": "time.epoch", "units": "hours", "xmlid": "vo1_jup_lt"}, "vo1_jup_mlat": {"__spz_name__": "mlat", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo1_jup_mlat", "dataset": "vo1-ephem-jup", "description": "Magnetic Latitude", "display_type": "timeseries", "is_public": "True", "name": "mlat", "start_date": "1979-01-01T00:00:00Z", "stop_date": "1979-04-29T23:59:00Z", "ucd": "pos.bodyrc.lat;phys.magField;instr.obsty", "units": "deg", "xmlid": "vo1_jup_mlat"}, "vo1_jup_r": {"__spz_name__": "distance vo1-jup", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo1_jup_r", "dataset": "vo1-ephem-jup", "description": "Distance", "display_type": "timeseries", "is_public": "True", "name": "distance vo1-jup", "start_date": "1979-01-01T00:00:00Z", "stop_date": "1979-04-29T23:59:00Z", "ucd": "pos.distance;instr.obsty", "units": "Rj", "xmlid": "vo1_jup_r"}, "xmlid": "vo1-ephem-jup"}, "vo1_ephem_sat": {"__spz_name__": "orbit saturn", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "vo1-ephem-sat", "att": "auto/vo1-ephem-sat", "dataSource": "http://www-pw.physics.uiowa.edu/~jbg/cas.html", "desc": "
Sampling: 60S
Provider: http://www-pw.physics.uiowa.edu/~jbg/cas.html", "is_public": "True", "lastModificationDate": "2012-03-06T21:54:52Z", "lastUpdate": "2012-03-06T21:54:52Z", "measurement_type": "Ephemeris", "name": "orbit saturn", "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Voyager1/Ephemeris/vo1-ephem-sat", "start_date": "1980-10-31T00:00:00Z", "stop_date": "1980-11-30T23:59:00Z", "target": "Saturn", "vo1_sat_iau": {"__spz_name__": "lon_iau_sat", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo1_sat_iau", "dataset": "vo1-ephem-sat", "description": "Longitude IAU", "display_type": "timeseries", "is_public": "True", "name": "lon_iau_sat", "start_date": "1980-10-31T00:00:00Z", "stop_date": "1980-11-30T23:59:00Z", "ucd": "pos.bodyrc.lon;instr.obsty", "units": "deg", "xmlid": "vo1_sat_iau"}, "vo1_sat_l": {"__spz_name__": "L-dip", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo1_sat_l", "dataset": "vo1-ephem-sat", "description": "L-shell (Dipolar field)", "display_type": "timeseries", "is_public": "True", "name": "L-dip", "start_date": "1980-10-31T00:00:00Z", "stop_date": "1980-11-30T23:59:00Z", "ucd": "pos.distance;phys.magField", "units": "no", "xmlid": "vo1_sat_l"}, "vo1_sat_lat": {"__spz_name__": "lat_iau_sat", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo1_sat_lat", "dataset": "vo1-ephem-sat", "description": "Latitude", "display_type": "timeseries", "is_public": "True", "name": "lat_iau_sat", "start_date": "1980-10-31T00:00:00Z", "stop_date": "1980-11-30T23:59:00Z", "ucd": "pos.bodyrc.lat;instr.obsty", "units": "deg", "xmlid": "vo1_sat_lat"}, "vo1_sat_lt": {"__spz_name__": "local time", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo1_sat_lt", "dataset": "vo1-ephem-sat", "description": "Local Time", "display_type": "timeseries", "is_public": "True", "name": "local time", "start_date": "1980-10-31T00:00:00Z", "stop_date": "1980-11-30T23:59:00Z", "ucd": "time.epoch", "units": "hours", "xmlid": "vo1_sat_lt"}, "vo1_sat_r": {"__spz_name__": "distance vo1-sat", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo1_sat_r", "dataset": "vo1-ephem-sat", "description": "Distance", "display_type": "timeseries", "is_public": "True", "name": "distance vo1-sat", "start_date": "1980-10-31T00:00:00Z", "stop_date": "1980-11-30T23:59:00Z", "ucd": "pos.distance;instr.obsty", "units": "Rj", "xmlid": "vo1_sat_r"}, "xmlid": "vo1-ephem-sat"}, "xmlid": "Voyager1_ephemeris"}, "LECP": {"__spz_name__": "LECP", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Voyager1_lecp", "att": "auto/Voyager1_lecp", "desc": "Low-Energy Charged Particles
Spectrometer", "flyby_jupiter": {"__spz_name__": "flyby jupiter", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "vo1-lecp-jup", "is_public": "True", "name": "flyby jupiter", "vo1_lecp_ele": {"__spz_name__": "electron flux", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "vo1-lecp-ele", "att": "auto/vo1-lecp-ele", "dataSource": "ONERA", "desc": "
MinSampling: 96S; MaxSampling: 768S
Provider: ONERA", "is_public": "True", "lastModificationDate": "2012-09-13T10:13:18Z", "lastUpdate": "2012-09-12T17:38:03Z", "maxSampling": "768S", "measurement_type": "EnergeticParticles", "name": "electron flux", "processing_level": "Calibrated", "sampling": "96S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Voyager1/LECP/vo1-lecp-ele", "start_date": "1979-02-28T23:27:06Z", "stop_date": "1979-03-16T23:55:38Z", "target": "Jupiter", "vo1_lecp_fedo": {"__spz_name__": "flux diff", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo1_lecp_fedo", "dataset": "vo1-lecp-ele", "description": "Differential Electron Flux", "display_type": "stackplot", "is_public": "True", "name": "flux diff", "size": "5", "start_date": "1979-02-28T23:27:06Z", "stop_date": "1979-03-16T23:55:38Z", "ucd": "phys.flux;phys.electron", "units": "cm-2.s-1.sr-1.MeV-1", "vo1_lecp_fedo0": {"__spz_name__": "0.015-0.037 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo1_lecp_fedo(0)", "dataset": "vo1-lecp-ele", "index1": "0", "is_public": "True", "name": "0.015-0.037 MeV", "parameter": "vo1_lecp_fedo", "start_date": "1979-02-28T23:27:06Z", "stop_date": "1979-03-16T23:55:38Z", "xmlid": "vo1_lecp_fedo(0)"}, "vo1_lecp_fedo1": {"__spz_name__": "0.037-0.061 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo1_lecp_fedo(1)", "dataset": "vo1-lecp-ele", "index1": "1", "is_public": "True", "name": "0.037-0.061 MeV", "parameter": "vo1_lecp_fedo", "start_date": "1979-02-28T23:27:06Z", "stop_date": "1979-03-16T23:55:38Z", "xmlid": "vo1_lecp_fedo(1)"}, "vo1_lecp_fedo2": {"__spz_name__": "0.07-0.112 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo1_lecp_fedo(2)", "dataset": "vo1-lecp-ele", "index1": "2", "is_public": "True", "name": "0.07-0.112 MeV", "parameter": "vo1_lecp_fedo", "start_date": "1979-02-28T23:27:06Z", "stop_date": "1979-03-16T23:55:38Z", "xmlid": "vo1_lecp_fedo(2)"}, "vo1_lecp_fedo3": {"__spz_name__": "0.13-0.183 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo1_lecp_fedo(3)", "dataset": "vo1-lecp-ele", "index1": "3", "is_public": "True", "name": "0.13-0.183 MeV", "parameter": "vo1_lecp_fedo", "start_date": "1979-02-28T23:27:06Z", "stop_date": "1979-03-16T23:55:38Z", "xmlid": "vo1_lecp_fedo(3)"}, "vo1_lecp_fedo4": {"__spz_name__": "0.2-0.5 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo1_lecp_fedo(4)", "dataset": "vo1-lecp-ele", "index1": "4", "is_public": "True", "name": "0.2-0.5 MeV", "parameter": "vo1_lecp_fedo", "start_date": "1979-02-28T23:27:06Z", "stop_date": "1979-03-16T23:55:38Z", "xmlid": "vo1_lecp_fedo(4)"}, "xmlid": "vo1_lecp_fedo"}, "vo1_lecp_feio": {"__spz_name__": "flux integral", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo1_lecp_feio", "dataset": "vo1-lecp-ele", "description": "Integrated Electron Flux", "display_type": "stackplot", "is_public": "True", "name": "flux integral", "size": "9", "start_date": "1979-02-28T23:27:06Z", "stop_date": "1979-03-16T23:55:38Z", "ucd": "phys.density;phys.electron", "units": "cm-2.s-1.sr-1", "vo1_lecp_feio0": {"__spz_name__": "> 0.015 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo1_lecp_feio(0)", "dataset": "vo1-lecp-ele", "index1": "0", "is_public": "True", "name": "> 0.015 MeV", "parameter": "vo1_lecp_feio", "start_date": "1979-02-28T23:27:06Z", "stop_date": "1979-03-16T23:55:38Z", "xmlid": "vo1_lecp_feio(0)"}, "vo1_lecp_feio1": {"__spz_name__": "> 0.037 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo1_lecp_feio(1)", "dataset": "vo1-lecp-ele", "index1": "1", "is_public": "True", "name": "> 0.037 MeV", "parameter": "vo1_lecp_feio", "start_date": "1979-02-28T23:27:06Z", "stop_date": "1979-03-16T23:55:38Z", "xmlid": "vo1_lecp_feio(1)"}, "vo1_lecp_feio2": {"__spz_name__": "> 0.07 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo1_lecp_feio(2)", "dataset": "vo1-lecp-ele", "index1": "2", "is_public": "True", "name": "> 0.07 MeV", "parameter": "vo1_lecp_feio", "start_date": "1979-02-28T23:27:06Z", "stop_date": "1979-03-16T23:55:38Z", "xmlid": "vo1_lecp_feio(2)"}, "vo1_lecp_feio3": {"__spz_name__": "> 0.13 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo1_lecp_feio(3)", "dataset": "vo1-lecp-ele", "index1": "3", "is_public": "True", "name": "> 0.13 MeV", "parameter": "vo1_lecp_feio", "start_date": "1979-02-28T23:27:06Z", "stop_date": "1979-03-16T23:55:38Z", "xmlid": "vo1_lecp_feio(3)"}, "vo1_lecp_feio4": {"__spz_name__": "> 0.2 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo1_lecp_feio(4)", "dataset": "vo1-lecp-ele", "index1": "4", "is_public": "True", "name": "> 0.2 MeV", "parameter": "vo1_lecp_feio", "start_date": "1979-02-28T23:27:06Z", "stop_date": "1979-03-16T23:55:38Z", "xmlid": "vo1_lecp_feio(4)"}, "vo1_lecp_feio5": {"__spz_name__": "> 0.252 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo1_lecp_feio(5)", "dataset": "vo1-lecp-ele", "index1": "5", "is_public": "True", "name": "> 0.252 MeV", "parameter": "vo1_lecp_feio", "start_date": "1979-02-28T23:27:06Z", "stop_date": "1979-03-16T23:55:38Z", "xmlid": "vo1_lecp_feio(5)"}, "vo1_lecp_feio6": {"__spz_name__": "> 0.48 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo1_lecp_feio(6)", "dataset": "vo1-lecp-ele", "index1": "6", "is_public": "True", "name": "> 0.48 MeV", "parameter": "vo1_lecp_feio", "start_date": "1979-02-28T23:27:06Z", "stop_date": "1979-03-16T23:55:38Z", "xmlid": "vo1_lecp_feio(6)"}, "vo1_lecp_feio7": {"__spz_name__": "> 0.853 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo1_lecp_feio(7)", "dataset": "vo1-lecp-ele", "index1": "7", "is_public": "True", "name": "> 0.853 MeV", "parameter": "vo1_lecp_feio", "start_date": "1979-02-28T23:27:06Z", "stop_date": "1979-03-16T23:55:38Z", "xmlid": "vo1_lecp_feio(7)"}, "vo1_lecp_feio8": {"__spz_name__": "> 2.1 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo1_lecp_feio(8)", "dataset": "vo1-lecp-ele", "index1": "8", "is_public": "True", "name": "> 2.1 MeV", "parameter": "vo1_lecp_feio", "start_date": "1979-02-28T23:27:06Z", "stop_date": "1979-03-16T23:55:38Z", "xmlid": "vo1_lecp_feio(8)"}, "xmlid": "vo1_lecp_feio"}, "xmlid": "vo1-lecp-ele"}, "vo1_lecp_ion": {"__spz_name__": "ion flux", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "vo1-lecp-ion", "att": "auto/vo1-lecp-ion", "dataSource": "ONERA", "desc": "
MinSampling: 96S; MaxSampling: 768S
Provider: ONERA", "is_public": "True", "lastModificationDate": "2012-09-13T09:15:20Z", "lastUpdate": "2012-09-13T09:11:27Z", "maxSampling": "768S", "measurement_type": "EnergeticParticles", "name": "ion flux", "processing_level": "Calibrated", "sampling": "96S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Voyager1/LECP/vo1-lecp-ion", "start_date": "1979-02-28T23:27:06Z", "stop_date": "1979-03-16T23:55:38Z", "target": "Jupiter", "vo1_lecp_fado": {"__spz_name__": "aflux diff : alphas", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo1_lecp_fado", "dataset": "vo1-lecp-ion", "description": "Integrated Alpha Flux", "display_type": "stackplot", "is_public": "True", "name": "aflux diff : alphas", "size": "2", "start_date": "1979-02-28T23:27:06Z", "stop_date": "1979-03-16T23:55:38Z", "ucd": "phys.flux;phys.atmol.ionStage", "units": "cm-2.s-1.sr-1.MeV-1", "vo1_lecp_fado0": {"__spz_name__": "0.98-1.77 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo1_lecp_fado(0)", "dataset": "vo1-lecp-ion", "index1": "0", "is_public": "True", "name": "0.98-1.77 MeV", "parameter": "vo1_lecp_fado", "start_date": "1979-02-28T23:27:06Z", "stop_date": "1979-03-16T23:55:38Z", "xmlid": "vo1_lecp_fado(0)"}, "vo1_lecp_fado1": {"__spz_name__": "1.77-4.22 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo1_lecp_fado(1)", "dataset": "vo1-lecp-ion", "index1": "1", "is_public": "True", "name": "1.77-4.22 MeV", "parameter": "vo1_lecp_fado", "start_date": "1979-02-28T23:27:06Z", "stop_date": "1979-03-16T23:55:38Z", "xmlid": "vo1_lecp_fado(1)"}, "xmlid": "vo1_lecp_fado"}, "vo1_lecp_fpdo": {"__spz_name__": "flux diff : protons", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo1_lecp_fpdo", "dataset": "vo1-lecp-ion", "description": "Differential Proton Flux", "display_type": "stackplot", "is_public": "True", "name": "flux diff : protons", "size": "8", "start_date": "1979-02-28T23:27:06Z", "stop_date": "1979-03-16T23:55:38Z", "ucd": "phys.flux;phys.atmol.ionStage", "units": "cm-2.s-1.sr-1.MeV-1", "vo1_lecp_fpdo0": {"__spz_name__": "0.03-0.053 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo1_lecp_fpdo(0)", "dataset": "vo1-lecp-ion", "index1": "0", "is_public": "True", "name": "0.03-0.053 MeV", "parameter": "vo1_lecp_fpdo", "start_date": "1979-02-28T23:27:06Z", "stop_date": "1979-03-16T23:55:38Z", "xmlid": "vo1_lecp_fpdo(0)"}, "vo1_lecp_fpdo1": {"__spz_name__": "0.053-0.085 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo1_lecp_fpdo(1)", "dataset": "vo1-lecp-ion", "index1": "1", "is_public": "True", "name": "0.053-0.085 MeV", "parameter": "vo1_lecp_fpdo", "start_date": "1979-02-28T23:27:06Z", "stop_date": "1979-03-16T23:55:38Z", "xmlid": "vo1_lecp_fpdo(1)"}, "vo1_lecp_fpdo2": {"__spz_name__": "0.085-0.139 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo1_lecp_fpdo(2)", "dataset": "vo1-lecp-ion", "index1": "2", "is_public": "True", "name": "0.085-0.139 MeV", "parameter": "vo1_lecp_fpdo", "start_date": "1979-02-28T23:27:06Z", "stop_date": "1979-03-16T23:55:38Z", "xmlid": "vo1_lecp_fpdo(2)"}, "vo1_lecp_fpdo3": {"__spz_name__": "0.139-0.2 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo1_lecp_fpdo(3)", "dataset": "vo1-lecp-ion", "index1": "3", "is_public": "True", "name": "0.139-0.2 MeV", "parameter": "vo1_lecp_fpdo", "start_date": "1979-02-28T23:27:06Z", "stop_date": "1979-03-16T23:55:38Z", "xmlid": "vo1_lecp_fpdo(3)"}, "vo1_lecp_fpdo4": {"__spz_name__": "0.2-0.55 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo1_lecp_fpdo(4)", "dataset": "vo1-lecp-ion", "index1": "4", "is_public": "True", "name": "0.2-0.55 MeV", "parameter": "vo1_lecp_fpdo", "start_date": "1979-02-28T23:27:06Z", "stop_date": "1979-03-16T23:55:38Z", "xmlid": "vo1_lecp_fpdo(4)"}, "vo1_lecp_fpdo5": {"__spz_name__": "0.55-1.05 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo1_lecp_fpdo(5)", "dataset": "vo1-lecp-ion", "index1": "5", "is_public": "True", "name": "0.55-1.05 MeV", "parameter": "vo1_lecp_fpdo", "start_date": "1979-02-28T23:27:06Z", "stop_date": "1979-03-16T23:55:38Z", "xmlid": "vo1_lecp_fpdo(5)"}, "vo1_lecp_fpdo6": {"__spz_name__": "1.05-2.03 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo1_lecp_fpdo(6)", "dataset": "vo1-lecp-ion", "index1": "6", "is_public": "True", "name": "1.05-2.03 MeV", "parameter": "vo1_lecp_fpdo", "start_date": "1979-02-28T23:27:06Z", "stop_date": "1979-03-16T23:55:38Z", "xmlid": "vo1_lecp_fpdo(6)"}, "vo1_lecp_fpdo7": {"__spz_name__": "2.03-4.01 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo1_lecp_fpdo(7)", "dataset": "vo1-lecp-ion", "index1": "7", "is_public": "True", "name": "2.03-4.01 MeV", "parameter": "vo1_lecp_fpdo", "start_date": "1979-02-28T23:27:06Z", "stop_date": "1979-03-16T23:55:38Z", "xmlid": "vo1_lecp_fpdo(7)"}, "xmlid": "vo1_lecp_fpdo"}, "xmlid": "vo1-lecp-ion"}, "xmlid": "vo1-lecp-jup"}, "is_public": "True", "name": "LECP", "vo1_lecp_full": {"__spz_name__": "cruise", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "vo1-lecp-full", "att": "auto/vo1-lecp-full", "dataSource": "CDAWeb", "desc": "
Sampling: 1H
Provider: CDAWeb", "is_public": "True", "lastModificationDate": "2023-01-12T16:05:21Z", "lastUpdate": "2023-01-12T16:05:21Z", "measurement_type": "EnergeticParticles", "name": "cruise", "processing_level": "Calibrated", "sampling": "1H", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Voyager1/LECP/vo1-lecp-full", "start_date": "1977-01-01T00:00:00Z", "stop_date": "2021-12-31T18:00:00Z", "target": "Heliosphere", "vo1_lecp_flux": {"__spz_name__": "proton flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo1_lecp_flux", "dataset": "vo1-lecp-full", "description": "Proton flux", "display_type": "timeseries", "is_public": "True", "name": "proton flux", "size": "3", "start_date": "1977-01-01T00:00:00Z", "stop_date": "2021-12-31T18:00:00Z", "units": "cnts/cm\u00b2*s*st*MeV", "vo1_lecp_flux0": {"__spz_name__": "0.58 - 1.78 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo1_lecp_flux(0)", "dataset": "vo1-lecp-full", "index1": "0", "is_public": "True", "name": "0.58 - 1.78 MeV", "parameter": "vo1_lecp_flux", "start_date": "1977-01-01T00:00:00Z", "stop_date": "2021-12-31T18:00:00Z", "xmlid": "vo1_lecp_flux(0)"}, "vo1_lecp_flux1": {"__spz_name__": "3.40 - 17.6 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo1_lecp_flux(1)", "dataset": "vo1-lecp-full", "index1": "1", "is_public": "True", "name": "3.40 - 17.6 MeV", "parameter": "vo1_lecp_flux", "start_date": "1977-01-01T00:00:00Z", "stop_date": "2021-12-31T18:00:00Z", "xmlid": "vo1_lecp_flux(1)"}, "vo1_lecp_flux2": {"__spz_name__": "22 - 31 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo1_lecp_flux(2)", "dataset": "vo1-lecp-full", "index1": "2", "is_public": "True", "name": "22 - 31 MeV", "parameter": "vo1_lecp_flux", "start_date": "1977-01-01T00:00:00Z", "stop_date": "2021-12-31T18:00:00Z", "xmlid": "vo1_lecp_flux(2)"}, "xmlid": "vo1_lecp_flux"}, "xmlid": "vo1-lecp-full"}, "xmlid": "Voyager1_lecp"}, "MAG": {"__spz_name__": "MAG", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Voyager1_mag", "att": "auto/Voyager1_mag", "desc": "Triaxial Fluxgate Magnetometer
Magnetometer", "flyby_jupiter": {"__spz_name__": "flyby jupiter", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "vo1-mag-jup", "is_public": "True", "name": "flyby jupiter", "vo1_mag_juprtn": {"__spz_name__": "rtn", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "vo1-mag-juprtn", "att": "auto/vo1-mag-juprtn", "dataSource": "PDS", "desc": "
Sampling: 1.92S
Provider: PDS", "is_public": "True", "lastModificationDate": "2012-03-06T21:55:01Z", "lastUpdate": "2012-03-06T21:55:02Z", "measurement_type": "MagneticField", "name": "rtn", "processing_level": "Calibrated", "sampling": "1.92S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Voyager1/MAG/vo1-mag-juprtn", "start_date": "1979-02-26T00:00:35Z", "stop_date": "1979-03-24T22:50:18Z", "target": "Jupiter", "vo1_b_juprtn": {"__spz_name__": "b_rtn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo1_b_juprtn", "dataset": "vo1-mag-juprtn", "description": "Magnetic Field in RTN coordinates", "display_type": "timeseries", "is_public": "True", "name": "b_rtn", "size": "3", "start_date": "1979-02-26T00:00:35Z", "stop_date": "1979-03-24T22:50:18Z", "ucd": "phys.magField", "units": "nT", "vo1_b_juprtn0": {"__spz_name__": "br", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo1_b_juprtn(0)", "dataset": "vo1-mag-juprtn", "index1": "0", "is_public": "True", "name": "br", "parameter": "vo1_b_juprtn", "start_date": "1979-02-26T00:00:35Z", "stop_date": "1979-03-24T22:50:18Z", "xmlid": "vo1_b_juprtn(0)"}, "vo1_b_juprtn1": {"__spz_name__": "bt", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo1_b_juprtn(1)", "dataset": "vo1-mag-juprtn", "index1": "1", "is_public": "True", "name": "bt", "parameter": "vo1_b_juprtn", "start_date": "1979-02-26T00:00:35Z", "stop_date": "1979-03-24T22:50:18Z", "xmlid": "vo1_b_juprtn(1)"}, "vo1_b_juprtn2": {"__spz_name__": "bn", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo1_b_juprtn(2)", "dataset": "vo1-mag-juprtn", "index1": "2", "is_public": "True", "name": "bn", "parameter": "vo1_b_juprtn", "start_date": "1979-02-26T00:00:35Z", "stop_date": "1979-03-24T22:50:18Z", "xmlid": "vo1_b_juprtn(2)"}, "xmlid": "vo1_b_juprtn"}, "vo1_b_juprtn_phi": {"__spz_name__": "phi", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo1_b_juprtn_phi", "dataset": "vo1-mag-juprtn", "description": "Magnetic field phi angle", "display_type": "timeseries", "is_public": "True", "name": "phi", "start_date": "1979-02-26T00:00:35Z", "stop_date": "1979-03-24T22:50:18Z", "ucd": "phys.magField", "units": "degrees", "xmlid": "vo1_b_juprtn_phi"}, "vo1_b_juprtn_theta": {"__spz_name__": "theta", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo1_b_juprtn_theta", "dataset": "vo1-mag-juprtn", "description": "Magnetic field theta angle", "display_type": "timeseries", "is_public": "True", "name": "theta", "start_date": "1979-02-26T00:00:35Z", "stop_date": "1979-03-24T22:50:18Z", "ucd": "phys.magField", "units": "degrees", "xmlid": "vo1_b_juprtn_theta"}, "vo1_bmag_juprtn": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo1_bmag_juprtn", "dataset": "vo1-mag-juprtn", "description": "Magnetic Field Magnitude", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "1979-02-26T00:00:35Z", "stop_date": "1979-03-24T22:50:18Z", "ucd": "phys.magField", "units": "nT", "xmlid": "vo1_bmag_juprtn"}, "xmlid": "vo1-mag-juprtn"}, "vo1_mag_jupsys3": {"__spz_name__": "sys3", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "vo1-mag-jupsys3", "att": "auto/vo1-mag-jupsys3", "dataSource": "PDS", "desc": "
Sampling: 1.92S
Provider: PDS", "is_public": "True", "lastModificationDate": "2012-03-06T21:55:03Z", "lastUpdate": "2012-03-06T21:55:04Z", "measurement_type": "MagneticField", "name": "sys3", "processing_level": "Calibrated", "sampling": "1.92S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Voyager1/MAG/vo1-mag-jupsys3", "start_date": "1979-03-03T00:00:35Z", "stop_date": "1979-03-17T00:00:42Z", "target": "Jupiter", "vo1_b_jupsys3": {"__spz_name__": "b_sys3", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo1_b_jupsys3", "dataset": "vo1-mag-jupsys3", "description": "Magnetic Field in System III coordinates", "display_type": "timeseries", "is_public": "True", "name": "b_sys3", "size": "3", "start_date": "1979-03-03T00:00:35Z", "stop_date": "1979-03-17T00:00:42Z", "ucd": "phys.magField", "units": "nT", "vo1_b_jupsys30": {"__spz_name__": "br", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo1_b_jupsys3(0)", "dataset": "vo1-mag-jupsys3", "index1": "0", "is_public": "True", "name": "br", "parameter": "vo1_b_jupsys3", "start_date": "1979-03-03T00:00:35Z", "stop_date": "1979-03-17T00:00:42Z", "xmlid": "vo1_b_jupsys3(0)"}, "vo1_b_jupsys31": {"__spz_name__": "bt", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo1_b_jupsys3(1)", "dataset": "vo1-mag-jupsys3", "index1": "1", "is_public": "True", "name": "bt", "parameter": "vo1_b_jupsys3", "start_date": "1979-03-03T00:00:35Z", "stop_date": "1979-03-17T00:00:42Z", "xmlid": "vo1_b_jupsys3(1)"}, "vo1_b_jupsys32": {"__spz_name__": "bn", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo1_b_jupsys3(2)", "dataset": "vo1-mag-jupsys3", "index1": "2", "is_public": "True", "name": "bn", "parameter": "vo1_b_jupsys3", "start_date": "1979-03-03T00:00:35Z", "stop_date": "1979-03-17T00:00:42Z", "xmlid": "vo1_b_jupsys3(2)"}, "xmlid": "vo1_b_jupsys3"}, "vo1_bmag_jupsys3": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo1_bmag_jupsys3", "dataset": "vo1-mag-jupsys3", "description": "Magnetic Field Magnitude", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "1979-03-03T00:00:35Z", "stop_date": "1979-03-17T00:00:42Z", "ucd": "phys.magField", "units": "nT", "xmlid": "vo1_bmag_jupsys3"}, "xmlid": "vo1-mag-jupsys3"}, "vo1_mag_jupsys348s": {"__spz_name__": "sys3 48s", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "vo1-mag-jupsys348s", "att": "auto/vo1-mag-jupsys348s", "dataSource": "PDS", "desc": "
Sampling: 48S
Provider: PDS", "is_public": "True", "lastModificationDate": "2012-03-06T21:55:00Z", "lastUpdate": "2012-03-06T21:55:00Z", "measurement_type": "MagneticField", "name": "sys3 48s", "processing_level": "Calibrated", "sampling": "48S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Voyager1/MAG/vo1-mag-jupsys348s", "start_date": "1979-03-03T00:00:35Z", "stop_date": "1979-03-16T23:59:56Z", "target": "Jupiter", "vo1_b_jupsys348s": {"__spz_name__": "b_sys3", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo1_b_jupsys348s", "dataset": "vo1-mag-jupsys348s", "description": "Magnetic Field in System III coordinates", "display_type": "timeseries", "is_public": "True", "name": "b_sys3", "size": "3", "start_date": "1979-03-03T00:00:35Z", "stop_date": "1979-03-16T23:59:56Z", "ucd": "phys.magField", "units": "nT", "vo1_b_jupsys348s0": {"__spz_name__": "br", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo1_b_jupsys348s(0)", "dataset": "vo1-mag-jupsys348s", "index1": "0", "is_public": "True", "name": "br", "parameter": "vo1_b_jupsys348s", "start_date": "1979-03-03T00:00:35Z", "stop_date": "1979-03-16T23:59:56Z", "xmlid": "vo1_b_jupsys348s(0)"}, "vo1_b_jupsys348s1": {"__spz_name__": "bt", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo1_b_jupsys348s(1)", "dataset": "vo1-mag-jupsys348s", "index1": "1", "is_public": "True", "name": "bt", "parameter": "vo1_b_jupsys348s", "start_date": "1979-03-03T00:00:35Z", "stop_date": "1979-03-16T23:59:56Z", "xmlid": "vo1_b_jupsys348s(1)"}, "vo1_b_jupsys348s2": {"__spz_name__": "bn", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo1_b_jupsys348s(2)", "dataset": "vo1-mag-jupsys348s", "index1": "2", "is_public": "True", "name": "bn", "parameter": "vo1_b_jupsys348s", "start_date": "1979-03-03T00:00:35Z", "stop_date": "1979-03-16T23:59:56Z", "xmlid": "vo1_b_jupsys348s(2)"}, "xmlid": "vo1_b_jupsys348s"}, "vo1_bmag_jupsys348s": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo1_bmag_jupsys348s", "dataset": "vo1-mag-jupsys348s", "description": "Magnetic Field Magnitude", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "1979-03-03T00:00:35Z", "stop_date": "1979-03-16T23:59:56Z", "ucd": "phys.magField", "units": "nT", "xmlid": "vo1_bmag_jupsys348s"}, "xmlid": "vo1-mag-jupsys348s"}, "xmlid": "vo1-mag-jup"}, "flyby_saturn": {"__spz_name__": "flyby saturn", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "vo1-mag-sat", "is_public": "True", "name": "flyby saturn", "vo1_mag_satkrtp": {"__spz_name__": "krtp", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "vo1-mag-satkrtp", "att": "auto/vo1-mag-satkrtp", "dataSource": "PDS", "desc": "
Sampling: 1.92S
Provider: PDS", "is_public": "True", "lastModificationDate": "2012-03-06T21:54:56Z", "lastUpdate": "2012-03-06T21:54:57Z", "measurement_type": "MagneticField", "name": "krtp", "processing_level": "Calibrated", "sampling": "1.92S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Voyager1/MAG/vo1-mag-satkrtp", "start_date": "1980-11-10T00:00:34Z", "stop_date": "1980-11-18T22:57:21Z", "target": "Saturn", "vo1_b_satkrtp": {"__spz_name__": "b_krtp", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo1_b_satkrtp", "dataset": "vo1-mag-satkrtp", "description": "Magnetic Field in KRTP coordinates", "display_type": "timeseries", "is_public": "True", "name": "b_krtp", "size": "3", "start_date": "1980-11-10T00:00:34Z", "stop_date": "1980-11-18T22:57:21Z", "ucd": "phys.magField", "units": "nT", "vo1_b_satkrtp0": {"__spz_name__": "br", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo1_b_satkrtp(0)", "dataset": "vo1-mag-satkrtp", "index1": "0", "is_public": "True", "name": "br", "parameter": "vo1_b_satkrtp", "start_date": "1980-11-10T00:00:34Z", "stop_date": "1980-11-18T22:57:21Z", "xmlid": "vo1_b_satkrtp(0)"}, "vo1_b_satkrtp1": {"__spz_name__": "bt", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo1_b_satkrtp(1)", "dataset": "vo1-mag-satkrtp", "index1": "1", "is_public": "True", "name": "bt", "parameter": "vo1_b_satkrtp", "start_date": "1980-11-10T00:00:34Z", "stop_date": "1980-11-18T22:57:21Z", "xmlid": "vo1_b_satkrtp(1)"}, "vo1_b_satkrtp2": {"__spz_name__": "bn", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo1_b_satkrtp(2)", "dataset": "vo1-mag-satkrtp", "index1": "2", "is_public": "True", "name": "bn", "parameter": "vo1_b_satkrtp", "start_date": "1980-11-10T00:00:34Z", "stop_date": "1980-11-18T22:57:21Z", "xmlid": "vo1_b_satkrtp(2)"}, "xmlid": "vo1_b_satkrtp"}, "vo1_bmag_satkrtp": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo1_bmag_satkrtp", "dataset": "vo1-mag-satkrtp", "description": "Magnetic Field Magnitude", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "1980-11-10T00:00:34Z", "stop_date": "1980-11-18T22:57:21Z", "ucd": "phys.magField", "units": "nT", "xmlid": "vo1_bmag_satkrtp"}, "xmlid": "vo1-mag-satkrtp"}, "vo1_mag_satkrtp48s": {"__spz_name__": "krtp 48s", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "vo1-mag-satkrtp48s", "att": "auto/vo1-mag-satkrtp48s", "dataSource": "PDS", "desc": "
Sampling: 48S
Provider: PDS", "is_public": "True", "lastModificationDate": "2012-03-06T21:54:56Z", "lastUpdate": "2012-03-06T21:54:56Z", "measurement_type": "MagneticField", "name": "krtp 48s", "processing_level": "Calibrated", "sampling": "48S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Voyager1/MAG/vo1-mag-satkrtp48s", "start_date": "1980-11-10T00:00:34Z", "stop_date": "1980-11-18T22:56:35Z", "target": "Saturn", "vo1_b_satkrtp48s": {"__spz_name__": "b_krtp", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo1_b_satkrtp48s", "dataset": "vo1-mag-satkrtp48s", "description": "Magnetic Field in KRTP coordinates", "display_type": "timeseries", "is_public": "True", "name": "b_krtp", "size": "3", "start_date": "1980-11-10T00:00:34Z", "stop_date": "1980-11-18T22:56:35Z", "ucd": "phys.magField", "units": "nT", "vo1_b_satkrtp48s0": {"__spz_name__": "br", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo1_b_satkrtp48s(0)", "dataset": "vo1-mag-satkrtp48s", "index1": "0", "is_public": "True", "name": "br", "parameter": "vo1_b_satkrtp48s", "start_date": "1980-11-10T00:00:34Z", "stop_date": "1980-11-18T22:56:35Z", "xmlid": "vo1_b_satkrtp48s(0)"}, "vo1_b_satkrtp48s1": {"__spz_name__": "bt", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo1_b_satkrtp48s(1)", "dataset": "vo1-mag-satkrtp48s", "index1": "1", "is_public": "True", "name": "bt", "parameter": "vo1_b_satkrtp48s", "start_date": "1980-11-10T00:00:34Z", "stop_date": "1980-11-18T22:56:35Z", "xmlid": "vo1_b_satkrtp48s(1)"}, "vo1_b_satkrtp48s2": {"__spz_name__": "bn", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo1_b_satkrtp48s(2)", "dataset": "vo1-mag-satkrtp48s", "index1": "2", "is_public": "True", "name": "bn", "parameter": "vo1_b_satkrtp48s", "start_date": "1980-11-10T00:00:34Z", "stop_date": "1980-11-18T22:56:35Z", "xmlid": "vo1_b_satkrtp48s(2)"}, "xmlid": "vo1_b_satkrtp48s"}, "vo1_bmag_satkrtp48s": {"__spz_name__": "b_mag", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo1_bmag_satkrtp48s", "dataset": "vo1-mag-satkrtp48s", "description": "Magnetic Field Magnitude", "display_type": "timeseries", "is_public": "True", "name": "b_mag", "start_date": "1980-11-10T00:00:34Z", "stop_date": "1980-11-18T22:56:35Z", "ucd": "phys.magField", "units": "nT", "xmlid": "vo1_bmag_satkrtp48s"}, "xmlid": "vo1-mag-satkrtp48s"}, "vo1_mag_satrtn": {"__spz_name__": "rtn", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "vo1-mag-satrtn", "att": "auto/vo1-mag-satrtn", "dataSource": "PDS", "desc": "
Sampling: 1.92S
Provider: PDS", "is_public": "True", "lastModificationDate": "2012-03-06T21:54:58Z", "lastUpdate": "2012-03-06T21:54:58Z", "measurement_type": "MagneticField", "name": "rtn", "processing_level": "Calibrated", "sampling": "1.92S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Voyager1/MAG/vo1-mag-satrtn", "start_date": "1980-11-10T00:00:34Z", "stop_date": "1980-11-21T00:00:33Z", "target": "Saturn", "vo1_b_satrtn": {"__spz_name__": "b_rtn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo1_b_satrtn", "dataset": "vo1-mag-satrtn", "description": "Magnetic Field in RTN coordinates", "display_type": "timeseries", "is_public": "True", "name": "b_rtn", "size": "3", "start_date": "1980-11-10T00:00:34Z", "stop_date": "1980-11-21T00:00:33Z", "ucd": "phys.magField", "units": "nT", "vo1_b_satrtn0": {"__spz_name__": "br", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo1_b_satrtn(0)", "dataset": "vo1-mag-satrtn", "index1": "0", "is_public": "True", "name": "br", "parameter": "vo1_b_satrtn", "start_date": "1980-11-10T00:00:34Z", "stop_date": "1980-11-21T00:00:33Z", "xmlid": "vo1_b_satrtn(0)"}, "vo1_b_satrtn1": {"__spz_name__": "bt", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo1_b_satrtn(1)", "dataset": "vo1-mag-satrtn", "index1": "1", "is_public": "True", "name": "bt", "parameter": "vo1_b_satrtn", "start_date": "1980-11-10T00:00:34Z", "stop_date": "1980-11-21T00:00:33Z", "xmlid": "vo1_b_satrtn(1)"}, "vo1_b_satrtn2": {"__spz_name__": "bn", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo1_b_satrtn(2)", "dataset": "vo1-mag-satrtn", "index1": "2", "is_public": "True", "name": "bn", "parameter": "vo1_b_satrtn", "start_date": "1980-11-10T00:00:34Z", "stop_date": "1980-11-21T00:00:33Z", "xmlid": "vo1_b_satrtn(2)"}, "xmlid": "vo1_b_satrtn"}, "vo1_b_satrtn_phi": {"__spz_name__": "phi", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo1_b_satrtn_phi", "dataset": "vo1-mag-satrtn", "description": "Magnetic field phi angle", "display_type": "timeseries", "is_public": "True", "name": "phi", "start_date": "1980-11-10T00:00:34Z", "stop_date": "1980-11-21T00:00:33Z", "ucd": "phys.magField", "units": "degrees", "xmlid": "vo1_b_satrtn_phi"}, "vo1_b_satrtn_theta": {"__spz_name__": "theta", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo1_b_satrtn_theta", "dataset": "vo1-mag-satrtn", "description": "Magnetic field theta angle", "display_type": "timeseries", "is_public": "True", "name": "theta", "start_date": "1980-11-10T00:00:34Z", "stop_date": "1980-11-21T00:00:33Z", "ucd": "phys.magField", "units": "degrees", "xmlid": "vo1_b_satrtn_theta"}, "vo1_bmag_satrtn": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo1_bmag_satrtn", "dataset": "vo1-mag-satrtn", "description": "Magnetic Field Magnitude", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "1980-11-10T00:00:34Z", "stop_date": "1980-11-21T00:00:33Z", "ucd": "phys.magField", "units": "nT", "xmlid": "vo1_bmag_satrtn"}, "xmlid": "vo1-mag-satrtn"}, "xmlid": "vo1-mag-sat"}, "is_public": "True", "name": "MAG", "vo1_mag_full": {"__spz_name__": "cruise", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "vo1-mag-full", "att": "auto/vo1-mag-full", "dataSource": "CDAWeb", "desc": "
Sampling: 1H
Provider: CDAWeb", "is_public": "True", "lastModificationDate": "2023-01-12T16:05:16Z", "lastUpdate": "2023-01-12T16:05:16Z", "measurement_type": "MagneticField", "name": "cruise", "processing_level": "Calibrated", "sampling": "1H", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Voyager1/MAG/vo1-mag-full", "start_date": "1977-01-01T00:00:00Z", "stop_date": "2021-12-31T18:00:00Z", "target": "Heliosphere", "vo1_b_full": {"__spz_name__": "b_rtn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo1_b_full", "dataset": "vo1-mag-full", "description": "Magnetic Field in RTN coordinates", "display_type": "timeseries", "is_public": "True", "name": "b_rtn", "size": "3", "start_date": "1977-01-01T00:00:00Z", "stop_date": "2021-12-31T18:00:00Z", "ucd": "phys.magField", "units": "nT", "vo1_b_full0": {"__spz_name__": "br", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo1_b_full(0)", "dataset": "vo1-mag-full", "index1": "0", "is_public": "True", "name": "br", "parameter": "vo1_b_full", "start_date": "1977-01-01T00:00:00Z", "stop_date": "2021-12-31T18:00:00Z", "xmlid": "vo1_b_full(0)"}, "vo1_b_full1": {"__spz_name__": "bt", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo1_b_full(1)", "dataset": "vo1-mag-full", "index1": "1", "is_public": "True", "name": "bt", "parameter": "vo1_b_full", "start_date": "1977-01-01T00:00:00Z", "stop_date": "2021-12-31T18:00:00Z", "xmlid": "vo1_b_full(1)"}, "vo1_b_full2": {"__spz_name__": "bn", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo1_b_full(2)", "dataset": "vo1-mag-full", "index1": "2", "is_public": "True", "name": "bn", "parameter": "vo1_b_full", "start_date": "1977-01-01T00:00:00Z", "stop_date": "2021-12-31T18:00:00Z", "xmlid": "vo1_b_full(2)"}, "xmlid": "vo1_b_full"}, "vo1_b_full_phi": {"__spz_name__": "phi", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo1_b_full_phi", "dataset": "vo1-mag-full", "description": "Magnetic field phi angle", "display_type": "timeseries", "is_public": "True", "name": "phi", "start_date": "1977-01-01T00:00:00Z", "stop_date": "2021-12-31T18:00:00Z", "ucd": "phys.magField", "units": "degrees", "xmlid": "vo1_b_full_phi"}, "vo1_b_full_theta": {"__spz_name__": "theta", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo1_b_full_theta", "dataset": "vo1-mag-full", "description": "Magnetic field theta angle", "display_type": "timeseries", "is_public": "True", "name": "theta", "start_date": "1977-01-01T00:00:00Z", "stop_date": "2021-12-31T18:00:00Z", "ucd": "phys.magField", "units": "degrees", "xmlid": "vo1_b_full_theta"}, "vo1_bmag_full": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo1_bmag_full", "dataset": "vo1-mag-full", "description": "Magnetic field magnitude (average of high time resolution magnitudes)", "is_public": "True", "name": "|b|", "start_date": "1977-01-01T00:00:00Z", "stop_date": "2021-12-31T18:00:00Z", "ucd": "Phys.magField", "units": "nT", "xmlid": "vo1_bmag_full"}, "xmlid": "vo1-mag-full"}, "xmlid": "Voyager1_mag"}, "PLS": {"__spz_name__": "PLS", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Voyager1_pls", "att": "auto/Voyager1_pls", "desc": "Plasma Spectrometer
FaradayCup", "flyby_jupiter": {"__spz_name__": "flyby jupiter", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "vo1-pls-jup", "is_public": "True", "name": "flyby jupiter", "vo1_pls_elejup": {"__spz_name__": "electron moments", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "vo1-pls-elejup", "att": "auto/vo1-pls-elejup", "dataSource": "PDS", "desc": "
Sampling: 96S
Provider: PDS", "is_public": "True", "lastModificationDate": "2012-03-06T21:54:53Z", "lastUpdate": "2012-03-06T21:54:53Z", "measurement_type": "ThermalPlasma", "name": "electron moments", "processing_level": "Calibrated", "sampling": "96S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Voyager1/PLS/vo1-pls-elejup", "start_date": "1979-03-01T12:27:43Z", "stop_date": "1979-03-07T11:59:03Z", "target": "Jupiter", "vo1_density_elejup": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo1_density_elejup", "dataset": "vo1-pls-elejup", "description": "Density", "display_type": "timeseries", "is_public": "True", "name": "density", "start_date": "1979-03-01T12:27:43Z", "stop_date": "1979-03-07T11:59:03Z", "ucd": "phys.density;phys.electron", "units": "cm-3", "xmlid": "vo1_density_elejup"}, "vo1_temperature_elejup": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo1_temperature_elejup", "dataset": "vo1-pls-elejup", "description": "Temperature", "display_type": "timeseries", "is_public": "True", "name": "temperature", "start_date": "1979-03-01T12:27:43Z", "stop_date": "1979-03-07T11:59:03Z", "ucd": "phys.temperature;phys.electron", "units": "eV", "xmlid": "vo1_temperature_elejup"}, "xmlid": "vo1-pls-elejup"}, "vo1_pls_ionjup": {"__spz_name__": "ion moments", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "vo1-pls-ionjup", "att": "auto/vo1-pls-ionjup", "dataSource": "PDS", "desc": "
Sampling: 96S
Provider: PDS", "is_public": "True", "lastModificationDate": "2012-03-06T21:54:53Z", "lastUpdate": "2012-03-06T21:54:53Z", "measurement_type": "ThermalPlasma", "name": "ion moments", "processing_level": "Calibrated", "sampling": "96S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Voyager1/PLS/vo1-pls-ionjup", "start_date": "1979-03-01T12:04:12Z", "stop_date": "1979-03-05T16:45:54Z", "target": "Jupiter", "vo1_density_ionjup": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo1_density_ionjup", "dataset": "vo1-pls-ionjup", "description": "Density", "display_type": "timeseries", "is_public": "True", "name": "density", "start_date": "1979-03-01T12:04:12Z", "stop_date": "1979-03-05T16:45:54Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm-3", "xmlid": "vo1_density_ionjup"}, "xmlid": "vo1-pls-ionjup"}, "xmlid": "vo1-pls-jup"}, "is_public": "True", "name": "PLS", "vo1_pls_full": {"__spz_name__": "cruise", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "vo1-pls-full", "att": "auto/vo1-pls-full", "dataSource": "CDAWeb", "desc": "
Sampling: 1H
Provider: CDAWeb", "is_public": "True", "lastModificationDate": "2021-07-13T12:41:34Z", "lastUpdate": "2021-07-13T12:40:53Z", "measurement_type": "ThermalPlasma", "name": "cruise", "processing_level": "Calibrated", "sampling": "1H", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Voyager1/PLS/vo1-pls-full", "start_date": "1977-09-07T00:00:00Z", "stop_date": "1980-12-31T23:00:00Z", "target": "Heliosphere", "vo1_az_full": {"__spz_name__": "velocity : azimuth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo1_az_full", "dataset": "vo1-pls-full", "description": "Proton velocity azimuth angle", "display_type": "timeseries", "is_public": "True", "name": "velocity : azimuth", "start_date": "1977-09-07T00:00:00Z", "stop_date": "1980-12-31T23:00:00Z", "ucd": "phys.veloc;phys.particle.proton", "units": "deg", "xmlid": "vo1_az_full"}, "vo1_dens_full": {"__spz_name__": "density h+", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo1_dens_full", "dataset": "vo1-pls-full", "description": "Proton density", "display_type": "timeseries", "is_public": "True", "name": "density h+", "start_date": "1977-09-07T00:00:00Z", "stop_date": "1980-12-31T23:00:00Z", "ucd": "phys.density;phys.particle.proton", "units": "cm-3", "xmlid": "vo1_dens_full"}, "vo1_el_full": {"__spz_name__": "velocity : elevation", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo1_el_full", "dataset": "vo1-pls-full", "description": "Proton velocity elevation angle", "display_type": "timeseries", "is_public": "True", "name": "velocity : elevation", "start_date": "1977-09-07T00:00:00Z", "stop_date": "1980-12-31T23:00:00Z", "ucd": "phys.veloc;phys.particle.proton", "units": "deg", "xmlid": "vo1_el_full"}, "vo1_temp_full": {"__spz_name__": "temperature h+", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo1_temp_full", "dataset": "vo1-pls-full", "description": "Proton radial temperature calculated from thermal speed (T = 60.5*Vth^2)", "display_type": "timeseries", "is_public": "True", "name": "temperature h+", "start_date": "1977-09-07T00:00:00Z", "stop_date": "1980-12-31T23:00:00Z", "ucd": "phys.temperature;phys.particle.proton", "units": "K", "xmlid": "vo1_temp_full"}, "vo1_vel_full": {"__spz_name__": "velocity h+", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo1_vel_full", "dataset": "vo1-pls-full", "description": "Proton velocity", "display_type": "timeseries", "is_public": "True", "name": "velocity h+", "start_date": "1977-09-07T00:00:00Z", "stop_date": "1980-12-31T23:00:00Z", "ucd": "phys.veloc;phys.particle.proton", "units": "km/s", "xmlid": "vo1_vel_full"}, "xmlid": "vo1-pls-full"}, "xmlid": "Voyager1_pls"}, "PWS": {"__spz_name__": "PWS", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Voyager1_pws", "att": "auto/Voyager1_pws", "desc": "Plasma Wave System
WaveformReceiver", "flyby_jupiter": {"__spz_name__": "flyby jupiter", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "vo1-pws-jup", "is_public": "True", "name": "flyby jupiter", "vo1_pws_data": {"__spz_name__": "plasma frequency", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "vo1-pws-data", "att": "auto/vo1-pws-data", "dataSource": "PDS", "desc": "
Sampling: 1S
Provider: PDS", "is_public": "True", "lastModificationDate": "2012-03-06T21:54:51Z", "lastUpdate": "2012-03-06T21:54:52Z", "measurement_type": "ThermalPlasma", "name": "plasma frequency", "processing_level": "Calibrated", "sampling": "1S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Voyager1/PWS/vo1-pws-data", "start_date": "1979-03-01T19:58:22Z", "stop_date": "1979-03-21T14:25:32Z", "target": "Jupiter", "vo1_density_pws": {"__spz_name__": "density e-", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo1_density_pws", "dataset": "vo1-pws-data", "description": "Electron Density", "display_type": "timeseries", "is_public": "True", "name": "density e-", "start_date": "1979-03-01T19:58:22Z", "stop_date": "1979-03-21T14:25:32Z", "ucd": "phys.density;phys.electron", "units": "cm-3", "xmlid": "vo1_density_pws"}, "xmlid": "vo1-pws-data"}, "xmlid": "vo1-pws-jup"}, "is_public": "True", "name": "PWS", "xmlid": "Voyager1_pws"}, "__spz_name__": "Voyager 1", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Voyager1", "att": "auto/Voyager1", "desc": "1977-084A
1977-09-05T12:56:00", "is_public": "True", "name": "Voyager 1", "rank": "4", "target": "Heliosphere.NearEarth", "xmlid": "Voyager1"}, "Voyager_2": {"CRS": {"__spz_name__": "CRS", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Voyager2_crs", "att": "auto/Voyager2_crs", "desc": "Cosmic Ray System
EnergeticParticleInstrument", "flyby_jupiter": {"__spz_name__": "flyby jupiter", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "vo2-crs-jup", "is_public": "True", "name": "flyby jupiter", "vo2_crs_ele": {"__spz_name__": "electron flux", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "vo2-crs-ele", "att": "auto/vo2-crs-ele", "dataSource": "ONERA", "desc": "
Sampling: 900S
Provider: ONERA", "is_public": "True", "lastModificationDate": "2012-09-13T14:50:17Z", "lastUpdate": "2012-09-13T14:01:03Z", "measurement_type": "ThermalPlasma", "name": "electron flux", "processing_level": "Calibrated", "sampling": "900S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Voyager2/CRS/vo2-crs-ele", "start_date": "1979-07-03T00:07:30Z", "stop_date": "1979-08-03T23:52:30Z", "target": "Jupiter", "vo2_crs_fedo": {"__spz_name__": "flux diff", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_crs_fedo", "dataset": "vo2-crs-ele", "display_type": "stackplot", "is_public": "True", "name": "flux diff", "size": "3", "start_date": "1979-07-03T00:07:30Z", "stop_date": "1979-08-03T23:52:30Z", "ucd": "phys.flux;phys.electron", "units": "cm-2.s-1.sr-1.MeV-1", "vo2_crs_fedo0": {"__spz_name__": "2.6-5.1 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo2_crs_fedo(0)", "dataset": "vo2-crs-ele", "index1": "0", "is_public": "True", "name": "2.6-5.1 MeV", "parameter": "vo2_crs_fedo", "start_date": "1979-07-03T00:07:30Z", "stop_date": "1979-08-03T23:52:30Z", "xmlid": "vo2_crs_fedo(0)"}, "vo2_crs_fedo1": {"__spz_name__": "5.1-8.0 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo2_crs_fedo(1)", "dataset": "vo2-crs-ele", "index1": "1", "is_public": "True", "name": "5.1-8.0 MeV", "parameter": "vo2_crs_fedo", "start_date": "1979-07-03T00:07:30Z", "stop_date": "1979-08-03T23:52:30Z", "xmlid": "vo2_crs_fedo(1)"}, "vo2_crs_fedo2": {"__spz_name__": "8.0-12.0 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo2_crs_fedo(2)", "dataset": "vo2-crs-ele", "index1": "2", "is_public": "True", "name": "8.0-12.0 MeV", "parameter": "vo2_crs_fedo", "start_date": "1979-07-03T00:07:30Z", "stop_date": "1979-08-03T23:52:30Z", "xmlid": "vo2_crs_fedo(2)"}, "xmlid": "vo2_crs_fedo"}, "xmlid": "vo2-crs-ele"}, "vo2_crs_ion": {"__spz_name__": "proton flux", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "vo2-crs-ion", "att": "auto/vo2-crs-ion", "dataSource": "ONERA", "desc": "
Sampling: 900S
Provider: ONERA", "is_public": "True", "lastModificationDate": "2012-09-13T15:03:27Z", "lastUpdate": "2012-09-13T14:46:10Z", "measurement_type": "ThermalPlasma", "name": "proton flux", "processing_level": "Calibrated", "sampling": "900S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Voyager2/CRS/vo2-crs-ion", "start_date": "1979-07-03T00:07:30Z", "stop_date": "1979-08-03T23:52:30Z", "target": "Jupiter", "vo2_crs_fpio": {"__spz_name__": "flux integral", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_crs_fpio", "dataset": "vo2-crs-ion", "display_type": "stackplot", "is_public": "True", "name": "flux integral", "size": "3", "start_date": "1979-07-03T00:07:30Z", "stop_date": "1979-08-03T23:52:30Z", "ucd": "phys.flux;phys.atmol.ionStage", "units": "cm-2.s-1.sr-1.MeV-1", "vo2_crs_fpio0": {"__spz_name__": "> 0.43 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo2_crs_fpio(0)", "dataset": "vo2-crs-ion", "index1": "0", "is_public": "True", "name": "> 0.43 MeV", "parameter": "vo2_crs_fpio", "start_date": "1979-07-03T00:07:30Z", "stop_date": "1979-08-03T23:52:30Z", "xmlid": "vo2_crs_fpio(0)"}, "vo2_crs_fpio1": {"__spz_name__": "> 1.8 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo2_crs_fpio(1)", "dataset": "vo2-crs-ion", "index1": "1", "is_public": "True", "name": "> 1.8 MeV", "parameter": "vo2_crs_fpio", "start_date": "1979-07-03T00:07:30Z", "stop_date": "1979-08-03T23:52:30Z", "xmlid": "vo2_crs_fpio(1)"}, "vo2_crs_fpio2": {"__spz_name__": "> 3.0 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo2_crs_fpio(2)", "dataset": "vo2-crs-ion", "index1": "2", "is_public": "True", "name": "> 3.0 MeV", "parameter": "vo2_crs_fpio", "start_date": "1979-07-03T00:07:30Z", "stop_date": "1979-08-03T23:52:30Z", "xmlid": "vo2_crs_fpio(2)"}, "xmlid": "vo2_crs_fpio"}, "xmlid": "vo2-crs-ion"}, "xmlid": "vo2-crs-jup"}, "flyby_uranus": {"__spz_name__": "flyby uranus", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "vo2-crs-ura", "is_public": "True", "name": "flyby uranus", "vo2_crs_urad1": {"__spz_name__": "detector D1", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "vo2-crs-urad1", "att": "auto/vo2-crs-urad1", "dataSource": "PDS", "desc": "
Sampling: 96S
Provider: PDS", "is_public": "True", "lastModificationDate": "2013-05-17T15:42:07Z", "lastUpdate": "2013-05-15T17:32:17Z", "measurement_type": "ThermalPlasma", "name": "detector D1", "processing_level": "Calibrated", "sampling": "96S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Voyager2/CRS/vo2-crs-urad1", "start_date": "1986-01-24T10:09:14Z", "stop_date": "1986-01-24T23:05:14Z", "target": "Uranus", "vo2_urad1_count": {"__spz_name__": "d1 countrate", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_urad1_count", "dataset": "vo2-crs-urad1", "display_type": "timeseries", "is_public": "True", "name": "d1 countrate", "start_date": "1986-01-24T10:09:14Z", "stop_date": "1986-01-24T23:05:14Z", "ucd": "arith.rate", "units": "counts", "xmlid": "vo2_urad1_count"}, "xmlid": "vo2-crs-urad1"}, "vo2_crs_urad2": {"__spz_name__": "detector D2", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "vo2-crs-urad2", "att": "auto/vo2-crs-urad2", "dataSource": "PDS", "desc": "
Sampling: 96S
Provider: PDS", "is_public": "True", "lastModificationDate": "2013-05-17T15:42:25Z", "lastUpdate": "2013-05-15T17:36:36Z", "measurement_type": "ThermalPlasma", "name": "detector D2", "processing_level": "Calibrated", "sampling": "96S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Voyager2/CRS/vo2-crs-urad2", "start_date": "1986-01-24T10:09:02Z", "stop_date": "1986-01-24T23:05:02Z", "target": "Uranus", "vo2_urad2_count": {"__spz_name__": "d2 countrate", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_urad2_count", "dataset": "vo2-crs-urad2", "display_type": "timeseries", "is_public": "True", "name": "d2 countrate", "start_date": "1986-01-24T10:09:02Z", "stop_date": "1986-01-24T23:05:02Z", "ucd": "arith.rate", "units": "counts", "xmlid": "vo2_urad2_count"}, "xmlid": "vo2-crs-urad2"}, "xmlid": "vo2-crs-ura"}, "is_public": "True", "name": "CRS", "vo2_crs_full": {"__spz_name__": "cruise", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "vo2-crs-full", "att": "auto/vo2-crs-full", "dataSource": "CDAWeb", "desc": "
Sampling: 1H
Provider: CDAWeb", "is_public": "True", "lastModificationDate": "2023-01-12T16:05:37Z", "lastUpdate": "2023-01-12T16:05:37Z", "measurement_type": "EnergeticParticles", "name": "cruise", "processing_level": "Calibrated", "sampling": "1H", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Voyager2/CRS/vo2-crs-full", "start_date": "1977-01-01T00:00:00Z", "stop_date": "2020-12-31T11:00:00Z", "target": "Heliosphere", "vo2_crs_flux": {"__spz_name__": "proton flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_crs_flux", "dataset": "vo2-crs-full", "description": "Proton flux", "display_type": "spectrogram", "is_public": "True", "name": "proton flux", "start_date": "1977-01-01T00:00:00Z", "stop_date": "2020-12-31T11:00:00Z", "units": "cnts/cm\u00b2*s*st*MeV", "xmlid": "vo2_crs_flux"}, "xmlid": "vo2-crs-full"}, "xmlid": "Voyager2_crs"}, "Ephemeris": {"__spz_name__": "Ephemeris", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Voyager2_ephemeris", "att": "auto/Voyager2_ephemeris", "desc": "", "is_public": "True", "name": "Ephemeris", "vo2_ephem_all": {"__spz_name__": "cruise", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "vo2-ephem-all", "att": "auto/vo2-ephem-all", "dataSource": "NAIF", "desc": "Voyager 2 cruise phase
Sampling: 10H
Provider: NAIF", "is_public": "True", "lastModificationDate": "2019-01-29T12:39:24Z", "lastUpdate": "2019-01-28T17:41:55Z", "measurement_type": "Ephemeris", "name": "cruise", "processing_level": "Calibrated", "r_vo2": {"__spz_name__": "distance vo2-sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "r_vo2", "dataset": "vo2-ephem-all", "is_public": "True", "name": "distance vo2-sun", "start_date": "1977-08-21T00:00:00Z", "stop_date": "2030-12-31T09:59:38Z", "units": "AU", "xmlid": "r_vo2"}, "sampling": "10H", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Voyager2/Ephemeris/vo2-ephem-all", "start_date": "1977-08-21T00:00:00Z", "stop_date": "2030-12-31T09:59:38Z", "target": "Heliosphere", "vo2_sol_lat": {"__spz_name__": "latitude IAU_sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_sol_lat", "dataset": "vo2-ephem-all", "is_public": "True", "name": "latitude IAU_sun", "start_date": "1977-08-21T00:00:00Z", "stop_date": "2030-12-31T09:59:38Z", "units": "rad", "xmlid": "vo2_sol_lat"}, "vo2_sol_lon": {"__spz_name__": "longitude IAU_sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_sol_lon", "dataset": "vo2-ephem-all", "is_public": "True", "name": "longitude IAU_sun", "start_date": "1977-08-21T00:00:00Z", "stop_date": "2030-12-31T09:59:38Z", "units": "rad", "xmlid": "vo2_sol_lon"}, "xmlid": "vo2-ephem-all", "xyz_vo2_hci": {"__spz_name__": "xyz_hci", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "xyz_vo2_hci", "dataset": "vo2-ephem-all", "display_type": "timeseries", "is_public": "True", "name": "xyz_hci", "size": "3", "start_date": "1977-08-21T00:00:00Z", "stop_date": "2030-12-31T09:59:38Z", "units": "AU", "xmlid": "xyz_vo2_hci", "xyz_vo2_hci0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_vo2_hci(0)", "dataset": "vo2-ephem-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "xyz_vo2_hci", "start_date": "1977-08-21T00:00:00Z", "stop_date": "2030-12-31T09:59:38Z", "xmlid": "xyz_vo2_hci(0)"}, "xyz_vo2_hci1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_vo2_hci(1)", "dataset": "vo2-ephem-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "xyz_vo2_hci", "start_date": "1977-08-21T00:00:00Z", "stop_date": "2030-12-31T09:59:38Z", "xmlid": "xyz_vo2_hci(1)"}, "xyz_vo2_hci2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_vo2_hci(2)", "dataset": "vo2-ephem-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "xyz_vo2_hci", "start_date": "1977-08-21T00:00:00Z", "stop_date": "2030-12-31T09:59:38Z", "xmlid": "xyz_vo2_hci(2)"}}, "xyz_vo2_hee": {"__spz_name__": "xyz_hee", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "xyz_vo2_hee", "dataset": "vo2-ephem-all", "display_type": "timeseries", "is_public": "True", "name": "xyz_hee", "size": "3", "start_date": "1977-08-21T00:00:00Z", "stop_date": "2030-12-31T09:59:38Z", "units": "AU", "xmlid": "xyz_vo2_hee", "xyz_vo2_hee0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_vo2_hee(0)", "dataset": "vo2-ephem-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "xyz_vo2_hee", "start_date": "1977-08-21T00:00:00Z", "stop_date": "2030-12-31T09:59:38Z", "xmlid": "xyz_vo2_hee(0)"}, "xyz_vo2_hee1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_vo2_hee(1)", "dataset": "vo2-ephem-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "xyz_vo2_hee", "start_date": "1977-08-21T00:00:00Z", "stop_date": "2030-12-31T09:59:38Z", "xmlid": "xyz_vo2_hee(1)"}, "xyz_vo2_hee2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "xyz_vo2_hee(2)", "dataset": "vo2-ephem-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "xyz_vo2_hee", "start_date": "1977-08-21T00:00:00Z", "stop_date": "2030-12-31T09:59:38Z", "xmlid": "xyz_vo2_hee(2)"}}}, "vo2_ephem_jup": {"__spz_name__": "orbit jupiter", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "vo2-ephem-jup", "att": "auto/vo2-ephem-jup", "dataSource": "http://www-pw.physics.uiowa.edu/~jbg/cas.html", "desc": "
Sampling: 60S
Provider: http://www-pw.physics.uiowa.edu/~jbg/cas.html", "is_public": "True", "lastModificationDate": "2012-03-06T19:08:25Z", "lastUpdate": "2012-03-06T19:08:25Z", "measurement_type": "Ephemeris", "name": "orbit jupiter", "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Voyager2/Ephemeris/vo2-ephem-jup", "start_date": "1979-04-30T00:00:00Z", "stop_date": "1979-10-26T23:59:00Z", "target": "Jupiter", "vo2_jup_iophase": {"__spz_name__": "io phase", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_jup_iophase", "dataset": "vo2-ephem-jup", "display_type": "timeseries", "is_public": "True", "name": "io phase", "start_date": "1979-04-30T00:00:00Z", "stop_date": "1979-10-26T23:59:00Z", "ucd": "pos.angDistance;pos.bodyrc.lon", "units": "deg", "xmlid": "vo2_jup_iophase"}, "vo2_jup_lat": {"__spz_name__": "lat_iau_jup", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_jup_lat", "dataset": "vo2-ephem-jup", "display_type": "timeseries", "is_public": "True", "name": "lat_iau_jup", "start_date": "1979-04-30T00:00:00Z", "stop_date": "1979-10-26T23:59:00Z", "ucd": "pos.bodyrc.lat;instr.obsty", "units": "deg", "xmlid": "vo2_jup_lat"}, "vo2_jup_lon": {"__spz_name__": "lon_iau_jup", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_jup_lon", "dataset": "vo2-ephem-jup", "display_type": "timeseries", "is_public": "True", "name": "lon_iau_jup", "start_date": "1979-04-30T00:00:00Z", "stop_date": "1979-10-26T23:59:00Z", "ucd": "pos.bodyrc.lon;instr.obsty", "units": "deg", "xmlid": "vo2_jup_lon"}, "vo2_jup_lt": {"__spz_name__": "local time", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_jup_lt", "dataset": "vo2-ephem-jup", "display_type": "timeseries", "is_public": "True", "name": "local time", "start_date": "1979-04-30T00:00:00Z", "stop_date": "1979-10-26T23:59:00Z", "ucd": "time.epoch", "units": "hours", "xmlid": "vo2_jup_lt"}, "vo2_jup_mlat": {"__spz_name__": "mlat", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_jup_mlat", "dataset": "vo2-ephem-jup", "display_type": "timeseries", "is_public": "True", "name": "mlat", "start_date": "1979-04-30T00:00:00Z", "stop_date": "1979-10-26T23:59:00Z", "ucd": "pos.bodyrc.lat;phys.magField;instr.obsty", "units": "deg", "xmlid": "vo2_jup_mlat"}, "vo2_jup_r": {"__spz_name__": "distance vo2-jup", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_jup_r", "dataset": "vo2-ephem-jup", "display_type": "timeseries", "is_public": "True", "name": "distance vo2-jup", "start_date": "1979-04-30T00:00:00Z", "stop_date": "1979-10-26T23:59:00Z", "ucd": "pos.distance;instr.obsty", "units": "Rj", "xmlid": "vo2_jup_r"}, "xmlid": "vo2-ephem-jup"}, "vo2_ephem_sat": {"__spz_name__": "orbit saturn", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "vo2-ephem-sat", "att": "auto/vo2-ephem-sat", "dataSource": "http://www-pw.physics.uiowa.edu/~jbg/cas.html", "desc": "
Sampling: 60S
Provider: http://www-pw.physics.uiowa.edu/~jbg/cas.html", "is_public": "True", "lastModificationDate": "2012-03-06T19:08:24Z", "lastUpdate": "2012-03-06T19:08:24Z", "measurement_type": "Ephemeris", "name": "orbit saturn", "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Voyager2/Ephemeris/vo2-ephem-sat", "start_date": "1981-08-13T00:00:00Z", "stop_date": "1981-09-11T23:59:00Z", "target": "Saturn", "vo2_sat_iau": {"__spz_name__": "lon_iau_sat", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_sat_iau", "dataset": "vo2-ephem-sat", "display_type": "timeseries", "is_public": "True", "name": "lon_iau_sat", "start_date": "1981-08-13T00:00:00Z", "stop_date": "1981-09-11T23:59:00Z", "ucd": "pos.bodyrc.lon;instr.obsty", "units": "deg", "xmlid": "vo2_sat_iau"}, "vo2_sat_l": {"__spz_name__": "L-dip", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_sat_l", "dataset": "vo2-ephem-sat", "display_type": "timeseries", "is_public": "True", "name": "L-dip", "start_date": "1981-08-13T00:00:00Z", "stop_date": "1981-09-11T23:59:00Z", "ucd": "pos.distance;phys.magField", "units": "no", "xmlid": "vo2_sat_l"}, "vo2_sat_lat": {"__spz_name__": "lat_iau_sat", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_sat_lat", "dataset": "vo2-ephem-sat", "display_type": "timeseries", "is_public": "True", "name": "lat_iau_sat", "start_date": "1981-08-13T00:00:00Z", "stop_date": "1981-09-11T23:59:00Z", "ucd": "pos.bodyrc.lat;instr.obsty", "units": "deg", "xmlid": "vo2_sat_lat"}, "vo2_sat_lt": {"__spz_name__": "local time", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_sat_lt", "dataset": "vo2-ephem-sat", "display_type": "timeseries", "is_public": "True", "name": "local time", "start_date": "1981-08-13T00:00:00Z", "stop_date": "1981-09-11T23:59:00Z", "ucd": "time.epoch", "units": "hours", "xmlid": "vo2_sat_lt"}, "vo2_sat_r": {"__spz_name__": "distance vo2-sat", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_sat_r", "dataset": "vo2-ephem-sat", "display_type": "timeseries", "is_public": "True", "name": "distance vo2-sat", "start_date": "1981-08-13T00:00:00Z", "stop_date": "1981-09-11T23:59:00Z", "ucd": "pos.distance;instr.obsty", "units": "Rj", "xmlid": "vo2_sat_r"}, "xmlid": "vo2-ephem-sat"}, "vo2_orb_urahg": {"__spz_name__": "orbit uranus (heliographic)", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "vo2-orb-urahg", "att": "auto/vo2-orb-urahg", "dataSource": "PDS", "desc": "
Sampling: 48S
Provider: PDS", "is_public": "True", "lastModificationDate": "2013-05-17T15:17:06Z", "lastUpdate": "2013-05-15T11:27:00Z", "measurement_type": "Ephemeris", "name": "orbit uranus (heliographic)", "processing_level": "Calibrated", "sampling": "48S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Voyager2/Ephemeris/vo2-orb-urahg", "start_date": "1986-01-21T00:00:00Z", "stop_date": "1986-01-30T23:59:11Z", "target": "Uranus", "vo2_orb_urahglat": {"__spz_name__": "lat_hg", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_orb_urahglat", "dataset": "vo2-orb-urahg", "display_type": "timeseries", "is_public": "True", "name": "lat_hg", "start_date": "1986-01-21T00:00:00Z", "stop_date": "1986-01-30T23:59:11Z", "ucd": "pos.bodyrc.lat;instr.obsty", "units": "deg", "xmlid": "vo2_orb_urahglat"}, "vo2_orb_urahglon": {"__spz_name__": "lon_hg", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_orb_urahglon", "dataset": "vo2-orb-urahg", "display_type": "timeseries", "is_public": "True", "name": "lon_hg", "start_date": "1986-01-21T00:00:00Z", "stop_date": "1986-01-30T23:59:11Z", "ucd": "pos.bodyrc.lon;instr.obsty", "units": "deg", "xmlid": "vo2_orb_urahglon"}, "vo2_orb_urahgr": {"__spz_name__": "distance vo2-uran", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_orb_urahgr", "dataset": "vo2-orb-urahg", "display_type": "timeseries", "is_public": "True", "name": "distance vo2-uran", "start_date": "1986-01-21T00:00:00Z", "stop_date": "1986-01-30T23:59:11Z", "ucd": "pos.distance;instr.obsty", "units": "Ru", "xmlid": "vo2_orb_urahgr"}, "vo2_orb_urahgxyz": {"__spz_name__": "xyz_hg", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_orb_urahgxyz", "dataset": "vo2-orb-urahg", "display_type": "timeseries", "is_public": "True", "name": "xyz_hg", "size": "3", "start_date": "1986-01-21T00:00:00Z", "stop_date": "1986-01-30T23:59:11Z", "ucd": "pos.ephem;instr.obsty", "units": "AU", "vo2_orb_urahgxyz0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo2_orb_urahgxyz(0)", "dataset": "vo2-orb-urahg", "index1": "0", "is_public": "True", "name": "x", "parameter": "vo2_orb_urahgxyz", "start_date": "1986-01-21T00:00:00Z", "stop_date": "1986-01-30T23:59:11Z", "xmlid": "vo2_orb_urahgxyz(0)"}, "vo2_orb_urahgxyz1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo2_orb_urahgxyz(1)", "dataset": "vo2-orb-urahg", "index1": "1", "is_public": "True", "name": "y", "parameter": "vo2_orb_urahgxyz", "start_date": "1986-01-21T00:00:00Z", "stop_date": "1986-01-30T23:59:11Z", "xmlid": "vo2_orb_urahgxyz(1)"}, "vo2_orb_urahgxyz2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo2_orb_urahgxyz(2)", "dataset": "vo2-orb-urahg", "index1": "2", "is_public": "True", "name": "z", "parameter": "vo2_orb_urahgxyz", "start_date": "1986-01-21T00:00:00Z", "stop_date": "1986-01-30T23:59:11Z", "xmlid": "vo2_orb_urahgxyz(2)"}, "xmlid": "vo2_orb_urahgxyz"}, "xmlid": "vo2-orb-urahg"}, "vo2_orb_urau1": {"__spz_name__": "orbit uranus (uranus longitude)", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "vo2-orb-urau1", "att": "auto/vo2-orb-urau1", "dataSource": "PDS", "desc": "
Sampling: 48S
Provider: PDS", "is_public": "True", "lastModificationDate": "2013-05-17T14:54:07Z", "lastUpdate": "2013-05-13T15:51:12Z", "measurement_type": "Ephemeris", "name": "orbit uranus (uranus longitude)", "processing_level": "Calibrated", "sampling": "48S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Voyager2/Ephemeris/vo2-orb-urau1", "start_date": "1986-01-24T07:00:00Z", "stop_date": "1986-01-25T03:59:11Z", "target": "Uranus", "vo2_orb_urau1lat": {"__spz_name__": "lat_ul", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_orb_urau1lat", "dataset": "vo2-orb-urau1", "display_type": "timeseries", "is_public": "True", "name": "lat_ul", "start_date": "1986-01-24T07:00:00Z", "stop_date": "1986-01-25T03:59:11Z", "ucd": "pos.bodyrc.lat;instr.obsty", "units": "deg", "xmlid": "vo2_orb_urau1lat"}, "vo2_orb_urau1lon": {"__spz_name__": "lon_ul", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_orb_urau1lon", "dataset": "vo2-orb-urau1", "display_type": "timeseries", "is_public": "True", "name": "lon_ul", "start_date": "1986-01-24T07:00:00Z", "stop_date": "1986-01-25T03:59:11Z", "ucd": "pos.bodyrc.lon;instr.obsty", "units": "deg", "xmlid": "vo2_orb_urau1lon"}, "vo2_orb_urau1r": {"__spz_name__": "distance vo2-uran", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_orb_urau1r", "dataset": "vo2-orb-urau1", "display_type": "timeseries", "is_public": "True", "name": "distance vo2-uran", "start_date": "1986-01-24T07:00:00Z", "stop_date": "1986-01-25T03:59:11Z", "ucd": "pos.distance;instr.obsty", "units": "Ru", "xmlid": "vo2_orb_urau1r"}, "vo2_orb_urau1xyz": {"__spz_name__": "xyz_u1", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_orb_urau1xyz", "dataset": "vo2-orb-urau1", "display_type": "timeseries", "is_public": "True", "name": "xyz_u1", "size": "3", "start_date": "1986-01-24T07:00:00Z", "stop_date": "1986-01-25T03:59:11Z", "ucd": "pos.ephem;instr.obsty", "units": "Ru", "vo2_orb_urau1xyz0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo2_orb_urau1xyz(0)", "dataset": "vo2-orb-urau1", "index1": "0", "is_public": "True", "name": "x", "parameter": "vo2_orb_urau1xyz", "start_date": "1986-01-24T07:00:00Z", "stop_date": "1986-01-25T03:59:11Z", "xmlid": "vo2_orb_urau1xyz(0)"}, "vo2_orb_urau1xyz1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo2_orb_urau1xyz(1)", "dataset": "vo2-orb-urau1", "index1": "1", "is_public": "True", "name": "y", "parameter": "vo2_orb_urau1xyz", "start_date": "1986-01-24T07:00:00Z", "stop_date": "1986-01-25T03:59:11Z", "xmlid": "vo2_orb_urau1xyz(1)"}, "vo2_orb_urau1xyz2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo2_orb_urau1xyz(2)", "dataset": "vo2-orb-urau1", "index1": "2", "is_public": "True", "name": "z", "parameter": "vo2_orb_urau1xyz", "start_date": "1986-01-24T07:00:00Z", "stop_date": "1986-01-25T03:59:11Z", "xmlid": "vo2_orb_urau1xyz(2)"}, "xmlid": "vo2_orb_urau1xyz"}, "xmlid": "vo2-orb-urau1"}, "xmlid": "Voyager2_ephemeris"}, "LECP": {"__spz_name__": "LECP", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Voyager2_lecp", "att": "auto/Voyager2_lecp", "desc": "Low-Energy Charged Particles
EnergeticParticleInstrument", "flyby_jupiter": {"__spz_name__": "flyby jupiter", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "vo2-lecp-jup", "is_public": "True", "name": "flyby jupiter", "vo2_lecp_ele": {"__spz_name__": "electron flux", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "vo2-lecp-ele", "att": "auto/vo2-lecp-ele", "dataSource": "ONERA", "desc": "
Sampling: 96S
Provider: ONERA", "is_public": "True", "lastModificationDate": "2012-09-13T13:20:20Z", "lastUpdate": "2012-09-13T13:15:27Z", "measurement_type": "EnergeticParticles", "name": "electron flux", "processing_level": "Calibrated", "sampling": "96S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Voyager2/LECP/vo2-lecp-ele", "start_date": "1979-06-17T00:23:18Z", "stop_date": "1979-10-10T20:43:57Z", "target": "Jupiter", "vo2_lecp_fedo": {"__spz_name__": "flux diff", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_lecp_fedo", "dataset": "vo2-lecp-ele", "display_type": "stackplot", "is_public": "True", "name": "flux diff", "size": "5", "start_date": "1979-06-17T00:23:18Z", "stop_date": "1979-10-10T20:43:57Z", "ucd": "phys.flux;phys.electron", "units": "cm-2.s-1.sr-1.MeV-1", "vo2_lecp_fedo0": {"__spz_name__": "0.015-0.035 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo2_lecp_fedo(0)", "dataset": "vo2-lecp-ele", "index1": "0", "is_public": "True", "name": "0.015-0.035 MeV", "parameter": "vo2_lecp_fedo", "start_date": "1979-06-17T00:23:18Z", "stop_date": "1979-10-10T20:43:57Z", "xmlid": "vo2_lecp_fedo(0)"}, "vo2_lecp_fedo1": {"__spz_name__": "0.035-0.061 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo2_lecp_fedo(1)", "dataset": "vo2-lecp-ele", "index1": "1", "is_public": "True", "name": "0.035-0.061 MeV", "parameter": "vo2_lecp_fedo", "start_date": "1979-06-17T00:23:18Z", "stop_date": "1979-10-10T20:43:57Z", "xmlid": "vo2_lecp_fedo(1)"}, "vo2_lecp_fedo2": {"__spz_name__": "0.061-0.112 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo2_lecp_fedo(2)", "dataset": "vo2-lecp-ele", "index1": "2", "is_public": "True", "name": "0.061-0.112 MeV", "parameter": "vo2_lecp_fedo", "start_date": "1979-06-17T00:23:18Z", "stop_date": "1979-10-10T20:43:57Z", "xmlid": "vo2_lecp_fedo(2)"}, "vo2_lecp_fedo3": {"__spz_name__": "0.13-0.183 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo2_lecp_fedo(3)", "dataset": "vo2-lecp-ele", "index1": "3", "is_public": "True", "name": "0.13-0.183 MeV", "parameter": "vo2_lecp_fedo", "start_date": "1979-06-17T00:23:18Z", "stop_date": "1979-10-10T20:43:57Z", "xmlid": "vo2_lecp_fedo(3)"}, "vo2_lecp_fedo4": {"__spz_name__": "0.2-0.5 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo2_lecp_fedo(4)", "dataset": "vo2-lecp-ele", "index1": "4", "is_public": "True", "name": "0.2-0.5 MeV", "parameter": "vo2_lecp_fedo", "start_date": "1979-06-17T00:23:18Z", "stop_date": "1979-10-10T20:43:57Z", "xmlid": "vo2_lecp_fedo(4)"}, "xmlid": "vo2_lecp_fedo"}, "vo2_lecp_feio": {"__spz_name__": "flux integral", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_lecp_feio", "dataset": "vo2-lecp-ele", "display_type": "stackplot", "is_public": "True", "name": "flux integral", "size": "9", "start_date": "1979-06-17T00:23:18Z", "stop_date": "1979-10-10T20:43:57Z", "ucd": "phys.density;phys.electron", "units": "cm-2.s-1.sr-1", "vo2_lecp_feio0": {"__spz_name__": "> 0.015 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo2_lecp_feio(0)", "dataset": "vo2-lecp-ele", "index1": "0", "is_public": "True", "name": "> 0.015 MeV", "parameter": "vo2_lecp_feio", "start_date": "1979-06-17T00:23:18Z", "stop_date": "1979-10-10T20:43:57Z", "xmlid": "vo2_lecp_feio(0)"}, "vo2_lecp_feio1": {"__spz_name__": "> 0.035 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo2_lecp_feio(1)", "dataset": "vo2-lecp-ele", "index1": "1", "is_public": "True", "name": "> 0.035 MeV", "parameter": "vo2_lecp_feio", "start_date": "1979-06-17T00:23:18Z", "stop_date": "1979-10-10T20:43:57Z", "xmlid": "vo2_lecp_feio(1)"}, "vo2_lecp_feio2": {"__spz_name__": "> 0.061 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo2_lecp_feio(2)", "dataset": "vo2-lecp-ele", "index1": "2", "is_public": "True", "name": "> 0.061 MeV", "parameter": "vo2_lecp_feio", "start_date": "1979-06-17T00:23:18Z", "stop_date": "1979-10-10T20:43:57Z", "xmlid": "vo2_lecp_feio(2)"}, "vo2_lecp_feio3": {"__spz_name__": "> 0.112 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo2_lecp_feio(3)", "dataset": "vo2-lecp-ele", "index1": "3", "is_public": "True", "name": "> 0.112 MeV", "parameter": "vo2_lecp_feio", "start_date": "1979-06-17T00:23:18Z", "stop_date": "1979-10-10T20:43:57Z", "xmlid": "vo2_lecp_feio(3)"}, "vo2_lecp_feio4": {"__spz_name__": "> 0.183 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo2_lecp_feio(4)", "dataset": "vo2-lecp-ele", "index1": "4", "is_public": "True", "name": "> 0.183 MeV", "parameter": "vo2_lecp_feio", "start_date": "1979-06-17T00:23:18Z", "stop_date": "1979-10-10T20:43:57Z", "xmlid": "vo2_lecp_feio(4)"}, "vo2_lecp_feio5": {"__spz_name__": "> 0.252 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo2_lecp_feio(5)", "dataset": "vo2-lecp-ele", "index1": "5", "is_public": "True", "name": "> 0.252 MeV", "parameter": "vo2_lecp_feio", "start_date": "1979-06-17T00:23:18Z", "stop_date": "1979-10-10T20:43:57Z", "xmlid": "vo2_lecp_feio(5)"}, "vo2_lecp_feio6": {"__spz_name__": "> 0.48 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo2_lecp_feio(6)", "dataset": "vo2-lecp-ele", "index1": "6", "is_public": "True", "name": "> 0.48 MeV", "parameter": "vo2_lecp_feio", "start_date": "1979-06-17T00:23:18Z", "stop_date": "1979-10-10T20:43:57Z", "xmlid": "vo2_lecp_feio(6)"}, "vo2_lecp_feio7": {"__spz_name__": "> 0.853 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo2_lecp_feio(7)", "dataset": "vo2-lecp-ele", "index1": "7", "is_public": "True", "name": "> 0.853 MeV", "parameter": "vo2_lecp_feio", "start_date": "1979-06-17T00:23:18Z", "stop_date": "1979-10-10T20:43:57Z", "xmlid": "vo2_lecp_feio(7)"}, "vo2_lecp_feio8": {"__spz_name__": "> 2.1 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo2_lecp_feio(8)", "dataset": "vo2-lecp-ele", "index1": "8", "is_public": "True", "name": "> 2.1 MeV", "parameter": "vo2_lecp_feio", "start_date": "1979-06-17T00:23:18Z", "stop_date": "1979-10-10T20:43:57Z", "xmlid": "vo2_lecp_feio(8)"}, "xmlid": "vo2_lecp_feio"}, "xmlid": "vo2-lecp-ele"}, "vo2_lecp_ion": {"__spz_name__": "ion flux", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "vo2-lecp-ion", "att": "auto/vo2-lecp-ion", "dataSource": "ONERA", "desc": "
MinSampling: 96S; MaxSampling: 1536S
Provider: ONERA", "is_public": "True", "lastModificationDate": "2012-09-13T13:35:39Z", "lastUpdate": "2012-09-13T13:34:01Z", "maxSampling": "1536S", "measurement_type": "EnergeticParticles", "name": "ion flux", "processing_level": "Calibrated", "sampling": "96S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Voyager2/LECP/vo2-lecp-ion", "start_date": "1979-06-17T00:23:18Z", "stop_date": "1979-10-10T20:43:57Z", "target": "Jupiter", "vo2_lecp_fado": {"__spz_name__": "flux diff : alphas", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_lecp_fado", "dataset": "vo2-lecp-ion", "display_type": "stackplot", "is_public": "True", "name": "flux diff : alphas", "size": "2", "start_date": "1979-06-17T00:23:18Z", "stop_date": "1979-10-10T20:43:57Z", "ucd": "phys.flux;phys.atmol.ionStage", "units": "cm-2.s-1.sr-1.MeV-1", "vo2_lecp_fado0": {"__spz_name__": "1.04-1.85 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo2_lecp_fado(0)", "dataset": "vo2-lecp-ion", "index1": "0", "is_public": "True", "name": "1.04-1.85 MeV", "parameter": "vo2_lecp_fado", "start_date": "1979-06-17T00:23:18Z", "stop_date": "1979-10-10T20:43:57Z", "xmlid": "vo2_lecp_fado(0)"}, "vo2_lecp_fado1": {"__spz_name__": "1.85-3.3 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo2_lecp_fado(1)", "dataset": "vo2-lecp-ion", "index1": "1", "is_public": "True", "name": "1.85-3.3 MeV", "parameter": "vo2_lecp_fado", "start_date": "1979-06-17T00:23:18Z", "stop_date": "1979-10-10T20:43:57Z", "xmlid": "vo2_lecp_fado(1)"}, "xmlid": "vo2_lecp_fado"}, "vo2_lecp_fpdo": {"__spz_name__": "flux diff : protons", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_lecp_fpdo", "dataset": "vo2-lecp-ion", "display_type": "stackplot", "is_public": "True", "name": "flux diff : protons", "size": "8", "start_date": "1979-06-17T00:23:18Z", "stop_date": "1979-10-10T20:43:57Z", "ucd": "phys.flux;phys.atmol.ionStage", "units": "cm-2.s-1.sr-1.MeV-1", "vo2_lecp_fpdo0": {"__spz_name__": "0.024-0.048 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo2_lecp_fpdo(0)", "dataset": "vo2-lecp-ion", "index1": "0", "is_public": "True", "name": "0.024-0.048 MeV", "parameter": "vo2_lecp_fpdo", "start_date": "1979-06-17T00:23:18Z", "stop_date": "1979-10-10T20:43:57Z", "xmlid": "vo2_lecp_fpdo(0)"}, "vo2_lecp_fpdo1": {"__spz_name__": "0.048-0.08 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo2_lecp_fpdo(1)", "dataset": "vo2-lecp-ion", "index1": "1", "is_public": "True", "name": "0.048-0.08 MeV", "parameter": "vo2_lecp_fpdo", "start_date": "1979-06-17T00:23:18Z", "stop_date": "1979-10-10T20:43:57Z", "xmlid": "vo2_lecp_fpdo(1)"}, "vo2_lecp_fpdo2": {"__spz_name__": "0.08-0.137 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo2_lecp_fpdo(2)", "dataset": "vo2-lecp-ion", "index1": "2", "is_public": "True", "name": "0.08-0.137 MeV", "parameter": "vo2_lecp_fpdo", "start_date": "1979-06-17T00:23:18Z", "stop_date": "1979-10-10T20:43:57Z", "xmlid": "vo2_lecp_fpdo(2)"}, "vo2_lecp_fpdo3": {"__spz_name__": "0.137-0.215 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo2_lecp_fpdo(3)", "dataset": "vo2-lecp-ion", "index1": "3", "is_public": "True", "name": "0.137-0.215 MeV", "parameter": "vo2_lecp_fpdo", "start_date": "1979-06-17T00:23:18Z", "stop_date": "1979-10-10T20:43:57Z", "xmlid": "vo2_lecp_fpdo(3)"}, "vo2_lecp_fpdo4": {"__spz_name__": "0.215-0.54 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo2_lecp_fpdo(4)", "dataset": "vo2-lecp-ion", "index1": "4", "is_public": "True", "name": "0.215-0.54 MeV", "parameter": "vo2_lecp_fpdo", "start_date": "1979-06-17T00:23:18Z", "stop_date": "1979-10-10T20:43:57Z", "xmlid": "vo2_lecp_fpdo(4)"}, "vo2_lecp_fpdo5": {"__spz_name__": "0.54-0.99 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo2_lecp_fpdo(5)", "dataset": "vo2-lecp-ion", "index1": "5", "is_public": "True", "name": "0.54-0.99 MeV", "parameter": "vo2_lecp_fpdo", "start_date": "1979-06-17T00:23:18Z", "stop_date": "1979-10-10T20:43:57Z", "xmlid": "vo2_lecp_fpdo(5)"}, "vo2_lecp_fpdo6": {"__spz_name__": "0.99-2.14 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo2_lecp_fpdo(6)", "dataset": "vo2-lecp-ion", "index1": "6", "is_public": "True", "name": "0.99-2.14 MeV", "parameter": "vo2_lecp_fpdo", "start_date": "1979-06-17T00:23:18Z", "stop_date": "1979-10-10T20:43:57Z", "xmlid": "vo2_lecp_fpdo(6)"}, "vo2_lecp_fpdo7": {"__spz_name__": "2.14-3.5 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo2_lecp_fpdo(7)", "dataset": "vo2-lecp-ion", "index1": "7", "is_public": "True", "name": "2.14-3.5 MeV", "parameter": "vo2_lecp_fpdo", "start_date": "1979-06-17T00:23:18Z", "stop_date": "1979-10-10T20:43:57Z", "xmlid": "vo2_lecp_fpdo(7)"}, "xmlid": "vo2_lecp_fpdo"}, "xmlid": "vo2-lecp-ion"}, "xmlid": "vo2-lecp-jup"}, "flyby_uranus": {"__spz_name__": "flyby uranus", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "vo2-lecp-ura", "is_public": "True", "name": "flyby uranus", "vo2_lecp_ura15m": {"__spz_name__": "counts", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "vo2-lecp-ura15m", "att": "auto/vo2-lecp-ura15m", "dataSource": "PDS", "desc": "
MinSampling: 767S; MaxSampling: 1080S
Provider: PDS", "is_public": "True", "lastModificationDate": "2013-05-17T15:38:04Z", "lastUpdate": "2013-05-15T14:48:11Z", "maxSampling": "1080S", "measurement_type": "EnergeticParticles", "name": "counts", "processing_level": "Calibrated", "sampling": "767S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Voyager2/LECP/vo2-lecp-ura15m", "start_date": "1986-01-24T00:08:34Z", "stop_date": "1986-01-28T23:57:31Z", "target": "Uranus", "vo2_lecp15m_elec": {"__spz_name__": "electron countrate", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_lecp15m_elec", "dataset": "vo2-lecp-ura15m", "display_type": "stackplot", "is_public": "True", "name": "electron countrate", "size": "2", "start_date": "1986-01-24T00:08:34Z", "stop_date": "1986-01-28T23:57:31Z", "ucd": "phys.flux;phys.electron", "units": "counts/s", "vo2_lecp15m_elec0": {"__spz_name__": "EB01", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo2_lecp15m_elec(0)", "dataset": "vo2-lecp-ura15m", "index1": "0", "is_public": "True", "name": "EB01", "parameter": "vo2_lecp15m_elec", "start_date": "1986-01-24T00:08:34Z", "stop_date": "1986-01-28T23:57:31Z", "xmlid": "vo2_lecp15m_elec(0)"}, "vo2_lecp15m_elec1": {"__spz_name__": "EB05", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo2_lecp15m_elec(1)", "dataset": "vo2-lecp-ura15m", "index1": "1", "is_public": "True", "name": "EB05", "parameter": "vo2_lecp15m_elec", "start_date": "1986-01-24T00:08:34Z", "stop_date": "1986-01-28T23:57:31Z", "xmlid": "vo2_lecp15m_elec(1)"}, "xmlid": "vo2_lecp15m_elec"}, "vo2_lecp15m_ion": {"__spz_name__": "ion countrate", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_lecp15m_ion", "dataset": "vo2-lecp-ura15m", "display_type": "stackplot", "is_public": "True", "name": "ion countrate", "size": "2", "start_date": "1986-01-24T00:08:34Z", "stop_date": "1986-01-28T23:57:31Z", "ucd": "phys.flux;phys.atmol.ionStage", "units": "counts/s", "vo2_lecp15m_ion0": {"__spz_name__": "PL02", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo2_lecp15m_ion(0)", "dataset": "vo2-lecp-ura15m", "index1": "0", "is_public": "True", "name": "PL02", "parameter": "vo2_lecp15m_ion", "start_date": "1986-01-24T00:08:34Z", "stop_date": "1986-01-28T23:57:31Z", "xmlid": "vo2_lecp15m_ion(0)"}, "vo2_lecp15m_ion1": {"__spz_name__": "PL07", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo2_lecp15m_ion(1)", "dataset": "vo2-lecp-ura15m", "index1": "1", "is_public": "True", "name": "PL07", "parameter": "vo2_lecp15m_ion", "start_date": "1986-01-24T00:08:34Z", "stop_date": "1986-01-28T23:57:31Z", "xmlid": "vo2_lecp15m_ion(1)"}, "xmlid": "vo2_lecp15m_ion"}, "xmlid": "vo2-lecp-ura15m"}, "vo2_lecp_urascan": {"__spz_name__": "spectra", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "vo2-lecp-urascan", "att": "auto/vo2-lecp-urascan", "dataSource": "PDS", "desc": "
MinSampling: 24S; MaxSampling: 384S
Provider: PDS", "is_public": "True", "lastModificationDate": "2013-05-17T15:38:55Z", "lastUpdate": "2013-05-15T15:50:28Z", "maxSampling": "384S", "measurement_type": "EnergeticParticles", "name": "spectra", "processing_level": "Calibrated", "sampling": "24S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Voyager2/LECP/vo2-lecp-urascan", "start_date": "1986-01-24T00:00:00Z", "stop_date": "1986-01-27T23:51:11Z", "target": "Uranus", "vo2_lecpurascan_elec": {"__spz_name__": "electron", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_lecpurascan_elec", "dataset": "vo2-lecp-urascan", "display_type": "spectrogram", "is_public": "True", "name": "electron", "start_date": "1986-01-24T00:00:00Z", "stop_date": "1986-01-27T23:51:11Z", "ucd": "phys.flux;phys.electron", "units": "counts.cm-2.sr-1.s-1", "xmlid": "vo2_lecpurascan_elec"}, "vo2_lecpurascan_ion": {"__spz_name__": "ion", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_lecpurascan_ion", "dataset": "vo2-lecp-urascan", "display_type": "spectrogram", "is_public": "True", "name": "ion", "start_date": "1986-01-24T00:00:00Z", "stop_date": "1986-01-27T23:51:11Z", "ucd": "phys.flux;phys.atmol.ionStage", "units": "counts.cm-2.sr-1.s-1", "xmlid": "vo2_lecpurascan_ion"}, "xmlid": "vo2-lecp-urascan"}, "xmlid": "vo2-lecp-ura"}, "is_public": "True", "name": "LECP", "vo2_lecp_full": {"__spz_name__": "cruise", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "vo2-lecp-full", "att": "auto/vo2-lecp-full", "dataSource": "CDAWeb", "desc": "
Sampling: 1H
Provider: CDAWeb", "is_public": "True", "lastModificationDate": "2023-01-12T16:05:40Z", "lastUpdate": "2023-01-12T16:05:40Z", "measurement_type": "EnergeticParticles", "name": "cruise", "processing_level": "Calibrated", "sampling": "1H", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Voyager2/LECP/vo2-lecp-full", "start_date": "1977-01-01T00:00:00Z", "stop_date": "2020-12-31T11:00:00Z", "target": "Heliosphere", "vo2_lecp_flux": {"__spz_name__": "proton flux", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_lecp_flux", "dataset": "vo2-lecp-full", "description": "Proton flux", "display_type": "timeseries", "is_public": "True", "name": "proton flux", "size": "3", "start_date": "1977-01-01T00:00:00Z", "stop_date": "2020-12-31T11:00:00Z", "units": "cnts/cm\u00b2*s*st*MeV", "vo2_lecp_flux0": {"__spz_name__": "0.52 - 1.45 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo2_lecp_flux(0)", "dataset": "vo2-lecp-full", "index1": "0", "is_public": "True", "name": "0.52 - 1.45 MeV", "parameter": "vo2_lecp_flux", "start_date": "1977-01-01T00:00:00Z", "stop_date": "2020-12-31T11:00:00Z", "xmlid": "vo2_lecp_flux(0)"}, "vo2_lecp_flux1": {"__spz_name__": "3.04 - 17.3 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo2_lecp_flux(1)", "dataset": "vo2-lecp-full", "index1": "1", "is_public": "True", "name": "3.04 - 17.3 MeV", "parameter": "vo2_lecp_flux", "start_date": "1977-01-01T00:00:00Z", "stop_date": "2020-12-31T11:00:00Z", "xmlid": "vo2_lecp_flux(1)"}, "vo2_lecp_flux2": {"__spz_name__": "22 - 30 MeV", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo2_lecp_flux(2)", "dataset": "vo2-lecp-full", "index1": "2", "is_public": "True", "name": "22 - 30 MeV", "parameter": "vo2_lecp_flux", "start_date": "1977-01-01T00:00:00Z", "stop_date": "2020-12-31T11:00:00Z", "xmlid": "vo2_lecp_flux(2)"}, "xmlid": "vo2_lecp_flux"}, "xmlid": "vo2-lecp-full"}, "xmlid": "Voyager2_lecp"}, "MAG": {"__spz_name__": "MAG", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Voyager2_mag", "att": "auto/Voyager2_mag", "desc": "Triaxial Fluxgate Magnetometer
Magnetometer", "flyby_jupiter": {"__spz_name__": "flyby jupiter", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "vo2-mag-jup", "is_public": "True", "name": "flyby jupiter", "vo2_mag_juprtn": {"__spz_name__": "rtn", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "vo2-mag-juprtn", "att": "auto/vo2-mag-juprtn", "dataSource": "PDS", "desc": "
Sampling: 1.92S
Provider: PDS", "is_public": "True", "lastModificationDate": "2012-03-06T19:08:33Z", "lastUpdate": "2012-03-06T19:08:36Z", "measurement_type": "MagneticField", "name": "rtn", "processing_level": "Calibrated", "sampling": "1.92S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Voyager2/MAG/vo2-mag-juprtn", "start_date": "1979-06-20T00:00:00Z", "stop_date": "1979-08-19T00:00:42Z", "target": "Jupiter", "vo2_b_juprtn": {"__spz_name__": "b_rtn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_b_juprtn", "dataset": "vo2-mag-juprtn", "display_type": "timeseries", "is_public": "True", "name": "b_rtn", "size": "3", "start_date": "1979-06-20T00:00:00Z", "stop_date": "1979-08-19T00:00:42Z", "ucd": "phys.magField", "units": "nT", "vo2_b_juprtn0": {"__spz_name__": "br", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo2_b_juprtn(0)", "dataset": "vo2-mag-juprtn", "index1": "0", "is_public": "True", "name": "br", "parameter": "vo2_b_juprtn", "start_date": "1979-06-20T00:00:00Z", "stop_date": "1979-08-19T00:00:42Z", "xmlid": "vo2_b_juprtn(0)"}, "vo2_b_juprtn1": {"__spz_name__": "bt", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo2_b_juprtn(1)", "dataset": "vo2-mag-juprtn", "index1": "1", "is_public": "True", "name": "bt", "parameter": "vo2_b_juprtn", "start_date": "1979-06-20T00:00:00Z", "stop_date": "1979-08-19T00:00:42Z", "xmlid": "vo2_b_juprtn(1)"}, "vo2_b_juprtn2": {"__spz_name__": "bn", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo2_b_juprtn(2)", "dataset": "vo2-mag-juprtn", "index1": "2", "is_public": "True", "name": "bn", "parameter": "vo2_b_juprtn", "start_date": "1979-06-20T00:00:00Z", "stop_date": "1979-08-19T00:00:42Z", "xmlid": "vo2_b_juprtn(2)"}, "xmlid": "vo2_b_juprtn"}, "vo2_b_juprtn_phi": {"__spz_name__": "phi", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_b_juprtn_phi", "dataset": "vo2-mag-juprtn", "description": "Magnetic field phi angle", "display_type": "timeseries", "is_public": "True", "name": "phi", "start_date": "1979-06-20T00:00:00Z", "stop_date": "1979-08-19T00:00:42Z", "ucd": "phys.magField", "units": "degrees", "xmlid": "vo2_b_juprtn_phi"}, "vo2_b_juprtn_theta": {"__spz_name__": "theta", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_b_juprtn_theta", "dataset": "vo2-mag-juprtn", "description": "Magnetic field theta angle", "display_type": "timeseries", "is_public": "True", "name": "theta", "start_date": "1979-06-20T00:00:00Z", "stop_date": "1979-08-19T00:00:42Z", "ucd": "phys.magField", "units": "degrees", "xmlid": "vo2_b_juprtn_theta"}, "vo2_bmag_juprtn": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_bmag_juprtn", "dataset": "vo2-mag-juprtn", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "1979-06-20T00:00:00Z", "stop_date": "1979-08-19T00:00:42Z", "ucd": "phys.magField", "units": "nT", "xmlid": "vo2_bmag_juprtn"}, "xmlid": "vo2-mag-juprtn"}, "vo2_mag_jupsys3": {"__spz_name__": "sys3", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "vo2-mag-jupsys3", "att": "auto/vo2-mag-jupsys3", "dataSource": "PDS", "desc": "
Sampling: 1.92S
Provider: PDS", "is_public": "True", "lastModificationDate": "2012-03-06T19:08:37Z", "lastUpdate": "2012-03-06T19:08:40Z", "measurement_type": "MagneticField", "name": "sys3", "processing_level": "Calibrated", "sampling": "1.92S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Voyager2/MAG/vo2-mag-jupsys3", "start_date": "1979-07-05T00:00:47Z", "stop_date": "1979-08-12T16:55:54Z", "target": "Jupiter", "vo2_b_jupsys3": {"__spz_name__": "b_sys3", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_b_jupsys3", "dataset": "vo2-mag-jupsys3", "display_type": "timeseries", "is_public": "True", "name": "b_sys3", "size": "3", "start_date": "1979-07-05T00:00:47Z", "stop_date": "1979-08-12T16:55:54Z", "ucd": "phys.magField", "units": "nT", "vo2_b_jupsys30": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo2_b_jupsys3(0)", "dataset": "vo2-mag-jupsys3", "index1": "0", "is_public": "True", "name": "bx", "parameter": "vo2_b_jupsys3", "start_date": "1979-07-05T00:00:47Z", "stop_date": "1979-08-12T16:55:54Z", "xmlid": "vo2_b_jupsys3(0)"}, "vo2_b_jupsys31": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo2_b_jupsys3(1)", "dataset": "vo2-mag-jupsys3", "index1": "1", "is_public": "True", "name": "by", "parameter": "vo2_b_jupsys3", "start_date": "1979-07-05T00:00:47Z", "stop_date": "1979-08-12T16:55:54Z", "xmlid": "vo2_b_jupsys3(1)"}, "vo2_b_jupsys32": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo2_b_jupsys3(2)", "dataset": "vo2-mag-jupsys3", "index1": "2", "is_public": "True", "name": "bz", "parameter": "vo2_b_jupsys3", "start_date": "1979-07-05T00:00:47Z", "stop_date": "1979-08-12T16:55:54Z", "xmlid": "vo2_b_jupsys3(2)"}, "xmlid": "vo2_b_jupsys3"}, "vo2_bmag_jupsys3": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_bmag_jupsys3", "dataset": "vo2-mag-jupsys3", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "1979-07-05T00:00:47Z", "stop_date": "1979-08-12T16:55:54Z", "ucd": "phys.magField", "units": "nT", "xmlid": "vo2_bmag_jupsys3"}, "xmlid": "vo2-mag-jupsys3"}, "vo2_mag_jupsys348s": {"__spz_name__": "sys3 48s", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "vo2-mag-jupsys348s", "att": "auto/vo2-mag-jupsys348s", "dataSource": "PDS", "desc": "
Sampling: 48S
Provider: PDS", "is_public": "True", "lastModificationDate": "2012-03-06T19:08:32Z", "lastUpdate": "2012-03-06T19:08:32Z", "measurement_type": "MagneticField", "name": "sys3 48s", "processing_level": "Calibrated", "sampling": "48S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Voyager2/MAG/vo2-mag-jupsys348s", "start_date": "1979-07-05T00:00:47Z", "stop_date": "1979-08-12T16:55:08Z", "target": "Jupiter", "vo2_b_jupsys348s": {"__spz_name__": "b_sys3", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_b_jupsys348s", "dataset": "vo2-mag-jupsys348s", "display_type": "timeseries", "is_public": "True", "name": "b_sys3", "size": "3", "start_date": "1979-07-05T00:00:47Z", "stop_date": "1979-08-12T16:55:08Z", "ucd": "phys.magField", "units": "nT", "vo2_b_jupsys348s0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo2_b_jupsys348s(0)", "dataset": "vo2-mag-jupsys348s", "index1": "0", "is_public": "True", "name": "bx", "parameter": "vo2_b_jupsys348s", "start_date": "1979-07-05T00:00:47Z", "stop_date": "1979-08-12T16:55:08Z", "xmlid": "vo2_b_jupsys348s(0)"}, "vo2_b_jupsys348s1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo2_b_jupsys348s(1)", "dataset": "vo2-mag-jupsys348s", "index1": "1", "is_public": "True", "name": "by", "parameter": "vo2_b_jupsys348s", "start_date": "1979-07-05T00:00:47Z", "stop_date": "1979-08-12T16:55:08Z", "xmlid": "vo2_b_jupsys348s(1)"}, "vo2_b_jupsys348s2": {"__spz_name__": "br", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo2_b_jupsys348s(2)", "dataset": "vo2-mag-jupsys348s", "index1": "2", "is_public": "True", "name": "br", "parameter": "vo2_b_jupsys348s", "start_date": "1979-07-05T00:00:47Z", "stop_date": "1979-08-12T16:55:08Z", "xmlid": "vo2_b_jupsys348s(2)"}, "xmlid": "vo2_b_jupsys348s"}, "vo2_bmag_jupsys348s": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_bmag_jupsys348s", "dataset": "vo2-mag-jupsys348s", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "1979-07-05T00:00:47Z", "stop_date": "1979-08-12T16:55:08Z", "ucd": "phys.magField", "units": "nT", "xmlid": "vo2_bmag_jupsys348s"}, "xmlid": "vo2-mag-jupsys348s"}, "xmlid": "vo2-mag-jup"}, "flyby_neptune": {"__spz_name__": "flyby neptune", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "vo2-mag-nep", "is_public": "True", "name": "flyby neptune", "vo2_mag_nepnls": {"__spz_name__": "nls", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "vo2-mag-nepnls", "att": "auto/vo2-mag-nepnls", "dataSource": "PDS", "desc": "Neptune Longitude System
Sampling: 12S
Provider: PDS", "is_public": "True", "lastModificationDate": "2012-03-06T19:08:41Z", "lastUpdate": "2012-03-06T19:08:41Z", "measurement_type": "MagneticField", "name": "nls", "processing_level": "Calibrated", "sampling": "12S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Voyager2/MAG/vo2-mag-nepnls", "start_date": "1989-08-24T18:00:00Z", "stop_date": "1989-08-26T08:19:48Z", "target": "Neptune", "vo2_b_nepnls": {"__spz_name__": "b_nls", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_b_nepnls", "dataset": "vo2-mag-nepnls", "display_type": "timeseries", "is_public": "True", "name": "b_nls", "size": "3", "start_date": "1989-08-24T18:00:00Z", "stop_date": "1989-08-26T08:19:48Z", "ucd": "phys.magField", "units": "nT", "vo2_b_nepnls0": {"__spz_name__": "br", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo2_b_nepnls(0)", "dataset": "vo2-mag-nepnls", "index1": "0", "is_public": "True", "name": "br", "parameter": "vo2_b_nepnls", "start_date": "1989-08-24T18:00:00Z", "stop_date": "1989-08-26T08:19:48Z", "xmlid": "vo2_b_nepnls(0)"}, "vo2_b_nepnls1": {"__spz_name__": "btheta", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo2_b_nepnls(1)", "dataset": "vo2-mag-nepnls", "index1": "1", "is_public": "True", "name": "btheta", "parameter": "vo2_b_nepnls", "start_date": "1989-08-24T18:00:00Z", "stop_date": "1989-08-26T08:19:48Z", "xmlid": "vo2_b_nepnls(1)"}, "vo2_b_nepnls2": {"__spz_name__": "bphi", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo2_b_nepnls(2)", "dataset": "vo2-mag-nepnls", "index1": "2", "is_public": "True", "name": "bphi", "parameter": "vo2_b_nepnls", "start_date": "1989-08-24T18:00:00Z", "stop_date": "1989-08-26T08:19:48Z", "xmlid": "vo2_b_nepnls(2)"}, "xmlid": "vo2_b_nepnls"}, "vo2_bmag_nepnls": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_bmag_nepnls", "dataset": "vo2-mag-nepnls", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "1989-08-24T18:00:00Z", "stop_date": "1989-08-26T08:19:48Z", "ucd": "phys.magField", "units": "nT", "xmlid": "vo2_bmag_nepnls"}, "xmlid": "vo2-mag-nepnls"}, "vo2_mag_neprtn": {"__spz_name__": "rtn", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "vo2-mag-neprtn", "att": "auto/vo2-mag-neprtn", "dataSource": "PDS", "desc": "
Sampling: 1.92S
Provider: PDS", "is_public": "True", "lastModificationDate": "2012-03-06T19:08:40Z", "lastUpdate": "2012-03-06T19:08:41Z", "measurement_type": "MagneticField", "name": "rtn", "processing_level": "Calibrated", "sampling": "1.92S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Voyager2/MAG/vo2-mag-neprtn", "start_date": "1989-08-22T00:00:47Z", "stop_date": "1989-08-30T00:00:44Z", "target": "Neptune", "vo2_b_neprtn": {"__spz_name__": "b_rtn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_b_neprtn", "dataset": "vo2-mag-neprtn", "display_type": "timeseries", "is_public": "True", "name": "b_rtn", "size": "3", "start_date": "1989-08-22T00:00:47Z", "stop_date": "1989-08-30T00:00:44Z", "ucd": "phys.magField", "units": "nT", "vo2_b_neprtn0": {"__spz_name__": "br", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo2_b_neprtn(0)", "dataset": "vo2-mag-neprtn", "index1": "0", "is_public": "True", "name": "br", "parameter": "vo2_b_neprtn", "start_date": "1989-08-22T00:00:47Z", "stop_date": "1989-08-30T00:00:44Z", "xmlid": "vo2_b_neprtn(0)"}, "vo2_b_neprtn1": {"__spz_name__": "bt", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo2_b_neprtn(1)", "dataset": "vo2-mag-neprtn", "index1": "1", "is_public": "True", "name": "bt", "parameter": "vo2_b_neprtn", "start_date": "1989-08-22T00:00:47Z", "stop_date": "1989-08-30T00:00:44Z", "xmlid": "vo2_b_neprtn(1)"}, "vo2_b_neprtn2": {"__spz_name__": "bn", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo2_b_neprtn(2)", "dataset": "vo2-mag-neprtn", "index1": "2", "is_public": "True", "name": "bn", "parameter": "vo2_b_neprtn", "start_date": "1989-08-22T00:00:47Z", "stop_date": "1989-08-30T00:00:44Z", "xmlid": "vo2_b_neprtn(2)"}, "xmlid": "vo2_b_neprtn"}, "vo2_b_neprtn_phi": {"__spz_name__": "phi", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_b_neprtn_phi", "dataset": "vo2-mag-neprtn", "description": "Magnetic field phi angle", "display_type": "timeseries", "is_public": "True", "name": "phi", "start_date": "1989-08-22T00:00:47Z", "stop_date": "1989-08-30T00:00:44Z", "ucd": "phys.magField", "units": "degrees", "xmlid": "vo2_b_neprtn_phi"}, "vo2_b_neprtn_theta": {"__spz_name__": "theta", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_b_neprtn_theta", "dataset": "vo2-mag-neprtn", "description": "Magnetic field theta angle", "display_type": "timeseries", "is_public": "True", "name": "theta", "start_date": "1989-08-22T00:00:47Z", "stop_date": "1989-08-30T00:00:44Z", "ucd": "phys.magField", "units": "degrees", "xmlid": "vo2_b_neprtn_theta"}, "vo2_bmag_neprtn": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_bmag_neprtn", "dataset": "vo2-mag-neprtn", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "1989-08-22T00:00:47Z", "stop_date": "1989-08-30T00:00:44Z", "ucd": "phys.magField", "units": "nT", "xmlid": "vo2_bmag_neprtn"}, "xmlid": "vo2-mag-neprtn"}, "xmlid": "vo2-mag-nep"}, "flyby_saturn": {"__spz_name__": "flyby saturn", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "vo2-mag-sat", "is_public": "True", "name": "flyby saturn", "vo2_mag_satkrtp": {"__spz_name__": "krtp", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "vo2-mag-satkrtp", "att": "auto/vo2-mag-satkrtp", "dataSource": "PDS", "desc": "
Sampling: 1.92S
Provider: PDS", "is_public": "True", "lastModificationDate": "2012-03-06T19:08:28Z", "lastUpdate": "2012-03-06T19:08:29Z", "measurement_type": "MagneticField", "name": "krtp", "processing_level": "Calibrated", "sampling": "1.92S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Voyager2/MAG/vo2-mag-satkrtp", "start_date": "1981-08-23T10:34:23Z", "stop_date": "1981-08-29T23:59:57Z", "target": "Saturn", "vo2_b_satkrtp": {"__spz_name__": "b_krtp", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_b_satkrtp", "dataset": "vo2-mag-satkrtp", "display_type": "timeseries", "is_public": "True", "name": "b_krtp", "size": "3", "start_date": "1981-08-23T10:34:23Z", "stop_date": "1981-08-29T23:59:57Z", "ucd": "phys.magField", "units": "nT", "vo2_b_satkrtp0": {"__spz_name__": "br", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo2_b_satkrtp(0)", "dataset": "vo2-mag-satkrtp", "index1": "0", "is_public": "True", "name": "br", "parameter": "vo2_b_satkrtp", "start_date": "1981-08-23T10:34:23Z", "stop_date": "1981-08-29T23:59:57Z", "xmlid": "vo2_b_satkrtp(0)"}, "vo2_b_satkrtp1": {"__spz_name__": "bt", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo2_b_satkrtp(1)", "dataset": "vo2-mag-satkrtp", "index1": "1", "is_public": "True", "name": "bt", "parameter": "vo2_b_satkrtp", "start_date": "1981-08-23T10:34:23Z", "stop_date": "1981-08-29T23:59:57Z", "xmlid": "vo2_b_satkrtp(1)"}, "vo2_b_satkrtp2": {"__spz_name__": "bn", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo2_b_satkrtp(2)", "dataset": "vo2-mag-satkrtp", "index1": "2", "is_public": "True", "name": "bn", "parameter": "vo2_b_satkrtp", "start_date": "1981-08-23T10:34:23Z", "stop_date": "1981-08-29T23:59:57Z", "xmlid": "vo2_b_satkrtp(2)"}, "xmlid": "vo2_b_satkrtp"}, "vo2_bmag_satkrtp": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_bmag_satkrtp", "dataset": "vo2-mag-satkrtp", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "1981-08-23T10:34:23Z", "stop_date": "1981-08-29T23:59:57Z", "ucd": "phys.magField", "units": "nT", "xmlid": "vo2_bmag_satkrtp"}, "xmlid": "vo2-mag-satkrtp"}, "vo2_mag_satrtn": {"__spz_name__": "rtn", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "vo2-mag-satrtn", "att": "auto/vo2-mag-satrtn", "dataSource": "PDS", "desc": "
Sampling: 1.92S
Provider: PDS", "is_public": "True", "lastModificationDate": "2012-03-06T19:08:29Z", "lastUpdate": "2012-03-06T19:08:30Z", "measurement_type": "MagneticField", "name": "rtn", "processing_level": "Calibrated", "sampling": "1.92S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Voyager2/MAG/vo2-mag-satrtn", "start_date": "1981-08-24T00:00:47Z", "stop_date": "1981-09-03T00:00:44Z", "target": "Saturn", "vo2_b_satrtn": {"__spz_name__": "b_rtn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_b_satrtn", "dataset": "vo2-mag-satrtn", "display_type": "timeseries", "is_public": "True", "name": "b_rtn", "size": "3", "start_date": "1981-08-24T00:00:47Z", "stop_date": "1981-09-03T00:00:44Z", "ucd": "phys.magField", "units": "nT", "vo2_b_satrtn0": {"__spz_name__": "br", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo2_b_satrtn(0)", "dataset": "vo2-mag-satrtn", "index1": "0", "is_public": "True", "name": "br", "parameter": "vo2_b_satrtn", "start_date": "1981-08-24T00:00:47Z", "stop_date": "1981-09-03T00:00:44Z", "xmlid": "vo2_b_satrtn(0)"}, "vo2_b_satrtn1": {"__spz_name__": "bt", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo2_b_satrtn(1)", "dataset": "vo2-mag-satrtn", "index1": "1", "is_public": "True", "name": "bt", "parameter": "vo2_b_satrtn", "start_date": "1981-08-24T00:00:47Z", "stop_date": "1981-09-03T00:00:44Z", "xmlid": "vo2_b_satrtn(1)"}, "vo2_b_satrtn2": {"__spz_name__": "bn", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo2_b_satrtn(2)", "dataset": "vo2-mag-satrtn", "index1": "2", "is_public": "True", "name": "bn", "parameter": "vo2_b_satrtn", "start_date": "1981-08-24T00:00:47Z", "stop_date": "1981-09-03T00:00:44Z", "xmlid": "vo2_b_satrtn(2)"}, "xmlid": "vo2_b_satrtn"}, "vo2_b_satrtn_phi": {"__spz_name__": "phi", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_b_satrtn_phi", "dataset": "vo2-mag-satrtn", "description": "Magnetic field phi angle", "display_type": "timeseries", "is_public": "True", "name": "phi", "start_date": "1981-08-24T00:00:47Z", "stop_date": "1981-09-03T00:00:44Z", "ucd": "phys.magField", "units": "degrees", "xmlid": "vo2_b_satrtn_phi"}, "vo2_b_satrtn_theta": {"__spz_name__": "theta", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_b_satrtn_theta", "dataset": "vo2-mag-satrtn", "description": "Magnetic field theta angle", "display_type": "timeseries", "is_public": "True", "name": "theta", "start_date": "1981-08-24T00:00:47Z", "stop_date": "1981-09-03T00:00:44Z", "ucd": "phys.magField", "units": "degrees", "xmlid": "vo2_b_satrtn_theta"}, "vo2_bmag_satrtn": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_bmag_satrtn", "dataset": "vo2-mag-satrtn", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "1981-08-24T00:00:47Z", "stop_date": "1981-09-03T00:00:44Z", "ucd": "phys.magField", "units": "nT", "xmlid": "vo2_bmag_satrtn"}, "xmlid": "vo2-mag-satrtn"}, "xmlid": "vo2-mag-sat"}, "flyby_uranus": {"__spz_name__": "flyby uranus", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "vo2-mag-ura", "is_public": "True", "name": "flyby uranus", "vo2_mag_urartn": {"__spz_name__": "rtn", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "vo2-mag-urartn", "att": "auto/vo2-mag-urartn", "dataSource": "PDS", "desc": "
Sampling: 1.92S
Provider: PDS", "is_public": "True", "lastModificationDate": "2012-03-06T19:08:31Z", "lastUpdate": "2012-03-06T19:08:32Z", "measurement_type": "MagneticField", "name": "rtn", "processing_level": "Calibrated", "sampling": "1.92S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Voyager2/MAG/vo2-mag-urartn", "start_date": "1986-01-21T00:00:00Z", "stop_date": "1986-01-30T23:59:57Z", "target": "Uranus", "vo2_b_urartn": {"__spz_name__": "b_rtn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_b_urartn", "dataset": "vo2-mag-urartn", "display_type": "timeseries", "is_public": "True", "name": "b_rtn", "size": "3", "start_date": "1986-01-21T00:00:00Z", "stop_date": "1986-01-30T23:59:57Z", "ucd": "phys.magField", "units": "nT", "vo2_b_urartn0": {"__spz_name__": "br", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo2_b_urartn(0)", "dataset": "vo2-mag-urartn", "index1": "0", "is_public": "True", "name": "br", "parameter": "vo2_b_urartn", "start_date": "1986-01-21T00:00:00Z", "stop_date": "1986-01-30T23:59:57Z", "xmlid": "vo2_b_urartn(0)"}, "vo2_b_urartn1": {"__spz_name__": "bt", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo2_b_urartn(1)", "dataset": "vo2-mag-urartn", "index1": "1", "is_public": "True", "name": "bt", "parameter": "vo2_b_urartn", "start_date": "1986-01-21T00:00:00Z", "stop_date": "1986-01-30T23:59:57Z", "xmlid": "vo2_b_urartn(1)"}, "vo2_b_urartn2": {"__spz_name__": "bn", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo2_b_urartn(2)", "dataset": "vo2-mag-urartn", "index1": "2", "is_public": "True", "name": "bn", "parameter": "vo2_b_urartn", "start_date": "1986-01-21T00:00:00Z", "stop_date": "1986-01-30T23:59:57Z", "xmlid": "vo2_b_urartn(2)"}, "xmlid": "vo2_b_urartn"}, "vo2_b_urartn_phi": {"__spz_name__": "phi", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_b_urartn_phi", "dataset": "vo2-mag-urartn", "description": "Magnetic field phi angle", "display_type": "timeseries", "is_public": "True", "name": "phi", "start_date": "1986-01-21T00:00:00Z", "stop_date": "1986-01-30T23:59:57Z", "ucd": "phys.magField", "units": "degrees", "xmlid": "vo2_b_urartn_phi"}, "vo2_b_urartn_theta": {"__spz_name__": "theta", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_b_urartn_theta", "dataset": "vo2-mag-urartn", "description": "Magnetic field theta angle", "display_type": "timeseries", "is_public": "True", "name": "theta", "start_date": "1986-01-21T00:00:00Z", "stop_date": "1986-01-30T23:59:57Z", "ucd": "phys.magField", "units": "degrees", "xmlid": "vo2_b_urartn_theta"}, "vo2_bmag_urartn": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_bmag_urartn", "dataset": "vo2-mag-urartn", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "1986-01-21T00:00:00Z", "stop_date": "1986-01-30T23:59:57Z", "ucd": "phys.magField", "units": "nT", "xmlid": "vo2_bmag_urartn"}, "xmlid": "vo2-mag-urartn"}, "vo2_mag_urau1": {"__spz_name__": "u1", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "vo2-mag-urau1", "att": "auto/vo2-mag-urau1", "dataSource": "PDS", "desc": "Uranus Longitude
Sampling: 1.92S
Provider: PDS", "is_public": "True", "lastModificationDate": "2012-03-06T19:08:30Z", "lastUpdate": "2012-03-06T19:08:30Z", "measurement_type": "MagneticField", "name": "u1", "processing_level": "Calibrated", "sampling": "1.92S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Voyager2/MAG/vo2-mag-urau1", "start_date": "1986-01-24T07:00:00Z", "stop_date": "1986-01-25T03:59:58Z", "target": "Uranus", "vo2_b_urau1": {"__spz_name__": "b_u1", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_b_urau1", "dataset": "vo2-mag-urau1", "display_type": "timeseries", "is_public": "True", "name": "b_u1", "size": "3", "start_date": "1986-01-24T07:00:00Z", "stop_date": "1986-01-25T03:59:58Z", "ucd": "phys.magField", "units": "nT", "vo2_b_urau10": {"__spz_name__": "br", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo2_b_urau1(0)", "dataset": "vo2-mag-urau1", "index1": "0", "is_public": "True", "name": "br", "parameter": "vo2_b_urau1", "start_date": "1986-01-24T07:00:00Z", "stop_date": "1986-01-25T03:59:58Z", "xmlid": "vo2_b_urau1(0)"}, "vo2_b_urau11": {"__spz_name__": "btheta", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo2_b_urau1(1)", "dataset": "vo2-mag-urau1", "index1": "1", "is_public": "True", "name": "btheta", "parameter": "vo2_b_urau1", "start_date": "1986-01-24T07:00:00Z", "stop_date": "1986-01-25T03:59:58Z", "xmlid": "vo2_b_urau1(1)"}, "vo2_b_urau12": {"__spz_name__": "bphi", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo2_b_urau1(2)", "dataset": "vo2-mag-urau1", "index1": "2", "is_public": "True", "name": "bphi", "parameter": "vo2_b_urau1", "start_date": "1986-01-24T07:00:00Z", "stop_date": "1986-01-25T03:59:58Z", "xmlid": "vo2_b_urau1(2)"}, "xmlid": "vo2_b_urau1"}, "vo2_bmag_urau1": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_bmag_urau1", "dataset": "vo2-mag-urau1", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "1986-01-24T07:00:00Z", "stop_date": "1986-01-25T03:59:58Z", "ucd": "phys.magField", "units": "nT", "xmlid": "vo2_bmag_urau1"}, "xmlid": "vo2-mag-urau1"}, "xmlid": "vo2-mag-ura"}, "is_public": "True", "name": "MAG", "vo2_mag_full": {"__spz_name__": "cruise", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "vo2-mag-full", "att": "auto/vo2-mag-full", "dataSource": "CDAWeb", "desc": "
Sampling: 1H
Provider: CDAWeb", "is_public": "True", "lastModificationDate": "2023-01-12T16:05:38Z", "lastUpdate": "2023-01-12T16:05:38Z", "measurement_type": "MagneticField", "name": "cruise", "processing_level": "Calibrated", "sampling": "1H", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Voyager2/MAG/vo2-mag-full", "start_date": "1977-01-01T00:00:00Z", "stop_date": "2020-12-31T11:00:00Z", "target": "Heliosphere", "vo2_b_full": {"__spz_name__": "b_rtn", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_b_full", "dataset": "vo2-mag-full", "display_type": "timeseries", "is_public": "True", "name": "b_rtn", "size": "3", "start_date": "1977-01-01T00:00:00Z", "stop_date": "2020-12-31T11:00:00Z", "ucd": "Phys.magField", "units": "nT", "vo2_b_full0": {"__spz_name__": "br", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo2_b_full(0)", "dataset": "vo2-mag-full", "index1": "0", "is_public": "True", "name": "br", "parameter": "vo2_b_full", "start_date": "1977-01-01T00:00:00Z", "stop_date": "2020-12-31T11:00:00Z", "xmlid": "vo2_b_full(0)"}, "vo2_b_full1": {"__spz_name__": "bt", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo2_b_full(1)", "dataset": "vo2-mag-full", "index1": "1", "is_public": "True", "name": "bt", "parameter": "vo2_b_full", "start_date": "1977-01-01T00:00:00Z", "stop_date": "2020-12-31T11:00:00Z", "xmlid": "vo2_b_full(1)"}, "vo2_b_full2": {"__spz_name__": "bn", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "vo2_b_full(2)", "dataset": "vo2-mag-full", "index1": "2", "is_public": "True", "name": "bn", "parameter": "vo2_b_full", "start_date": "1977-01-01T00:00:00Z", "stop_date": "2020-12-31T11:00:00Z", "xmlid": "vo2_b_full(2)"}, "xmlid": "vo2_b_full"}, "vo2_b_full_phi": {"__spz_name__": "phi", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_b_full_phi", "dataset": "vo2-mag-full", "description": "Magnetic field phi angle", "display_type": "timeseries", "is_public": "True", "name": "phi", "start_date": "1977-01-01T00:00:00Z", "stop_date": "2020-12-31T11:00:00Z", "ucd": "phys.magField", "units": "degrees", "xmlid": "vo2_b_full_phi"}, "vo2_b_full_theta": {"__spz_name__": "theta", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_b_full_theta", "dataset": "vo2-mag-full", "description": "Magnetic field theta angle", "display_type": "timeseries", "is_public": "True", "name": "theta", "start_date": "1977-01-01T00:00:00Z", "stop_date": "2020-12-31T11:00:00Z", "ucd": "phys.magField", "units": "degrees", "xmlid": "vo2_b_full_theta"}, "vo2_bmag_full": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_bmag_full", "dataset": "vo2-mag-full", "description": "Magnetic field magnitude (average of high time resolution magnitudes)", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "1977-01-01T00:00:00Z", "stop_date": "2020-12-31T11:00:00Z", "ucd": "Phys.magField", "units": "nT", "xmlid": "vo2_bmag_full"}, "xmlid": "vo2-mag-full"}, "xmlid": "Voyager2_mag"}, "PLS": {"__spz_name__": "PLS", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Voyager2_pls", "att": "auto/Voyager2_pls", "desc": "Plasma Spectrometer
FaradayCup", "flyby_jupiter": {"__spz_name__": "flyby jupiter", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "vo2-pls-jup", "is_public": "True", "name": "flyby jupiter", "vo2_pls_elejup": {"__spz_name__": "electron moments", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "vo2-pls-elejup", "att": "auto/vo2-pls-elejup", "dataSource": "PDS", "desc": "
Sampling: 96S
Provider: PDS", "is_public": "True", "lastModificationDate": "2012-03-06T19:08:25Z", "lastUpdate": "2012-03-06T19:08:25Z", "measurement_type": "ThermalPlasma", "name": "electron moments", "processing_level": "Calibrated", "sampling": "96S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Voyager2/PLS/vo2-pls-elejup", "start_date": "1979-07-06T00:00:42Z", "stop_date": "1979-07-09T23:59:06Z", "target": "Jupiter", "vo2_density_elejup": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_density_elejup", "dataset": "vo2-pls-elejup", "display_type": "timeseries", "is_public": "True", "name": "density", "start_date": "1979-07-06T00:00:42Z", "stop_date": "1979-07-09T23:59:06Z", "ucd": "phys.density;phys.electron", "units": "cm-3", "xmlid": "vo2_density_elejup"}, "vo2_temperature_elejup": {"__spz_name__": "temperature", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_temperature_elejup", "dataset": "vo2-pls-elejup", "display_type": "timeseries", "is_public": "True", "name": "temperature", "start_date": "1979-07-06T00:00:42Z", "stop_date": "1979-07-09T23:59:06Z", "ucd": "phys.temperature;phys.electron", "units": "eV", "xmlid": "vo2_temperature_elejup"}, "xmlid": "vo2-pls-elejup"}, "vo2_pls_ionjup": {"__spz_name__": "ion moments", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "vo2-pls-ionjup", "att": "auto/vo2-pls-ionjup", "dataSource": "PDS", "desc": "
Sampling: 96S
Provider: PDS", "is_public": "True", "lastModificationDate": "2012-03-06T19:08:25Z", "lastUpdate": "2012-03-06T19:08:25Z", "measurement_type": "ThermalPlasma", "name": "ion moments", "processing_level": "Calibrated", "sampling": "96S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Voyager2/PLS/vo2-pls-ionjup", "start_date": "1979-07-04T12:02:47Z", "stop_date": "1979-07-10T11:59:35Z", "target": "Jupiter", "vo2_density_ionjup": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_density_ionjup", "dataset": "vo2-pls-ionjup", "display_type": "timeseries", "is_public": "True", "name": "density", "start_date": "1979-07-04T12:02:47Z", "stop_date": "1979-07-10T11:59:35Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm-3", "xmlid": "vo2_density_ionjup"}, "xmlid": "vo2-pls-ionjup"}, "xmlid": "vo2-pls-jup"}, "flyby_uranus": {"__spz_name__": "flyby uranus", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "vo2-pls-ura", "is_public": "True", "name": "flyby uranus", "vo2_pls_uraelebr": {"__spz_name__": "electron moments (browse)", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "vo2-pls-uraelebr", "att": "auto/vo2-pls-uraelebr", "dataSource": "PDS", "desc": "
Sampling: 48S
Provider: PDS", "is_public": "True", "lastModificationDate": "2013-05-17T15:24:31Z", "lastUpdate": "2013-05-14T14:23:22Z", "measurement_type": "ThermalPlasma", "name": "electron moments (browse)", "processing_level": "Calibrated", "sampling": "48S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Voyager2/PLS/vo2-pls-uraelebr", "start_date": "1986-01-24T07:07:41Z", "stop_date": "1986-01-24T23:59:19Z", "target": "Uranus", "vo2_fitdens_elebrura": {"__spz_name__": "density thermal", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_fitdens_elebrura", "dataset": "vo2-pls-uraelebr", "display_type": "timeseries", "is_public": "True", "name": "density thermal", "start_date": "1986-01-24T07:07:41Z", "stop_date": "1986-01-24T23:59:19Z", "ucd": "phys.density;phys.electron", "units": "cm-3", "xmlid": "vo2_fitdens_elebrura"}, "vo2_fittemp_elebrura": {"__spz_name__": "temperature thermal", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_fittemp_elebrura", "dataset": "vo2-pls-uraelebr", "display_type": "timeseries", "is_public": "True", "name": "temperature thermal", "start_date": "1986-01-24T07:07:41Z", "stop_date": "1986-01-24T23:59:19Z", "ucd": "phys.temperature;phys.electron", "units": "eV", "xmlid": "vo2_fittemp_elebrura"}, "vo2_momdens_elebrura": {"__spz_name__": "density supra", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_momdens_elebrura", "dataset": "vo2-pls-uraelebr", "display_type": "timeseries", "is_public": "True", "name": "density supra", "start_date": "1986-01-24T07:07:41Z", "stop_date": "1986-01-24T23:59:19Z", "ucd": "phys.density;phys.electron", "units": "cm-3", "xmlid": "vo2_momdens_elebrura"}, "vo2_momtemp_elebrura": {"__spz_name__": "temperature supra", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_momtemp_elebrura", "dataset": "vo2-pls-uraelebr", "display_type": "timeseries", "is_public": "True", "name": "temperature supra", "start_date": "1986-01-24T07:07:41Z", "stop_date": "1986-01-24T23:59:19Z", "ucd": "phys.temperature;phys.electron", "units": "eV", "xmlid": "vo2_momtemp_elebrura"}, "vo2_totdens_elebrura": {"__spz_name__": "density total", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_totdens_elebrura", "dataset": "vo2-pls-uraelebr", "display_type": "timeseries", "is_public": "True", "name": "density total", "start_date": "1986-01-24T07:07:41Z", "stop_date": "1986-01-24T23:59:19Z", "ucd": "phys.density;phys.electron", "units": "cm-3", "xmlid": "vo2_totdens_elebrura"}, "vo2_tottemp_elebrura": {"__spz_name__": "temperature total", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_tottemp_elebrura", "dataset": "vo2-pls-uraelebr", "display_type": "timeseries", "is_public": "True", "name": "temperature total", "start_date": "1986-01-24T07:07:41Z", "stop_date": "1986-01-24T23:59:19Z", "ucd": "phys.temperature;phys.electron", "units": "eV", "xmlid": "vo2_tottemp_elebrura"}, "xmlid": "vo2-pls-uraelebr"}, "vo2_pls_uraelefit": {"__spz_name__": "electron moments (fit)", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "vo2-pls-uraelefit", "att": "auto/vo2-pls-uraelefit", "dataSource": "PDS", "desc": "
Sampling: 48S
Provider: PDS", "is_public": "True", "lastModificationDate": "2013-05-17T15:26:02Z", "lastUpdate": "2013-05-14T16:06:00Z", "measurement_type": "ThermalPlasma", "name": "electron moments (fit)", "processing_level": "Calibrated", "sampling": "48S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Voyager2/PLS/vo2-pls-uraelefit", "start_date": "1986-01-24T07:06:31Z", "stop_date": "1986-01-24T23:59:19Z", "target": "Uranus", "vo2_colddens_elefitura": {"__spz_name__": "density cold", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_colddens_elefitura", "dataset": "vo2-pls-uraelefit", "display_type": "timeseries", "is_public": "True", "name": "density cold", "start_date": "1986-01-24T07:06:31Z", "stop_date": "1986-01-24T23:59:19Z", "ucd": "phys.density;phys.electron", "units": "cm-3", "xmlid": "vo2_colddens_elefitura"}, "vo2_coldtemp_elefitura": {"__spz_name__": "temperature cold", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_coldtemp_elefitura", "dataset": "vo2-pls-uraelefit", "display_type": "timeseries", "is_public": "True", "name": "temperature cold", "start_date": "1986-01-24T07:06:31Z", "stop_date": "1986-01-24T23:59:19Z", "ucd": "phys.temperature;phys.electron", "units": "eV", "xmlid": "vo2_coldtemp_elefitura"}, "vo2_hot1dens_elefitura": {"__spz_name__": "density_hot1", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_hot1dens_elefitura", "dataset": "vo2-pls-uraelefit", "display_type": "timeseries", "is_public": "True", "name": "density_hot1", "start_date": "1986-01-24T07:06:31Z", "stop_date": "1986-01-24T23:59:19Z", "ucd": "phys.density;phys.electron", "units": "cm-3", "xmlid": "vo2_hot1dens_elefitura"}, "vo2_hot1temp_elefitura": {"__spz_name__": "temperature hot1", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_hot1temp_elefitura", "dataset": "vo2-pls-uraelefit", "display_type": "timeseries", "is_public": "True", "name": "temperature hot1", "start_date": "1986-01-24T07:06:31Z", "stop_date": "1986-01-24T23:59:19Z", "ucd": "phys.temperature;phys.electron", "units": "eV", "xmlid": "vo2_hot1temp_elefitura"}, "vo2_hot2dens_elefitura": {"__spz_name__": "density hot2", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_hot2dens_elefitura", "dataset": "vo2-pls-uraelefit", "display_type": "timeseries", "is_public": "True", "name": "density hot2", "start_date": "1986-01-24T07:06:31Z", "stop_date": "1986-01-24T23:59:19Z", "ucd": "phys.density;phys.electron", "units": "cm-3", "xmlid": "vo2_hot2dens_elefitura"}, "vo2_hot2temp_elefitura": {"__spz_name__": "temperature hot2", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_hot2temp_elefitura", "dataset": "vo2-pls-uraelefit", "display_type": "timeseries", "is_public": "True", "name": "temperature hot2", "start_date": "1986-01-24T07:06:31Z", "stop_date": "1986-01-24T23:59:19Z", "ucd": "phys.temperature;phys.electron", "units": "eV", "xmlid": "vo2_hot2temp_elefitura"}, "vo2_hot3dens_elefitura": {"__spz_name__": "density hot3", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_hot3dens_elefitura", "dataset": "vo2-pls-uraelefit", "display_type": "timeseries", "is_public": "True", "name": "density hot3", "start_date": "1986-01-24T07:06:31Z", "stop_date": "1986-01-24T23:59:19Z", "ucd": "phys.density;phys.electron", "units": "cm-3", "xmlid": "vo2_hot3dens_elefitura"}, "vo2_hot3temp_elefitura": {"__spz_name__": "temperature hot3", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_hot3temp_elefitura", "dataset": "vo2-pls-uraelefit", "display_type": "timeseries", "is_public": "True", "name": "temperature hot3", "start_date": "1986-01-24T07:06:31Z", "stop_date": "1986-01-24T23:59:19Z", "ucd": "phys.temperature;phys.electron", "units": "eV", "xmlid": "vo2_hot3temp_elefitura"}, "vo2_hotdens_elefitura": {"__spz_name__": "density hot", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_hotdens_elefitura", "dataset": "vo2-pls-uraelefit", "display_type": "timeseries", "is_public": "True", "name": "density hot", "start_date": "1986-01-24T07:06:31Z", "stop_date": "1986-01-24T23:59:19Z", "ucd": "phys.density;phys.electron", "units": "cm-3", "xmlid": "vo2_hotdens_elefitura"}, "vo2_hottemp_elefitura": {"__spz_name__": "temperature hot", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_hottemp_elefitura", "dataset": "vo2-pls-uraelefit", "display_type": "timeseries", "is_public": "True", "name": "temperature hot", "start_date": "1986-01-24T07:06:31Z", "stop_date": "1986-01-24T23:59:19Z", "ucd": "phys.temperature;phys.electron", "units": "eV", "xmlid": "vo2_hottemp_elefitura"}, "vo2_totdens_elefitura": {"__spz_name__": "density total", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_totdens_elefitura", "dataset": "vo2-pls-uraelefit", "display_type": "timeseries", "is_public": "True", "name": "density total", "start_date": "1986-01-24T07:06:31Z", "stop_date": "1986-01-24T23:59:19Z", "ucd": "phys.density;phys.electron", "units": "cm-3", "xmlid": "vo2_totdens_elefitura"}, "vo2_tottemp_elefitura": {"__spz_name__": "temperature total", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_tottemp_elefitura", "dataset": "vo2-pls-uraelefit", "display_type": "timeseries", "is_public": "True", "name": "temperature total", "start_date": "1986-01-24T07:06:31Z", "stop_date": "1986-01-24T23:59:19Z", "ucd": "phys.temperature;phys.electron", "units": "eV", "xmlid": "vo2_tottemp_elefitura"}, "vo2_usc_elefitura": {"__spz_name__": "s/c potential", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_usc_elefitura", "dataset": "vo2-pls-uraelefit", "display_type": "timeseries", "is_public": "True", "name": "s/c potential", "start_date": "1986-01-24T07:06:31Z", "stop_date": "1986-01-24T23:59:19Z", "ucd": "phys.potential;phys.electField;instr.obsty", "units": "V", "xmlid": "vo2_usc_elefitura"}, "xmlid": "vo2-pls-uraelefit"}, "vo2_pls_uraionbr": {"__spz_name__": "ion moments (browse)", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "vo2-pls-uraionbr", "att": "auto/vo2-pls-uraionbr", "dataSource": "PDS", "desc": "
Sampling: 48S
Provider: PDS", "is_public": "True", "lastModificationDate": "2013-05-17T15:27:01Z", "lastUpdate": "2013-05-14T18:37:58Z", "measurement_type": "ThermalPlasma", "name": "ion moments (browse)", "processing_level": "Calibrated", "sampling": "48S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Voyager2/PLS/vo2-pls-uraionbr", "start_date": "1986-01-24T15:01:48Z", "stop_date": "1986-01-24T19:55:24Z", "target": "Uranus", "vo2_totdens_ionbrura": {"__spz_name__": "density total", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_totdens_ionbrura", "dataset": "vo2-pls-uraionbr", "display_type": "timeseries", "is_public": "True", "name": "density total", "start_date": "1986-01-24T15:01:48Z", "stop_date": "1986-01-24T19:55:24Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm-3", "xmlid": "vo2_totdens_ionbrura"}, "xmlid": "vo2-pls-uraionbr"}, "vo2_pls_uraionfit": {"__spz_name__": "ion moments (fit)", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "vo2-pls-uraionfit", "att": "auto/vo2-pls-uraionfit", "dataSource": "PDS", "desc": "
Sampling: 48S
Provider: PDS", "is_public": "True", "lastModificationDate": "2013-05-17T15:27:50Z", "lastUpdate": "2013-05-15T09:40:53Z", "measurement_type": "ThermalPlasma", "name": "ion moments (fit)", "processing_level": "Calibrated", "sampling": "48S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Voyager2/PLS/vo2-pls-uraionfit", "start_date": "1986-01-24T15:01:48Z", "stop_date": "1986-01-24T19:55:24Z", "target": "Uranus", "vo2_comp1dens_ionfitura": {"__spz_name__": "density comp1", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_comp1dens_ionfitura", "dataset": "vo2-pls-uraionfit", "display_type": "timeseries", "is_public": "True", "name": "density comp1", "start_date": "1986-01-24T15:01:48Z", "stop_date": "1986-01-24T19:55:24Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm-3", "xmlid": "vo2_comp1dens_ionfitura"}, "vo2_comp1thspeed_ionfitura": {"__spz_name__": "thermal speed comp1", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_comp1thspeed_ionfitura", "dataset": "vo2-pls-uraionfit", "display_type": "timeseries", "is_public": "True", "name": "thermal speed comp1", "start_date": "1986-01-24T15:01:48Z", "stop_date": "1986-01-24T19:55:24Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km.s-1", "xmlid": "vo2_comp1thspeed_ionfitura"}, "vo2_comp2dens_ionfitura": {"__spz_name__": "density comp2", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_comp2dens_ionfitura", "dataset": "vo2-pls-uraionfit", "display_type": "timeseries", "is_public": "True", "name": "density comp2", "start_date": "1986-01-24T15:01:48Z", "stop_date": "1986-01-24T19:55:24Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm-3", "xmlid": "vo2_comp2dens_ionfitura"}, "vo2_comp2thspeed_ionfitura": {"__spz_name__": "thermal speed comp2", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_comp2thspeed_ionfitura", "dataset": "vo2-pls-uraionfit", "display_type": "timeseries", "is_public": "True", "name": "thermal speed comp2", "start_date": "1986-01-24T15:01:48Z", "stop_date": "1986-01-24T19:55:24Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km.s-1", "xmlid": "vo2_comp2thspeed_ionfitura"}, "vo2_comp3dens_ionfitura": {"__spz_name__": "density comp3", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_comp3dens_ionfitura", "dataset": "vo2-pls-uraionfit", "display_type": "timeseries", "is_public": "True", "name": "density comp3", "start_date": "1986-01-24T15:01:48Z", "stop_date": "1986-01-24T19:55:24Z", "ucd": "phys.density;phys.atmol.ionStage", "units": "cm-3", "xmlid": "vo2_comp3dens_ionfitura"}, "vo2_comp3thspeed_ionfitura": {"__spz_name__": "thermal speed comp3", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_comp3thspeed_ionfitura", "dataset": "vo2-pls-uraionfit", "display_type": "timeseries", "is_public": "True", "name": "thermal speed comp3", "start_date": "1986-01-24T15:01:48Z", "stop_date": "1986-01-24T19:55:24Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km.s-1", "xmlid": "vo2_comp3thspeed_ionfitura"}, "xmlid": "vo2-pls-uraionfit"}, "xmlid": "vo2-pls-ura"}, "is_public": "True", "name": "PLS", "vo2_pls_full": {"__spz_name__": "cruise", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "vo2-pls-full", "att": "auto/vo2-pls-full", "dataSource": "CDAWeb", "desc": "
Sampling: 1H
Provider: CDAWeb", "is_public": "True", "lastModificationDate": "2023-01-12T16:05:39Z", "lastUpdate": "2023-01-12T16:05:39Z", "measurement_type": "ThermalPlasma", "name": "cruise", "processing_level": "Calibrated", "sampling": "1H", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Voyager2/PLS/vo2-pls-full", "start_date": "1977-08-01T00:00:00Z", "stop_date": "2018-11-30T23:00:00Z", "target": "Heliosphere", "vo2_az_full": {"__spz_name__": "velocity : azimuth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_az_full", "dataset": "vo2-pls-full", "description": "Proton velocity azimuth angle", "display_type": "timeseries", "is_public": "True", "name": "velocity : azimuth", "start_date": "1977-08-01T00:00:00Z", "stop_date": "2018-11-30T23:00:00Z", "ucd": "phys.veloc;phys.particle.proton", "units": "deg", "xmlid": "vo2_az_full"}, "vo2_dens_full": {"__spz_name__": "density h+", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_dens_full", "dataset": "vo2-pls-full", "description": "Proton density", "display_type": "timeseries", "is_public": "True", "name": "density h+", "start_date": "1977-08-01T00:00:00Z", "stop_date": "2018-11-30T23:00:00Z", "ucd": "phys.density;phys.particle.proton", "units": "cm-3", "xmlid": "vo2_dens_full"}, "vo2_el_full": {"__spz_name__": "velocity : elevation", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_el_full", "dataset": "vo2-pls-full", "description": "Proton velocity elevation angle", "display_type": "timeseries", "is_public": "True", "name": "velocity : elevation", "start_date": "1977-08-01T00:00:00Z", "stop_date": "2018-11-30T23:00:00Z", "ucd": "phys.veloc;phys.particle.proton", "units": "deg", "xmlid": "vo2_el_full"}, "vo2_temp_full": {"__spz_name__": "temperature h+", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_temp_full", "dataset": "vo2-pls-full", "description": "Proton radial temperature calculated from thermal speed (T = 60.5*Vth^2)", "display_type": "timeseries", "is_public": "True", "name": "temperature h+", "start_date": "1977-08-01T00:00:00Z", "stop_date": "2018-11-30T23:00:00Z", "ucd": "phys.temperature;phys.particle.proton", "units": "K", "xmlid": "vo2_temp_full"}, "vo2_vel_full": {"__spz_name__": "velocity h+", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_vel_full", "dataset": "vo2-pls-full", "description": "Proton velocity", "display_type": "timeseries", "is_public": "True", "name": "velocity h+", "start_date": "1977-08-01T00:00:00Z", "stop_date": "2018-11-30T23:00:00Z", "ucd": "phys.veloc;phys.particle.proton", "units": "km/s", "xmlid": "vo2_vel_full"}, "xmlid": "vo2-pls-full"}, "xmlid": "Voyager2_pls"}, "PWS": {"__spz_name__": "PWS", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Voyager2_pws", "att": "auto/Voyager2_pws", "desc": "Plasma Wave System
WaveformReceiver", "flyby_jupiter": {"__spz_name__": "flyby jupiter", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "vo2-pws-jup", "is_public": "True", "name": "flyby jupiter", "vo2_pws_data": {"__spz_name__": "plasma frequency", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "vo2-pws-data", "att": "auto/vo2-pws-data", "dataSource": "PDS", "desc": "
Sampling: 1S
Provider: PDS", "is_public": "True", "lastModificationDate": "2011-12-20T15:19:40Z", "lastUpdate": "2011-12-20T15:14:16Z", "measurement_type": "ThermalPlasma", "name": "plasma frequency", "processing_level": "Calibrated", "sampling": "1S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Voyager2/PWS/vo2-pws-data", "start_date": "1979-07-04T23:44:47Z", "stop_date": "1979-07-11T23:58:22Z", "target": "Jupiter", "vo2_density_pws": {"__spz_name__": "density e-", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_density_pws", "dataset": "vo2-pws-data", "display_type": "timeseries", "is_public": "True", "name": "density e-", "start_date": "1979-07-04T23:44:47Z", "stop_date": "1979-07-11T23:58:22Z", "ucd": "phys.density;phys.electron", "units": "cm-3", "xmlid": "vo2_density_pws"}, "xmlid": "vo2-pws-data"}, "xmlid": "vo2-pws-jup"}, "flyby_uranus": {"__spz_name__": "flyby uranus", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "vo2-pws-ura", "is_public": "True", "name": "flyby uranus", "vo2_pws_ura48s": {"__spz_name__": "electric field", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "vo2-pws-ura48s", "att": "auto/vo2-pws-ura48s", "dataSource": "PDS", "desc": "
Sampling: 48S
Provider: PDS", "is_public": "True", "lastModificationDate": "2013-05-17T15:33:08Z", "lastUpdate": "2013-05-16T14:49:09Z", "measurement_type": "ThermalPlasma", "name": "electric field", "processing_level": "Calibrated", "sampling": "48S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Voyager2/PWS/vo2-pws-ura48s", "start_date": "1986-01-23T00:00:00Z", "stop_date": "1986-01-30T23:59:12Z", "target": "Uranus", "vo2_pws_uraspec48s": {"__spz_name__": "spectra", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "vo2_pws_uraspec48s", "dataset": "vo2-pws-ura48s", "display_type": "spectrogram", "is_public": "True", "name": "spectra", "start_date": "1986-01-23T00:00:00Z", "stop_date": "1986-01-30T23:59:12Z", "ucd": "phys.density;phys.electron", "units": "Hz", "xmlid": "vo2_pws_uraspec48s"}, "xmlid": "vo2-pws-ura48s"}, "xmlid": "vo2-pws-ura"}, "is_public": "True", "name": "PWS", "xmlid": "Voyager2_pws"}, "__spz_name__": "Voyager 2", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Voyager2", "att": "auto/Voyager2", "desc": "1977-076A
1977-08-20T14:29:00", "is_public": "True", "name": "Voyager 2", "rank": "4", "target": "Heliosphere.NearEarth", "xmlid": "Voyager2"}, "__spz_name__": "Voyager", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Voyager", "att": "auto/Voyager", "desc": "Voyager Mission
1977-09-05T12:56:00", "is_public": "True", "name": "Voyager", "rank": "999", "target": "Heliosphere.Outer", "xmlid": "Voyager"}, "Wind": {"Ephemeris": {"__spz_name__": "Ephemeris", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Wind_ephemeris", "att": "auto/Wind_ephemeris", "desc": "", "is_public": "True", "name": "Ephemeris", "wnd_orb_all": {"__spz_name__": "orbit earth", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "wnd-orb-all", "att": "auto/wnd-orb-all", "dataSource": "CDAWeb", "desc": "
Sampling: 10M
Provider: CDAWeb", "is_public": "True", "lastModificationDate": "2024-10-06T22:07:46Z", "lastUpdate": "2024-10-06T22:07:46Z", "measurement_type": "Ephemeris", "name": "orbit earth", "processing_level": "Calibrated", "sampling": "10M", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Wind/Ephemeris/wnd-orb-all", "start_date": "1994-08-07T00:00:00Z", "stop_date": "2024-10-06T23:50:00Z", "wnd_lat_hee": {"__spz_name__": "lat hee", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "wnd_lat_hee", "dataset": "wnd-orb-all", "display_type": "timeseries", "is_public": "True", "name": "lat hee", "start_date": "1994-08-07T00:00:00Z", "stop_date": "2024-10-06T23:50:00Z", "units": "deg", "xmlid": "wnd_lat_hee"}, "wnd_lon_hee": {"__spz_name__": "lon hee", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "wnd_lon_hee", "dataset": "wnd-orb-all", "display_type": "timeseries", "is_public": "True", "name": "lon hee", "start_date": "1994-08-07T00:00:00Z", "stop_date": "2024-10-06T23:50:00Z", "units": "deg", "xmlid": "wnd_lon_hee"}, "wnd_r": {"__spz_name__": "distance wind-earth", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "wnd_r", "dataset": "wnd-orb-all", "display_type": "timeseries", "is_public": "True", "name": "distance wind-earth", "start_date": "1994-08-07T00:00:00Z", "stop_date": "2024-10-06T23:50:00Z", "ucd": "pos.distance", "units": "Re", "xmlid": "wnd_r"}, "wnd_r_sun": {"__spz_name__": "distance wind-sun", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "wnd_r_sun", "dataset": "wnd-orb-all", "display_type": "timeseries", "is_public": "True", "name": "distance wind-sun", "start_date": "1994-08-07T00:00:00Z", "stop_date": "2024-10-06T23:50:00Z", "ucd": "pos.distance", "units": "AU", "xmlid": "wnd_r_sun"}, "wnd_xyz_gse": {"__spz_name__": "xyz_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "wnd_xyz_gse", "dataset": "wnd-orb-all", "description": "Position in GSE coordinates", "display_type": "timeseries", "is_public": "True", "name": "xyz_gse", "size": "3", "start_date": "1994-08-07T00:00:00Z", "stop_date": "2024-10-06T23:50:00Z", "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "Re", "wnd_xyz_gse0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "wnd_xyz_gse(0)", "dataset": "wnd-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "wnd_xyz_gse", "start_date": "1994-08-07T00:00:00Z", "stop_date": "2024-10-06T23:50:00Z", "xmlid": "wnd_xyz_gse(0)"}, "wnd_xyz_gse1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "wnd_xyz_gse(1)", "dataset": "wnd-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "wnd_xyz_gse", "start_date": "1994-08-07T00:00:00Z", "stop_date": "2024-10-06T23:50:00Z", "xmlid": "wnd_xyz_gse(1)"}, "wnd_xyz_gse2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "wnd_xyz_gse(2)", "dataset": "wnd-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "wnd_xyz_gse", "start_date": "1994-08-07T00:00:00Z", "stop_date": "2024-10-06T23:50:00Z", "xmlid": "wnd_xyz_gse(2)"}, "xmlid": "wnd_xyz_gse"}, "wnd_xyz_gsm": {"__spz_name__": "xyz_gsm", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "wnd_xyz_gsm", "dataset": "wnd-orb-all", "description": "Position in GSM coordinates", "display_type": "timeseries", "is_public": "True", "name": "xyz_gsm", "size": "3", "start_date": "1994-08-07T00:00:00Z", "stop_date": "2024-10-06T23:50:00Z", "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "Re", "wnd_xyz_gsm0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "wnd_xyz_gsm(0)", "dataset": "wnd-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "wnd_xyz_gsm", "start_date": "1994-08-07T00:00:00Z", "stop_date": "2024-10-06T23:50:00Z", "xmlid": "wnd_xyz_gsm(0)"}, "wnd_xyz_gsm1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "wnd_xyz_gsm(1)", "dataset": "wnd-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "wnd_xyz_gsm", "start_date": "1994-08-07T00:00:00Z", "stop_date": "2024-10-06T23:50:00Z", "xmlid": "wnd_xyz_gsm(1)"}, "wnd_xyz_gsm2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "wnd_xyz_gsm(2)", "dataset": "wnd-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "wnd_xyz_gsm", "start_date": "1994-08-07T00:00:00Z", "stop_date": "2024-10-06T23:50:00Z", "xmlid": "wnd_xyz_gsm(2)"}, "xmlid": "wnd_xyz_gsm"}, "wnd_xyz_hee": {"__spz_name__": "xyz_hee", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "wnd_xyz_hee", "dataset": "wnd-orb-all", "description": "Position in HEE coordinates", "display_type": "timeseries", "is_public": "True", "name": "xyz_hee", "size": "3", "start_date": "1994-08-07T00:00:00Z", "stop_date": "2024-10-06T23:50:00Z", "ucd": "pos.ephem;pos.earth;instr.obsty", "units": "AU", "wnd_xyz_hee0": {"__spz_name__": "x", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "wnd_xyz_hee(0)", "dataset": "wnd-orb-all", "index1": "0", "is_public": "True", "name": "x", "parameter": "wnd_xyz_hee", "start_date": "1994-08-07T00:00:00Z", "stop_date": "2024-10-06T23:50:00Z", "xmlid": "wnd_xyz_hee(0)"}, "wnd_xyz_hee1": {"__spz_name__": "y", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "wnd_xyz_hee(1)", "dataset": "wnd-orb-all", "index1": "1", "is_public": "True", "name": "y", "parameter": "wnd_xyz_hee", "start_date": "1994-08-07T00:00:00Z", "stop_date": "2024-10-06T23:50:00Z", "xmlid": "wnd_xyz_hee(1)"}, "wnd_xyz_hee2": {"__spz_name__": "z", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "wnd_xyz_hee(2)", "dataset": "wnd-orb-all", "index1": "2", "is_public": "True", "name": "z", "parameter": "wnd_xyz_hee", "start_date": "1994-08-07T00:00:00Z", "stop_date": "2024-10-06T23:50:00Z", "xmlid": "wnd_xyz_hee(2)"}, "xmlid": "wnd_xyz_hee"}, "xmlid": "wnd-orb-all"}, "xmlid": "Wind_ephemeris"}, "MFI": {"__spz_name__": "MFI", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Wind_mfi", "att": "auto/Wind_mfi", "desc": "Wind Magnetic Field Investigation
Magnetometer", "is_public": "True", "name": "MFI", "wnd_mfi_high": {"__spz_name__": "3 sec (wi_h0_mfi)", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "wnd-mfi-high", "att": "auto/wnd-mfi-high", "dataSource": "CDAWeb", "desc": "
Sampling: 3S
Provider: CDAWeb", "is_public": "True", "lastModificationDate": "2024-09-30T08:34:30Z", "lastUpdate": "2024-09-30T08:34:30Z", "measurement_type": "MagneticField", "name": "3 sec (wi_h0_mfi)", "processing_level": "Calibrated", "sampling": "3S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Wind/MFI/wnd-mfi-high", "start_date": "1994-11-12T00:00:01Z", "stop_date": "2024-09-23T23:59:58Z", "target": "Heliosphere.NearEarth", "wnd_bh": {"__spz_name__": "b_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "wnd_bh", "dataset": "wnd-mfi-high", "description": "Magnetic field vector in GSE coordinates", "display_type": "timeseries", "is_public": "True", "name": "b_gse", "size": "3", "start_date": "1994-11-12T00:00:01Z", "stop_date": "2024-09-23T23:59:58Z", "ucd": "phys.magField", "units": "nT", "wnd_bh0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "wnd_bh(0)", "dataset": "wnd-mfi-high", "index1": "0", "is_public": "True", "name": "bx", "parameter": "wnd_bh", "start_date": "1994-11-12T00:00:01Z", "stop_date": "2024-09-23T23:59:58Z", "xmlid": "wnd_bh(0)"}, "wnd_bh1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "wnd_bh(1)", "dataset": "wnd-mfi-high", "index1": "1", "is_public": "True", "name": "by", "parameter": "wnd_bh", "start_date": "1994-11-12T00:00:01Z", "stop_date": "2024-09-23T23:59:58Z", "xmlid": "wnd_bh(1)"}, "wnd_bh2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "wnd_bh(2)", "dataset": "wnd-mfi-high", "index1": "2", "is_public": "True", "name": "bz", "parameter": "wnd_bh", "start_date": "1994-11-12T00:00:01Z", "stop_date": "2024-09-23T23:59:58Z", "xmlid": "wnd_bh(2)"}, "xmlid": "wnd_bh"}, "wnd_bmagh": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "wnd_bmagh", "dataset": "wnd-mfi-high", "description": "Magnetic field magnitudes", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "1994-11-12T00:00:01Z", "stop_date": "2024-09-23T23:59:58Z", "ucd": "phys.magField", "units": "nT", "xmlid": "wnd_bmagh"}, "xmlid": "wnd-mfi-high"}, "wnd_mfi_kp": {"__spz_name__": "key parametres (wi_k0_mfi)", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "wnd-mfi-kp", "att": "auto/wnd-mfi-kp", "dataSource": "CDAWeb", "desc": "
Sampling: 60S
Provider: CDAWeb", "is_public": "True", "lastModificationDate": "2024-09-30T08:34:30Z", "lastUpdate": "2024-09-30T08:34:30Z", "measurement_type": "MagneticField", "name": "key parametres (wi_k0_mfi)", "processing_level": "Calibrated", "sampling": "60S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Wind/MFI/wnd-mfi-kp", "start_date": "1994-11-12T00:00:30Z", "stop_date": "2024-09-23T23:59:30Z", "target": "Heliosphere.NearEarth", "wnd_b": {"__spz_name__": "b_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "wnd_b", "dataset": "wnd-mfi-kp", "description": "GSE Cartesian components of magnetic field vector", "display_type": "timeseries", "is_public": "True", "name": "b_gse", "size": "3", "start_date": "1994-11-12T00:00:30Z", "stop_date": "2024-09-23T23:59:30Z", "ucd": "phys.magField", "units": "nT", "wnd_b0": {"__spz_name__": "bx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "wnd_b(0)", "dataset": "wnd-mfi-kp", "index1": "0", "is_public": "True", "name": "bx", "parameter": "wnd_b", "start_date": "1994-11-12T00:00:30Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "wnd_b(0)"}, "wnd_b1": {"__spz_name__": "by", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "wnd_b(1)", "dataset": "wnd-mfi-kp", "index1": "1", "is_public": "True", "name": "by", "parameter": "wnd_b", "start_date": "1994-11-12T00:00:30Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "wnd_b(1)"}, "wnd_b2": {"__spz_name__": "bz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "wnd_b(2)", "dataset": "wnd-mfi-kp", "index1": "2", "is_public": "True", "name": "bz", "parameter": "wnd_b", "start_date": "1994-11-12T00:00:30Z", "stop_date": "2024-09-23T23:59:30Z", "xmlid": "wnd_b(2)"}, "xmlid": "wnd_b"}, "wnd_bmag": {"__spz_name__": "|b|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "wnd_bmag", "dataset": "wnd-mfi-kp", "description": "Average Magnetic Field magnitude", "display_type": "timeseries", "is_public": "True", "name": "|b|", "start_date": "1994-11-12T00:00:30Z", "stop_date": "2024-09-23T23:59:30Z", "ucd": "phys.magField", "units": "nT", "xmlid": "wnd_bmag"}, "xmlid": "wnd-mfi-kp"}, "xmlid": "Wind_mfi"}, "SWE": {"__spz_name__": "SWE", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Wind_swe", "att": "auto/Wind_swe", "desc": "Solar Wind Experiment
FaradayCup", "is_public": "True", "name": "SWE", "wnd_swe_kp": {"__spz_name__": "key parameters", "__spz_provider__": "amda", "__spz_type__": "DatasetIndex", "__spz_uid__": "wnd-swe-kp", "att": "auto/wnd-swe-kp", "dataSource": "CDAWeb", "desc": "
Sampling: 90S
Provider: CDAWeb", "is_public": "True", "lastModificationDate": "2024-10-06T22:08:05Z", "lastUpdate": "2024-10-06T22:08:05Z", "measurement_type": "MagneticField", "name": "key parameters", "processing_level": "Calibrated", "sampling": "90S", "spaseId": "spase://CNES/NumericalData/CDPP-AMDA/Wind/SWE/wnd-swe-kp", "start_date": "1994-11-01T12:00:00Z", "stop_date": "2024-10-02T23:58:32Z", "target": "Heliosphere.NearEarth", "wnd_swe_n": {"__spz_name__": "density", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "wnd_swe_n", "dataset": "wnd-swe-kp", "display_type": "timeseries", "is_public": "True", "name": "density", "start_date": "1994-11-01T12:00:00Z", "stop_date": "2024-10-02T23:58:32Z", "ucd": "phys.density;phys.electron", "units": "cm-3", "xmlid": "wnd_swe_n"}, "wnd_swe_pdyn": {"__spz_name__": "ram pressure", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "wnd_swe_pdyn", "dataset": "wnd-swe-kp", "description": "P = 2*10e-6 * Np * Vp^2", "display_type": "timeseries", "is_public": "True", "name": "ram pressure", "start_date": "1994-11-01T12:00:00Z", "stop_date": "2024-10-02T23:58:32Z", "units": "nPa", "xmlid": "wnd_swe_pdyn"}, "wnd_swe_v": {"__spz_name__": "v_gse", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "wnd_swe_v", "dataset": "wnd-swe-kp", "display_type": "timeseries", "is_public": "True", "name": "v_gse", "size": "3", "start_date": "1994-11-01T12:00:00Z", "stop_date": "2024-10-02T23:58:32Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "wnd_swe_v0": {"__spz_name__": "vx", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "wnd_swe_v(0)", "dataset": "wnd-swe-kp", "index1": "0", "is_public": "True", "name": "vx", "parameter": "wnd_swe_v", "start_date": "1994-11-01T12:00:00Z", "stop_date": "2024-10-02T23:58:32Z", "xmlid": "wnd_swe_v(0)"}, "wnd_swe_v1": {"__spz_name__": "vy", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "wnd_swe_v(1)", "dataset": "wnd-swe-kp", "index1": "1", "is_public": "True", "name": "vy", "parameter": "wnd_swe_v", "start_date": "1994-11-01T12:00:00Z", "stop_date": "2024-10-02T23:58:32Z", "xmlid": "wnd_swe_v(1)"}, "wnd_swe_v2": {"__spz_name__": "vz", "__spz_provider__": "amda", "__spz_type__": "ComponentIndex", "__spz_uid__": "wnd_swe_v(2)", "dataset": "wnd-swe-kp", "index1": "2", "is_public": "True", "name": "vz", "parameter": "wnd_swe_v", "start_date": "1994-11-01T12:00:00Z", "stop_date": "2024-10-02T23:58:32Z", "xmlid": "wnd_swe_v(2)"}, "xmlid": "wnd_swe_v"}, "wnd_swe_vmag": {"__spz_name__": "|v|", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "wnd_swe_vmag", "dataset": "wnd-swe-kp", "display_type": "timeseries", "is_public": "True", "name": "|v|", "start_date": "1994-11-01T12:00:00Z", "stop_date": "2024-10-02T23:58:32Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "wnd_swe_vmag"}, "wnd_swe_vth": {"__spz_name__": "v_thermal", "__spz_provider__": "amda", "__spz_type__": "ParameterIndex", "__spz_uid__": "wnd_swe_vth", "dataset": "wnd-swe-kp", "display_type": "timeseries", "is_public": "True", "name": "v_thermal", "start_date": "1994-11-01T12:00:00Z", "stop_date": "2024-10-02T23:58:32Z", "ucd": "phys.veloc;phys.atmol.ionStage", "units": "km/s", "xmlid": "wnd_swe_vth"}, "xmlid": "wnd-swe-kp"}, "xmlid": "Wind_swe"}, "__spz_name__": "Wind", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Wind", "att": "auto/Wind", "desc": "NASA Mission
1994-11-01T04:31:00", "is_public": "True", "name": "Wind", "rank": "4", "target": "Heliosphere.NearEarth", "xmlid": "Wind"}, "__spz_name__": "Parameters", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "Parameters", "desc": "AMDA_Internal_Data_Base", "is_public": "True", "name": "AMDA", "xmlid": "myLocalData-treeRootNode"}, "TimeTables": {"SharedTimeTables": {"EARTH": {"Cluster1_BS_crossings_Nguyen2021": {"__spz_name__": "Cluster1_BS_crossings_Nguyen2021", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_155", "contact": "vincent.genot@irap.omp.eu", "created": "2022-11-08T15:48:36.000000", "description": "Cluster 1 bow shock crossings (2001-2012) from the 4 papers \"Massive Multi-Mission Statistical Study and Analytical Modeling of the Earth's Magnetopause\" by Nguyen et al., 2021\nhttps://doi.org/10.1029/2021JA029773\nhttps://doi.org/10.1029/2021JA029774\nhttps://doi.org/10.1029/2021JA030112\nhttps://doi.org/10.1029/2021JA029776\n\nData can also be found at:\nhttps://zenodo.org/record/5668298\n\nThe shock timing is the middle of the 10min interval.", "id": "sharedtimeTable_155", "is_public": "True", "name": "Cluster1_BS_crossings_Nguyen2021", "nbIntervals": "3225", "nbParam": "0", "sharedBy": "genot", "sharedDate": "2022-11-08T15:53:02+00:00", "surveyStart": "2001-02-04T00:12:00.000", "surveyStop": "2012-06-22T18:24:00.000", "xmlid": "sharedtimeTable_155"}, "Event_list_tail_hall_reconnection_SC1": {"__spz_name__": "Event_list_tail_hall_reconnection_SC1", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_4", "created": "2018-01-18T16:41:14", "description": "Cluster spacecraft 1 event list of ion diffusion region encounters (with Hall signatures), from Eastwood et al. (JGR, in press, 2010).; \n Historic: From old AMDA;\n Creation Date : 2013-11-22T13:52:48; \n ", "id": "sharedtimeTable_4", "is_public": "True", "name": "Event_list_tail_hall_reconnection_SC1", "nbIntervals": "17", "nbParam": "0", "sharedBy": "bouchemit", "sharedDate": "2018-01-18T16:41:40+00:00", "surveyStart": "2001-08-22T09:43:00", "surveyStop": "2005-09-26T09:51:00", "xmlid": "sharedtimeTable_4"}, "Event_list_tail_hall_reconnection_SC3": {"__spz_name__": "Event_list_tail_hall_reconnection_SC3", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_5", "created": "2018-01-18T16:41:59", "description": "Cluster spacecraft 3 event list of ion diffusion region encounters (with Hall signatures), from Eastwood et al. (JGR, in press, 2010).; \n Historic: From old AMDA;\n Creation Date : 2013-11-22T13:52:48; \n ", "id": "sharedtimeTable_5", "is_public": "True", "name": "Event_list_tail_hall_reconnection_SC3", "nbIntervals": "12", "nbParam": "0", "sharedBy": "bouchemit", "sharedDate": "2018-01-18T16:42:07+00:00", "surveyStart": "2001-08-22T09:43:00", "surveyStop": "2003-10-09T02:27:00", "xmlid": "sharedtimeTable_5"}, "FTE_c1": {"__spz_name__": "FTE_c1", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_0", "created": "2018-01-18T16:25:22", "description": "FTE list from Cluster 1 data. From \"A new multivariate time series data analysis technique: Automated detection of flux transfer events using Cluster data\" by Karimabadi et al., JGR, VOL. 114, A06216, doi:10.1029/2009JA014202, 2009, http://www.agu.org/journal/ja/ja0906/2009JA014202/ The list is available as Auxiliary material \"Data Set S3\" Transformation into AMDA Time Table by V. Genot, CESR, Toulouse, France 29/06/2009. - millisec have been omitted - the original event corresponds to the StartTime of the Time Table - if StopTime-StartTime = 1 sec then the event is a magnetosheath FTE - if StopTime-StartTime = 2 sec then the event is a magnetospheric FTE ; \n Historic: From old AMDA;\n Creation Date : 2013-11-22T13:52:48; \n ", "id": "sharedtimeTable_0", "is_public": "True", "name": "FTE_c1", "nbIntervals": "782", "nbParam": "0", "sharedBy": "bouchemit", "sharedDate": "2018-01-18T16:26:18+00:00", "surveyStart": "2001-02-02T16:39:57", "surveyStop": "2003-06-19T18:47:50", "xmlid": "sharedtimeTable_0"}, "FTE_c3": {"__spz_name__": "FTE_c3", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_1", "created": "2018-01-18T16:27:29", "description": "FTE list from Cluster 3 data. From \"A new multivariate time series data analysis technique: Automated detection of flux transfer events using Cluster data\" by Karimabadi et al., JOURNAL OF GEOPHYSICAL RESEARCH, VOL. 114, A06216, doi:10.1029/2009JA014202, 2009 http://www.agu.org/journals/ja/ja0906/2009JA014202/ The list is available as Auxiliary material \"Data Set S3\" Transformation into AMDA Time Table by V. Genot, CESR, Toulouse, France 29/06/2009 : - millisec have been omitted - the original event corresponds to the StartTime of the Time Table - if StopTime-StartTime = 1 sec then the event is a magnetosheath FTE - if StopTime-StartTime = 2 sec then the event is a magnetospheric FTE ; \n Historic: From old AMDA;\n Creation Date : 2013-11-22T13:52:48; \n ", "id": "sharedtimeTable_1", "is_public": "True", "name": "FTE_c3", "nbIntervals": "738", "nbParam": "0", "sharedBy": "bouchemit", "sharedDate": "2018-01-18T16:28:11+00:00", "surveyStart": "2001-02-02T16:27:12", "surveyStop": "2003-06-19T18:47:50", "xmlid": "sharedtimeTable_1"}, "MPX_table": {"__spz_name__": "MPX_table", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_3", "created": "2018-01-18T16:33:34", "description": "Magnetopause crossings from Geosynchronous LANL1994_084 Magnetospheric Plasma Analyzer abs(deriv_((CDAWEB_L4_K0_MPA_temp_hip(1))/(CDAWEB_L4_K0_MPA_dens_hip))/((CDAWEB_L4_K0_MPA_temp_hip(1))/(CDAWEB_L4_K0_MPA_dens_hip)))>0.05; CDAWEB_L4_K0_MPA_temp_hip(1) => parameter from External Data Base; CDAWEB_L4_K0_MPA_dens_hip => parameter from External Data Base; ; \n Historic: From old AMDA;\n Creation Date : 2013-11-22T13:52:48; \n ", "id": "sharedtimeTable_3", "is_public": "True", "name": "MPX_table", "nbIntervals": "19", "nbParam": "0", "sharedBy": "bouchemit", "sharedDate": "2018-01-18T16:33:58+00:00", "surveyStart": "2000-05-24T01:54:00", "surveyStop": "2000-08-12T06:40:20", "xmlid": "sharedtimeTable_3"}, "SERPENTINE_shock_Wind_cycle25": {"__spz_name__": "SERPENTINE_shock_Wind_cycle25", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_176", "contact": "plotnikov", "created": "2024-04-22T03:46:36.000000", "description": "In-situ shock crossings at L1 (WInd spacecraft) catalogued in WP4 of SERPENTINE H2020 project (responsible: D. Trotta)", "id": "sharedtimeTable_176", "is_public": "True", "name": "SERPENTINE_shock_Wind_cycle25", "nbIntervals": "27", "nbParam": "0", "sharedBy": "plotnikov", "sharedDate": "2024-04-23T11:54:40+00:00", "surveyStart": "2020-12-02T10:11:50.000", "surveyStop": "2023-05-12T06:17:28.000", "xmlid": "sharedtimeTable_176"}, "Storm_SC_1868_1967": {"__spz_name__": "Storm_SC_1868_1967", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_6", "created": "2018-01-18T16:43:51", "description": "Storm Sudden Commencements (SSC) 1868-1967 -- see http://www.ngdc.noaa.gov/stp/SOLAR/ftpSSC.html -- Events +- 30 min; \n Historic: From old AMDA;\n Creation Date : 2013-11-22T13:52:49; \n ", "id": "sharedtimeTable_6", "is_public": "True", "name": "Storm_SC_1868_1967", "nbIntervals": "2462", "nbParam": "0", "sharedBy": "bouchemit", "sharedDate": "2018-01-18T16:43:59+00:00", "surveyStart": "2004-02-29T19:46:16", "surveyStop": "2104-02-05T04:52:17", "xmlid": "sharedtimeTable_6"}, "Storm_SC_1968_present": {"__spz_name__": "Storm_SC_1968_present", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_7", "created": "2018-01-18T16:44:17", "description": "Storm Sudden Commencements (SSC) 1968-present -- see http://www.ngdc.noaa.gov/stp/SOLAR/ftpSSC.html -- Events +- 30 min; \n Historic: From old AMDA;\n Creation Date : 2013-11-22T13:52:48; \n ", "id": "sharedtimeTable_7", "is_public": "True", "name": "Storm_SC_1968_present", "nbIntervals": "1261", "nbParam": "0", "sharedBy": "bouchemit", "sharedDate": "2018-01-18T16:44:25+00:00", "surveyStart": "1970-01-05T05:37:00", "surveyStop": "2106-01-17T19:13:17", "xmlid": "sharedtimeTable_7"}, "Substorm_onset_Frey": {"__spz_name__": "Substorm_onset_Frey", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_8", "created": "2018-01-18T16:44:44", "description": "Substorm onset observations by the IMAGE-FUV instrument between May 2000 and December 31, 2002 From Frey et al., JOURNAL OF GEOPHYSICAL RESEARCH, VOL. 109, A10304, doi:10.1029/2004JA010607, 2004 see also http://www.agu.org/journals/ja/ja0410/2004JA010607/supplement.shtml Event +- 30 min; \n Historic: From old AMDA;\n Creation Date : 2013-11-22T13:52:49; \n ", "id": "sharedtimeTable_8", "is_public": "True", "name": "Substorm_onset_Frey", "nbIntervals": "2437", "nbParam": "0", "sharedBy": "bouchemit", "sharedDate": "2018-01-18T16:44:54+00:00", "surveyStart": "2000-05-16T17:17:17", "surveyStop": "2002-12-31T21:17:54", "xmlid": "sharedtimeTable_8"}, "THEMIS_Substorm_2007_2008_ATHA": {"__spz_name__": "THEMIS_Substorm_2007-2008_ATHA", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_9", "created": "2018-01-18T16:46:54", "description": "THEMIS substorms list based on overview jpegs at station ATHA Substorm identification is done purely by visible inspection of all-sky images There is no guarantee that a certain feature is really a substorm Please see ftp://justice.ssl.berkeley.edu/events/ for more details; \n Historic: From old AMDA;\n Creation Date : 2013-11-22T13:52:49; \n ", "id": "sharedtimeTable_9", "is_public": "True", "name": "THEMIS_Substorm_2007-2008_ATHA", "nbIntervals": "16", "nbParam": "0", "sharedBy": "bouchemit", "sharedDate": "2018-01-18T17:01:43+00:00", "surveyStart": "2007-12-07T08:33:00", "surveyStop": "2008-04-01T05:38:01", "xmlid": "sharedtimeTable_9"}, "THEMIS_Substorm_2007_2008_CHBG": {"__spz_name__": "THEMIS_Substorm_2007-2008_CHBG", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_10", "created": "2018-01-18T16:47:29", "description": "THEMIS substorms list based on overview jpegs at station CHBG Substorm identification is done purely by visible inspection of all-sky images There is no guarantee that a certain feature is really a substorm Please see ftp://justice.ssl.berkeley.edu/events/ for more details; \n Historic: From old AMDA;\n Creation Date : 2013-11-22T13:52:49; \n ", "id": "sharedtimeTable_10", "is_public": "True", "name": "THEMIS_Substorm_2007-2008_CHBG", "nbIntervals": "4", "nbParam": "0", "sharedBy": "bouchemit", "sharedDate": "2018-01-18T16:47:36+00:00", "surveyStart": "2007-12-07T04:04:00", "surveyStop": "2008-03-04T05:38:01", "xmlid": "sharedtimeTable_10"}, "THEMIS_Substorm_2007_2008_FSIM": {"__spz_name__": "THEMIS_Substorm_2007-2008_FSIM", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_11", "created": "2018-01-18T16:47:53", "description": "THEMIS substorms list based on overview jpegs at station FSIM Substorm identification is done purely by visible inspection of all-sky images There is no guarantee that a certain feature is really a substorm Please see ftp://justice.ssl.berkeley.edu/events/ for more details; \n Historic: From old AMDA;\n Creation Date : 2013-11-22T13:52:49; \n ", "id": "sharedtimeTable_11", "is_public": "True", "name": "THEMIS_Substorm_2007-2008_FSIM", "nbIntervals": "184", "nbParam": "0", "sharedBy": "bouchemit", "sharedDate": "2018-01-18T16:48:00+00:00", "surveyStart": "2007-12-05T09:04:00", "surveyStop": "2008-04-01T07:37:01", "xmlid": "sharedtimeTable_11"}, "THEMIS_Substorm_2007_2008_FSMI": {"__spz_name__": "THEMIS_Substorm_2007-2008_FSMI", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_12", "created": "2018-01-18T16:48:18", "description": "THEMIS substorms list based on overview jpegs at station FSMI Substorm identification is done purely by visible inspection of all-sky images There is no guarantee that a certain feature is really a substorm Please see ftp://justice.ssl.berkeley.edu/events/ for more details; \n Historic: From old AMDA;\n Creation Date : 2013-11-22T13:52:49; \n ", "id": "sharedtimeTable_12", "is_public": "True", "name": "THEMIS_Substorm_2007-2008_FSMI", "nbIntervals": "179", "nbParam": "0", "sharedBy": "bouchemit", "sharedDate": "2018-01-18T16:48:33+00:00", "surveyStart": "2007-12-08T07:10:00", "surveyStop": "2008-04-01T07:26:01", "xmlid": "sharedtimeTable_12"}, "THEMIS_Substorm_2007_2008_FYKN": {"__spz_name__": "THEMIS_Substorm_2007-2008_FYKN", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_13", "created": "2018-01-18T16:48:49", "description": "THEMIS substorms list based on overview jpegs at station FYKN Substorm identification is done purely by visible inspection of all-sky images There is no guarantee that a certain feature is really a substorm Please see ftp://justice.ssl.berkeley.edu/events/ for more details; \n Historic: From old AMDA;\n Creation Date : 2013-11-22T13:52:49; \n ", "id": "sharedtimeTable_13", "is_public": "True", "name": "THEMIS_Substorm_2007-2008_FYKN", "nbIntervals": "106", "nbParam": "0", "sharedBy": "bouchemit", "sharedDate": "2018-01-18T16:48:55+00:00", "surveyStart": "2008-01-29T07:40:00", "surveyStop": "2008-03-31T08:56:01", "xmlid": "sharedtimeTable_13"}, "THEMIS_Substorm_2007_2008_GAKO": {"__spz_name__": "THEMIS_Substorm_2007-2008_GAKO", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_14", "created": "2018-01-18T16:49:12", "description": "THEMIS substorms list based on overview jpegs at station GAKO Substorm identification is done purely by visible inspection of all-sky images There is no guarantee that a certain feature is really a substorm Please see ftp://justice.ssl.berkeley.edu/events/ for more details; \n Historic: From old AMDA;\n Creation Date : 2013-11-22T13:52:49; \n ", "id": "sharedtimeTable_14", "is_public": "True", "name": "THEMIS_Substorm_2007-2008_GAKO", "nbIntervals": "66", "nbParam": "0", "sharedBy": "bouchemit", "sharedDate": "2018-01-18T16:49:27+00:00", "surveyStart": "2007-12-12T09:59:00", "surveyStop": "2008-03-31T08:56:01", "xmlid": "sharedtimeTable_14"}, "THEMIS_Substorm_2007_2008_GBAY": {"__spz_name__": "THEMIS_Substorm_2007-2008_GBAY", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_15", "created": "2018-01-18T16:49:48", "description": "THEMIS substorms list based on overview jpegs at station GBAY Substorm identification is done purely by visible inspection of all-sky images There is no guarantee that a certain feature is really a substorm Please see ftp://justice.ssl.berkeley.edu/events/ for more details; \n Historic: From old AMDA;\n Creation Date : 2013-11-22T13:52:49; \n ", "id": "sharedtimeTable_15", "is_public": "True", "name": "THEMIS_Substorm_2007-2008_GBAY", "nbIntervals": "19", "nbParam": "0", "sharedBy": "bouchemit", "sharedDate": "2018-01-18T16:49:56+00:00", "surveyStart": "2008-01-05T08:50:00", "surveyStop": "2008-04-01T03:51:01", "xmlid": "sharedtimeTable_15"}, "THEMIS_Substorm_2007_2008_GILL": {"__spz_name__": "THEMIS_Substorm_2007-2008_GILL", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_16", "created": "2018-01-18T16:50:16", "description": "THEMIS substorms list based on overview jpegs at station GILL Substorm identification is done purely by visible inspection of all-sky images There is no guarantee that a certain feature is really a substorm Please see ftp://justice.ssl.berkeley.edu/events/ for more details; \n Historic: From old AMDA;\n Creation Date : 2013-11-22T13:52:49; \n ", "id": "sharedtimeTable_16", "is_public": "True", "name": "THEMIS_Substorm_2007-2008_GILL", "nbIntervals": "150", "nbParam": "0", "sharedBy": "bouchemit", "sharedDate": "2018-01-18T16:50:22+00:00", "surveyStart": "2007-12-05T01:40:00", "surveyStop": "2008-04-01T07:41:01", "xmlid": "sharedtimeTable_16"}, "THEMIS_Substorm_2007_2008_INUV": {"__spz_name__": "THEMIS_Substorm_2007-2008_INUV", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_17", "created": "2018-01-18T16:50:42", "description": "THEMIS substorms list based on overview jpegs at station INUV Substorm identification is done purely by visible inspection of all-sky images There is no guarantee that a certain feature is really a substorm Please see ftp://justice.ssl.berkeley.edu/events/ for more details; \n Historic: From old AMDA;\n Creation Date : 2013-11-22T13:52:49; \n ", "id": "sharedtimeTable_17", "is_public": "True", "name": "THEMIS_Substorm_2007-2008_INUV", "nbIntervals": "274", "nbParam": "0", "sharedBy": "bouchemit", "sharedDate": "2018-01-18T16:50:50+00:00", "surveyStart": "2007-12-01T08:04:00", "surveyStop": "2008-04-02T08:55:01", "xmlid": "sharedtimeTable_17"}, "TT_BOW_CLUSTER": {"__spz_name__": "TT_BOW_CLUSTER", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_2", "created": "2018-01-18T16:31:19", "description": "List of shocks from: MULTIPLE SPACECRAFT BOW SHOCK CROSSINGS DATABASE at NSSDC (http://ftpbrowser.gsfc.nasa.gov/bowshock.html) The original list had only one time per row, the crossing time. In the present table, we substracted 5 min from the crossing time to get the Start Time and added 5 min to get the Stop Time Creation Date : 2007-03-20T17:00:00 ; \n Historic: From old AMDA;\n Creation Date : 2013-11-22T13:52:48; \n ", "id": "sharedtimeTable_2", "is_public": "True", "name": "TT_BOW_CLUSTER", "nbIntervals": "388", "nbParam": "0", "sharedBy": "bouchemit", "sharedDate": "2018-01-18T16:31:37+00:00", "surveyStart": "2001-02-02T20:29:00", "surveyStop": "2002-05-20T10:49:00", "xmlid": "sharedtimeTable_2"}, "__spz_name__": "EARTH", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "EARTH_timeTable", "is_public": "True", "name": "EARTH", "shock_SERPENTINE_SOLO_cycle25": {"__spz_name__": "shock_SERPENTINE_SOLO_cycle25", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_174", "contact": "plotnikov", "created": "2024-04-22T06:20:58.000000", "description": "In-situ shock crossings at Solar Orbiter catalogued in WP4 of SERPENTINE H2020 project (responsible: D. Trotta)", "id": "sharedtimeTable_174", "is_public": "True", "name": "shock_SERPENTINE_SOLO_cycle25", "nbIntervals": "61", "nbParam": "0", "sharedBy": "plotnikov", "sharedDate": "2024-04-22T08:05:27+00:00", "surveyStart": "2020-04-19T05:06:15", "surveyStop": "2023-04-22T08:12:11", "xmlid": "sharedtimeTable_174"}, "xmlid": "EARTH_timeTable"}, "FLYBYS": {"__spz_name__": "FLYBYS", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "FLYBYS_timeTable", "is_public": "True", "name": "FLYBYS", "xmlid": "FLYBYS_timeTable"}, "JUPITER": {"__spz_name__": "JUPITER", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "JUPITER_timeTable", "callisto_flyby": {"__spz_name__": "callisto_flyby", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_51", "created": "2018-01-19T15:04:54", "description": "Time Table generated by Nicolas Andre @ CDPP;Description: Galileo Callisto flybys C3, C9-10, C20-23, C30Creation Date : Wed Aug 24 20:49:00 2011;; \n Historic: From old AMDA;\n Creation Date : 2013-11-22T13:52:54; \n ", "id": "sharedtimeTable_51", "is_public": "True", "name": "callisto_flyby", "nbIntervals": "8", "nbParam": "0", "sharedBy": "bouchemit", "sharedDate": "2018-01-19T15:17:46+00:00", "surveyStart": "1996-11-04T13:15:10", "surveyStop": "2001-05-25T11:45:04", "xmlid": "sharedtimeTable_51"}, "ganymede_flyby": {"__spz_name__": "ganymede_flyby", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_52", "created": "2018-01-19T15:05:14", "description": "Time Table generated by Nicolas Andre @ CDPP;Description: Galileo Ganymede flybys G1, G2, G7-8, G28-29Creation Date : Wed Aug 24 20:50:00 2011;; \n Historic: From old AMDA;\n Creation Date : 2013-11-22T13:52:55; \n ", "id": "sharedtimeTable_52", "is_public": "True", "name": "ganymede_flyby", "nbIntervals": "8", "nbParam": "0", "sharedBy": "bouchemit", "sharedDate": "2018-01-19T15:17:58+00:00", "surveyStart": "1996-06-27T06:07:08", "surveyStop": "2000-12-28T08:55:21", "xmlid": "sharedtimeTable_52"}, "is_public": "True", "juno_orbits_apoapsis": {"__spz_name__": "juno_orbits_apoapsis", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_53", "created": "2018-07-13T09:01:21", "description": "site web LASP\nhttp://lasp.colorado.edu/home/mop/missions/juno/trajectory-information/", "id": "sharedtimeTable_53", "is_public": "True", "name": "juno_orbits_apoapsis", "nbIntervals": "33", "nbParam": "0", "sharedBy": "nandre", "sharedDate": "2018-07-16T13:48:12+00:00", "surveyStart": "2016-07-31T19:46:02", "surveyStop": "2021-07-03T19:26:51", "xmlid": "sharedtimeTable_53"}, "name": "JUPITER", "xmlid": "JUPITER_timeTable"}, "MARS": {"__spz_name__": "MARS", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "MARS_timeTable", "conjonctions_mex_mgs_2004_0": {"__spz_name__": "conjonctions_mex-mgs_2004_0", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_37", "created": "2018-01-19T14:50:02", "description": "conjonctions between MGS and MEX, distance < 400 km; \n Historic: From old AMDA;\n Creation Date : 2013-11-22T13:52:50; \n ", "id": "sharedtimeTable_37", "is_public": "True", "name": "conjonctions_mex-mgs_2004_0", "nbIntervals": "28", "nbParam": "0", "sharedBy": "bouchemit", "sharedDate": "2018-01-19T14:51:13+00:00", "surveyStart": "2004-05-07T06:53:00", "surveyStop": "2004-12-26T23:43:40", "xmlid": "sharedtimeTable_37"}, "conjonctions_mex_mgs_2005_0": {"__spz_name__": "conjonctions_mex-mgs_2005_0", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_38", "created": "2018-01-19T14:50:25", "description": "conjonctions between MGS and Mex, distance<400km; \n Historic: From old AMDA;\n Creation Date : 2013-11-22T13:52:50; \n ", "id": "sharedtimeTable_38", "is_public": "True", "name": "conjonctions_mex-mgs_2005_0", "nbIntervals": "38", "nbParam": "0", "sharedBy": "bouchemit", "sharedDate": "2018-01-19T14:51:21+00:00", "surveyStart": "2005-01-01T07:33:50", "surveyStop": "2005-12-25T16:26:00", "xmlid": "sharedtimeTable_38"}, "conjonctions_mex_mgs_2006_0": {"__spz_name__": "conjonctions_mex-mgs_2006_0", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_39", "created": "2018-01-19T14:50:45", "description": "conjonctions MGS and Mex, distance<400km; \n Historic: From old AMDA;\n Creation Date : 2013-11-22T13:52:50; \n ", "id": "sharedtimeTable_39", "is_public": "True", "name": "conjonctions_mex-mgs_2006_0", "nbIntervals": "30", "nbParam": "0", "sharedBy": "bouchemit", "sharedDate": "2018-01-19T14:51:29+00:00", "surveyStart": "2006-03-17T17:08:00", "surveyStop": "2006-11-02T15:19:20", "xmlid": "sharedtimeTable_39"}, "is_public": "True", "name": "MARS", "xmlid": "MARS_timeTable"}, "MMS_BURST_MODE": {"MMS_Burst_Mode_2015August": {"__spz_name__": "MMS_Burst_Mode_2015August", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_68", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_68", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2015August", "nbIntervals": "587", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:30:00+00:00", "surveyStart": "2015-08-01T00:39:34", "surveyStop": "2015-08-31T18:40:14", "xmlid": "sharedtimeTable_68"}, "MMS_Burst_Mode_2015December": {"__spz_name__": "MMS_Burst_Mode_2015December", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_72", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_72", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2015December", "nbIntervals": "841", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:30:18+00:00", "surveyStart": "2015-12-01T00:19:33", "surveyStop": "2015-12-31T23:45:44", "xmlid": "sharedtimeTable_72"}, "MMS_Burst_Mode_2015November": {"__spz_name__": "MMS_Burst_Mode_2015November", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_71", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_71", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2015November", "nbIntervals": "658", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:30:15+00:00", "surveyStart": "2015-11-01T03:23:14", "surveyStop": "2015-11-30T13:07:34", "xmlid": "sharedtimeTable_71"}, "MMS_Burst_Mode_2015October": {"__spz_name__": "MMS_Burst_Mode_2015October", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_70", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_70", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2015October", "nbIntervals": "871", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:30:11+00:00", "surveyStart": "2015-10-01T06:49:14", "surveyStop": "2015-10-31T15:24:34", "xmlid": "sharedtimeTable_70"}, "MMS_Burst_Mode_2015September": {"__spz_name__": "MMS_Burst_Mode_2015September", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_69", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_69", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2015September", "nbIntervals": "700", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:30:07+00:00", "surveyStart": "2015-09-01T12:11:14", "surveyStop": "2015-09-30T16:43:04", "xmlid": "sharedtimeTable_69"}, "MMS_Burst_Mode_2016April": {"__spz_name__": "MMS_Burst_Mode_2016April", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_76", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_76", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2016April", "nbIntervals": "1238", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:30:34+00:00", "surveyStart": "2016-04-01T16:37:14", "surveyStop": "2016-04-30T21:19:24", "xmlid": "sharedtimeTable_76"}, "MMS_Burst_Mode_2016August": {"__spz_name__": "MMS_Burst_Mode_2016August", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_80", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_80", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2016August", "nbIntervals": "1559", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:30:50+00:00", "surveyStart": "2016-08-01T01:49:54", "surveyStop": "2016-08-31T23:58:54", "xmlid": "sharedtimeTable_80"}, "MMS_Burst_Mode_2016December": {"__spz_name__": "MMS_Burst_Mode_2016December", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_84", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_84", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2016December", "nbIntervals": "1067", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:31:05+00:00", "surveyStart": "2016-12-01T05:24:48", "surveyStop": "2016-12-31T13:31:04", "xmlid": "sharedtimeTable_84"}, "MMS_Burst_Mode_2016February": {"__spz_name__": "MMS_Burst_Mode_2016February", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_74", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_74", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2016February", "nbIntervals": "1083", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:30:26+00:00", "surveyStart": "2016-02-01T06:18:54", "surveyStop": "2016-02-29T23:45:14", "xmlid": "sharedtimeTable_74"}, "MMS_Burst_Mode_2016January": {"__spz_name__": "MMS_Burst_Mode_2016January", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_73", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_73", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2016January", "nbIntervals": "878", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:30:22+00:00", "surveyStart": "2016-01-01T00:56:44", "surveyStop": "2016-01-31T23:47:34", "xmlid": "sharedtimeTable_73"}, "MMS_Burst_Mode_2016July": {"__spz_name__": "MMS_Burst_Mode_2016July", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_79", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_79", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2016July", "nbIntervals": "1144", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:30:46+00:00", "surveyStart": "2016-07-01T00:54:14", "surveyStop": "2016-07-31T10:39:14", "xmlid": "sharedtimeTable_79"}, "MMS_Burst_Mode_2016June": {"__spz_name__": "MMS_Burst_Mode_2016June", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_78", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_78", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2016June", "nbIntervals": "812", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:30:42+00:00", "surveyStart": "2016-06-01T05:49:24", "surveyStop": "2016-06-30T16:52:04", "xmlid": "sharedtimeTable_78"}, "MMS_Burst_Mode_2016March": {"__spz_name__": "MMS_Burst_Mode_2016March", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_75", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_75", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2016March", "nbIntervals": "527", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:30:30+00:00", "surveyStart": "2016-03-01T00:29:15", "surveyStop": "2016-03-31T23:14:04", "xmlid": "sharedtimeTable_75"}, "MMS_Burst_Mode_2016May": {"__spz_name__": "MMS_Burst_Mode_2016May", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_77", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_77", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2016May", "nbIntervals": "1940", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:30:38+00:00", "surveyStart": "2016-05-01T10:38:24", "surveyStop": "2016-05-31T15:49:44", "xmlid": "sharedtimeTable_77"}, "MMS_Burst_Mode_2016November": {"__spz_name__": "MMS_Burst_Mode_2016November", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_83", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_83", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2016November", "nbIntervals": "1048", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:31:01+00:00", "surveyStart": "2016-11-01T09:13:44", "surveyStop": "2016-11-30T15:49:24", "xmlid": "sharedtimeTable_83"}, "MMS_Burst_Mode_2016October": {"__spz_name__": "MMS_Burst_Mode_2016October", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_82", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_82", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2016October", "nbIntervals": "1083", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:30:58+00:00", "surveyStart": "2016-10-01T17:57:14", "surveyStop": "2016-10-31T13:05:04", "xmlid": "sharedtimeTable_82"}, "MMS_Burst_Mode_2016September": {"__spz_name__": "MMS_Burst_Mode_2016September", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_81", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_81", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2016September", "nbIntervals": "1594", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:30:54+00:00", "surveyStart": "2016-09-01T02:06:04", "surveyStop": "2016-09-30T22:58:44", "xmlid": "sharedtimeTable_81"}, "MMS_Burst_Mode_2017April": {"__spz_name__": "MMS_Burst_Mode_2017April", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_88", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_88", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2017April", "nbIntervals": "646", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:31:21+00:00", "surveyStart": "2017-04-08T09:04:13", "surveyStop": "2017-04-30T19:35:03", "xmlid": "sharedtimeTable_88"}, "MMS_Burst_Mode_2017August": {"__spz_name__": "MMS_Burst_Mode_2017August", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_92", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_92", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2017August", "nbIntervals": "990", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:31:36+00:00", "surveyStart": "2017-08-01T00:47:33", "surveyStop": "2017-08-31T23:58:53", "xmlid": "sharedtimeTable_92"}, "MMS_Burst_Mode_2017December": {"__spz_name__": "MMS_Burst_Mode_2017December", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_96", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_96", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2017December", "nbIntervals": "832", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:31:51+00:00", "surveyStart": "2017-12-01T10:14:33", "surveyStop": "2017-12-31T22:55:33", "xmlid": "sharedtimeTable_96"}, "MMS_Burst_Mode_2017February": {"__spz_name__": "MMS_Burst_Mode_2017February", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_86", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_86", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2017February", "nbIntervals": "386", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:31:13+00:00", "surveyStart": "2017-02-03T22:55:43", "surveyStop": "2017-02-28T00:04:33", "xmlid": "sharedtimeTable_86"}, "MMS_Burst_Mode_2017January": {"__spz_name__": "MMS_Burst_Mode_2017January", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_85", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_85", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2017January", "nbIntervals": "1228", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:31:09+00:00", "surveyStart": "2017-01-01T01:51:33", "surveyStop": "2017-01-31T12:18:23", "xmlid": "sharedtimeTable_85"}, "MMS_Burst_Mode_2017July": {"__spz_name__": "MMS_Burst_Mode_2017July", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_91", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_91", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2017July", "nbIntervals": "989", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:31:32+00:00", "surveyStart": "2017-07-04T04:19:33", "surveyStop": "2017-07-31T23:56:23", "xmlid": "sharedtimeTable_91"}, "MMS_Burst_Mode_2017June": {"__spz_name__": "MMS_Burst_Mode_2017June", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_90", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_90", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2017June", "nbIntervals": "776", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:31:28+00:00", "surveyStart": "2017-06-01T07:06:43", "surveyStop": "2017-06-26T00:08:13", "xmlid": "sharedtimeTable_90"}, "MMS_Burst_Mode_2017March": {"__spz_name__": "MMS_Burst_Mode_2017March", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_87", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_87", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2017March", "nbIntervals": "36", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:31:17+00:00", "surveyStart": "2017-03-01T07:04:13", "surveyStop": "2017-03-22T23:10:13", "xmlid": "sharedtimeTable_87"}, "MMS_Burst_Mode_2017May": {"__spz_name__": "MMS_Burst_Mode_2017May", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_89", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_89", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2017May", "nbIntervals": "1024", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:31:24+00:00", "surveyStart": "2017-05-02T11:32:33", "surveyStop": "2017-05-31T23:29:13", "xmlid": "sharedtimeTable_89"}, "MMS_Burst_Mode_2017November": {"__spz_name__": "MMS_Burst_Mode_2017November", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_95", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_95", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2017November", "nbIntervals": "961", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:31:47+00:00", "surveyStart": "2017-11-01T03:40:03", "surveyStop": "2017-11-30T23:56:23", "xmlid": "sharedtimeTable_95"}, "MMS_Burst_Mode_2017October": {"__spz_name__": "MMS_Burst_Mode_2017October", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_94", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_94", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2017October", "nbIntervals": "895", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:31:44+00:00", "surveyStart": "2017-10-01T00:24:13", "surveyStop": "2017-10-30T21:48:13", "xmlid": "sharedtimeTable_94"}, "MMS_Burst_Mode_2017September": {"__spz_name__": "MMS_Burst_Mode_2017September", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_93", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_93", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2017September", "nbIntervals": "1219", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:31:40+00:00", "surveyStart": "2017-09-01T01:14:43", "surveyStop": "2017-09-30T23:58:33", "xmlid": "sharedtimeTable_93"}, "MMS_Burst_Mode_2018April": {"__spz_name__": "MMS_Burst_Mode_2018April", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_100", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_100", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2018April", "nbIntervals": "813", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:32:07+00:00", "surveyStart": "2018-04-01T01:10:33", "surveyStop": "2018-04-30T16:58:53", "xmlid": "sharedtimeTable_100"}, "MMS_Burst_Mode_2018August": {"__spz_name__": "MMS_Burst_Mode_2018August", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_104", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_104", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2018August", "nbIntervals": "602", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:32:22+00:00", "surveyStart": "2018-08-01T00:42:23", "surveyStop": "2018-08-30T14:19:23", "xmlid": "sharedtimeTable_104"}, "MMS_Burst_Mode_2018December": {"__spz_name__": "MMS_Burst_Mode_2018December", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_108", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_108", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2018December", "nbIntervals": "687", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:32:38+00:00", "surveyStart": "2018-12-01T17:07:33", "surveyStop": "2018-12-31T00:48:03", "xmlid": "sharedtimeTable_108"}, "MMS_Burst_Mode_2018February": {"__spz_name__": "MMS_Burst_Mode_2018February", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_98", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_98", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2018February", "nbIntervals": "638", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:31:59+00:00", "surveyStart": "2018-02-01T00:02:43", "surveyStop": "2018-02-28T23:01:33", "xmlid": "sharedtimeTable_98"}, "MMS_Burst_Mode_2018January": {"__spz_name__": "MMS_Burst_Mode_2018January", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_97", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_97", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2018January", "nbIntervals": "541", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:31:55+00:00", "surveyStart": "2018-01-01T00:01:43", "surveyStop": "2018-01-31T23:57:43", "xmlid": "sharedtimeTable_97"}, "MMS_Burst_Mode_2018July": {"__spz_name__": "MMS_Burst_Mode_2018July", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_103", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_103", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2018July", "nbIntervals": "513", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:32:18+00:00", "surveyStart": "2018-07-01T12:48:33", "surveyStop": "2018-07-31T02:38:33", "xmlid": "sharedtimeTable_103"}, "MMS_Burst_Mode_2018June": {"__spz_name__": "MMS_Burst_Mode_2018June", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_102", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_102", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2018June", "nbIntervals": "639", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:32:14+00:00", "surveyStart": "2018-06-01T00:12:53", "surveyStop": "2018-06-30T23:46:13", "xmlid": "sharedtimeTable_102"}, "MMS_Burst_Mode_2018March": {"__spz_name__": "MMS_Burst_Mode_2018March", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_99", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_99", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2018March", "nbIntervals": "831", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:32:03+00:00", "surveyStart": "2018-03-01T00:29:23", "surveyStop": "2018-03-31T04:31:03", "xmlid": "sharedtimeTable_99"}, "MMS_Burst_Mode_2018May": {"__spz_name__": "MMS_Burst_Mode_2018May", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_101", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_101", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2018May", "nbIntervals": "655", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:32:11+00:00", "surveyStart": "2018-05-01T07:45:23", "surveyStop": "2018-05-31T23:35:43", "xmlid": "sharedtimeTable_101"}, "MMS_Burst_Mode_2018November": {"__spz_name__": "MMS_Burst_Mode_2018November", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_107", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_107", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2018November", "nbIntervals": "823", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:32:34+00:00", "surveyStart": "2018-11-01T00:01:13", "surveyStop": "2018-11-30T20:50:23", "xmlid": "sharedtimeTable_107"}, "MMS_Burst_Mode_2018October": {"__spz_name__": "MMS_Burst_Mode_2018October", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_106", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_106", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2018October", "nbIntervals": "788", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:32:30+00:00", "surveyStart": "2018-10-01T05:21:33", "surveyStop": "2018-11-01T00:01:13", "xmlid": "sharedtimeTable_106"}, "MMS_Burst_Mode_2018September": {"__spz_name__": "MMS_Burst_Mode_2018September", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_105", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_105", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2018September", "nbIntervals": "682", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:32:26+00:00", "surveyStart": "2018-09-01T04:56:03", "surveyStop": "2018-09-30T22:31:53", "xmlid": "sharedtimeTable_105"}, "MMS_Burst_Mode_2019April": {"__spz_name__": "MMS_Burst_Mode_2019April", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_112", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_112", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2019April", "nbIntervals": "663", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:32:53+00:00", "surveyStart": "2019-04-01T23:05:23", "surveyStop": "2019-04-30T23:26:33", "xmlid": "sharedtimeTable_112"}, "MMS_Burst_Mode_2019August": {"__spz_name__": "MMS_Burst_Mode_2019August", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_116", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_116", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2019August", "nbIntervals": "750", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:33:09+00:00", "surveyStart": "2019-08-01T15:20:03", "surveyStop": "2019-08-31T15:29:03", "xmlid": "sharedtimeTable_116"}, "MMS_Burst_Mode_2019December": {"__spz_name__": "MMS_Burst_Mode_2019December", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_120", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_120", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2019December", "nbIntervals": "875", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:33:24+00:00", "surveyStart": "2019-12-02T19:17:43", "surveyStop": "2020-01-01T00:01:23", "xmlid": "sharedtimeTable_120"}, "MMS_Burst_Mode_2019February": {"__spz_name__": "MMS_Burst_Mode_2019February", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_110", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_110", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2019February", "nbIntervals": "805", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:32:45+00:00", "surveyStart": "", "surveyStop": "2019-02-28T08:48:53", "xmlid": "sharedtimeTable_110"}, "MMS_Burst_Mode_2019January": {"__spz_name__": "MMS_Burst_Mode_2019January", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_109", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_109", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2019January", "nbIntervals": "628", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:32:41+00:00", "surveyStart": "2019-01-01T00:18:23", "surveyStop": "2019-02-01T00:00:33", "xmlid": "sharedtimeTable_109"}, "MMS_Burst_Mode_2019July": {"__spz_name__": "MMS_Burst_Mode_2019July", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_115", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_115", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2019July", "nbIntervals": "815", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:33:05+00:00", "surveyStart": "2019-07-01T00:34:03", "surveyStop": "2019-07-31T15:04:43", "xmlid": "sharedtimeTable_115"}, "MMS_Burst_Mode_2019June": {"__spz_name__": "MMS_Burst_Mode_2019June", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_114", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_114", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2019June", "nbIntervals": "640", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:33:01+00:00", "surveyStart": "2019-06-01T17:23:13", "surveyStop": "2019-06-29T23:33:13", "xmlid": "sharedtimeTable_114"}, "MMS_Burst_Mode_2019March": {"__spz_name__": "MMS_Burst_Mode_2019March", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_111", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_111", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2019March", "nbIntervals": "514", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:32:49+00:00", "surveyStart": "2019-03-01T09:40:43", "surveyStop": "2019-03-31T21:33:23", "xmlid": "sharedtimeTable_111"}, "MMS_Burst_Mode_2019May": {"__spz_name__": "MMS_Burst_Mode_2019May", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_113", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_113", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2019May", "nbIntervals": "868", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:32:57+00:00", "surveyStart": "2019-05-01T01:03:53", "surveyStop": "2019-05-31T10:21:03", "xmlid": "sharedtimeTable_113"}, "MMS_Burst_Mode_2019November": {"__spz_name__": "MMS_Burst_Mode_2019November", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_119", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_119", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2019November", "nbIntervals": "977", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:33:20+00:00", "surveyStart": "2019-11-01T04:32:03", "surveyStop": "2019-11-30T17:00:33", "xmlid": "sharedtimeTable_119"}, "MMS_Burst_Mode_2019October": {"__spz_name__": "MMS_Burst_Mode_2019October", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_118", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_118", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2019October", "nbIntervals": "898", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:33:16+00:00", "surveyStart": "2019-10-01T02:40:03", "surveyStop": "2019-10-31T18:38:33", "xmlid": "sharedtimeTable_118"}, "MMS_Burst_Mode_2019September": {"__spz_name__": "MMS_Burst_Mode_2019September", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_117", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_117", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2019September", "nbIntervals": "845", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:33:12+00:00", "surveyStart": "2019-09-01T07:19:43", "surveyStop": "2019-09-30T17:08:53", "xmlid": "sharedtimeTable_117"}, "MMS_Burst_Mode_2020April": {"__spz_name__": "MMS_Burst_Mode_2020April", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_124", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_124", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2020April", "nbIntervals": "661", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:33:39+00:00", "surveyStart": "2020-04-01T01:00:43", "surveyStop": "2020-04-30T16:06:33", "xmlid": "sharedtimeTable_124"}, "MMS_Burst_Mode_2020August": {"__spz_name__": "MMS_Burst_Mode_2020August", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_128", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_128", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2020August", "nbIntervals": "562", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:33:54+00:00", "surveyStart": "2020-08-01T07:55:33", "surveyStop": "2020-08-31T22:37:03", "xmlid": "sharedtimeTable_128"}, "MMS_Burst_Mode_2020December": {"__spz_name__": "MMS_Burst_Mode_2020December", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_132", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_132", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2020December", "nbIntervals": "546", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:34:10+00:00", "surveyStart": "2020-12-01T00:56:33", "surveyStop": "2020-12-31T08:09:23", "xmlid": "sharedtimeTable_132"}, "MMS_Burst_Mode_2020February": {"__spz_name__": "MMS_Burst_Mode_2020February", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_122", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_122", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2020February", "nbIntervals": "726", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:33:31+00:00", "surveyStart": "2020-02-01T07:55:23", "surveyStop": "2020-02-29T17:42:43", "xmlid": "sharedtimeTable_122"}, "MMS_Burst_Mode_2020January": {"__spz_name__": "MMS_Burst_Mode_2020January", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_121", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_121", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2020January", "nbIntervals": "590", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:33:28+00:00", "surveyStart": "2020-01-01T00:01:23", "surveyStop": "2020-01-31T21:04:23", "xmlid": "sharedtimeTable_121"}, "MMS_Burst_Mode_2020July": {"__spz_name__": "MMS_Burst_Mode_2020July", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_127", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_127", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2020July", "nbIntervals": "735", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:33:50+00:00", "surveyStart": "2020-07-01T00:18:43", "surveyStop": "2020-07-31T11:22:13", "xmlid": "sharedtimeTable_127"}, "MMS_Burst_Mode_2020June": {"__spz_name__": "MMS_Burst_Mode_2020June", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_126", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_126", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2020June", "nbIntervals": "939", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:33:47+00:00", "surveyStart": "2020-06-01T02:27:23", "surveyStop": "2020-06-30T23:42:03", "xmlid": "sharedtimeTable_126"}, "MMS_Burst_Mode_2020March": {"__spz_name__": "MMS_Burst_Mode_2020March", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_123", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_123", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2020March", "nbIntervals": "868", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:33:35+00:00", "surveyStart": "2020-03-03T05:32:23", "surveyStop": "2020-03-31T22:09:13", "xmlid": "sharedtimeTable_123"}, "MMS_Burst_Mode_2020May": {"__spz_name__": "MMS_Burst_Mode_2020May", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_125", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_125", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2020May", "nbIntervals": "847", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:33:43+00:00", "surveyStart": "2020-05-01T07:58:23", "surveyStop": "2020-05-31T05:08:23", "xmlid": "sharedtimeTable_125"}, "MMS_Burst_Mode_2020November": {"__spz_name__": "MMS_Burst_Mode_2020November", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_131", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_131", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2020November", "nbIntervals": "629", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:34:06+00:00", "surveyStart": "2020-11-01T12:07:03", "surveyStop": "2020-11-30T22:57:13", "xmlid": "sharedtimeTable_131"}, "MMS_Burst_Mode_2020October": {"__spz_name__": "MMS_Burst_Mode_2020October", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_130", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_130", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2020October", "nbIntervals": "460", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:34:02+00:00", "surveyStart": "2020-10-01T20:55:33", "surveyStop": "2020-10-31T16:39:13", "xmlid": "sharedtimeTable_130"}, "MMS_Burst_Mode_2020September": {"__spz_name__": "MMS_Burst_Mode_2020September", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_129", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_129", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2020September", "nbIntervals": "827", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:33:58+00:00", "surveyStart": "2020-09-01T01:35:03", "surveyStop": "2020-09-30T21:51:23", "xmlid": "sharedtimeTable_129"}, "MMS_Burst_Mode_2021April": {"__spz_name__": "MMS_Burst_Mode_2021April", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_136", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_136", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2021April", "nbIntervals": "792", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:34:25+00:00", "surveyStart": "2021-04-01T10:00:03", "surveyStop": "2021-04-30T23:28:53", "xmlid": "sharedtimeTable_136"}, "MMS_Burst_Mode_2021August": {"__spz_name__": "MMS_Burst_Mode_2021August", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_140", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_140", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2021August", "nbIntervals": "399", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:34:40+00:00", "surveyStart": "2021-08-01T00:00:53", "surveyStop": "2021-08-31T08:24:03", "xmlid": "sharedtimeTable_140"}, "MMS_Burst_Mode_2021December": {"__spz_name__": "MMS_Burst_Mode_2021December", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_144", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_144", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2021December", "nbIntervals": "694", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:34:56+00:00", "surveyStart": "2021-12-01T15:22:13", "surveyStop": "2021-12-30T05:15:43", "xmlid": "sharedtimeTable_144"}, "MMS_Burst_Mode_2021February": {"__spz_name__": "MMS_Burst_Mode_2021February", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_134", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_134", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2021February", "nbIntervals": "466", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:34:17+00:00", "surveyStart": "2021-02-02T05:13:23", "surveyStop": "2021-03-01T00:01:03", "xmlid": "sharedtimeTable_134"}, "MMS_Burst_Mode_2021January": {"__spz_name__": "MMS_Burst_Mode_2021January", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_133", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_133", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2021January", "nbIntervals": "625", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:34:13+00:00", "surveyStart": "2020-11-29T14:49:33", "surveyStop": "2021-01-31T23:27:03", "xmlid": "sharedtimeTable_133"}, "MMS_Burst_Mode_2021July": {"__spz_name__": "MMS_Burst_Mode_2021July", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_139", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_139", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2021July", "nbIntervals": "599", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:34:36+00:00", "surveyStart": "2021-07-01T00:03:43", "surveyStop": "2021-07-31T21:38:23", "xmlid": "sharedtimeTable_139"}, "MMS_Burst_Mode_2021June": {"__spz_name__": "MMS_Burst_Mode_2021June", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_138", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_138", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2021June", "nbIntervals": "466", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:34:33+00:00", "surveyStart": "2021-06-01T01:07:03", "surveyStop": "2021-06-30T19:40:43", "xmlid": "sharedtimeTable_138"}, "MMS_Burst_Mode_2021March": {"__spz_name__": "MMS_Burst_Mode_2021March", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_135", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_135", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2021March", "nbIntervals": "879", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:34:21+00:00", "surveyStart": "2021-03-01T00:01:03", "surveyStop": "2021-03-31T07:33:33", "xmlid": "sharedtimeTable_135"}, "MMS_Burst_Mode_2021May": {"__spz_name__": "MMS_Burst_Mode_2021May", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_137", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_137", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2021May", "nbIntervals": "601", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:34:29+00:00", "surveyStart": "2021-05-01T00:53:33", "surveyStop": "2021-05-31T06:22:03", "xmlid": "sharedtimeTable_137"}, "MMS_Burst_Mode_2021November": {"__spz_name__": "MMS_Burst_Mode_2021November", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_143", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_143", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2021November", "nbIntervals": "795", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:34:52+00:00", "surveyStart": "2021-11-01T05:11:53", "surveyStop": "2021-11-30T23:39:43", "xmlid": "sharedtimeTable_143"}, "MMS_Burst_Mode_2021October": {"__spz_name__": "MMS_Burst_Mode_2021October", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_142", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_142", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2021October", "nbIntervals": "725", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:34:48+00:00", "surveyStart": "2021-10-01T19:59:33", "surveyStop": "2021-11-03T13:49:43", "xmlid": "sharedtimeTable_142"}, "MMS_Burst_Mode_2021September": {"__spz_name__": "MMS_Burst_Mode_2021September", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_141", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_141", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2021September", "nbIntervals": "483", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:34:44+00:00", "surveyStart": "2021-09-01T07:34:33", "surveyStop": "2021-09-30T21:46:53", "xmlid": "sharedtimeTable_141"}, "MMS_Burst_Mode_2022April": {"__spz_name__": "MMS_Burst_Mode_2022April", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_148", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_148", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2022April", "nbIntervals": "664", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:35:11+00:00", "surveyStart": "2022-04-01T01:46:33", "surveyStop": "2022-04-30T03:56:33", "xmlid": "sharedtimeTable_148"}, "MMS_Burst_Mode_2022August": {"__spz_name__": "MMS_Burst_Mode_2022August", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_152", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_152", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2022August", "nbIntervals": "91", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:35:26+00:00", "surveyStart": "2022-08-11T22:54:13", "surveyStop": "2022-08-30T06:18:23", "xmlid": "sharedtimeTable_152"}, "MMS_Burst_Mode_2022December": {"__spz_name__": "MMS_Burst_Mode_2022December", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_157", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_157", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2022December", "nbIntervals": "424", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:35:42+00:00", "surveyStart": "2022-12-01T01:42:23", "surveyStop": "2022-12-30T20:38:43", "xmlid": "sharedtimeTable_157"}, "MMS_Burst_Mode_2022February": {"__spz_name__": "MMS_Burst_Mode_2022February", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_146", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_146", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2022February", "nbIntervals": "607", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:35:03+00:00", "surveyStart": "2022-02-01T22:10:53", "surveyStop": "2022-02-27T13:44:13", "xmlid": "sharedtimeTable_146"}, "MMS_Burst_Mode_2022January": {"__spz_name__": "MMS_Burst_Mode_2022January", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_145", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_145", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2022January", "nbIntervals": "572", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:35:00+00:00", "surveyStart": "2022-01-01T02:29:53", "surveyStop": "2022-01-30T12:32:23", "xmlid": "sharedtimeTable_145"}, "MMS_Burst_Mode_2022July": {"__spz_name__": "MMS_Burst_Mode_2022July", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_151", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_151", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2022July", "nbIntervals": "376", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:35:22+00:00", "surveyStart": "2022-07-01T07:48:03", "surveyStop": "2022-07-24T12:53:43", "xmlid": "sharedtimeTable_151"}, "MMS_Burst_Mode_2022June": {"__spz_name__": "MMS_Burst_Mode_2022June", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_150", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_150", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2022June", "nbIntervals": "527", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:35:19+00:00", "surveyStart": "2022-06-01T00:43:13", "surveyStop": "2022-06-30T17:55:03", "xmlid": "sharedtimeTable_150"}, "MMS_Burst_Mode_2022March": {"__spz_name__": "MMS_Burst_Mode_2022March", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_147", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_147", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2022March", "nbIntervals": "558", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:35:07+00:00", "surveyStart": "2022-03-02T12:12:13", "surveyStop": "2022-03-31T10:46:03", "xmlid": "sharedtimeTable_147"}, "MMS_Burst_Mode_2022May": {"__spz_name__": "MMS_Burst_Mode_2022May", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_149", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_149", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2022May", "nbIntervals": "565", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:35:15+00:00", "surveyStart": "2022-05-02T02:57:23", "surveyStop": "2022-06-01T00:00:33", "xmlid": "sharedtimeTable_149"}, "MMS_Burst_Mode_2022November": {"__spz_name__": "MMS_Burst_Mode_2022November", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_156", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_156", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2022November", "nbIntervals": "324", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:35:38+00:00", "surveyStart": "2022-11-01T00:03:03", "surveyStop": "2022-11-29T16:05:13", "xmlid": "sharedtimeTable_156"}, "MMS_Burst_Mode_2022October": {"__spz_name__": "MMS_Burst_Mode_2022October", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_154", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_154", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2022October", "nbIntervals": "475", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:35:34+00:00", "surveyStart": "2022-10-01T01:09:43", "surveyStop": "2022-10-31T23:44:13", "xmlid": "sharedtimeTable_154"}, "MMS_Burst_Mode_2022September": {"__spz_name__": "MMS_Burst_Mode_2022September", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_153", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_153", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2022September", "nbIntervals": "228", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:35:30+00:00", "surveyStart": "2022-09-01T04:37:33", "surveyStop": "2022-09-29T06:50:53", "xmlid": "sharedtimeTable_153"}, "MMS_Burst_Mode_2023April": {"__spz_name__": "MMS_Burst_Mode_2023April", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_161", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_161", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2023April", "nbIntervals": "296", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:35:57+00:00", "surveyStart": "2023-04-03T14:58:23", "surveyStop": "2023-04-29T00:17:23", "xmlid": "sharedtimeTable_161"}, "MMS_Burst_Mode_2023August": {"__spz_name__": "MMS_Burst_Mode_2023August", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_165", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_165", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2023August", "nbIntervals": "90", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:36:12+00:00", "surveyStart": "2023-08-01T03:15:33", "surveyStop": "2023-08-28T20:07:13", "xmlid": "sharedtimeTable_165"}, "MMS_Burst_Mode_2023December": {"__spz_name__": "MMS_Burst_Mode_2023December", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_169", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_169", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2023December", "nbIntervals": "389", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:36:28+00:00", "surveyStart": "2023-12-01T00:13:03", "surveyStop": "2023-12-30T06:50:03", "xmlid": "sharedtimeTable_169"}, "MMS_Burst_Mode_2023February": {"__spz_name__": "MMS_Burst_Mode_2023February", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_159", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_159", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2023February", "nbIntervals": "318", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:35:49+00:00", "surveyStart": "2023-02-02T17:18:53", "surveyStop": "2023-02-28T05:59:53", "xmlid": "sharedtimeTable_159"}, "MMS_Burst_Mode_2023January": {"__spz_name__": "MMS_Burst_Mode_2023January", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_158", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_158", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2023January", "nbIntervals": "481", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:35:45+00:00", "surveyStart": "2023-01-02T01:59:53", "surveyStop": "2023-01-31T00:43:03", "xmlid": "sharedtimeTable_158"}, "MMS_Burst_Mode_2023July": {"__spz_name__": "MMS_Burst_Mode_2023July", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_164", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_164", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2023July", "nbIntervals": "97", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:36:09+00:00", "surveyStart": "2023-07-03T11:54:03", "surveyStop": "2023-07-31T14:50:53", "xmlid": "sharedtimeTable_164"}, "MMS_Burst_Mode_2023June": {"__spz_name__": "MMS_Burst_Mode_2023June", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_163", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_163", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2023June", "nbIntervals": "190", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:36:05+00:00", "surveyStart": "2023-06-02T04:27:43", "surveyStop": "2023-06-30T02:53:43", "xmlid": "sharedtimeTable_163"}, "MMS_Burst_Mode_2023March": {"__spz_name__": "MMS_Burst_Mode_2023March", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_160", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_160", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2023March", "nbIntervals": "361", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:35:53+00:00", "surveyStart": "2023-03-02T21:59:03", "surveyStop": "2023-03-31T19:07:33", "xmlid": "sharedtimeTable_160"}, "MMS_Burst_Mode_2023May": {"__spz_name__": "MMS_Burst_Mode_2023May", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_162", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_162", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2023May", "nbIntervals": "190", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:36:01+00:00", "surveyStart": "2023-05-01T16:24:53", "surveyStop": "2023-05-31T10:32:53", "xmlid": "sharedtimeTable_162"}, "MMS_Burst_Mode_2023November": {"__spz_name__": "MMS_Burst_Mode_2023November", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_168", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_168", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2023November", "nbIntervals": "385", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:36:24+00:00", "surveyStart": "2023-11-01T00:33:03", "surveyStop": "2023-11-30T23:44:03", "xmlid": "sharedtimeTable_168"}, "MMS_Burst_Mode_2023October": {"__spz_name__": "MMS_Burst_Mode_2023October", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_167", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_167", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2023October", "nbIntervals": "252", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:36:20+00:00", "surveyStart": "2023-10-02T18:48:23", "surveyStop": "2023-10-31T18:10:53", "xmlid": "sharedtimeTable_167"}, "MMS_Burst_Mode_2023September": {"__spz_name__": "MMS_Burst_Mode_2023September", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_166", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_166", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2023September", "nbIntervals": "148", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:36:16+00:00", "surveyStart": "2023-09-01T01:16:03", "surveyStop": "2023-09-29T16:12:03", "xmlid": "sharedtimeTable_166"}, "MMS_Burst_Mode_2024April": {"__spz_name__": "MMS_Burst_Mode_2024April", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_173", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_173", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2024April", "nbIntervals": "189", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:36:43+00:00", "surveyStart": "2024-04-02T17:45:43", "surveyStop": "2024-04-30T23:26:53", "xmlid": "sharedtimeTable_173"}, "MMS_Burst_Mode_2024August": {"__spz_name__": "MMS_Burst_Mode_2024August", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_184", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_184", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2024August", "nbIntervals": "588", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:36:58+00:00", "surveyStart": "2024-08-01T02:36:53", "surveyStop": "2024-08-31T17:02:33", "xmlid": "sharedtimeTable_184"}, "MMS_Burst_Mode_2024February": {"__spz_name__": "MMS_Burst_Mode_2024February", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_171", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_171", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2024February", "nbIntervals": "247", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:36:35+00:00", "surveyStart": "2023-12-18T08:29:03", "surveyStop": "2024-02-27T12:05:43", "xmlid": "sharedtimeTable_171"}, "MMS_Burst_Mode_2024January": {"__spz_name__": "MMS_Burst_Mode_2024January", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_170", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_170", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2024January", "nbIntervals": "273", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:36:31+00:00", "surveyStart": "2024-01-01T13:19:13", "surveyStop": "2024-01-30T17:12:23", "xmlid": "sharedtimeTable_170"}, "MMS_Burst_Mode_2024July": {"__spz_name__": "MMS_Burst_Mode_2024July", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_183", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_183", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2024July", "nbIntervals": "471", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:36:54+00:00", "surveyStart": "2024-07-01T05:08:33", "surveyStop": "2024-07-30T22:42:43", "xmlid": "sharedtimeTable_183"}, "MMS_Burst_Mode_2024June": {"__spz_name__": "MMS_Burst_Mode_2024June", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_182", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_182", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2024June", "nbIntervals": "217", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:36:51+00:00", "surveyStart": "2024-06-01T12:42:23", "surveyStop": "2024-06-30T17:58:33", "xmlid": "sharedtimeTable_182"}, "MMS_Burst_Mode_2024March": {"__spz_name__": "MMS_Burst_Mode_2024March", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_172", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_172", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2024March", "nbIntervals": "246", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:36:39+00:00", "surveyStart": "2024-03-01T23:07:43", "surveyStop": "2024-03-30T16:04:53", "xmlid": "sharedtimeTable_172"}, "MMS_Burst_Mode_2024May": {"__spz_name__": "MMS_Burst_Mode_2024May", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_181", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_181", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2024May", "nbIntervals": "246", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:36:47+00:00", "surveyStart": "2024-05-04T08:23:53", "surveyStop": "2024-05-29T02:55:53", "xmlid": "sharedtimeTable_181"}, "MMS_Burst_Mode_2024October": {"__spz_name__": "MMS_Burst_Mode_2024October", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_186", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_186", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2024October", "nbIntervals": "3", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:37:06+00:00", "surveyStart": "2024-10-02T05:27:23", "surveyStop": "2024-10-02T10:46:03", "xmlid": "sharedtimeTable_186"}, "MMS_Burst_Mode_2024September": {"__spz_name__": "MMS_Burst_Mode_2024September", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_185", "contact": "None", "created": "2020-08-26T00:00:55", "description": "Time intervals for which MMS burst mode data are available. source: http://mmsburst.sr.unh.edu/", "history": "", "id": "sharedtimeTable_185", "is_public": "True", "modified": "1970-01-01T00:00:00", "name": "MMS_Burst_Mode_2024September", "nbIntervals": "508", "nbParam": "0", "sharedBy": "AMDA", "sharedDate": "2024-10-06T20:37:02+00:00", "surveyStart": "2024-09-03T06:27:13", "surveyStop": "2024-09-22T06:02:33", "xmlid": "sharedtimeTable_185"}, "__spz_name__": "MMS_BURST_MODE", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "MMS_BURST_MODE_timeTable", "is_public": "True", "name": "MMS_BURST_MODE", "xmlid": "MMS_BURST_MODE_timeTable"}, "SATURN": {"Cassini_MP_crossings_timetable": {"__spz_name__": "Cassini_MP_crossings_timetable", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_48", "created": "2018-01-19T14:58:59", "description": "Name: Cassini_MP_crossings_timetable;\nHistoric: Extended by 5 min;\nCreation Date:2017-10-06T14:07:06;\n\nList of Saturn's magnetopause crossings by Cassini obtained in Pilkington, N. M., N. Achilleos, C. S. Arridge, P. Guio, A. Masters, L. C. Ray, N. Sergis, M. F. Thomsen, A. J. Coates, and M. K. Dougherty (2015), Internally driven large-scale changes in the size of Saturn's magnetosphere, J. Geophys. Res. Space Physics, 120, 7289\u20137306, doi:10.1002/2015JA021290.\nhttp://dx.doi.org/10.1002/2015JA021290\nCourtesy to A. Masters & N. Pilkington; \n Historic: ;\n Creation Date : 2017-11-02T14:33:11; \n ", "id": "sharedtimeTable_48", "is_public": "True", "name": "Cassini_MP_crossings_timetable", "nbIntervals": "1605", "nbParam": "0", "sharedBy": "bouchemit", "sharedDate": "2018-01-19T15:01:26+00:00", "surveyStart": "2004-06-28T18:37:00", "surveyStop": "2013-02-07T20:10:00", "xmlid": "sharedtimeTable_48"}, "HST_Proposal_11984": {"__spz_name__": "HST_Proposal_11984", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_46", "created": "2018-01-19T14:58:08", "description": "Observing Saturn's high latitude polar auroras -- HST Proposal 11984 Jonathan Nichols, University of Leicester http://archive.stsci.edu/proposal_search.php?id=11984&mission=hst; \n Historic: From old AMDA;\n Creation Date : 2013-11-22T13:52:50; \n ", "id": "sharedtimeTable_46", "is_public": "True", "name": "HST_Proposal_11984", "nbIntervals": "20", "nbParam": "0", "sharedBy": "bouchemit", "sharedDate": "2018-01-19T15:01:04+00:00", "surveyStart": "2009-02-17T04:20:43", "surveyStop": "2009-03-07T04:37:09", "xmlid": "sharedtimeTable_46"}, "List_of_Cassini_HST_observations": {"__spz_name__": "List_of_Cassini_HST_observations", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_42", "created": "2018-01-19T14:55:58", "description": "This table lists time periods which include HST auroral observations of Saturn (Proposal ID #11984, 11645, 11566, 10862, 10506, 10156, 10083). HST observations can be visualized with Aladin from http://archive.stsci.edu/hst/ ; \n Historic: From old AMDA;\n Creation Date : 2013-11-22T13:52:50; \n ", "id": "sharedtimeTable_42", "is_public": "True", "name": "List_of_Cassini_HST_observations", "nbIntervals": "18", "nbParam": "0", "sharedBy": "bouchemit", "sharedDate": "2018-01-19T15:00:21+00:00", "surveyStart": "2004-01-08T00:00:00", "surveyStop": "2009-03-07T23:59:59", "xmlid": "sharedtimeTable_42"}, "List_of_Cassini_Titan_flybys": {"__spz_name__": "List_of_Cassini_Titan_flybys", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_44", "created": "2018-01-19T14:56:57", "description": "Titan's flyby T0A to T82\n; \n Historic: ;\n Creation Date : 2016-09-06T12:51:24; \n ", "id": "sharedtimeTable_44", "is_public": "True", "name": "List_of_Cassini_Titan_flybys", "nbIntervals": "83", "nbParam": "0", "sharedBy": "bouchemit", "sharedDate": "2018-01-19T15:00:44+00:00", "surveyStart": "2004-10-26T14:00:00", "surveyStop": "2012-02-19T10:13:00", "xmlid": "sharedtimeTable_44"}, "List_of_Cassini_narrowband_radio_events": {"__spz_name__": "List_of_Cassini_narrowband_radio_events", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_40", "created": "2018-01-19T14:54:39", "description": "After Ye, Sheng-Yi et al. (2009), Source locations of narrowband radio emissions detected at Saturn, Journal of Geophysical REsearch, 114, A06219, doi:10.1029/2008JA013855; \n Historic: From old AMDA;\n Creation Date : 2013-11-22T13:52:50; \n ", "id": "sharedtimeTable_40", "is_public": "True", "name": "List_of_Cassini_narrowband_radio_events", "nbIntervals": "30", "nbParam": "0", "sharedBy": "bouchemit", "sharedDate": "2018-01-19T14:59:38+00:00", "surveyStart": "2005-09-25T00:00:00", "surveyStop": "2007-05-26T23:59:59", "xmlid": "sharedtimeTable_40"}, "List_of_Cassini_reconnection_events": {"__spz_name__": "List_of_Cassini_reconnection_events", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_43", "created": "2018-01-19T14:56:20", "description": "Table from Jackman, C. M. et al. (2009), On the character and distribution of lower-frequency radio emissions at Saturn and their relationship to substorm-like events, Journal of Geophysical Research, 114, A08211, doi:10.1029/2008JA013997 Reconnection extended by 10 min; \n Historic: From old AMDA;\n Creation Date : 2013-11-22T13:52:50; \n ", "id": "sharedtimeTable_43", "is_public": "True", "name": "List_of_Cassini_reconnection_events", "nbIntervals": "9", "nbParam": "0", "sharedBy": "bouchemit", "sharedDate": "2018-01-19T15:00:32+00:00", "surveyStart": "2004-07-02T01:50:00", "surveyStop": "2006-09-06T15:40:01", "xmlid": "sharedtimeTable_43"}, "List_of_Cassini_reconnection_events_extended": {"__spz_name__": "List_of_Cassini_reconnection_events_extended", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_45", "created": "2018-01-19T14:57:37", "description": "Table from Jackman, C. M. et al. (2009), On the character and distribution of lower-frequency radio emissions at Saturn and their relationship to substorm-like events, Journal of Geophysical Research, 114, A08211, doi:10.1029/2008JA013997 Reconnection extended by 10 min One additional event from Russell et al. (2008) Titan's influence on Saturnian substorm occurence, Geophysical Research Letters, 35, L12105, doi:10.1029/2008GL034080 List_of_Cassini_reconnection_events_extended extended by 600 min; \n Historic: From old AMDA;\n Creation Date : 2013-11-22T13:52:50; \n ", "id": "sharedtimeTable_45", "is_public": "True", "name": "List_of_Cassini_reconnection_events_extended", "nbIntervals": "10", "nbParam": "0", "sharedBy": "bouchemit", "sharedDate": "2018-01-19T15:00:55+00:00", "surveyStart": "2004-07-01T15:50:00", "surveyStop": "2006-09-07T01:40:01", "xmlid": "sharedtimeTable_45"}, "List_of_Enceladus_flybys_2004_2010": {"__spz_name__": "List_of_Enceladus_flybys_2004_2010", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_47", "created": "2018-01-19T14:58:34", "description": "Includes targetted and untargetted flybys; done by Nicolas Andre ; \n Historic: From old AMDA;\n Creation Date : 2013-11-22T13:52:50; \n ", "id": "sharedtimeTable_47", "is_public": "True", "name": "List_of_Enceladus_flybys_2004_2010", "nbIntervals": "15", "nbParam": "0", "sharedBy": "bouchemit", "sharedDate": "2018-01-19T15:01:15+00:00", "surveyStart": "2005-02-17T03:10:50", "surveyStop": "2010-12-21T01:27:10", "xmlid": "sharedtimeTable_47"}, "List_of_Titan_around_midnight_LT": {"__spz_name__": "List_of_Titan_around_midnight_LT", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_41", "created": "2018-01-19T14:55:21", "description": "From http://www-pw.physics.uiowa.edu/~jbg/cas.html Titan between ~2300 and ~0100 Local Time; \n Historic: From old AMDA;\n Creation Date : 2013-11-22T13:52:50; \n ", "id": "sharedtimeTable_41", "is_public": "True", "name": "List_of_Titan_around_midnight_LT", "nbIntervals": "92", "nbParam": "0", "sharedBy": "bouchemit", "sharedDate": "2018-01-19T15:00:09+00:00", "surveyStart": "2004-06-29T00:00:00", "surveyStop": "2008-06-23T00:00:00", "xmlid": "sharedtimeTable_41"}, "__spz_name__": "SATURN", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "SATURN_timeTable", "is_public": "True", "name": "SATURN", "xmlid": "SATURN_timeTable"}, "SOLAR_WIND": {"CIR_Borovsky_Denton": {"__spz_name__": "CIR_Borovsky_Denton", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_27", "created": "2018-01-19T14:36:34", "description": "CIR list from Borovsky and Denton, JGR, 2010, http://dx.doi.org/10.1029/2009JA014966 The CIR events are picked with three criteria: (1) that they have a clear, dominant shear zone as seen in the local-Parker-spiral coordinate system, (2) that they do not contain interplanetary shocks, and (3) that they are followed by long (3 days or more) intervals of high-speed (600 km/s or more) wind.; \n Historic: From old AMDA;\n Creation Date : 2013-11-22T13:52:50; \n ", "id": "sharedtimeTable_27", "is_public": "True", "name": "CIR_Borovsky_Denton", "nbIntervals": "27", "nbParam": "0", "sharedBy": "bouchemit", "sharedDate": "2018-01-19T14:36:48+00:00", "surveyStart": "2003-05-05T10:30:00", "surveyStop": "2008-11-25T04:30:01", "xmlid": "sharedtimeTable_27"}, "CIR_SAMPEX": {"__spz_name__": "CIR_SAMPEX", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_23", "created": "2018-01-19T10:50:55", "description": "Corotating Interaction Regions from Mazur et al., APJ, 566, 2002, Charge States of Energetic Particles from Corotating Interaction Regions as Constraints on Their Source http://iopscience.iop.org/0004-637X/566/1/555/pdf/0004-637X_566_1_555.pdf ; \n Historic: From old AMDA;\n Creation Date : 2013-11-22T13:52:50; \n ", "id": "sharedtimeTable_23", "is_public": "True", "name": "CIR_SAMPEX", "nbIntervals": "14", "nbParam": "0", "sharedBy": "bouchemit", "sharedDate": "2018-01-19T10:51:12+00:00", "surveyStart": "1992-12-08T00:00:00", "surveyStop": "1995-06-02T00:00:00", "xmlid": "sharedtimeTable_23"}, "Cartwright_Moldwin_flux_ropes_1AU": {"__spz_name__": "Cartwright_Moldwin_flux_ropes_1AU", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_34", "created": "2018-01-19T14:47:04", "description": "List of Small-Scale Solar Wind Flux Ropes From \"Heliospheric evolution of solar wind small-scale magnetic flux ropes\", Cartwright and Moldwin, JGR, 2010 The list is here restricted to events at 1 AU from IMP 8, Wind, and ACE. The small-scale flux rope selection was done in three parts: (1) a visual survey of the solar wind magnetic field data sets, (2) a removal of compressive Alfven waves, and (3) a model validation of the events. http://dx.doi.org/10.1029/2009JA014271; \n Historic: From old AMDA;\n Creation Date : 2013-11-22T13:52:50; \n ", "id": "sharedtimeTable_34", "is_public": "True", "name": "Cartwright_Moldwin_flux_ropes_1AU", "nbIntervals": "164", "nbParam": "0", "sharedBy": "bouchemit", "sharedDate": "2018-01-19T14:47:14+00:00", "surveyStart": "1975-05-29T15:10:00", "surveyStop": "2007-11-30T14:14:00", "xmlid": "sharedtimeTable_34"}, "Jian_CIR_list": {"__spz_name__": "Jian_CIR_list", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_31", "created": "2018-01-19T14:41:13", "description": "Corotating Interaction Regions (CIR) from Wind and ACE Data during 1995-2009 Compiled by Dr. Lan Jian at UCLA/IGPP. Latest Update on 21 April 2011 http://www-ssc.igpp.ucla.edu/~jlan/ACE/Level3/SIR_List_from_Lan_Jian.pdf The SIR include corotating interaction regions (CIR) and transient stream interaction regions. The difference between a CIR and a transient SIR is only that a CIR recurs for two or more solar rotation cycles. Five of the following criteria are used for SIR identification: 1) overall increase of solar wind speed, 2) pile-up of total pressure with gradual declines at two sides, 3) enhancement of magnetic field, 4) first increase and then drop of proton number density, 5) increase of proton temperature, 6) change of entropy, 7) solar wind velocity deflection.; \n Historic: From old AMDA;\n Creation Date : 2013-11-22T13:52:50; \n ", "id": "sharedtimeTable_31", "is_public": "True", "name": "Jian_CIR_list", "nbIntervals": "416", "nbParam": "0", "sharedBy": "bouchemit", "sharedDate": "2018-01-19T14:41:24+00:00", "surveyStart": "1995-01-01T19:37:00", "surveyStop": "2009-12-26T10:00:00", "xmlid": "sharedtimeTable_31"}, "Jian_ICME_list": {"__spz_name__": "Jian_ICME_list", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_33", "created": "2018-01-19T14:46:20", "description": "Interplanetary Coronal Mass Ejections (ICMEs) from Wind and ACE Data during 1995 - 2009 Compiled by Dr. Lan Jian at UCLA/IGPP. Latest Update on 25 October 2010 http://www-ssc.igpp.ucla.edu/~jlan/ACE/Level3/ICME_List_from_Lan_Jian.pdf ICMEs are identified requiring at least three of the following criteria: field enhancement, smooth field rotations over a relatively large scale, quieter field than background, low proton temperature, high alpha particle abundance, low beta, declining solar wind speed, bi-directional suprathermal electron flux, etc.; \n Historic: From old AMDA;\n Creation Date : 2013-11-22T13:52:50; \n ", "id": "sharedtimeTable_33", "is_public": "True", "name": "Jian_ICME_list", "nbIntervals": "290", "nbParam": "0", "sharedBy": "bouchemit", "sharedDate": "2018-01-19T14:46:30+00:00", "surveyStart": "1995-02-08T03:10:00", "surveyStop": "2009-12-13T22:39:00", "xmlid": "sharedtimeTable_33"}, "Jian_SIR_list": {"__spz_name__": "Jian_SIR_list", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_30", "created": "2018-01-19T14:40:27", "description": "Stream Interaction Regions (SIR) from Wind and ACE Data during 1995-2009 Compiled by Dr. Lan Jian at UCLA/IGPP. Latest Update on 21 April 2011 http://www-ssc.igpp.ucla.edu/~jlan/ACE/Level3/SIR_List_from_Lan_Jian.pdf The SIR include corotating interaction regions (CIR) and transient stream interaction regions. The difference between a CIR and a transient SIR is only that a CIR recurs for two or more solar rotation cycles. Five of the following criteria are used for SIR identification: 1) overall increase of solar wind speed, 2) pile-up of total pressure with gradual declines at two sides, 3) enhancement of magnetic field, 4) first increase and then drop of proton number density, 5) increase of proton temperature, 6) change of entropy, 7) solar wind velocity deflection.; \n Historic: From old AMDA;\n Creation Date : 2013-11-22T13:52:50; \n ", "id": "sharedtimeTable_30", "is_public": "True", "name": "Jian_SIR_list", "nbIntervals": "577", "nbParam": "0", "sharedBy": "bouchemit", "sharedDate": "2018-01-19T14:40:35+00:00", "surveyStart": "1995-01-01T19:37:00", "surveyStop": "2009-12-26T10:00:00", "xmlid": "sharedtimeTable_30"}, "Jian_Stream_Interface_list": {"__spz_name__": "Jian_Stream_Interface_list", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_32", "created": "2018-01-19T14:41:50", "description": "Stream Interface (time of the discontinuity) from Wind and ACE Data during 1995-2009 Compiled by Dr. Lan Jian at UCLA/IGPP. Latest Update on 21 April 2011 http://www-ssc.igpp.ucla.edu/~jlan/ACE/Level3/SIR_List_from_Lan_Jian.pdf The SIR include corotating interaction regions (CIR) and transient stream interaction regions. The difference between a CIR and a transient SIR is only that a CIR recurs for two or more solar rotation cycles. Stream interface is the boundary between slow and fast streams. If the boundary is sharp and clear, we can see the drop of proton density and the increase of proton temperature simultaneously. However, only about 20% of SIRs have such sharp separation. To identify stream interface uniformly for all the SIRs, the interface is defined at the peak of total pressure. The Start Time corresponds to the observed discontinuity. Stop Time = Start Time + 1 sec Note that the discontinuity of the SIR 1995-11-27/1995-11-29 cannot be determined because of a data gap.; \n Historic: From old AMDA;\n Creation Date : 2013-11-22T13:52:50; \n ", "id": "sharedtimeTable_32", "is_public": "True", "name": "Jian_Stream_Interface_list", "nbIntervals": "576", "nbParam": "0", "sharedBy": "bouchemit", "sharedDate": "2018-01-19T14:42:00+00:00", "surveyStart": "1995-01-02T05:56:00", "surveyStop": "2009-12-25T17:48:01", "xmlid": "sharedtimeTable_32"}, "Magnetic_Clouds": {"__spz_name__": "Magnetic_Clouds", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_22", "created": "2018-01-19T10:38:55", "description": "Magnetic Clouds from WIND/MFI 1995-2007 -- Estimated start and end times from a magnetic field model [Lepping et al., 1990] which assumes that the field within the magnetic cloud is force free, i.e., so that the electrical current and the magnetic field are parallel and proportional in strength everywhere within its volume -- see http://lepmfi.gsfc.nasa.gov/mfi/mag_cloud_pub1.html ; \n Historic: From old AMDA;\n Creation Date : 2013-11-22T13:52:50; \n ", "id": "sharedtimeTable_22", "is_public": "True", "name": "Magnetic_Clouds", "nbIntervals": "106", "nbParam": "0", "sharedBy": "bouchemit", "sharedDate": "2018-01-19T10:39:38+00:00", "surveyStart": "1995-02-08T05:48:00", "surveyStop": "2007-11-20T12:54:00", "xmlid": "sharedtimeTable_22"}, "Richardson_Cane_ICME_list": {"__spz_name__": "Richardson_Cane_ICME_list", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_28", "created": "2018-01-19T14:39:02", "description": "Near-Earth Interplanetary Coronal Mass Ejections Since January 1996 - Updated 2011-04-11 See Richardson and Cane, Solar Physics, 2010 : http://dx.doi.org/10.1007/s11207-010-9568-6; \n Historic: From old AMDA;\n Creation Date : 2013-11-22T13:52:50; \n ", "id": "sharedtimeTable_28", "is_public": "True", "name": "Richardson_Cane_ICME_list", "nbIntervals": "341", "nbParam": "0", "sharedBy": "bouchemit", "sharedDate": "2018-01-19T14:39:14+00:00", "surveyStart": "1996-05-27T15:00:00", "surveyStop": "2011-03-31T04:00:00", "xmlid": "sharedtimeTable_28"}, "SERPENTINE_shock_STA_cycle25": {"__spz_name__": "SERPENTINE_shock_STA_cycle25", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_175", "contact": "plotnikov", "created": "2024-04-22T03:45:59.000000", "description": "In-situ shock crossings at STEREO-A catalogued in WP4 of SERPENTINE H2020 project (responsible: D. Trotta)", "id": "sharedtimeTable_175", "is_public": "True", "name": "SERPENTINE_shock_STA_cycle25", "nbIntervals": "33", "nbParam": "0", "sharedBy": "plotnikov", "sharedDate": "2024-04-23T11:54:07+00:00", "surveyStart": "2020-12-01T07:28:00.000", "surveyStop": "2023-05-19T16:28:00.000", "xmlid": "sharedtimeTable_175"}, "__spz_name__": "SOLAR_WIND", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "SOLAR_WIND_timeTable", "ace_v_600": {"__spz_name__": "ace_v_600", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_24", "created": "2018-01-19T10:51:57", "description": "ACE 1998-2009 ; sw(1)>600; sw(1): ACE SWEPAM swe_final v_bulk Units: km/s;; \n Historic: From old AMDA;\n Creation Date : 2013-11-22T13:52:50; \n ", "id": "sharedtimeTable_24", "is_public": "True", "name": "ace_v_600", "nbIntervals": "975", "nbParam": "0", "sharedBy": "bouchemit", "sharedDate": "2018-01-19T10:52:13+00:00", "surveyStart": "1998-05-02T04:20:10", "surveyStop": "2009-02-28T07:09:40", "xmlid": "sharedtimeTable_24"}, "interplanetary_shocks_Wind1995": {"__spz_name__": "interplanetary_shocks_Wind1995", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_29", "created": "2018-01-19T14:39:51", "description": "List of interplanetary shocks observed by the Wind spacecraft in 1995 and compiled by J. Kasper (jkasper@cfa.harvard.edu) \t ; \n Historic: From old AMDA;\n Creation Date : 2013-11-22T13:52:50; \n ", "id": "sharedtimeTable_29", "is_public": "True", "name": "interplanetary_shocks_Wind1995", "nbIntervals": "21", "nbParam": "0", "sharedBy": "bouchemit", "sharedDate": "2018-01-19T14:40:02+00:00", "surveyStart": "1995-01-01T19:36:00", "surveyStop": "1995-12-24T05:57:01", "xmlid": "sharedtimeTable_29"}, "is_public": "True", "name": "SOLAR_WIND", "reconnection_exhaust_Gosling": {"__spz_name__": "reconnection_exhaust_Gosling", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_26", "created": "2018-01-19T14:32:32", "description": "ACE Magnetic Reconnection Exhaust List 31 December 2009 J. T. Gosling Acknowledgment: Tai Phan assisted in the identification of some of these events. Start times should be good to within better than 5 minutes. There probably are additional, as yet unidentified, events in the data, particularly after January 2006. Events were identified using the unedited SWEPAM data set available at Los Alamos. Some of these events are not obvious in the level 2 SWEPAM data because of the editing process used in producing the level 2 data set.; \n Historic: From old AMDA;\n Creation Date : 2013-11-22T13:52:50; \n ", "id": "sharedtimeTable_26", "is_public": "True", "name": "reconnection_exhaust_Gosling", "nbIntervals": "148", "nbParam": "0", "sharedBy": "bouchemit", "sharedDate": "2018-01-19T14:35:22+00:00", "surveyStart": "1997-11-04T01:09:00", "surveyStop": "2007-03-11T05:23:01", "xmlid": "sharedtimeTable_26"}, "shocksSTA_AMDA": {"__spz_name__": "shocksSTA_AMDA", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_35", "created": "2018-01-19T14:47:41", "description": "10 minute intervals centered on IP shocks from STEREO between 2007-december 2011.; \n Historic: From old AMDA;\n Creation Date : 2013-11-22T13:52:50; \n ", "id": "sharedtimeTable_35", "is_public": "True", "name": "shocksSTA_AMDA", "nbIntervals": "121", "nbParam": "0", "sharedBy": "bouchemit", "sharedDate": "2018-01-19T14:47:52+00:00", "surveyStart": "2007-01-14T19:30:08", "surveyStop": "2011-12-28T20:52:09", "xmlid": "sharedtimeTable_35"}, "shocksSTB_AMDA": {"__spz_name__": "shocksSTB_AMDA", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_36", "created": "2018-01-19T14:48:15", "description": "10 minute intervals centered on IP shocks from STEREO between 2007-december 2011.; \n Historic: From old AMDA;\n Creation Date : 2013-11-22T13:52:50; \n ", "id": "sharedtimeTable_36", "is_public": "True", "name": "shocksSTB_AMDA", "nbIntervals": "115", "nbParam": "0", "sharedBy": "bouchemit", "sharedDate": "2018-01-19T14:48:24+00:00", "surveyStart": "2007-01-14T19:56:27", "surveyStop": "2011-12-26T23:55:46", "xmlid": "sharedtimeTable_36"}, "xmlid": "SOLAR_WIND_timeTable"}, "SUN": {"Solar_Proton_Events": {"__spz_name__": "Solar_Proton_Events", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_18", "created": "2018-01-18T16:53:48", "description": "Solar Proton Events list from SWPC - see http://www.swpc.noaa.gov/ftpdir/indices/SPE.txt ; Particle events ; Time span = January 1976 - December 2008 ; Start time= Start time, Stop time = Maximum time; \n Historic: From old AMDA;\n Creation Date : 2013-11-22T13:52:49; \n ", "id": "sharedtimeTable_18", "is_public": "True", "name": "Solar_Proton_Events", "nbIntervals": "221", "nbParam": "0", "sharedBy": "bouchemit", "sharedDate": "2018-01-18T16:54:39+00:00", "surveyStart": "1970-01-01T00:00:00", "surveyStop": "2006-12-13T09:25:00", "xmlid": "sharedtimeTable_18"}, "__spz_name__": "SUN", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "SUN_timeTable", "carrington_rotation": {"__spz_name__": "carrington_rotation", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_21", "created": "2018-01-18T16:55:25", "description": "Carrington rotation dates (rotations 1 to 2171) -- rounded to the closest second; \n Historic: From old AMDA;\n Creation Date : 2013-11-22T13:52:50; \n ", "id": "sharedtimeTable_21", "is_public": "True", "name": "carrington_rotation", "nbIntervals": "2170", "nbParam": "0", "sharedBy": "bouchemit", "sharedDate": "2018-01-18T17:07:29+00:00", "surveyStart": "1970-01-21T06:59:02", "surveyStop": "2106-01-31T05:23:54", "xmlid": "sharedtimeTable_21"}, "is_public": "True", "name": "SUN", "sep_SERPENTINE_Bepi_cycle25": {"__spz_name__": "sep_SERPENTINE_Bepi_cycle25", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_179", "contact": "plotnikov", "created": "2024-04-22T05:28:37.000000", "description": "SEP events (flare time, protons 25MeV peak time) at Bepi Colombo catalogued for solar cylce 25 as part of SERPENTINE H2020 project, WP2 (resp. Nina Dresing)", "id": "sharedtimeTable_179", "is_public": "True", "name": "sep_SERPENTINE_Bepi_cycle25", "nbIntervals": "11", "nbParam": "0", "sharedBy": "plotnikov", "sharedDate": "2024-04-23T11:58:36+00:00", "surveyStart": "2021-04-17T16:03:00.000", "surveyStop": "2023-05-16T19:15:15.000", "xmlid": "sharedtimeTable_179"}, "sep_SERPENTINE_L1_cycle25": {"__spz_name__": "sep_SERPENTINE_L1_cycle25", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_180", "contact": "plotnikov", "created": "2024-04-22T05:29:04.000000", "description": "SEP events (flare time, protons 25MeV peak time) at L1 catalogued for solar cylce 25 as part of SERPENTINE H2020 project, WP2 (resp. Nina Dresing)", "id": "sharedtimeTable_180", "is_public": "True", "name": "sep_SERPENTINE_L1_cycle25", "nbIntervals": "44", "nbParam": "0", "sharedBy": "plotnikov", "sharedDate": "2024-04-23T11:58:51+00:00", "surveyStart": "2020-11-29T12:34:00.000", "surveyStop": "2023-05-17T00:06:06.000", "xmlid": "sharedtimeTable_180"}, "sep_SERPENTINE_SOLO_cycle25": {"__spz_name__": "sep_SERPENTINE_SOLO_cycle25", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_178", "contact": "plotnikov", "created": "2024-04-22T05:24:37.000000", "description": "SEP events (flare time, protons 25MeV peak time) at Solar Orbiter catalogued for solar cylce 25 as part of SERPENTINE H2020 project, WP2 (resp. Nina Dresing)", "id": "sharedtimeTable_178", "is_public": "True", "name": "sep_SERPENTINE_SOLO_cycle25", "nbIntervals": "25", "nbParam": "0", "sharedBy": "plotnikov", "sharedDate": "2024-04-23T11:58:21+00:00", "surveyStart": "2020-11-29T12:34:00.000", "surveyStop": "2023-05-16T20:10:10.000", "xmlid": "sharedtimeTable_178"}, "sep_SERPENTINE_STA_cycle25": {"__spz_name__": "sep_SERPENTINE_STA_cycle25", "__spz_provider__": "amda", "__spz_type__": "TimetableIndex", "__spz_uid__": "sharedtimeTable_177", "contact": "plotnikov", "created": "2024-04-22T05:24:05.000000", "description": "SEP events (flare time, protons 25MeV peak time) at STA catalogued for solar cylce 25 as part of SERPENTINE H2020 project, WP2 (resp. Nina Dresing)", "id": "sharedtimeTable_177", "is_public": "True", "name": "sep_SERPENTINE_STA_cycle25", "nbIntervals": "35", "nbParam": "0", "sharedBy": "plotnikov", "sharedDate": "2024-04-23T11:58:05+00:00", "surveyStart": "2020-11-29T12:34:00.000", "surveyStop": "2023-05-17T04:20:20.000", "xmlid": "sharedtimeTable_177"}, "xmlid": "SUN_timeTable"}, "VENUS": {"__spz_name__": "VENUS", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "VENUS_timeTable", "is_public": "True", "name": "VENUS", "xmlid": "VENUS_timeTable"}, "__spz_name__": "SharedTimeTables", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "SharedTimeTables", "is_public": "True", "lastObjectId": "sharedtimeTable_186", "xmlid": "sharedtimeTable-treeRootNode"}, "__spz_name__": "TimeTables", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "TimeTables"}, "__spz_name__": "amda", "__spz_provider__": "amda", "__spz_type__": "SpeasyIndex", "__spz_uid__": "amda", "build_date": "2024-10-07T08:13:03.229860"} \ No newline at end of file diff --git a/tests/manual-tests/QCP_Examples/plots/main.py b/tests/manual-tests/QCP_Examples/plots/main.py deleted file mode 100644 index 21b40dc..0000000 --- a/tests/manual-tests/QCP_Examples/plots/main.py +++ /dev/null @@ -1,122 +0,0 @@ -from SciQLopPlots import QCustomPlot, QCP, QCPColorMap, QCPRange, QCPColorScale, QCPAxis, QCPColorGradient, QCPMarginGroup -from PySide6.QtWidgets import QMainWindow, QApplication -from PySide6.QtGui import QPen, QColorConstants, QColor, QBrush -import sys -import math -import numpy as np -from types import SimpleNamespace - -def setupQuadraticDemo(plot): - # generate some data: - x = np.arange(101)/50. -1 - y = x**2 - # create graph and assign data to it: - graph = plot.addGraph() - graph.setData(x, y) - # give the axes some labels: - plot.xAxis.setLabel("x") - plot.yAxis.setLabel("y") - # set axes ranges, so we see all data: - plot.xAxis.setRange(-1, 1) - plot.yAxis.setRange(0, 1) - return "Quadratic Demo" - -def setupSimpleDemo(plot): - # add two new graphs and set their look: - graph0 = plot.addGraph() - graph0.setPen(QPen(QColorConstants.Blue)) - graph0.setBrush(QBrush(QColor(0, 0, 255, 20))) - graph1 = plot.addGraph() - graph1.setPen(QPen(QColorConstants.Red)) - # generate some points of data (y0 for first, y1 for second graph): - x = np.arange(251)*1. - y0 = np.exp(-x/150.)*np.cos(x/10.) # exponentially decaying cosine - y1 = np.exp(-x/150.) # exponential envelope - # configure right and top axis to show ticks but no labels: - # (see QCPAxisRect::setupFullAxesBox for a quicker method to do this) - plot.xAxis2.setVisible(True) - plot.xAxis2.setTickLabels(False) - plot.yAxis2.setVisible(True) - plot.yAxis2.setTickLabels(False) - # make left and bottom axes always transfer their ranges to right and top axes: - plot.xAxis.rangeChanged.connect(plot.xAxis2.setRange) - plot.yAxis.rangeChanged.connect(plot.yAxis2.setRange) - # pass data points to graphs: - graph0.setData(x, y0) - graph1.setData(x, y1) - # let the ranges scale themselves so graph 0 fits perfectly in the visible area: - graph0.rescaleAxes() - # same thing for graph 1, but only enlarge ranges (in case graph 1 is smaller than graph 0): - graph1.rescaleAxes(True) - # Note: we could have also just called plot.rescaleAxes(); instead - # Allow user to drag axis ranges with mouse, zoom with mouse wheel and select graphs by clicking: - plot.setInteractions(QCP.iRangeDrag | QCP.iRangeZoom | QCP.iSelectPlottables) - return "Simple Demo" - -def setupColorMapDemo(plot): - - # configure axis rect: - plot.setInteractions(QCP.iRangeDrag|QCP.iRangeZoom) # this will also allow rescaling the color scale by dragging/zooming - plot.axisRect().setupFullAxesBox(True); - plot.xAxis.setLabel("x"); - plot.yAxis.setLabel("y"); - - # set up the QCPColorMap: - colorMap = plot.addColorMap(plot.xAxis, plot.yAxis) - nx = 200 - ny = 200 - colorMap.data().setSize(nx, ny) # we want the color map to have nx * ny data points - colorMap.data().setRange(QCPRange(-4, 4), QCPRange(-4, 4)); # and span the coordinate range -4..4 in both key (x) and value (y) dimensions - # now we assign some data, by accessing the QCPColorMapData instance of the color map: - for xIndex in range(nx): - for yIndex in range(ny): - x, y = colorMap.data().cellToCoord(xIndex, yIndex) - r = 3*math.sqrt(x**2+y**2)+1e-2 - z = 2*x*(math.cos(r+2)/r-math.sin(r+2)/r) # the B field strength of dipole radiation (modulo physical constants) - colorMap.data().setCell(xIndex, yIndex, z) - - # add a color scale: - plot.colorScale = QCPColorScale(plot) - plot.plotLayout().addElement(0, 1, plot.colorScale); # add it to the right of the main axis rect - plot.colorScale.setType(QCPAxis.atRight) # scale shall be vertical bar with tick/axis labels right (actually atRight is already the default) - colorMap.setColorScale(plot.colorScale) # associate the color map with the color scale - plot.colorScale.axis().setLabel("Magnetic Field Strength"); - - # set the color gradient of the color map to one of the presets: - colorMap.setGradient(QCPColorGradient.GradientPreset.gpPolar) - # we could have also created a QCPColorGradient instance and added own colors to - # the gradient, see the documentation of QCPColorGradient for what's possible. - - # rescale the data dimension (color) such that all data points lie in the span visualized by the color gradient: - colorMap.rescaleDataRange(); - - # make sure the axis rect and color scale synchronize their bottom and top margins (so they line up): - plot.marginGroup = QCPMarginGroup(plot) - plot.axisRect().setMarginGroup(QCP.msBottom|QCP.msTop, plot.marginGroup) - plot.colorScale.setMarginGroup(QCP.msBottom|QCP.msTop, plot.marginGroup) - - # rescale the key (x) and value (y) axes so the whole color map is visible: - plot.rescaleAxes() - return "Color Map Demo" - -class MainWindow(QMainWindow): - def __init__(self): - QMainWindow.__init__(self) - self._setup_ui() - self.setGeometry(400, 250, 542, 390) - self.setupDemo() - - def _setup_ui(self): - self.setCentralWidget(QCustomPlot(self)) - - def setupDemo(self,demoIndex=0): - self.centralWidget().replot() - setupColorMapDemo(self.centralWidget()) - - - -if __name__ == '__main__': - app = QApplication(sys.argv) - w = MainWindow() - w.show() - app.exec() diff --git a/tests/manual-tests/SciQLopColorMap/main.py b/tests/manual-tests/SciQLopColorMap/main.py index 6b5cec3..5652dd2 100644 --- a/tests/manual-tests/SciQLopColorMap/main.py +++ b/tests/manual-tests/SciQLopColorMap/main.py @@ -1,62 +1,63 @@ -from SciQLopPlots import QCustomPlot, QCP, QCPColorMap, QCPRange, QCPColorScale, QCPAxis, QCPColorGradient, QCPMarginGroup +from SciQLopPlots import SciQLopPlot, SciQLopMultiPlotPanel from PySide6.QtWidgets import QMainWindow, QApplication -from PySide6.QtGui import QPen, QColorConstants, QColor, QBrush +from PySide6.QtCore import Qt import sys +import os import math import numpy as np from types import SimpleNamespace +os.environ['QT_API'] = 'PySide6' -class MainWindow(QMainWindow): - def __init__(self): - QMainWindow.__init__(self) - self._setup_ui() - self.setGeometry(400, 250, 542, 390); +sys.path.append(os.path.join(os.path.dirname(__file__), "..")) +from common import MainWindow - def _setup_ui(self): - plot: QCustomPlot = QCustomPlot(self) - plot.setInteractions(QCP.iRangeDrag|QCP.iRangeZoom|QCP.iSelectPlottables) - self.setCentralWidget(plot) - self.graph = plot.addSciQLopColorMap(plot.xAxis, plot.yAxis, 'MyColorMap') - nx = 2000 - ny = 2000 - data = np.empty((nx,ny)) - x_vect= (np.arange(nx)*8./nx -4.).reshape((-1,1)) - y_vect= (np.arange(ny)*8./ny -4.).reshape((-1,1)) +def make_uniform_colormap(nx, ny): - data[:,:] = np.cos(np.sqrt((x_vect+2)**2 @ y_vect.T**2)) - self.graph.setData(x_vect, y_vect, data) + z = np.empty((nx,ny)) + x_vect= np.arange(nx)*8./nx -4. + y_vect= np.arange(ny)*8./ny -4. - plot.legend.setVisible(True) + z[:,:] = np.cos(np.sqrt((x_vect.reshape(-1,1)+2)**2 @ y_vect.reshape(-1,1).T**2)) + return x_vect, y_vect, z - plot.colorScale = QCPColorScale(plot) - plot.plotLayout().addElement(0, 1, plot.colorScale); # add it to the right of the main axis rect - plot.colorScale.setType(QCPAxis.atRight) # scale shall be vertical bar with tick/axis labels right (actually atRight is already the default) - self.graph.colorMap().setColorScale(plot.colorScale) # associate the color map with the color scale - plot.colorScale.axis().setLabel("Magnetic Field Strength"); +class UniformColormap(SciQLopMultiPlotPanel): + def __init__(self,parent): + SciQLopMultiPlotPanel.__init__(self,parent, synchronize_x=False, synchronize_time=True) + self.plot(*make_uniform_colormap(200, 200)) - # set the color gradient of the color map to one of the presets: - self.graph.colorMap().setGradient(QCPColorGradient.GradientPreset.gpPolar) - # we could have also created a QCPColorGradient instance and added own colors to - # the gradient, see the documentation of QCPColorGradient for what's possible. - # rescale the data dimension (color) such that all data points lie in the span visualized by the color gradient: - self.graph.colorMap().rescaleDataRange(); +class UniformColormap2DY(SciQLopMultiPlotPanel): + def __init__(self,parent): + SciQLopMultiPlotPanel.__init__(self,parent, synchronize_x=False, synchronize_time=True) + x, y, z = make_uniform_colormap(300, 200) + y = np.array(np.repeat(y, 300).reshape(200, 300).T) + self.plot(x, y, z) - # make sure the axis rect and color scale synchronize their bottom and top margins (so they line up): - plot.marginGroup = QCPMarginGroup(plot) - plot.axisRect().setMarginGroup(QCP.msBottom|QCP.msTop, plot.marginGroup) - plot.colorScale.setMarginGroup(QCP.msBottom|QCP.msTop, plot.marginGroup) - # rescale the key (x) and value (y) axes so the whole color map is visible: - plot.rescaleAxes() - - plot.setOpenGl(True) +class ColormapWithNonUniformXAxis(SciQLopMultiPlotPanel): + def __init__(self,parent): + SciQLopMultiPlotPanel.__init__(self, parent, synchronize_x=False, synchronize_time=True) + _x, y, _z = make_uniform_colormap(2010, 200) + x = np.linspace(-4, 4, 210) + z = np.empty((210, 200)) + x[:100] = _x[:1000:10] + x[100:110] = _x[1000:1010] + x[110:] = _x[1010::10] + z[:100, :] = _z[:1000:10, :] + z[100:110, :] = _z[1000:1010, :] + z[110:, :] = _z[1010::10, :] + self.plot(x, y, z) if __name__ == '__main__': + QApplication.setAttribute(Qt.AA_UseDesktopOpenGL, True) + QApplication.setAttribute(Qt.AA_ShareOpenGLContexts, True) app = QApplication(sys.argv) w = MainWindow() + w.add_tab(UniformColormap(w), "UniformColormap") + w.add_tab(UniformColormap2DY(w), "UniformColormap2DY") + w.add_tab(ColormapWithNonUniformXAxis(w), "ColormapWithNonUniformXAxis") w.show() app.exec() diff --git a/tests/manual-tests/common.py b/tests/manual-tests/common.py index b319d8a..bfdcff3 100644 --- a/tests/manual-tests/common.py +++ b/tests/manual-tests/common.py @@ -6,6 +6,8 @@ import threading from typing import Dict, Any +from SciQLopPlots import PropertiesPanel + from qtconsole.rich_jupyter_widget import RichJupyterWidget from qtconsole.inprocess import QtInProcessKernelManager @@ -26,6 +28,7 @@ def __init__(self,parent): def add_tab(self, widget, title): self.addTab(widget, title) + widget.setObjectName(title) @@ -67,5 +70,10 @@ def _setup_ui(self): self.ipython_widget.kernel_manager = self.kernel_manager self.ipython_widget.kernel_client = self.kernel_client + self.properties_panel = PropertiesPanel(self) + dock = QDockWidget("Properties panel", self) + dock.setWidget(self.properties_panel) + self.addDockWidget(Qt.RightDockWidgetArea, dock) + diff --git a/tests/manual-tests/meson.build b/tests/manual-tests/meson.build index f7487b3..246cb9a 100644 --- a/tests/manual-tests/meson.build +++ b/tests/manual-tests/meson.build @@ -1,11 +1,12 @@ examples = [ - {'name':'plots', 'source': meson.current_source_dir()+'/QCP_Examples/plots/main.py'}, {'name':'SciQLopGraph', 'source': meson.current_source_dir()+'/SciQLopGraph/main.py'}, {'name':'SciQLopColorMap', 'source': meson.current_source_dir()+'/SciQLopColorMap/main.py'}, {'name':'StackedGraphs', 'source': meson.current_source_dir()+'/StackedGraphs/main.py'}, {'name':'SciQLopVerticalSpan', 'source': meson.current_source_dir()+'/SciQLopVerticalSpan/main.py'}, {'name':'All', 'source': meson.current_source_dir()+'/All/main.py'}, {'name':'MicroSciQLop', 'source': meson.current_source_dir()+'/MicroSciQLop/main.py'}, + {'name':'DragNDrop', 'source': meson.current_source_dir()+'/DragNDrop/main.py'}, + {'name':'Products', 'source': meson.current_source_dir()+'/Products/main.py'}, ] foreach example:examples