Skip to content

Commit

Permalink
correction heading numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
meghanakr7 committed Aug 19, 2024
1 parent 6c4647a commit a0979e7
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions book/chapters/gridmet.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -953,7 +953,7 @@
"id": "fba2568a",
"metadata": {},
"source": [
"## 3.2.1.1 Setup and Variable Mapping\n",
"## 1. Setup and Variable Mapping\n",
"\n",
"The following code snippet sets up the environment by importing necessary libraries, defining a workspace, and mapping variables.\n",
"\n",
Expand Down Expand Up @@ -1014,7 +1014,7 @@
"id": "b80cd848",
"metadata": {},
"source": [
"## 3.2.1.2 Map Values to Colors\n",
"## 2. Map Values to Colors\n",
"\n",
"Here we generate a color mapping for a given column of data based on specified or automatically calculated value ranges. It returns the color mapping and the value ranges used.\n",
"\n",
Expand Down Expand Up @@ -1064,7 +1064,7 @@
"id": "8267ed30",
"metadata": {},
"source": [
"## 3.2.1.3 Retrive the Current Year\n",
"## 3. Retrive the Current Year\n",
"\n",
"The following code snippet retrives the current year from the system's date and time."
]
Expand Down Expand Up @@ -1101,7 +1101,7 @@
"id": "6bb255e8",
"metadata": {},
"source": [
"## 3.2.1.4 Removes Specific Files in a Folder\n",
"## 4. Removes Specific Files in a Folder\n",
"\n",
"We remove all files within the specified folder.\n",
"\n",
Expand Down Expand Up @@ -1146,7 +1146,7 @@
"id": "7cc22618",
"metadata": {},
"source": [
"## 3.2.1.5 Download File from a URL\n",
"## 5. Download File from a URL\n",
"\n",
"Here we download a file from a given URL and saves it to a specified location.\n",
"\n",
Expand Down Expand Up @@ -1190,7 +1190,7 @@
"id": "f52923c4",
"metadata": {},
"source": [
"## 3.2.1.6 Downloads Specific Meteorological Variables\n",
"## 6. Downloads Specific Meteorological Variables\n",
"\n",
"Here we download specific meteorological variables from the GridMET climatology dataset for a list of years provided as input.\n",
"\n",
Expand Down Expand Up @@ -1233,7 +1233,7 @@
"id": "5c4e5956",
"metadata": {},
"source": [
"## 3.2.1.7 Extract File Name from File Path\n",
"## 7. Extract File Name from File Path\n",
"\n",
"Here we extracts the file name from a given file path.\n",
"- `file_path`: A string representing the full path to a file.\n",
Expand All @@ -1258,7 +1258,7 @@
"id": "d93fc723",
"metadata": {},
"source": [
"## 3.2.1.8 Extract Variable Name from File Name\n",
"## 8. Extract Variable Name from File Name\n",
"\n",
"The code snippet extracts the variable name from a given file name, assuming the file name follows a specific format.\n",
"\n",
Expand All @@ -1284,7 +1284,7 @@
"id": "dd3bee41",
"metadata": {},
"source": [
"## 3.2.1.9 Extracts Coordinates from a CSV File\n",
"## 9. Extracts Coordinates from a CSV File\n",
"\n",
"Here we extracts geographical coordinates (longitude and latitude) from a CSV file and returns them as a list of tuples.\n",
"\n",
Expand Down Expand Up @@ -1320,7 +1320,7 @@
"id": "6b3f9072",
"metadata": {},
"source": [
"## 3.2.1.10 Find the Nearest Index in an Array\n",
"## 10. Find the Nearest Index in an Array\n",
"\n",
"- `array`: A `numpy` array of numerical values from which the closest element to `value` is to be found.\n",
"- `value`: A numerical value for which the closest corresponding element in `array` is sought.\n",
Expand All @@ -1345,7 +1345,7 @@
"id": "524ca247",
"metadata": {},
"source": [
"## 3.2.1.12 Calculate specific Operation Day\n",
"## 11. Calculate specific Operation Day\n",
"\n",
"Here we calculate the date exactly three days before the current date and returns it as a formatted string.\n",
"\n",
Expand Down Expand Up @@ -1395,7 +1395,7 @@
"source": [
"## Utility Functions for Merging Meteorological Data for Comprehensive Analysis\n",
"\n",
"## 3.2.2.1 Importing Libraries\n",
"## 1. Importing Libraries\n",
"\n",
"The code snippet sets up the environment and defines the necessary paths and timeframes for a data processing task\n",
"\n"
Expand Down Expand Up @@ -1444,7 +1444,7 @@
"id": "c149efa8",
"metadata": {},
"source": [
"## 3.2.2.2 Get Files from a Directory\n",
"## 2. Get Files from a Directory\n",
"We collect the names of files with the extension \".nc\" within a specified directory by iterating through all files, appending their names to a list, and returning the list."
]
},
Expand All @@ -1467,7 +1467,7 @@
"id": "df8e974a",
"metadata": {},
"source": [
"## 3.2.2.3 Download File from a URL\n",
"## 3. Download File from a URL\n",
"\n",
"Here we download a file from a given URL and saves it to a specified location on your system."
]
Expand Down Expand Up @@ -1498,7 +1498,7 @@
"id": "9d8ade90",
"metadata": {},
"source": [
"## 3.2.2.4 Download GridMET Climatology Data\n",
"## 4. Download GridMET Climatology Data\n",
"\n",
"We attempt to download a file from a specified URL. We then save the downloaded file to a specified location.\n",
"\n",
Expand Down

0 comments on commit a0979e7

Please sign in to comment.