From 4ce30ef44a3237da8102abaea559583f78b1fb40 2017-09-29 09:11:41 From: perrinel Date: 2017-09-29 09:11:41 Subject: [PATCH] Merge pull request #304 from SciQLop-fork develop Develop --- diff --git a/plugins/amda/src/AmdaProvider.cpp b/plugins/amda/src/AmdaProvider.cpp index 2dafbbc..f10071c 100644 --- a/plugins/amda/src/AmdaProvider.cpp +++ b/plugins/amda/src/AmdaProvider.cpp @@ -21,9 +21,9 @@ namespace { /// - %1: start date /// - %2: end date /// - %3: parameter id -/// Old url: http://amda.irap.omp.eu/php/rest/ +/// AMDA V2: http://amdatest.irap.omp.eu/php/rest/ const auto AMDA_URL_FORMAT = QStringLiteral( - "http://amdatest.irap.omp.eu/php/rest/" + "http://amda.irap.omp.eu/php/rest/" "getParameter.php?startTime=%1&stopTime=%2¶meterID=%3&outputFormat=ASCII&" "timeFormat=ISO8601&gzip=0"); @@ -218,7 +218,8 @@ void AmdaProvider::retrieveData(QUuid token, const SqpRange &dateTime, const QVa // Don't do anything if the reply was abort if (reply->error() == QNetworkReply::NoError) { - auto downloadFileUrl = QUrl{QString{reply->readAll()}.trimmed()}; + // AMDA v2: auto downloadFileUrl = QUrl{QString{reply->readAll()}.trimmed()}; + auto downloadFileUrl = QUrl{QString{reply->readAll()}}; qCInfo(LOG_AmdaProvider()) << tr("TORM AmdaProvider::retrieveData downloadFileUrl:") << downloadFileUrl; diff --git a/plugins/amda/src/AmdaResultParser.cpp b/plugins/amda/src/AmdaResultParser.cpp index 497d5b4..6276fd6 100644 --- a/plugins/amda/src/AmdaResultParser.cpp +++ b/plugins/amda/src/AmdaResultParser.cpp @@ -20,19 +20,28 @@ const auto FILE_NOT_FOUND_MESSAGE = QStringLiteral("Not Found"); /// Separator between values in a result line const auto RESULT_LINE_SEPARATOR = QRegularExpression{QStringLiteral("\\s+")}; -/// Regex to find the header of the data in the file. This header indicates the end of comments in -/// the file -const auto DATA_HEADER_REGEX = QRegularExpression{QStringLiteral("#\\s*DATA\\s*:")}; +// AMDA V2 +// /// Regex to find the header of the data in the file. This header indicates the end of comments +// in +// /// the file +// const auto DATA_HEADER_REGEX = QRegularExpression{QStringLiteral("#\\s*DATA\\s*:")}; /// Format for dates in result files const auto DATE_FORMAT = QStringLiteral("yyyy-MM-ddThh:mm:ss.zzz"); -/// Regex to find unit in a line. Examples of valid lines: -/// ... PARAMETER_UNITS : nT ... -/// ... PARAMETER_UNITS:nT ... -/// ... PARAMETER_UNITS: m² ... -/// ... PARAMETER_UNITS : m/s ... -const auto UNIT_REGEX = QRegularExpression{QStringLiteral("\\s*PARAMETER_UNITS\\s*:\\s*(.+)")}; +// AMDA V2 +// /// Regex to find unit in a line. Examples of valid lines: +// /// ... PARAMETER_UNITS : nT ... +// /// ... PARAMETER_UNITS:nT ... +// /// ... PARAMETER_UNITS: m² ... +// /// ... PARAMETER_UNITS : m/s ... +// const auto UNIT_REGEX = QRegularExpression{QStringLiteral("\\s*PARAMETER_UNITS\\s*:\\s*(.+)")}; + +/// ... - Units : nT - ... +/// ... -Units:nT- ... +/// ... -Units: m²- ... +/// ... - Units : m/s - ... +const auto UNIT_REGEX = QRegularExpression{QStringLiteral("-\\s*Units\\s*:\\s*(.+?)\\s*-")}; QDateTime dateTimeFromString(const QString &stringDate) noexcept { @@ -90,7 +99,8 @@ Unit readXAxisUnit(QTextStream &stream) QString line{}; // Searches unit in the comment lines (as long as the reading has not reached the data header) - while (stream.readLineInto(&line) && !line.contains(DATA_HEADER_REGEX)) { + // AMDA V2: while (stream.readLineInto(&line) && !line.contains(DATA_HEADER_REGEX)) { + while (stream.readLineInto(&line) && isCommentLine(line)) { auto match = UNIT_REGEX.match(line); if (match.hasMatch()) { return Unit{match.captured(1), true}; @@ -203,6 +213,8 @@ std::shared_ptr AmdaResultParser::readTxt(const QString &filePath, auto xAxisUnit = readXAxisUnit(stream); // Reads results + // AMDA V2: remove line + stream.seek(0); // returns to the beginning of the file auto results = readResults(stream, valueType); // Creates data series diff --git a/plugins/amda/tests-resources/TestAmdaResultParser/NaNValue.txt b/plugins/amda/tests-resources/TestAmdaResultParser/NaNValue.txt index 9870edc..dab62ce 100644 --- a/plugins/amda/tests-resources/TestAmdaResultParser/NaNValue.txt +++ b/plugins/amda/tests-resources/TestAmdaResultParser/NaNValue.txt @@ -1,64 +1,6 @@ -# ----------- -# AMDA INFO : -# ----------- -# AMDA_ABOUT : Created by CDPP/AMDA(c) -# AMDA_VERSION : 3.5.0 -# AMDA_ACKNOWLEDGEMENT : CDPP/AMDA Team -# -# -------------- -# REQUEST INFO : -# -------------- -# REQUEST_STRUCTURE : one-file-per-parameter-per-interval -# REQUEST_TIME_FORMAT : ISO 8601 -# REQUEST_OUTPUT_PARAMS : imf -# -# ----------------- -# BASE PARAMETERS : -# ----------------- -# -# MISSION_ID : NONE -# -# INSTRUMENT_ID : NONE -# -# DATASET_ID : ace-imf-all -# DATASET_NAME : final / prelim -# DATASET_DESCRIPTION : Interplanetary Magnetic Field 16-sec Level2/PRELIM Data -# DATASET_SOURCE : CDPP/DDServer -# DATASET_GLOBAL_START : 1997-09-02T00:00:12.000 -# DATASET_GLOBAL_STOP : 2017-09-16T23:59:57.000 -# DATASET_MIN_SAMPLING : 16 -# DATASET_MAX_SAMPLING : 16 -# DATASET_CAVEATS : - The quality of ACE level 2 data is such that it is suitable for serious scientific study. However, to avoid confusion and misunderstanding, it is recommended that users consult with the appropriate ACE team members before publishing work derived from the data. The ACE team has worked hard to ensure that the level 2 data are free from errors, but the team cannot accept responsibility for erroneous data, or for misunderstandings about how the data may be used. This is especially true if the appropriate ACE team members are not consulted before publication. At the very least, preprints should be forwarded to the ACE team before publication. - -# DATASET_ACKNOWLEDGEMENT : - Please acknowledge the ACE/MAG instrument team and the ACE Science Center - -# -# PARAMETER_ID : imf -# PARAMETER_NAME : imf -# PARAMETER_SHORT_NAME : b_gse -# PARAMETER_COMPONENTS : bx,by,bz -# PARAMETER_UNITS : nT -# PARAMETER_COORDINATE_SYSTEM : GSE -# PARAMETER_TENSOR_ORDER : 0 -# PARAMETER_SI_CONVERSION : 1e-9>T -# PARAMETER_TABLE : None -# PARAMETER_FILL_VALUE : nan -# PARAMETER_UCD : phys.magField -# -# -# --------------- -# INTERVAL INFO : -# --------------- -# INTERVAL_START : 2013-09-23T08:58:12.000 -# INTERVAL_STOP : 2013-09-23T09:11:48.000 -# -# ------ -# DATA : -# ------ -# DATA_COLUMNS : AMDA_TIME, imf[0] -# +#Sampling Time : 60 +#Time Format : YYYY-MM-DDThh:mm:ss.mls +#imf(0) - Type : Local Parameter @ CDPP/AMDA - Name : bx_gse - Units : nT - Size : 1 - Frame : GSE - Mission : ACE - Instrument : MFI - Dataset : mfi_final-prelim 2013-09-23T09:00:30.000 NaN 2013-09-23T09:01:30.000 -2.71850 2013-09-23T09:02:30.000 -2.52150 \ No newline at end of file diff --git a/plugins/amda/tests-resources/TestAmdaResultParser/NaNX.txt b/plugins/amda/tests-resources/TestAmdaResultParser/NaNX.txt index e4b465d..e90bbca 100644 --- a/plugins/amda/tests-resources/TestAmdaResultParser/NaNX.txt +++ b/plugins/amda/tests-resources/TestAmdaResultParser/NaNX.txt @@ -1,64 +1,6 @@ -# ----------- -# AMDA INFO : -# ----------- -# AMDA_ABOUT : Created by CDPP/AMDA(c) -# AMDA_VERSION : 3.5.0 -# AMDA_ACKNOWLEDGEMENT : CDPP/AMDA Team -# -# -------------- -# REQUEST INFO : -# -------------- -# REQUEST_STRUCTURE : one-file-per-parameter-per-interval -# REQUEST_TIME_FORMAT : ISO 8601 -# REQUEST_OUTPUT_PARAMS : imf -# -# ----------------- -# BASE PARAMETERS : -# ----------------- -# -# MISSION_ID : NONE -# -# INSTRUMENT_ID : NONE -# -# DATASET_ID : ace-imf-all -# DATASET_NAME : final / prelim -# DATASET_DESCRIPTION : Interplanetary Magnetic Field 16-sec Level2/PRELIM Data -# DATASET_SOURCE : CDPP/DDServer -# DATASET_GLOBAL_START : 1997-09-02T00:00:12.000 -# DATASET_GLOBAL_STOP : 2017-09-16T23:59:57.000 -# DATASET_MIN_SAMPLING : 16 -# DATASET_MAX_SAMPLING : 16 -# DATASET_CAVEATS : - The quality of ACE level 2 data is such that it is suitable for serious scientific study. However, to avoid confusion and misunderstanding, it is recommended that users consult with the appropriate ACE team members before publishing work derived from the data. The ACE team has worked hard to ensure that the level 2 data are free from errors, but the team cannot accept responsibility for erroneous data, or for misunderstandings about how the data may be used. This is especially true if the appropriate ACE team members are not consulted before publication. At the very least, preprints should be forwarded to the ACE team before publication. - -# DATASET_ACKNOWLEDGEMENT : - Please acknowledge the ACE/MAG instrument team and the ACE Science Center - -# -# PARAMETER_ID : imf -# PARAMETER_NAME : imf -# PARAMETER_SHORT_NAME : b_gse -# PARAMETER_COMPONENTS : bx,by,bz -# PARAMETER_UNITS : nT -# PARAMETER_COORDINATE_SYSTEM : GSE -# PARAMETER_TENSOR_ORDER : 0 -# PARAMETER_SI_CONVERSION : 1e-9>T -# PARAMETER_TABLE : None -# PARAMETER_FILL_VALUE : nan -# PARAMETER_UCD : phys.magField -# -# -# --------------- -# INTERVAL INFO : -# --------------- -# INTERVAL_START : 2013-09-23T08:58:12.000 -# INTERVAL_STOP : 2013-09-23T09:11:48.000 -# -# ------ -# DATA : -# ------ -# DATA_COLUMNS : AMDA_TIME, imf[0] -# +#Sampling Time : 60 +#Time Format : YYYY-MM-DDThh:mm:ss.mls +#imf(0) - Type : Local Parameter @ CDPP/AMDA - Name : bx_gse - Units : nT - Size : 1 - Frame : GSE - Mission : ACE - Instrument : MFI - Dataset : mfi_final-prelim NaN -3.01425 2013-09-23T09:01:30.000 -2.71850 2013-09-23T09:02:30.000 -2.52150 \ No newline at end of file diff --git a/plugins/amda/tests-resources/TestAmdaResultParser/NoUnit.txt b/plugins/amda/tests-resources/TestAmdaResultParser/NoUnit.txt index 7bd0022..648be9f 100644 --- a/plugins/amda/tests-resources/TestAmdaResultParser/NoUnit.txt +++ b/plugins/amda/tests-resources/TestAmdaResultParser/NoUnit.txt @@ -1,60 +1,2 @@ -# ----------- -# AMDA INFO : -# ----------- -# AMDA_ABOUT : Created by CDPP/AMDA(c) -# AMDA_VERSION : 3.5.0 -# AMDA_ACKNOWLEDGEMENT : CDPP/AMDA Team -# -# -------------- -# REQUEST INFO : -# -------------- -# REQUEST_STRUCTURE : one-file-per-parameter-per-interval -# REQUEST_TIME_FORMAT : ISO 8601 -# REQUEST_OUTPUT_PARAMS : imf -# -# ----------------- -# BASE PARAMETERS : -# ----------------- -# -# MISSION_ID : NONE -# -# INSTRUMENT_ID : NONE -# -# DATASET_ID : ace-imf-all -# DATASET_NAME : final / prelim -# DATASET_DESCRIPTION : Interplanetary Magnetic Field 16-sec Level2/PRELIM Data -# DATASET_SOURCE : CDPP/DDServer -# DATASET_GLOBAL_START : 1997-09-02T00:00:12.000 -# DATASET_GLOBAL_STOP : 2017-09-16T23:59:57.000 -# DATASET_MIN_SAMPLING : 16 -# DATASET_MAX_SAMPLING : 16 -# DATASET_CAVEATS : - The quality of ACE level 2 data is such that it is suitable for serious scientific study. However, to avoid confusion and misunderstanding, it is recommended that users consult with the appropriate ACE team members before publishing work derived from the data. The ACE team has worked hard to ensure that the level 2 data are free from errors, but the team cannot accept responsibility for erroneous data, or for misunderstandings about how the data may be used. This is especially true if the appropriate ACE team members are not consulted before publication. At the very least, preprints should be forwarded to the ACE team before publication. - -# DATASET_ACKNOWLEDGEMENT : - Please acknowledge the ACE/MAG instrument team and the ACE Science Center - -# -# PARAMETER_ID : imf -# PARAMETER_NAME : imf -# PARAMETER_SHORT_NAME : b_gse -# PARAMETER_COMPONENTS : bx,by,bz -# PARAMETER_COORDINATE_SYSTEM : GSE -# PARAMETER_TENSOR_ORDER : 0 -# PARAMETER_SI_CONVERSION : 1e-9>T -# PARAMETER_TABLE : None -# PARAMETER_FILL_VALUE : nan -# PARAMETER_UCD : phys.magField -# -# -# --------------- -# INTERVAL INFO : -# --------------- -# INTERVAL_START : 2013-09-23T08:58:12.000 -# INTERVAL_STOP : 2013-09-23T09:11:48.000 -# -# ------ -# DATA : -# ------ -# DATA_COLUMNS : AMDA_TIME, imf[0] -# \ No newline at end of file +#Sampling Time : 60 +#Time Format : YYYY-MM-DDThh:mm:ss.mls \ No newline at end of file diff --git a/plugins/amda/tests-resources/TestAmdaResultParser/TooManyValues.txt b/plugins/amda/tests-resources/TestAmdaResultParser/TooManyValues.txt index e92b0c9..c58e9d4 100644 --- a/plugins/amda/tests-resources/TestAmdaResultParser/TooManyValues.txt +++ b/plugins/amda/tests-resources/TestAmdaResultParser/TooManyValues.txt @@ -1,64 +1,6 @@ -# ----------- -# AMDA INFO : -# ----------- -# AMDA_ABOUT : Created by CDPP/AMDA(c) -# AMDA_VERSION : 3.5.0 -# AMDA_ACKNOWLEDGEMENT : CDPP/AMDA Team -# -# -------------- -# REQUEST INFO : -# -------------- -# REQUEST_STRUCTURE : one-file-per-parameter-per-interval -# REQUEST_TIME_FORMAT : ISO 8601 -# REQUEST_OUTPUT_PARAMS : imf -# -# ----------------- -# BASE PARAMETERS : -# ----------------- -# -# MISSION_ID : NONE -# -# INSTRUMENT_ID : NONE -# -# DATASET_ID : ace-imf-all -# DATASET_NAME : final / prelim -# DATASET_DESCRIPTION : Interplanetary Magnetic Field 16-sec Level2/PRELIM Data -# DATASET_SOURCE : CDPP/DDServer -# DATASET_GLOBAL_START : 1997-09-02T00:00:12.000 -# DATASET_GLOBAL_STOP : 2017-09-16T23:59:57.000 -# DATASET_MIN_SAMPLING : 16 -# DATASET_MAX_SAMPLING : 16 -# DATASET_CAVEATS : - The quality of ACE level 2 data is such that it is suitable for serious scientific study. However, to avoid confusion and misunderstanding, it is recommended that users consult with the appropriate ACE team members before publishing work derived from the data. The ACE team has worked hard to ensure that the level 2 data are free from errors, but the team cannot accept responsibility for erroneous data, or for misunderstandings about how the data may be used. This is especially true if the appropriate ACE team members are not consulted before publication. At the very least, preprints should be forwarded to the ACE team before publication. - -# DATASET_ACKNOWLEDGEMENT : - Please acknowledge the ACE/MAG instrument team and the ACE Science Center - -# -# PARAMETER_ID : imf -# PARAMETER_NAME : imf -# PARAMETER_SHORT_NAME : b_gse -# PARAMETER_COMPONENTS : bx,by,bz -# PARAMETER_UNITS : nT -# PARAMETER_COORDINATE_SYSTEM : GSE -# PARAMETER_TENSOR_ORDER : 0 -# PARAMETER_SI_CONVERSION : 1e-9>T -# PARAMETER_TABLE : None -# PARAMETER_FILL_VALUE : nan -# PARAMETER_UCD : phys.magField -# -# -# --------------- -# INTERVAL INFO : -# --------------- -# INTERVAL_START : 2013-09-23T08:58:12.000 -# INTERVAL_STOP : 2013-09-23T09:11:48.000 -# -# ------ -# DATA : -# ------ -# DATA_COLUMNS : AMDA_TIME, imf[0] -# +#Sampling Time : 60 +#Time Format : YYYY-MM-DDThh:mm:ss.mls +#imf(0) - Type : Local Parameter @ CDPP/AMDA - Name : bx_gse - Units : nT - Size : 1 - Frame : GSE - Mission : ACE - Instrument : MFI - Dataset : mfi_final-prelim 2013-09-23T09:00:30.000 -2.83950 1.05141 3.01547 2013-09-23T09:01:30.000 -2.71850 2013-09-23T09:02:30.000 -2.52150 \ No newline at end of file diff --git a/plugins/amda/tests-resources/TestAmdaResultParser/ValidScalar1.txt b/plugins/amda/tests-resources/TestAmdaResultParser/ValidScalar1.txt index 3fdd73f..41b585a 100644 --- a/plugins/amda/tests-resources/TestAmdaResultParser/ValidScalar1.txt +++ b/plugins/amda/tests-resources/TestAmdaResultParser/ValidScalar1.txt @@ -1,64 +1,6 @@ -# ----------- -# AMDA INFO : -# ----------- -# AMDA_ABOUT : Created by CDPP/AMDA(c) -# AMDA_VERSION : 3.5.0 -# AMDA_ACKNOWLEDGEMENT : CDPP/AMDA Team -# -# -------------- -# REQUEST INFO : -# -------------- -# REQUEST_STRUCTURE : one-file-per-parameter-per-interval -# REQUEST_TIME_FORMAT : ISO 8601 -# REQUEST_OUTPUT_PARAMS : imf -# -# ----------------- -# BASE PARAMETERS : -# ----------------- -# -# MISSION_ID : NONE -# -# INSTRUMENT_ID : NONE -# -# DATASET_ID : ace-imf-all -# DATASET_NAME : final / prelim -# DATASET_DESCRIPTION : Interplanetary Magnetic Field 16-sec Level2/PRELIM Data -# DATASET_SOURCE : CDPP/DDServer -# DATASET_GLOBAL_START : 1997-09-02T00:00:12.000 -# DATASET_GLOBAL_STOP : 2017-09-16T23:59:57.000 -# DATASET_MIN_SAMPLING : 16 -# DATASET_MAX_SAMPLING : 16 -# DATASET_CAVEATS : - The quality of ACE level 2 data is such that it is suitable for serious scientific study. However, to avoid confusion and misunderstanding, it is recommended that users consult with the appropriate ACE team members before publishing work derived from the data. The ACE team has worked hard to ensure that the level 2 data are free from errors, but the team cannot accept responsibility for erroneous data, or for misunderstandings about how the data may be used. This is especially true if the appropriate ACE team members are not consulted before publication. At the very least, preprints should be forwarded to the ACE team before publication. - -# DATASET_ACKNOWLEDGEMENT : - Please acknowledge the ACE/MAG instrument team and the ACE Science Center - -# -# PARAMETER_ID : imf -# PARAMETER_NAME : imf -# PARAMETER_SHORT_NAME : b_gse -# PARAMETER_COMPONENTS : bx,by,bz -# PARAMETER_UNITS : nT -# PARAMETER_COORDINATE_SYSTEM : GSE -# PARAMETER_TENSOR_ORDER : 0 -# PARAMETER_SI_CONVERSION : 1e-9>T -# PARAMETER_TABLE : None -# PARAMETER_FILL_VALUE : nan -# PARAMETER_UCD : phys.magField -# -# -# --------------- -# INTERVAL INFO : -# --------------- -# INTERVAL_START : 2013-09-23T08:58:12.000 -# INTERVAL_STOP : 2013-09-23T09:11:48.000 -# -# ------ -# DATA : -# ------ -# DATA_COLUMNS : AMDA_TIME, imf[0] -# +#Sampling Time : 60 +#Time Format : YYYY-MM-DDThh:mm:ss.mls +#imf(0) - Type : Local Parameter @ CDPP/AMDA - Name : bx_gse - Units : nT - Size : 1 - Frame : GSE - Mission : ACE - Instrument : MFI - Dataset : mfi_final-prelim 2013-09-23T09:00:30.000 -2.83950 2013-09-23T09:01:30.000 -2.71850 2013-09-23T09:02:30.000 -2.52150 diff --git a/plugins/amda/tests-resources/TestAmdaResultParser/ValidVector1.txt b/plugins/amda/tests-resources/TestAmdaResultParser/ValidVector1.txt index 4c2161f..cadabb8 100644 --- a/plugins/amda/tests-resources/TestAmdaResultParser/ValidVector1.txt +++ b/plugins/amda/tests-resources/TestAmdaResultParser/ValidVector1.txt @@ -1,64 +1,5 @@ -# ----------- -# AMDA INFO : -# ----------- -# AMDA_ABOUT : Created by CDPP/AMDA(c) -# AMDA_VERSION : 3.5.0 -# AMDA_ACKNOWLEDGEMENT : CDPP/AMDA Team -# -# -------------- -# REQUEST INFO : -# -------------- -# REQUEST_STRUCTURE : one-file-per-parameter-per-interval -# REQUEST_TIME_FORMAT : ISO 8601 -# REQUEST_OUTPUT_PARAMS : imf -# -# ----------------- -# BASE PARAMETERS : -# ----------------- -# -# MISSION_ID : NONE -# -# INSTRUMENT_ID : NONE -# -# DATASET_ID : ace-imf-all -# DATASET_NAME : final / prelim -# DATASET_DESCRIPTION : Interplanetary Magnetic Field 16-sec Level2/PRELIM Data -# DATASET_SOURCE : CDPP/DDServer -# DATASET_GLOBAL_START : 1997-09-02T00:00:12.000 -# DATASET_GLOBAL_STOP : 2017-09-16T23:59:57.000 -# DATASET_MIN_SAMPLING : 16 -# DATASET_MAX_SAMPLING : 16 -# DATASET_CAVEATS : - The quality of ACE level 2 data is such that it is suitable for serious scientific study. However, to avoid confusion and misunderstanding, it is recommended that users consult with the appropriate ACE team members before publishing work derived from the data. The ACE team has worked hard to ensure that the level 2 data are free from errors, but the team cannot accept responsibility for erroneous data, or for misunderstandings about how the data may be used. This is especially true if the appropriate ACE team members are not consulted before publication. At the very least, preprints should be forwarded to the ACE team before publication. - -# DATASET_ACKNOWLEDGEMENT : - Please acknowledge the ACE/MAG instrument team and the ACE Science Center - -# -# PARAMETER_ID : imf -# PARAMETER_NAME : imf -# PARAMETER_SHORT_NAME : b_gse -# PARAMETER_COMPONENTS : bx,by,bz -# PARAMETER_UNITS : nT -# PARAMETER_COORDINATE_SYSTEM : GSE -# PARAMETER_TENSOR_ORDER : 0 -# PARAMETER_SI_CONVERSION : 1e-9>T -# PARAMETER_TABLE : None -# PARAMETER_FILL_VALUE : nan -# PARAMETER_UCD : phys.magField -# -# -# --------------- -# INTERVAL INFO : -# --------------- -# INTERVAL_START : 2012-09-27T06:47:56.000 -# INTERVAL_STOP : 2012-09-27T08:09:32.000 -# -# ------ -# DATA : -# ------ -# DATA_COLUMNS : AMDA_TIME, imf[0], imf[1], imf[2] -# +#Time Format : YYYY-MM-DDThh:mm:ss.mls +#imf - Type : Local Parameter @ CDPP/AMDA - Name : imf_gse - Units : nT - Size : 3 - Frame : GSE - Mission : ACE - Instrument : MFI - Dataset : mfi_final-prelim 2013-07-02T09:13:50.000 -0.332000 3.20600 0.0580000 2013-07-02T09:14:06.000 -1.01100 2.99900 0.496000 2013-07-02T09:14:22.000 -1.45700 2.78500 1.01800 diff --git a/plugins/amda/tests-resources/TestAmdaResultParser/WrongDate.txt b/plugins/amda/tests-resources/TestAmdaResultParser/WrongDate.txt index 8271429..7dc5266 100644 --- a/plugins/amda/tests-resources/TestAmdaResultParser/WrongDate.txt +++ b/plugins/amda/tests-resources/TestAmdaResultParser/WrongDate.txt @@ -1,64 +1,6 @@ -# ----------- -# AMDA INFO : -# ----------- -# AMDA_ABOUT : Created by CDPP/AMDA(c) -# AMDA_VERSION : 3.5.0 -# AMDA_ACKNOWLEDGEMENT : CDPP/AMDA Team -# -# -------------- -# REQUEST INFO : -# -------------- -# REQUEST_STRUCTURE : one-file-per-parameter-per-interval -# REQUEST_TIME_FORMAT : ISO 8601 -# REQUEST_OUTPUT_PARAMS : imf -# -# ----------------- -# BASE PARAMETERS : -# ----------------- -# -# MISSION_ID : NONE -# -# INSTRUMENT_ID : NONE -# -# DATASET_ID : ace-imf-all -# DATASET_NAME : final / prelim -# DATASET_DESCRIPTION : Interplanetary Magnetic Field 16-sec Level2/PRELIM Data -# DATASET_SOURCE : CDPP/DDServer -# DATASET_GLOBAL_START : 1997-09-02T00:00:12.000 -# DATASET_GLOBAL_STOP : 2017-09-16T23:59:57.000 -# DATASET_MIN_SAMPLING : 16 -# DATASET_MAX_SAMPLING : 16 -# DATASET_CAVEATS : - The quality of ACE level 2 data is such that it is suitable for serious scientific study. However, to avoid confusion and misunderstanding, it is recommended that users consult with the appropriate ACE team members before publishing work derived from the data. The ACE team has worked hard to ensure that the level 2 data are free from errors, but the team cannot accept responsibility for erroneous data, or for misunderstandings about how the data may be used. This is especially true if the appropriate ACE team members are not consulted before publication. At the very least, preprints should be forwarded to the ACE team before publication. - -# DATASET_ACKNOWLEDGEMENT : - Please acknowledge the ACE/MAG instrument team and the ACE Science Center - -# -# PARAMETER_ID : imf -# PARAMETER_NAME : imf -# PARAMETER_SHORT_NAME : b_gse -# PARAMETER_COMPONENTS : bx,by,bz -# PARAMETER_UNITS : nT -# PARAMETER_COORDINATE_SYSTEM : GSE -# PARAMETER_TENSOR_ORDER : 0 -# PARAMETER_SI_CONVERSION : 1e-9>T -# PARAMETER_TABLE : None -# PARAMETER_FILL_VALUE : nan -# PARAMETER_UCD : phys.magField -# -# -# --------------- -# INTERVAL INFO : -# --------------- -# INTERVAL_START : 2013-09-23T08:58:12.000 -# INTERVAL_STOP : 2013-09-23T09:11:48.000 -# -# ------ -# DATA : -# ------ -# DATA_COLUMNS : AMDA_TIME, imf[0] -# +#Sampling Time : 60 +#Time Format : YYYY-MM-DDThh:mm:ss.mls +#imf(0) - Type : Local Parameter @ CDPP/AMDA - Name : bx_gse - Units : nT - Size : 1 - Frame : GSE - Mission : ACE - Instrument : MFI - Dataset : mfi_final-prelim 23/09/2013 07:50:30 -2.83950 2013-09-23T09:01:30.000 -2.71850 2013-09-23T09:02:30.000 -2.52150 \ No newline at end of file diff --git a/plugins/amda/tests-resources/TestAmdaResultParser/WrongUnit.txt b/plugins/amda/tests-resources/TestAmdaResultParser/WrongUnit.txt index 190447b..5a62942 100644 --- a/plugins/amda/tests-resources/TestAmdaResultParser/WrongUnit.txt +++ b/plugins/amda/tests-resources/TestAmdaResultParser/WrongUnit.txt @@ -1,64 +1,6 @@ -# ----------- -# AMDA INFO : -# ----------- -# AMDA_ABOUT : Created by CDPP/AMDA(c) -# AMDA_VERSION : 3.5.0 -# AMDA_ACKNOWLEDGEMENT : CDPP/AMDA Team -# -# -------------- -# REQUEST INFO : -# -------------- -# REQUEST_STRUCTURE : one-file-per-parameter-per-interval -# REQUEST_TIME_FORMAT : ISO 8601 -# REQUEST_OUTPUT_PARAMS : imf -# -# ----------------- -# BASE PARAMETERS : -# ----------------- -# -# MISSION_ID : NONE -# -# INSTRUMENT_ID : NONE -# -# DATASET_ID : ace-imf-all -# DATASET_NAME : final / prelim -# DATASET_DESCRIPTION : Interplanetary Magnetic Field 16-sec Level2/PRELIM Data -# DATASET_SOURCE : CDPP/DDServer -# DATASET_GLOBAL_START : 1997-09-02T00:00:12.000 -# DATASET_GLOBAL_STOP : 2017-09-16T23:59:57.000 -# DATASET_MIN_SAMPLING : 16 -# DATASET_MAX_SAMPLING : 16 -# DATASET_CAVEATS : - The quality of ACE level 2 data is such that it is suitable for serious scientific study. However, to avoid confusion and misunderstanding, it is recommended that users consult with the appropriate ACE team members before publishing work derived from the data. The ACE team has worked hard to ensure that the level 2 data are free from errors, but the team cannot accept responsibility for erroneous data, or for misunderstandings about how the data may be used. This is especially true if the appropriate ACE team members are not consulted before publication. At the very least, preprints should be forwarded to the ACE team before publication. - -# DATASET_ACKNOWLEDGEMENT : - Please acknowledge the ACE/MAG instrument team and the ACE Science Center - -# -# PARAMETER_ID : imf -# PARAMETER_NAME : imf -# PARAMETER_SHORT_NAME : b_gse -# PARAMETER_COMPONENTS : bx,by,bz -# PARAM_UNITS : wrong unit line -# PARAMETER_COORDINATE_SYSTEM : GSE -# PARAMETER_TENSOR_ORDER : 0 -# PARAMETER_SI_CONVERSION : 1e-9>T -# PARAMETER_TABLE : None -# PARAMETER_FILL_VALUE : nan -# PARAMETER_UCD : phys.magField -# -# -# --------------- -# INTERVAL INFO : -# --------------- -# INTERVAL_START : 2013-09-23T08:58:12.000 -# INTERVAL_STOP : 2013-09-23T09:11:48.000 -# -# ------ -# DATA : -# ------ -# DATA_COLUMNS : AMDA_TIME, imf[0] -# +#Sampling Time : 60 +#Time Format : YYYY-MM-DDThh:mm:ss.mls +#Wrong unit comment 2013-09-23T09:00:30.000 -2.83950 2013-09-23T09:01:30.000 -2.71850 2013-09-23T09:02:30.000 -2.52150 \ No newline at end of file diff --git a/plugins/amda/tests-resources/TestAmdaResultParser/WrongValue.txt b/plugins/amda/tests-resources/TestAmdaResultParser/WrongValue.txt index bcd630a..578a209 100644 --- a/plugins/amda/tests-resources/TestAmdaResultParser/WrongValue.txt +++ b/plugins/amda/tests-resources/TestAmdaResultParser/WrongValue.txt @@ -1,64 +1,6 @@ -# ----------- -# AMDA INFO : -# ----------- -# AMDA_ABOUT : Created by CDPP/AMDA(c) -# AMDA_VERSION : 3.5.0 -# AMDA_ACKNOWLEDGEMENT : CDPP/AMDA Team -# -# -------------- -# REQUEST INFO : -# -------------- -# REQUEST_STRUCTURE : one-file-per-parameter-per-interval -# REQUEST_TIME_FORMAT : ISO 8601 -# REQUEST_OUTPUT_PARAMS : imf -# -# ----------------- -# BASE PARAMETERS : -# ----------------- -# -# MISSION_ID : NONE -# -# INSTRUMENT_ID : NONE -# -# DATASET_ID : ace-imf-all -# DATASET_NAME : final / prelim -# DATASET_DESCRIPTION : Interplanetary Magnetic Field 16-sec Level2/PRELIM Data -# DATASET_SOURCE : CDPP/DDServer -# DATASET_GLOBAL_START : 1997-09-02T00:00:12.000 -# DATASET_GLOBAL_STOP : 2017-09-16T23:59:57.000 -# DATASET_MIN_SAMPLING : 16 -# DATASET_MAX_SAMPLING : 16 -# DATASET_CAVEATS : - The quality of ACE level 2 data is such that it is suitable for serious scientific study. However, to avoid confusion and misunderstanding, it is recommended that users consult with the appropriate ACE team members before publishing work derived from the data. The ACE team has worked hard to ensure that the level 2 data are free from errors, but the team cannot accept responsibility for erroneous data, or for misunderstandings about how the data may be used. This is especially true if the appropriate ACE team members are not consulted before publication. At the very least, preprints should be forwarded to the ACE team before publication. - -# DATASET_ACKNOWLEDGEMENT : - Please acknowledge the ACE/MAG instrument team and the ACE Science Center - -# -# PARAMETER_ID : imf -# PARAMETER_NAME : imf -# PARAMETER_SHORT_NAME : b_gse -# PARAMETER_COMPONENTS : bx,by,bz -# PARAMETER_UNITS : nT -# PARAMETER_COORDINATE_SYSTEM : GSE -# PARAMETER_TENSOR_ORDER : 0 -# PARAMETER_SI_CONVERSION : 1e-9>T -# PARAMETER_TABLE : None -# PARAMETER_FILL_VALUE : nan -# PARAMETER_UCD : phys.magField -# -# -# --------------- -# INTERVAL INFO : -# --------------- -# INTERVAL_START : 2013-09-23T08:58:12.000 -# INTERVAL_STOP : 2013-09-23T09:11:48.000 -# -# ------ -# DATA : -# ------ -# DATA_COLUMNS : AMDA_TIME, imf[0] -# +#Sampling Time : 60 +#Time Format : YYYY-MM-DDThh:mm:ss.mls +#imf(0) - Type : Local Parameter @ CDPP/AMDA - Name : bx_gse - Units : nT - Size : 1 - Frame : GSE - Mission : ACE - Instrument : MFI - Dataset : mfi_final-prelim 2013-09-23T09:00:30.000 abc 2013-09-23T09:01:30.000 -2.71850 2013-09-23T09:02:30.000 -2.52150 \ No newline at end of file diff --git a/plugins/amda/tests-resources/TestAmdaResultParser/amdaV1/NaNValue.txt b/plugins/amda/tests-resources/TestAmdaResultParser/amdaV1/NaNValue.txt deleted file mode 100644 index dab62ce..0000000 --- a/plugins/amda/tests-resources/TestAmdaResultParser/amdaV1/NaNValue.txt +++ /dev/null @@ -1,6 +0,0 @@ -#Sampling Time : 60 -#Time Format : YYYY-MM-DDThh:mm:ss.mls -#imf(0) - Type : Local Parameter @ CDPP/AMDA - Name : bx_gse - Units : nT - Size : 1 - Frame : GSE - Mission : ACE - Instrument : MFI - Dataset : mfi_final-prelim -2013-09-23T09:00:30.000 NaN -2013-09-23T09:01:30.000 -2.71850 -2013-09-23T09:02:30.000 -2.52150 \ No newline at end of file diff --git a/plugins/amda/tests-resources/TestAmdaResultParser/amdaV1/NaNX.txt b/plugins/amda/tests-resources/TestAmdaResultParser/amdaV1/NaNX.txt deleted file mode 100644 index e90bbca..0000000 --- a/plugins/amda/tests-resources/TestAmdaResultParser/amdaV1/NaNX.txt +++ /dev/null @@ -1,6 +0,0 @@ -#Sampling Time : 60 -#Time Format : YYYY-MM-DDThh:mm:ss.mls -#imf(0) - Type : Local Parameter @ CDPP/AMDA - Name : bx_gse - Units : nT - Size : 1 - Frame : GSE - Mission : ACE - Instrument : MFI - Dataset : mfi_final-prelim -NaN -3.01425 -2013-09-23T09:01:30.000 -2.71850 -2013-09-23T09:02:30.000 -2.52150 \ No newline at end of file diff --git a/plugins/amda/tests-resources/TestAmdaResultParser/amdaV1/NoUnit.txt b/plugins/amda/tests-resources/TestAmdaResultParser/amdaV1/NoUnit.txt deleted file mode 100644 index 648be9f..0000000 --- a/plugins/amda/tests-resources/TestAmdaResultParser/amdaV1/NoUnit.txt +++ /dev/null @@ -1,2 +0,0 @@ -#Sampling Time : 60 -#Time Format : YYYY-MM-DDThh:mm:ss.mls \ No newline at end of file diff --git a/plugins/amda/tests-resources/TestAmdaResultParser/amdaV1/TooManyValues.txt b/plugins/amda/tests-resources/TestAmdaResultParser/amdaV1/TooManyValues.txt deleted file mode 100644 index c58e9d4..0000000 --- a/plugins/amda/tests-resources/TestAmdaResultParser/amdaV1/TooManyValues.txt +++ /dev/null @@ -1,6 +0,0 @@ -#Sampling Time : 60 -#Time Format : YYYY-MM-DDThh:mm:ss.mls -#imf(0) - Type : Local Parameter @ CDPP/AMDA - Name : bx_gse - Units : nT - Size : 1 - Frame : GSE - Mission : ACE - Instrument : MFI - Dataset : mfi_final-prelim -2013-09-23T09:00:30.000 -2.83950 1.05141 3.01547 -2013-09-23T09:01:30.000 -2.71850 -2013-09-23T09:02:30.000 -2.52150 \ No newline at end of file diff --git a/plugins/amda/tests-resources/TestAmdaResultParser/amdaV1/ValidScalar1.txt b/plugins/amda/tests-resources/TestAmdaResultParser/amdaV1/ValidScalar1.txt deleted file mode 100644 index 41b585a..0000000 --- a/plugins/amda/tests-resources/TestAmdaResultParser/amdaV1/ValidScalar1.txt +++ /dev/null @@ -1,13 +0,0 @@ -#Sampling Time : 60 -#Time Format : YYYY-MM-DDThh:mm:ss.mls -#imf(0) - Type : Local Parameter @ CDPP/AMDA - Name : bx_gse - Units : nT - Size : 1 - Frame : GSE - Mission : ACE - Instrument : MFI - Dataset : mfi_final-prelim -2013-09-23T09:00:30.000 -2.83950 -2013-09-23T09:01:30.000 -2.71850 -2013-09-23T09:02:30.000 -2.52150 -2013-09-23T09:03:30.000 -2.57633 -2013-09-23T09:04:30.000 -2.58050 -2013-09-23T09:05:30.000 -2.48325 -2013-09-23T09:06:30.000 -2.63025 -2013-09-23T09:07:30.000 -2.55800 -2013-09-23T09:08:30.000 -2.43250 -2013-09-23T09:09:30.000 -2.42200 \ No newline at end of file diff --git a/plugins/amda/tests-resources/TestAmdaResultParser/amdaV1/ValidVector1.txt b/plugins/amda/tests-resources/TestAmdaResultParser/amdaV1/ValidVector1.txt deleted file mode 100644 index cadabb8..0000000 --- a/plugins/amda/tests-resources/TestAmdaResultParser/amdaV1/ValidVector1.txt +++ /dev/null @@ -1,12 +0,0 @@ -#Time Format : YYYY-MM-DDThh:mm:ss.mls -#imf - Type : Local Parameter @ CDPP/AMDA - Name : imf_gse - Units : nT - Size : 3 - Frame : GSE - Mission : ACE - Instrument : MFI - Dataset : mfi_final-prelim -2013-07-02T09:13:50.000 -0.332000 3.20600 0.0580000 -2013-07-02T09:14:06.000 -1.01100 2.99900 0.496000 -2013-07-02T09:14:22.000 -1.45700 2.78500 1.01800 -2013-07-02T09:14:38.000 -1.29300 2.73600 1.48500 -2013-07-02T09:14:54.000 -1.21700 2.61200 1.66200 -2013-07-02T09:15:10.000 -1.44300 2.56400 1.50500 -2013-07-02T09:15:26.000 -1.27800 2.89200 1.16800 -2013-07-02T09:15:42.000 -1.20200 2.86200 1.24400 -2013-07-02T09:15:58.000 -1.22000 2.85900 1.15000 -2013-07-02T09:16:14.000 -1.25900 2.76400 1.35800 \ No newline at end of file diff --git a/plugins/amda/tests-resources/TestAmdaResultParser/amdaV1/WrongDate.txt b/plugins/amda/tests-resources/TestAmdaResultParser/amdaV1/WrongDate.txt deleted file mode 100644 index 7dc5266..0000000 --- a/plugins/amda/tests-resources/TestAmdaResultParser/amdaV1/WrongDate.txt +++ /dev/null @@ -1,6 +0,0 @@ -#Sampling Time : 60 -#Time Format : YYYY-MM-DDThh:mm:ss.mls -#imf(0) - Type : Local Parameter @ CDPP/AMDA - Name : bx_gse - Units : nT - Size : 1 - Frame : GSE - Mission : ACE - Instrument : MFI - Dataset : mfi_final-prelim -23/09/2013 07:50:30 -2.83950 -2013-09-23T09:01:30.000 -2.71850 -2013-09-23T09:02:30.000 -2.52150 \ No newline at end of file diff --git a/plugins/amda/tests-resources/TestAmdaResultParser/amdaV1/WrongUnit.txt b/plugins/amda/tests-resources/TestAmdaResultParser/amdaV1/WrongUnit.txt deleted file mode 100644 index 5a62942..0000000 --- a/plugins/amda/tests-resources/TestAmdaResultParser/amdaV1/WrongUnit.txt +++ /dev/null @@ -1,6 +0,0 @@ -#Sampling Time : 60 -#Time Format : YYYY-MM-DDThh:mm:ss.mls -#Wrong unit comment -2013-09-23T09:00:30.000 -2.83950 -2013-09-23T09:01:30.000 -2.71850 -2013-09-23T09:02:30.000 -2.52150 \ No newline at end of file diff --git a/plugins/amda/tests-resources/TestAmdaResultParser/amdaV1/WrongValue.txt b/plugins/amda/tests-resources/TestAmdaResultParser/amdaV1/WrongValue.txt deleted file mode 100644 index 578a209..0000000 --- a/plugins/amda/tests-resources/TestAmdaResultParser/amdaV1/WrongValue.txt +++ /dev/null @@ -1,6 +0,0 @@ -#Sampling Time : 60 -#Time Format : YYYY-MM-DDThh:mm:ss.mls -#imf(0) - Type : Local Parameter @ CDPP/AMDA - Name : bx_gse - Units : nT - Size : 1 - Frame : GSE - Mission : ACE - Instrument : MFI - Dataset : mfi_final-prelim -2013-09-23T09:00:30.000 abc -2013-09-23T09:01:30.000 -2.71850 -2013-09-23T09:02:30.000 -2.52150 \ No newline at end of file diff --git a/plugins/amda/tests-resources/TestAmdaResultParser/amdaV1/FileNotFound.txt b/plugins/amda/tests-resources/TestAmdaResultParser/amdaV2/FileNotFound.txt similarity index 100% rename from plugins/amda/tests-resources/TestAmdaResultParser/amdaV1/FileNotFound.txt rename to plugins/amda/tests-resources/TestAmdaResultParser/amdaV2/FileNotFound.txt diff --git a/plugins/amda/tests-resources/TestAmdaResultParser/amdaV2/NaNValue.txt b/plugins/amda/tests-resources/TestAmdaResultParser/amdaV2/NaNValue.txt new file mode 100644 index 0000000..9870edc --- /dev/null +++ b/plugins/amda/tests-resources/TestAmdaResultParser/amdaV2/NaNValue.txt @@ -0,0 +1,64 @@ +# ----------- +# AMDA INFO : +# ----------- +# AMDA_ABOUT : Created by CDPP/AMDA(c) +# AMDA_VERSION : 3.5.0 +# AMDA_ACKNOWLEDGEMENT : CDPP/AMDA Team +# +# -------------- +# REQUEST INFO : +# -------------- +# REQUEST_STRUCTURE : one-file-per-parameter-per-interval +# REQUEST_TIME_FORMAT : ISO 8601 +# REQUEST_OUTPUT_PARAMS : imf +# +# ----------------- +# BASE PARAMETERS : +# ----------------- +# +# MISSION_ID : NONE +# +# INSTRUMENT_ID : NONE +# +# DATASET_ID : ace-imf-all +# DATASET_NAME : final / prelim +# DATASET_DESCRIPTION : Interplanetary Magnetic Field 16-sec Level2/PRELIM Data +# DATASET_SOURCE : CDPP/DDServer +# DATASET_GLOBAL_START : 1997-09-02T00:00:12.000 +# DATASET_GLOBAL_STOP : 2017-09-16T23:59:57.000 +# DATASET_MIN_SAMPLING : 16 +# DATASET_MAX_SAMPLING : 16 +# DATASET_CAVEATS : + The quality of ACE level 2 data is such that it is suitable for serious scientific study. However, to avoid confusion and misunderstanding, it is recommended that users consult with the appropriate ACE team members before publishing work derived from the data. The ACE team has worked hard to ensure that the level 2 data are free from errors, but the team cannot accept responsibility for erroneous data, or for misunderstandings about how the data may be used. This is especially true if the appropriate ACE team members are not consulted before publication. At the very least, preprints should be forwarded to the ACE team before publication. + +# DATASET_ACKNOWLEDGEMENT : + Please acknowledge the ACE/MAG instrument team and the ACE Science Center + +# +# PARAMETER_ID : imf +# PARAMETER_NAME : imf +# PARAMETER_SHORT_NAME : b_gse +# PARAMETER_COMPONENTS : bx,by,bz +# PARAMETER_UNITS : nT +# PARAMETER_COORDINATE_SYSTEM : GSE +# PARAMETER_TENSOR_ORDER : 0 +# PARAMETER_SI_CONVERSION : 1e-9>T +# PARAMETER_TABLE : None +# PARAMETER_FILL_VALUE : nan +# PARAMETER_UCD : phys.magField +# +# +# --------------- +# INTERVAL INFO : +# --------------- +# INTERVAL_START : 2013-09-23T08:58:12.000 +# INTERVAL_STOP : 2013-09-23T09:11:48.000 +# +# ------ +# DATA : +# ------ +# DATA_COLUMNS : AMDA_TIME, imf[0] +# +2013-09-23T09:00:30.000 NaN +2013-09-23T09:01:30.000 -2.71850 +2013-09-23T09:02:30.000 -2.52150 \ No newline at end of file diff --git a/plugins/amda/tests-resources/TestAmdaResultParser/amdaV2/NaNX.txt b/plugins/amda/tests-resources/TestAmdaResultParser/amdaV2/NaNX.txt new file mode 100644 index 0000000..e4b465d --- /dev/null +++ b/plugins/amda/tests-resources/TestAmdaResultParser/amdaV2/NaNX.txt @@ -0,0 +1,64 @@ +# ----------- +# AMDA INFO : +# ----------- +# AMDA_ABOUT : Created by CDPP/AMDA(c) +# AMDA_VERSION : 3.5.0 +# AMDA_ACKNOWLEDGEMENT : CDPP/AMDA Team +# +# -------------- +# REQUEST INFO : +# -------------- +# REQUEST_STRUCTURE : one-file-per-parameter-per-interval +# REQUEST_TIME_FORMAT : ISO 8601 +# REQUEST_OUTPUT_PARAMS : imf +# +# ----------------- +# BASE PARAMETERS : +# ----------------- +# +# MISSION_ID : NONE +# +# INSTRUMENT_ID : NONE +# +# DATASET_ID : ace-imf-all +# DATASET_NAME : final / prelim +# DATASET_DESCRIPTION : Interplanetary Magnetic Field 16-sec Level2/PRELIM Data +# DATASET_SOURCE : CDPP/DDServer +# DATASET_GLOBAL_START : 1997-09-02T00:00:12.000 +# DATASET_GLOBAL_STOP : 2017-09-16T23:59:57.000 +# DATASET_MIN_SAMPLING : 16 +# DATASET_MAX_SAMPLING : 16 +# DATASET_CAVEATS : + The quality of ACE level 2 data is such that it is suitable for serious scientific study. However, to avoid confusion and misunderstanding, it is recommended that users consult with the appropriate ACE team members before publishing work derived from the data. The ACE team has worked hard to ensure that the level 2 data are free from errors, but the team cannot accept responsibility for erroneous data, or for misunderstandings about how the data may be used. This is especially true if the appropriate ACE team members are not consulted before publication. At the very least, preprints should be forwarded to the ACE team before publication. + +# DATASET_ACKNOWLEDGEMENT : + Please acknowledge the ACE/MAG instrument team and the ACE Science Center + +# +# PARAMETER_ID : imf +# PARAMETER_NAME : imf +# PARAMETER_SHORT_NAME : b_gse +# PARAMETER_COMPONENTS : bx,by,bz +# PARAMETER_UNITS : nT +# PARAMETER_COORDINATE_SYSTEM : GSE +# PARAMETER_TENSOR_ORDER : 0 +# PARAMETER_SI_CONVERSION : 1e-9>T +# PARAMETER_TABLE : None +# PARAMETER_FILL_VALUE : nan +# PARAMETER_UCD : phys.magField +# +# +# --------------- +# INTERVAL INFO : +# --------------- +# INTERVAL_START : 2013-09-23T08:58:12.000 +# INTERVAL_STOP : 2013-09-23T09:11:48.000 +# +# ------ +# DATA : +# ------ +# DATA_COLUMNS : AMDA_TIME, imf[0] +# +NaN -3.01425 +2013-09-23T09:01:30.000 -2.71850 +2013-09-23T09:02:30.000 -2.52150 \ No newline at end of file diff --git a/plugins/amda/tests-resources/TestAmdaResultParser/amdaV2/NoUnit.txt b/plugins/amda/tests-resources/TestAmdaResultParser/amdaV2/NoUnit.txt new file mode 100644 index 0000000..7bd0022 --- /dev/null +++ b/plugins/amda/tests-resources/TestAmdaResultParser/amdaV2/NoUnit.txt @@ -0,0 +1,60 @@ +# ----------- +# AMDA INFO : +# ----------- +# AMDA_ABOUT : Created by CDPP/AMDA(c) +# AMDA_VERSION : 3.5.0 +# AMDA_ACKNOWLEDGEMENT : CDPP/AMDA Team +# +# -------------- +# REQUEST INFO : +# -------------- +# REQUEST_STRUCTURE : one-file-per-parameter-per-interval +# REQUEST_TIME_FORMAT : ISO 8601 +# REQUEST_OUTPUT_PARAMS : imf +# +# ----------------- +# BASE PARAMETERS : +# ----------------- +# +# MISSION_ID : NONE +# +# INSTRUMENT_ID : NONE +# +# DATASET_ID : ace-imf-all +# DATASET_NAME : final / prelim +# DATASET_DESCRIPTION : Interplanetary Magnetic Field 16-sec Level2/PRELIM Data +# DATASET_SOURCE : CDPP/DDServer +# DATASET_GLOBAL_START : 1997-09-02T00:00:12.000 +# DATASET_GLOBAL_STOP : 2017-09-16T23:59:57.000 +# DATASET_MIN_SAMPLING : 16 +# DATASET_MAX_SAMPLING : 16 +# DATASET_CAVEATS : + The quality of ACE level 2 data is such that it is suitable for serious scientific study. However, to avoid confusion and misunderstanding, it is recommended that users consult with the appropriate ACE team members before publishing work derived from the data. The ACE team has worked hard to ensure that the level 2 data are free from errors, but the team cannot accept responsibility for erroneous data, or for misunderstandings about how the data may be used. This is especially true if the appropriate ACE team members are not consulted before publication. At the very least, preprints should be forwarded to the ACE team before publication. + +# DATASET_ACKNOWLEDGEMENT : + Please acknowledge the ACE/MAG instrument team and the ACE Science Center + +# +# PARAMETER_ID : imf +# PARAMETER_NAME : imf +# PARAMETER_SHORT_NAME : b_gse +# PARAMETER_COMPONENTS : bx,by,bz +# PARAMETER_COORDINATE_SYSTEM : GSE +# PARAMETER_TENSOR_ORDER : 0 +# PARAMETER_SI_CONVERSION : 1e-9>T +# PARAMETER_TABLE : None +# PARAMETER_FILL_VALUE : nan +# PARAMETER_UCD : phys.magField +# +# +# --------------- +# INTERVAL INFO : +# --------------- +# INTERVAL_START : 2013-09-23T08:58:12.000 +# INTERVAL_STOP : 2013-09-23T09:11:48.000 +# +# ------ +# DATA : +# ------ +# DATA_COLUMNS : AMDA_TIME, imf[0] +# \ No newline at end of file diff --git a/plugins/amda/tests-resources/TestAmdaResultParser/amdaV2/TooManyValues.txt b/plugins/amda/tests-resources/TestAmdaResultParser/amdaV2/TooManyValues.txt new file mode 100644 index 0000000..e92b0c9 --- /dev/null +++ b/plugins/amda/tests-resources/TestAmdaResultParser/amdaV2/TooManyValues.txt @@ -0,0 +1,64 @@ +# ----------- +# AMDA INFO : +# ----------- +# AMDA_ABOUT : Created by CDPP/AMDA(c) +# AMDA_VERSION : 3.5.0 +# AMDA_ACKNOWLEDGEMENT : CDPP/AMDA Team +# +# -------------- +# REQUEST INFO : +# -------------- +# REQUEST_STRUCTURE : one-file-per-parameter-per-interval +# REQUEST_TIME_FORMAT : ISO 8601 +# REQUEST_OUTPUT_PARAMS : imf +# +# ----------------- +# BASE PARAMETERS : +# ----------------- +# +# MISSION_ID : NONE +# +# INSTRUMENT_ID : NONE +# +# DATASET_ID : ace-imf-all +# DATASET_NAME : final / prelim +# DATASET_DESCRIPTION : Interplanetary Magnetic Field 16-sec Level2/PRELIM Data +# DATASET_SOURCE : CDPP/DDServer +# DATASET_GLOBAL_START : 1997-09-02T00:00:12.000 +# DATASET_GLOBAL_STOP : 2017-09-16T23:59:57.000 +# DATASET_MIN_SAMPLING : 16 +# DATASET_MAX_SAMPLING : 16 +# DATASET_CAVEATS : + The quality of ACE level 2 data is such that it is suitable for serious scientific study. However, to avoid confusion and misunderstanding, it is recommended that users consult with the appropriate ACE team members before publishing work derived from the data. The ACE team has worked hard to ensure that the level 2 data are free from errors, but the team cannot accept responsibility for erroneous data, or for misunderstandings about how the data may be used. This is especially true if the appropriate ACE team members are not consulted before publication. At the very least, preprints should be forwarded to the ACE team before publication. + +# DATASET_ACKNOWLEDGEMENT : + Please acknowledge the ACE/MAG instrument team and the ACE Science Center + +# +# PARAMETER_ID : imf +# PARAMETER_NAME : imf +# PARAMETER_SHORT_NAME : b_gse +# PARAMETER_COMPONENTS : bx,by,bz +# PARAMETER_UNITS : nT +# PARAMETER_COORDINATE_SYSTEM : GSE +# PARAMETER_TENSOR_ORDER : 0 +# PARAMETER_SI_CONVERSION : 1e-9>T +# PARAMETER_TABLE : None +# PARAMETER_FILL_VALUE : nan +# PARAMETER_UCD : phys.magField +# +# +# --------------- +# INTERVAL INFO : +# --------------- +# INTERVAL_START : 2013-09-23T08:58:12.000 +# INTERVAL_STOP : 2013-09-23T09:11:48.000 +# +# ------ +# DATA : +# ------ +# DATA_COLUMNS : AMDA_TIME, imf[0] +# +2013-09-23T09:00:30.000 -2.83950 1.05141 3.01547 +2013-09-23T09:01:30.000 -2.71850 +2013-09-23T09:02:30.000 -2.52150 \ No newline at end of file diff --git a/plugins/amda/tests-resources/TestAmdaResultParser/amdaV2/ValidScalar1.txt b/plugins/amda/tests-resources/TestAmdaResultParser/amdaV2/ValidScalar1.txt new file mode 100644 index 0000000..3fdd73f --- /dev/null +++ b/plugins/amda/tests-resources/TestAmdaResultParser/amdaV2/ValidScalar1.txt @@ -0,0 +1,71 @@ +# ----------- +# AMDA INFO : +# ----------- +# AMDA_ABOUT : Created by CDPP/AMDA(c) +# AMDA_VERSION : 3.5.0 +# AMDA_ACKNOWLEDGEMENT : CDPP/AMDA Team +# +# -------------- +# REQUEST INFO : +# -------------- +# REQUEST_STRUCTURE : one-file-per-parameter-per-interval +# REQUEST_TIME_FORMAT : ISO 8601 +# REQUEST_OUTPUT_PARAMS : imf +# +# ----------------- +# BASE PARAMETERS : +# ----------------- +# +# MISSION_ID : NONE +# +# INSTRUMENT_ID : NONE +# +# DATASET_ID : ace-imf-all +# DATASET_NAME : final / prelim +# DATASET_DESCRIPTION : Interplanetary Magnetic Field 16-sec Level2/PRELIM Data +# DATASET_SOURCE : CDPP/DDServer +# DATASET_GLOBAL_START : 1997-09-02T00:00:12.000 +# DATASET_GLOBAL_STOP : 2017-09-16T23:59:57.000 +# DATASET_MIN_SAMPLING : 16 +# DATASET_MAX_SAMPLING : 16 +# DATASET_CAVEATS : + The quality of ACE level 2 data is such that it is suitable for serious scientific study. However, to avoid confusion and misunderstanding, it is recommended that users consult with the appropriate ACE team members before publishing work derived from the data. The ACE team has worked hard to ensure that the level 2 data are free from errors, but the team cannot accept responsibility for erroneous data, or for misunderstandings about how the data may be used. This is especially true if the appropriate ACE team members are not consulted before publication. At the very least, preprints should be forwarded to the ACE team before publication. + +# DATASET_ACKNOWLEDGEMENT : + Please acknowledge the ACE/MAG instrument team and the ACE Science Center + +# +# PARAMETER_ID : imf +# PARAMETER_NAME : imf +# PARAMETER_SHORT_NAME : b_gse +# PARAMETER_COMPONENTS : bx,by,bz +# PARAMETER_UNITS : nT +# PARAMETER_COORDINATE_SYSTEM : GSE +# PARAMETER_TENSOR_ORDER : 0 +# PARAMETER_SI_CONVERSION : 1e-9>T +# PARAMETER_TABLE : None +# PARAMETER_FILL_VALUE : nan +# PARAMETER_UCD : phys.magField +# +# +# --------------- +# INTERVAL INFO : +# --------------- +# INTERVAL_START : 2013-09-23T08:58:12.000 +# INTERVAL_STOP : 2013-09-23T09:11:48.000 +# +# ------ +# DATA : +# ------ +# DATA_COLUMNS : AMDA_TIME, imf[0] +# +2013-09-23T09:00:30.000 -2.83950 +2013-09-23T09:01:30.000 -2.71850 +2013-09-23T09:02:30.000 -2.52150 +2013-09-23T09:03:30.000 -2.57633 +2013-09-23T09:04:30.000 -2.58050 +2013-09-23T09:05:30.000 -2.48325 +2013-09-23T09:06:30.000 -2.63025 +2013-09-23T09:07:30.000 -2.55800 +2013-09-23T09:08:30.000 -2.43250 +2013-09-23T09:09:30.000 -2.42200 \ No newline at end of file diff --git a/plugins/amda/tests-resources/TestAmdaResultParser/amdaV2/ValidVector1.txt b/plugins/amda/tests-resources/TestAmdaResultParser/amdaV2/ValidVector1.txt new file mode 100644 index 0000000..4c2161f --- /dev/null +++ b/plugins/amda/tests-resources/TestAmdaResultParser/amdaV2/ValidVector1.txt @@ -0,0 +1,71 @@ +# ----------- +# AMDA INFO : +# ----------- +# AMDA_ABOUT : Created by CDPP/AMDA(c) +# AMDA_VERSION : 3.5.0 +# AMDA_ACKNOWLEDGEMENT : CDPP/AMDA Team +# +# -------------- +# REQUEST INFO : +# -------------- +# REQUEST_STRUCTURE : one-file-per-parameter-per-interval +# REQUEST_TIME_FORMAT : ISO 8601 +# REQUEST_OUTPUT_PARAMS : imf +# +# ----------------- +# BASE PARAMETERS : +# ----------------- +# +# MISSION_ID : NONE +# +# INSTRUMENT_ID : NONE +# +# DATASET_ID : ace-imf-all +# DATASET_NAME : final / prelim +# DATASET_DESCRIPTION : Interplanetary Magnetic Field 16-sec Level2/PRELIM Data +# DATASET_SOURCE : CDPP/DDServer +# DATASET_GLOBAL_START : 1997-09-02T00:00:12.000 +# DATASET_GLOBAL_STOP : 2017-09-16T23:59:57.000 +# DATASET_MIN_SAMPLING : 16 +# DATASET_MAX_SAMPLING : 16 +# DATASET_CAVEATS : + The quality of ACE level 2 data is such that it is suitable for serious scientific study. However, to avoid confusion and misunderstanding, it is recommended that users consult with the appropriate ACE team members before publishing work derived from the data. The ACE team has worked hard to ensure that the level 2 data are free from errors, but the team cannot accept responsibility for erroneous data, or for misunderstandings about how the data may be used. This is especially true if the appropriate ACE team members are not consulted before publication. At the very least, preprints should be forwarded to the ACE team before publication. + +# DATASET_ACKNOWLEDGEMENT : + Please acknowledge the ACE/MAG instrument team and the ACE Science Center + +# +# PARAMETER_ID : imf +# PARAMETER_NAME : imf +# PARAMETER_SHORT_NAME : b_gse +# PARAMETER_COMPONENTS : bx,by,bz +# PARAMETER_UNITS : nT +# PARAMETER_COORDINATE_SYSTEM : GSE +# PARAMETER_TENSOR_ORDER : 0 +# PARAMETER_SI_CONVERSION : 1e-9>T +# PARAMETER_TABLE : None +# PARAMETER_FILL_VALUE : nan +# PARAMETER_UCD : phys.magField +# +# +# --------------- +# INTERVAL INFO : +# --------------- +# INTERVAL_START : 2012-09-27T06:47:56.000 +# INTERVAL_STOP : 2012-09-27T08:09:32.000 +# +# ------ +# DATA : +# ------ +# DATA_COLUMNS : AMDA_TIME, imf[0], imf[1], imf[2] +# +2013-07-02T09:13:50.000 -0.332000 3.20600 0.0580000 +2013-07-02T09:14:06.000 -1.01100 2.99900 0.496000 +2013-07-02T09:14:22.000 -1.45700 2.78500 1.01800 +2013-07-02T09:14:38.000 -1.29300 2.73600 1.48500 +2013-07-02T09:14:54.000 -1.21700 2.61200 1.66200 +2013-07-02T09:15:10.000 -1.44300 2.56400 1.50500 +2013-07-02T09:15:26.000 -1.27800 2.89200 1.16800 +2013-07-02T09:15:42.000 -1.20200 2.86200 1.24400 +2013-07-02T09:15:58.000 -1.22000 2.85900 1.15000 +2013-07-02T09:16:14.000 -1.25900 2.76400 1.35800 \ No newline at end of file diff --git a/plugins/amda/tests-resources/TestAmdaResultParser/amdaV2/WrongDate.txt b/plugins/amda/tests-resources/TestAmdaResultParser/amdaV2/WrongDate.txt new file mode 100644 index 0000000..8271429 --- /dev/null +++ b/plugins/amda/tests-resources/TestAmdaResultParser/amdaV2/WrongDate.txt @@ -0,0 +1,64 @@ +# ----------- +# AMDA INFO : +# ----------- +# AMDA_ABOUT : Created by CDPP/AMDA(c) +# AMDA_VERSION : 3.5.0 +# AMDA_ACKNOWLEDGEMENT : CDPP/AMDA Team +# +# -------------- +# REQUEST INFO : +# -------------- +# REQUEST_STRUCTURE : one-file-per-parameter-per-interval +# REQUEST_TIME_FORMAT : ISO 8601 +# REQUEST_OUTPUT_PARAMS : imf +# +# ----------------- +# BASE PARAMETERS : +# ----------------- +# +# MISSION_ID : NONE +# +# INSTRUMENT_ID : NONE +# +# DATASET_ID : ace-imf-all +# DATASET_NAME : final / prelim +# DATASET_DESCRIPTION : Interplanetary Magnetic Field 16-sec Level2/PRELIM Data +# DATASET_SOURCE : CDPP/DDServer +# DATASET_GLOBAL_START : 1997-09-02T00:00:12.000 +# DATASET_GLOBAL_STOP : 2017-09-16T23:59:57.000 +# DATASET_MIN_SAMPLING : 16 +# DATASET_MAX_SAMPLING : 16 +# DATASET_CAVEATS : + The quality of ACE level 2 data is such that it is suitable for serious scientific study. However, to avoid confusion and misunderstanding, it is recommended that users consult with the appropriate ACE team members before publishing work derived from the data. The ACE team has worked hard to ensure that the level 2 data are free from errors, but the team cannot accept responsibility for erroneous data, or for misunderstandings about how the data may be used. This is especially true if the appropriate ACE team members are not consulted before publication. At the very least, preprints should be forwarded to the ACE team before publication. + +# DATASET_ACKNOWLEDGEMENT : + Please acknowledge the ACE/MAG instrument team and the ACE Science Center + +# +# PARAMETER_ID : imf +# PARAMETER_NAME : imf +# PARAMETER_SHORT_NAME : b_gse +# PARAMETER_COMPONENTS : bx,by,bz +# PARAMETER_UNITS : nT +# PARAMETER_COORDINATE_SYSTEM : GSE +# PARAMETER_TENSOR_ORDER : 0 +# PARAMETER_SI_CONVERSION : 1e-9>T +# PARAMETER_TABLE : None +# PARAMETER_FILL_VALUE : nan +# PARAMETER_UCD : phys.magField +# +# +# --------------- +# INTERVAL INFO : +# --------------- +# INTERVAL_START : 2013-09-23T08:58:12.000 +# INTERVAL_STOP : 2013-09-23T09:11:48.000 +# +# ------ +# DATA : +# ------ +# DATA_COLUMNS : AMDA_TIME, imf[0] +# +23/09/2013 07:50:30 -2.83950 +2013-09-23T09:01:30.000 -2.71850 +2013-09-23T09:02:30.000 -2.52150 \ No newline at end of file diff --git a/plugins/amda/tests-resources/TestAmdaResultParser/amdaV2/WrongUnit.txt b/plugins/amda/tests-resources/TestAmdaResultParser/amdaV2/WrongUnit.txt new file mode 100644 index 0000000..190447b --- /dev/null +++ b/plugins/amda/tests-resources/TestAmdaResultParser/amdaV2/WrongUnit.txt @@ -0,0 +1,64 @@ +# ----------- +# AMDA INFO : +# ----------- +# AMDA_ABOUT : Created by CDPP/AMDA(c) +# AMDA_VERSION : 3.5.0 +# AMDA_ACKNOWLEDGEMENT : CDPP/AMDA Team +# +# -------------- +# REQUEST INFO : +# -------------- +# REQUEST_STRUCTURE : one-file-per-parameter-per-interval +# REQUEST_TIME_FORMAT : ISO 8601 +# REQUEST_OUTPUT_PARAMS : imf +# +# ----------------- +# BASE PARAMETERS : +# ----------------- +# +# MISSION_ID : NONE +# +# INSTRUMENT_ID : NONE +# +# DATASET_ID : ace-imf-all +# DATASET_NAME : final / prelim +# DATASET_DESCRIPTION : Interplanetary Magnetic Field 16-sec Level2/PRELIM Data +# DATASET_SOURCE : CDPP/DDServer +# DATASET_GLOBAL_START : 1997-09-02T00:00:12.000 +# DATASET_GLOBAL_STOP : 2017-09-16T23:59:57.000 +# DATASET_MIN_SAMPLING : 16 +# DATASET_MAX_SAMPLING : 16 +# DATASET_CAVEATS : + The quality of ACE level 2 data is such that it is suitable for serious scientific study. However, to avoid confusion and misunderstanding, it is recommended that users consult with the appropriate ACE team members before publishing work derived from the data. The ACE team has worked hard to ensure that the level 2 data are free from errors, but the team cannot accept responsibility for erroneous data, or for misunderstandings about how the data may be used. This is especially true if the appropriate ACE team members are not consulted before publication. At the very least, preprints should be forwarded to the ACE team before publication. + +# DATASET_ACKNOWLEDGEMENT : + Please acknowledge the ACE/MAG instrument team and the ACE Science Center + +# +# PARAMETER_ID : imf +# PARAMETER_NAME : imf +# PARAMETER_SHORT_NAME : b_gse +# PARAMETER_COMPONENTS : bx,by,bz +# PARAM_UNITS : wrong unit line +# PARAMETER_COORDINATE_SYSTEM : GSE +# PARAMETER_TENSOR_ORDER : 0 +# PARAMETER_SI_CONVERSION : 1e-9>T +# PARAMETER_TABLE : None +# PARAMETER_FILL_VALUE : nan +# PARAMETER_UCD : phys.magField +# +# +# --------------- +# INTERVAL INFO : +# --------------- +# INTERVAL_START : 2013-09-23T08:58:12.000 +# INTERVAL_STOP : 2013-09-23T09:11:48.000 +# +# ------ +# DATA : +# ------ +# DATA_COLUMNS : AMDA_TIME, imf[0] +# +2013-09-23T09:00:30.000 -2.83950 +2013-09-23T09:01:30.000 -2.71850 +2013-09-23T09:02:30.000 -2.52150 \ No newline at end of file diff --git a/plugins/amda/tests-resources/TestAmdaResultParser/amdaV2/WrongValue.txt b/plugins/amda/tests-resources/TestAmdaResultParser/amdaV2/WrongValue.txt new file mode 100644 index 0000000..bcd630a --- /dev/null +++ b/plugins/amda/tests-resources/TestAmdaResultParser/amdaV2/WrongValue.txt @@ -0,0 +1,64 @@ +# ----------- +# AMDA INFO : +# ----------- +# AMDA_ABOUT : Created by CDPP/AMDA(c) +# AMDA_VERSION : 3.5.0 +# AMDA_ACKNOWLEDGEMENT : CDPP/AMDA Team +# +# -------------- +# REQUEST INFO : +# -------------- +# REQUEST_STRUCTURE : one-file-per-parameter-per-interval +# REQUEST_TIME_FORMAT : ISO 8601 +# REQUEST_OUTPUT_PARAMS : imf +# +# ----------------- +# BASE PARAMETERS : +# ----------------- +# +# MISSION_ID : NONE +# +# INSTRUMENT_ID : NONE +# +# DATASET_ID : ace-imf-all +# DATASET_NAME : final / prelim +# DATASET_DESCRIPTION : Interplanetary Magnetic Field 16-sec Level2/PRELIM Data +# DATASET_SOURCE : CDPP/DDServer +# DATASET_GLOBAL_START : 1997-09-02T00:00:12.000 +# DATASET_GLOBAL_STOP : 2017-09-16T23:59:57.000 +# DATASET_MIN_SAMPLING : 16 +# DATASET_MAX_SAMPLING : 16 +# DATASET_CAVEATS : + The quality of ACE level 2 data is such that it is suitable for serious scientific study. However, to avoid confusion and misunderstanding, it is recommended that users consult with the appropriate ACE team members before publishing work derived from the data. The ACE team has worked hard to ensure that the level 2 data are free from errors, but the team cannot accept responsibility for erroneous data, or for misunderstandings about how the data may be used. This is especially true if the appropriate ACE team members are not consulted before publication. At the very least, preprints should be forwarded to the ACE team before publication. + +# DATASET_ACKNOWLEDGEMENT : + Please acknowledge the ACE/MAG instrument team and the ACE Science Center + +# +# PARAMETER_ID : imf +# PARAMETER_NAME : imf +# PARAMETER_SHORT_NAME : b_gse +# PARAMETER_COMPONENTS : bx,by,bz +# PARAMETER_UNITS : nT +# PARAMETER_COORDINATE_SYSTEM : GSE +# PARAMETER_TENSOR_ORDER : 0 +# PARAMETER_SI_CONVERSION : 1e-9>T +# PARAMETER_TABLE : None +# PARAMETER_FILL_VALUE : nan +# PARAMETER_UCD : phys.magField +# +# +# --------------- +# INTERVAL INFO : +# --------------- +# INTERVAL_START : 2013-09-23T08:58:12.000 +# INTERVAL_STOP : 2013-09-23T09:11:48.000 +# +# ------ +# DATA : +# ------ +# DATA_COLUMNS : AMDA_TIME, imf[0] +# +2013-09-23T09:00:30.000 abc +2013-09-23T09:01:30.000 -2.71850 +2013-09-23T09:02:30.000 -2.52150 \ No newline at end of file