From e22692cc5ebc8bf45586dbb7afd6c168106dfe80 Mon Sep 17 00:00:00 2001 From: Austin Sanders <arsanders@usgs.gov> Date: Wed, 1 Nov 2023 14:10:54 -0600 Subject: [PATCH] Fixed spelling --- .../writing-tests-for-ale-drivers.ipynb | 36 +++++++++---------- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/docs/getting-started/writing-tests/writing-tests-for-ale-drivers.ipynb b/docs/getting-started/writing-tests/writing-tests-for-ale-drivers.ipynb index 8b8bd1e..75ba39e 100644 --- a/docs/getting-started/writing-tests/writing-tests-for-ale-drivers.ipynb +++ b/docs/getting-started/writing-tests/writing-tests-for-ale-drivers.ipynb @@ -54,7 +54,7 @@ { "cell_type": "code", "execution_count": null, - "id": "9f5ef5e4", + "id": "333c6885", "metadata": {}, "outputs": [], "source": [ @@ -77,7 +77,7 @@ }, { "cell_type": "markdown", - "id": "ce636b9b", + "id": "19895955", "metadata": {}, "source": [ "#### Create Utility Functions\n", @@ -112,7 +112,7 @@ " # No intersection\n", " if interval[0] > merged[-1][1]:\n", " merged.append(interval)\n", - " # Intersection, but new interval isn't wholey contained\n", + " # Intersection, but new interval isn't wholly contained\n", " elif interval[1] > merged[-1][1]:\n", " merged[-1] = (merged[-1][0], interval[1])\n", " return merged\n", @@ -151,7 +151,7 @@ }, { "cell_type": "markdown", - "id": "1c385749", + "id": "37bcdec1", "metadata": {}, "source": [ "#### Read and Furnish Kernels\n", @@ -161,7 +161,7 @@ { "cell_type": "code", "execution_count": null, - "id": "62cdfe04", + "id": "03fb3142", "metadata": {}, "outputs": [], "source": [ @@ -181,7 +181,7 @@ }, { "cell_type": "markdown", - "id": "2857c02b", + "id": "15a194ee", "metadata": {}, "source": [ "#### Load and Update the Cube Information\n", @@ -198,14 +198,14 @@ { "cell_type": "code", "execution_count": null, - "id": "9edd0925", + "id": "b7ae7d49", "metadata": {}, "outputs": [], "source": [ "# Loads cube as pvl to extract rest of data\n", "cube_pvl = pvl.load(cube)\n", "\n", - "# Save other necesary info in cube_info dict\n", + "# Save other necessary info in cube_info dict\n", "cube_info.update(Lines = cube_pvl['IsisCube']['Core']['Dimensions']['Lines'])\n", "cube_info.update(SpacecraftClockCount = cube_pvl['IsisCube']['Instrument']['SpacecraftClockStartCount'])\n", "cube_info.update(ExposureDuration = cube_pvl['IsisCube']['Instrument']['LineExposureDuration'][0])\n", @@ -215,7 +215,7 @@ }, { "cell_type": "markdown", - "id": "015f8f28", + "id": "58702769", "metadata": {}, "source": [ "#### Process and Slice Kernels\n", @@ -225,7 +225,7 @@ { "cell_type": "code", "execution_count": null, - "id": "c49ca1d2", + "id": "0f65c42d", "metadata": {}, "outputs": [], "source": [ @@ -274,7 +274,7 @@ }, { "cell_type": "markdown", - "id": "305b31d1", + "id": "34d3ffe9", "metadata": {}, "source": [ "#### Merge the Kernels\n", @@ -314,7 +314,7 @@ }, { "cell_type": "markdown", - "id": "74afcc35", + "id": "ec6e395d", "metadata": {}, "source": [ "### Generate an ISD\n", @@ -333,7 +333,7 @@ }, { "cell_type": "markdown", - "id": "a4c2d5db", + "id": "163b7bc7", "metadata": {}, "source": [ "### Place Test Data in ALE\n", @@ -363,7 +363,7 @@ { "cell_type": "code", "execution_count": null, - "id": "2a00dbc9", + "id": "20feebe3", "metadata": {}, "outputs": [], "source": [ @@ -382,7 +382,7 @@ }, { "cell_type": "markdown", - "id": "c78dfc26", + "id": "e69aff70", "metadata": {}, "source": [ "### Create a 'Loads' Test\n", @@ -392,7 +392,7 @@ { "cell_type": "code", "execution_count": null, - "id": "f50251ed", + "id": "40f5c86f", "metadata": {}, "outputs": [], "source": [ @@ -416,7 +416,7 @@ }, { "cell_type": "markdown", - "id": "65da3144", + "id": "69ae1920", "metadata": {}, "source": [ "### Create Comparison Tests\n", @@ -433,7 +433,7 @@ { "cell_type": "code", "execution_count": null, - "id": "757de3a8", + "id": "eb129f6d", "metadata": {}, "outputs": [], "source": [ -- GitLab