From 9f77de438a6d9364dd460c5353026414d2f23c7b Mon Sep 17 00:00:00 2001 From: Kan Fu Date: Mon, 27 May 2024 14:08:56 -0700 Subject: [PATCH] doc: fix inconsistent params and typo --- doc/source/Tutorial/onc_Library_Tutorial.ipynb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/source/Tutorial/onc_Library_Tutorial.ipynb b/doc/source/Tutorial/onc_Library_Tutorial.ipynb index 1586b28..6ecb720 100644 --- a/doc/source/Tutorial/onc_Library_Tutorial.ipynb +++ b/doc/source/Tutorial/onc_Library_Tutorial.ipynb @@ -389,7 +389,7 @@ "source": [ "### 2.1 Near real-time scalar data download\n", "\n", - "In this example we want to download one minute of **Pressure** sensor data from a **CTD** at location \"Bullseye\"\" (locationCode: **NC89**)\n" + "In this example we want to download one minute of **Pressure** sensor data from a **CTD** at location \"Bullseye\" (locationCode: **NC89**)\n" ] }, { @@ -409,9 +409,9 @@ "params = {\n", " \"locationCode\": \"NC89\",\n", " \"deviceCategoryCode\": \"CTD\",\n", - " \"dateFrom\": \"2017-01-20T00:00:00.000Z\",\n", + " \"dateFrom\": \"2020-06-20T00:00:00.000Z\",\n", " \"propertyCode\": \"pressure\",\n", - " \"dateTo\": \"2017-01-20T00:01:00.000Z\",\n", + " \"dateTo\": \"2020-06-20T00:00:10.000Z\",\n", "}\n", "\n", "# 2. Call methods in the onc library\n", @@ -468,7 +468,7 @@ "source": [ "### 2.2 Near real-time raw data readings\n", "\n", - "In this example we want to download one minute of raw data from a **CTD** at location \"Bullseye\"\" (locationCode: **NC89**)\n" + "In this example we want to download one minute of raw data from a **CTD** at location \"Bullseye\" (locationCode: **NC89**)\n" ] }, {